#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <asm/hypervisor.h>
static unsigned long hypervisor_get_time(void)
ret = sun4v_tod_get(&time);
if (ret == HV_EWOULDBLOCK) {
pr_warn("tod_get() timed out.\n");
pr_warn("tod_get() not supported.\n");
static int sun4v_read_time(struct device *dev, struct rtc_time *tm)
rtc_time_to_tm(hypervisor_get_time(), tm);
static int hypervisor_set_time(unsigned long secs)
ret = sun4v_tod_set(secs);
if (ret == HV_EWOULDBLOCK) {
pr_warn("tod_set() timed out.\n");
pr_warn("tod_set() not supported.\n");