|
@@ -56,6 +56,7 @@
|
|
#include <linux/irq_work.h>
|
|
#include <linux/irq_work.h>
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/suspend.h>
|
|
#include <linux/suspend.h>
|
|
|
|
+#include <linux/rtc.h>
|
|
#include <asm/trace.h>
|
|
#include <asm/trace.h>
|
|
|
|
|
|
#include <asm/io.h>
|
|
#include <asm/io.h>
|
|
@@ -1081,6 +1082,29 @@ void calibrate_delay(void)
|
|
loops_per_jiffy = tb_ticks_per_jiffy;
|
|
loops_per_jiffy = tb_ticks_per_jiffy;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#if IS_ENABLED(CONFIG_RTC_DRV_GENERIC)
|
|
|
|
+static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm)
|
|
|
|
+{
|
|
|
|
+ ppc_md.get_rtc_time(tm);
|
|
|
|
+ return rtc_valid_tm(tm);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm)
|
|
|
|
+{
|
|
|
|
+ if (!ppc_md.set_rtc_time)
|
|
|
|
+ return -EOPNOTSUPP;
|
|
|
|
+
|
|
|
|
+ if (ppc_md.set_rtc_time(tm) < 0)
|
|
|
|
+ return -EOPNOTSUPP;
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static const struct rtc_class_ops rtc_generic_ops = {
|
|
|
|
+ .read_time = rtc_generic_get_time,
|
|
|
|
+ .set_time = rtc_generic_set_time,
|
|
|
|
+};
|
|
|
|
+
|
|
static int __init rtc_init(void)
|
|
static int __init rtc_init(void)
|
|
{
|
|
{
|
|
struct platform_device *pdev;
|
|
struct platform_device *pdev;
|
|
@@ -1088,9 +1112,12 @@ static int __init rtc_init(void)
|
|
if (!ppc_md.get_rtc_time)
|
|
if (!ppc_md.get_rtc_time)
|
|
return -ENODEV;
|
|
return -ENODEV;
|
|
|
|
|
|
- pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
|
|
|
|
|
|
+ pdev = platform_device_register_data(NULL, "rtc-generic", -1,
|
|
|
|
+ &rtc_generic_ops,
|
|
|
|
+ sizeof(rtc_generic_ops));
|
|
|
|
|
|
return PTR_ERR_OR_ZERO(pdev);
|
|
return PTR_ERR_OR_ZERO(pdev);
|
|
}
|
|
}
|
|
|
|
|
|
device_initcall(rtc_init);
|
|
device_initcall(rtc_init);
|
|
|
|
+#endif
|