sun4v-rtc.h 346 B

12345678910111213141516171819
  1. /*
  2. * QEMU sun4v Real Time Clock device
  3. *
  4. * The sun4v_rtc device (sun4v tod clock)
  5. *
  6. * Copyright (c) 2016 Artyom Tarasenko
  7. *
  8. * This code is licensed under the GNU GPL v2 or (at your option) any later
  9. * version.
  10. */
  11. #ifndef HW_RTC_SUN4V_RTC_H
  12. #define HW_RTC_SUN4V_RTC_H
  13. #include "exec/hwaddr.h"
  14. void sun4v_rtc_init(hwaddr addr);
  15. #endif