2019-10-04 02:03:56 +03:00
|
|
|
/*
|
|
|
|
* QEMU sun4v Real Time Clock device
|
|
|
|
*
|
|
|
|
* The sun4v_rtc device (sun4v tod clock)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Artyom Tarasenko
|
|
|
|
*
|
|
|
|
* This code is licensed under the GNU GPL v3 or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*/
|
|
|
|
|
2022-05-06 16:49:08 +03:00
|
|
|
#ifndef HW_RTC_SUN4V_RTC_H
|
|
|
|
#define HW_RTC_SUN4V_RTC_H
|
2019-10-04 02:03:56 +03:00
|
|
|
|
|
|
|
#include "exec/hwaddr.h"
|
|
|
|
|
|
|
|
void sun4v_rtc_init(hwaddr addr);
|
|
|
|
|
|
|
|
#endif
|