blob: 59b5c2dcb58c2843d907089963e9fd44e4ccebcb [file] [log] [blame]
Alessandro Zummocecf61b2008-11-14 16:37:54 -08001/* rtc-sun4v.c: Hypervisor based RTC for SUN4V systems.
David S. Miller7a138ed2008-08-29 01:32:43 -07002 *
3 * Copyright (C) 2008 David S. Miller <davem@davemloft.net>
4 */
5
Jingoo Hand959f732013-02-21 16:45:32 -08006#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
David S. Miller7a138ed2008-08-29 01:32:43 -07008#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/delay.h>
11#include <linux/init.h>
David S. Miller7a138ed2008-08-29 01:32:43 -070012#include <linux/rtc.h>
13#include <linux/platform_device.h>
14
15#include <asm/hypervisor.h>
16
David S. Miller7a138ed2008-08-29 01:32:43 -070017static unsigned long hypervisor_get_time(void)
18{
19 unsigned long ret, time;
20 int retries = 10000;
21
22retry:
23 ret = sun4v_tod_get(&time);
24 if (ret == HV_EOK)
25 return time;
26 if (ret == HV_EWOULDBLOCK) {
27 if (--retries > 0) {
28 udelay(100);
29 goto retry;
30 }
Jingoo Hand959f732013-02-21 16:45:32 -080031 pr_warn("tod_get() timed out.\n");
David S. Miller7a138ed2008-08-29 01:32:43 -070032 return 0;
33 }
Jingoo Hand959f732013-02-21 16:45:32 -080034 pr_warn("tod_get() not supported.\n");
David S. Miller7a138ed2008-08-29 01:32:43 -070035 return 0;
36}
37
38static int sun4v_read_time(struct device *dev, struct rtc_time *tm)
39{
Alessandro Zummocecf61b2008-11-14 16:37:54 -080040 rtc_time_to_tm(hypervisor_get_time(), tm);
David S. Miller7a138ed2008-08-29 01:32:43 -070041 return 0;
42}
43
44static int hypervisor_set_time(unsigned long secs)
45{
46 unsigned long ret;
47 int retries = 10000;
48
49retry:
50 ret = sun4v_tod_set(secs);
51 if (ret == HV_EOK)
52 return 0;
53 if (ret == HV_EWOULDBLOCK) {
54 if (--retries > 0) {
55 udelay(100);
56 goto retry;
57 }
Jingoo Hand959f732013-02-21 16:45:32 -080058 pr_warn("tod_set() timed out.\n");
David S. Miller7a138ed2008-08-29 01:32:43 -070059 return -EAGAIN;
60 }
Jingoo Hand959f732013-02-21 16:45:32 -080061 pr_warn("tod_set() not supported.\n");
David S. Miller7a138ed2008-08-29 01:32:43 -070062 return -EOPNOTSUPP;
63}
64
65static int sun4v_set_time(struct device *dev, struct rtc_time *tm)
66{
Alessandro Zummocecf61b2008-11-14 16:37:54 -080067 unsigned long secs;
David S. Miller7a138ed2008-08-29 01:32:43 -070068 int err;
69
70 err = rtc_tm_to_time(tm, &secs);
71 if (err)
72 return err;
73
Alessandro Zummocecf61b2008-11-14 16:37:54 -080074 return hypervisor_set_time(secs);
David S. Miller7a138ed2008-08-29 01:32:43 -070075}
76
77static const struct rtc_class_ops sun4v_rtc_ops = {
78 .read_time = sun4v_read_time,
79 .set_time = sun4v_set_time,
80};
81
Alessandro Zummocecf61b2008-11-14 16:37:54 -080082static int __init sun4v_rtc_probe(struct platform_device *pdev)
David S. Miller7a138ed2008-08-29 01:32:43 -070083{
Alessandro Zummocecf61b2008-11-14 16:37:54 -080084 struct rtc_device *rtc = rtc_device_register("sun4v", &pdev->dev,
David S. Miller7a138ed2008-08-29 01:32:43 -070085 &sun4v_rtc_ops, THIS_MODULE);
Alessandro Zummocecf61b2008-11-14 16:37:54 -080086 if (IS_ERR(rtc))
87 return PTR_ERR(rtc);
88
89 platform_set_drvdata(pdev, rtc);
David S. Miller7a138ed2008-08-29 01:32:43 -070090 return 0;
91}
92
Alessandro Zummocecf61b2008-11-14 16:37:54 -080093static int __exit sun4v_rtc_remove(struct platform_device *pdev)
David S. Miller7a138ed2008-08-29 01:32:43 -070094{
Alessandro Zummocecf61b2008-11-14 16:37:54 -080095 struct rtc_device *rtc = platform_get_drvdata(pdev);
David S. Miller7a138ed2008-08-29 01:32:43 -070096
Alessandro Zummocecf61b2008-11-14 16:37:54 -080097 rtc_device_unregister(rtc);
David S. Miller7a138ed2008-08-29 01:32:43 -070098 return 0;
99}
100
101static struct platform_driver sun4v_rtc_driver = {
102 .driver = {
103 .name = "rtc-sun4v",
104 .owner = THIS_MODULE,
105 },
Alessandro Zummocecf61b2008-11-14 16:37:54 -0800106 .remove = __exit_p(sun4v_rtc_remove),
David S. Miller7a138ed2008-08-29 01:32:43 -0700107};
108
109static int __init sun4v_rtc_init(void)
110{
Alessandro Zummocecf61b2008-11-14 16:37:54 -0800111 return platform_driver_probe(&sun4v_rtc_driver, sun4v_rtc_probe);
David S. Miller7a138ed2008-08-29 01:32:43 -0700112}
113
114static void __exit sun4v_rtc_exit(void)
115{
116 platform_driver_unregister(&sun4v_rtc_driver);
117}
118
119module_init(sun4v_rtc_init);
120module_exit(sun4v_rtc_exit);
Alessandro Zummocecf61b2008-11-14 16:37:54 -0800121
122MODULE_AUTHOR("David S. Miller <davem@davemloft.net>");
123MODULE_DESCRIPTION("SUN4V RTC driver");
124MODULE_LICENSE("GPL");