3 * Copyright (C) 2014 IBM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program.
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #define DRVNAME "rtc-opal"
23 #include <linux/module.h>
24 #include <linux/err.h>
25 #include <linux/rtc.h>
26 #include <linux/delay.h>
27 #include <linux/bcd.h>
28 #include <linux/platform_device.h>
31 #include <asm/firmware.h>
33 static void opal_to_tm(u32 y_m_d
, u64 h_m_s_ms
, struct rtc_time
*tm
)
35 tm
->tm_year
= ((bcd2bin(y_m_d
>> 24) * 100) +
36 bcd2bin((y_m_d
>> 16) & 0xff)) - 1900;
37 tm
->tm_mon
= bcd2bin((y_m_d
>> 8) & 0xff) - 1;
38 tm
->tm_mday
= bcd2bin(y_m_d
& 0xff);
39 tm
->tm_hour
= bcd2bin((h_m_s_ms
>> 56) & 0xff);
40 tm
->tm_min
= bcd2bin((h_m_s_ms
>> 48) & 0xff);
41 tm
->tm_sec
= bcd2bin((h_m_s_ms
>> 40) & 0xff);
46 static void tm_to_opal(struct rtc_time
*tm
, u32
*y_m_d
, u64
*h_m_s_ms
)
48 *y_m_d
|= ((u32
)bin2bcd((tm
->tm_year
+ 1900) / 100)) << 24;
49 *y_m_d
|= ((u32
)bin2bcd((tm
->tm_year
+ 1900) % 100)) << 16;
50 *y_m_d
|= ((u32
)bin2bcd((tm
->tm_mon
+ 1))) << 8;
51 *y_m_d
|= ((u32
)bin2bcd(tm
->tm_mday
));
53 *h_m_s_ms
|= ((u64
)bin2bcd(tm
->tm_hour
)) << 56;
54 *h_m_s_ms
|= ((u64
)bin2bcd(tm
->tm_min
)) << 48;
55 *h_m_s_ms
|= ((u64
)bin2bcd(tm
->tm_sec
)) << 40;
58 static int opal_get_rtc_time(struct device
*dev
, struct rtc_time
*tm
)
67 while (rc
== OPAL_BUSY
|| rc
== OPAL_BUSY_EVENT
) {
68 rc
= opal_rtc_read(&__y_m_d
, &__h_m_s_ms
);
69 if (rc
== OPAL_BUSY_EVENT
)
70 opal_poll_events(NULL
);
71 else if (retries
-- && (rc
== OPAL_HARDWARE
72 || rc
== OPAL_INTERNAL_ERROR
))
74 else if (rc
!= OPAL_BUSY
&& rc
!= OPAL_BUSY_EVENT
)
78 if (rc
!= OPAL_SUCCESS
)
81 y_m_d
= be32_to_cpu(__y_m_d
);
82 h_m_s_ms
= be64_to_cpu(__h_m_s_ms
);
83 opal_to_tm(y_m_d
, h_m_s_ms
, tm
);
88 static int opal_set_rtc_time(struct device
*dev
, struct rtc_time
*tm
)
95 tm_to_opal(tm
, &y_m_d
, &h_m_s_ms
);
96 while (rc
== OPAL_BUSY
|| rc
== OPAL_BUSY_EVENT
) {
97 rc
= opal_rtc_write(y_m_d
, h_m_s_ms
);
98 if (rc
== OPAL_BUSY_EVENT
)
99 opal_poll_events(NULL
);
100 else if (retries
-- && (rc
== OPAL_HARDWARE
101 || rc
== OPAL_INTERNAL_ERROR
))
103 else if (rc
!= OPAL_BUSY
&& rc
!= OPAL_BUSY_EVENT
)
107 return rc
== OPAL_SUCCESS
? 0 : -EIO
;
113 * TPO get/set OPAL calls care about the hour and min and to make it consistent
114 * with the rtc utility time conversion functions, we use the 'u64' to store
115 * its value and perform bit shift by 32 before use..
117 static int opal_get_tpo_time(struct device
*dev
, struct rtc_wkalrm
*alarm
)
119 __be32 __y_m_d
, __h_m
;
125 token
= opal_async_get_token_interruptible();
127 if (token
!= -ERESTARTSYS
)
128 pr_err("Failed to get the async token\n");
133 rc
= opal_tpo_read(token
, &__y_m_d
, &__h_m
);
134 if (rc
!= OPAL_ASYNC_COMPLETION
) {
139 rc
= opal_async_wait_response(token
, &msg
);
145 rc
= opal_get_async_rc(msg
);
146 if (rc
!= OPAL_SUCCESS
) {
151 y_m_d
= be32_to_cpu(__y_m_d
);
152 h_m_s_ms
= ((u64
)be32_to_cpu(__h_m
) << 32);
154 /* check if no alarm is set */
155 if (y_m_d
== 0 && h_m_s_ms
== 0) {
156 pr_debug("No alarm is set\n");
160 pr_debug("Alarm set to %x %llx\n", y_m_d
, h_m_s_ms
);
163 opal_to_tm(y_m_d
, h_m_s_ms
, &alarm
->time
);
166 opal_async_release_token(token
);
170 /* Set Timed Power-On */
171 static int opal_set_tpo_time(struct device
*dev
, struct rtc_wkalrm
*alarm
)
178 /* if alarm is enabled */
179 if (alarm
->enabled
) {
180 tm_to_opal(&alarm
->time
, &y_m_d
, &h_m_s_ms
);
181 pr_debug("Alarm set to %x %llx\n", y_m_d
, h_m_s_ms
);
184 pr_debug("Alarm getting disabled\n");
187 token
= opal_async_get_token_interruptible();
189 if (token
!= -ERESTARTSYS
)
190 pr_err("Failed to get the async token\n");
195 /* TPO, we care about hour and minute */
196 rc
= opal_tpo_write(token
, y_m_d
,
197 (u32
)((h_m_s_ms
>> 32) & 0xffff0000));
198 if (rc
!= OPAL_ASYNC_COMPLETION
) {
203 rc
= opal_async_wait_response(token
, &msg
);
209 rc
= opal_get_async_rc(msg
);
210 if (rc
!= OPAL_SUCCESS
)
214 opal_async_release_token(token
);
218 int opal_tpo_alarm_irq_enable(struct device
*dev
, unsigned int enabled
)
220 struct rtc_wkalrm alarm
= { .enabled
= 0 };
223 * TPO is automatically enabled when opal_set_tpo_time() is called with
224 * non-zero rtc-time. We only handle disable case which needs to be
225 * explicitly told to opal.
227 return enabled
? 0 : opal_set_tpo_time(dev
, &alarm
);
230 static struct rtc_class_ops opal_rtc_ops
= {
231 .read_time
= opal_get_rtc_time
,
232 .set_time
= opal_set_rtc_time
,
235 static int opal_rtc_probe(struct platform_device
*pdev
)
237 struct rtc_device
*rtc
;
239 if (pdev
->dev
.of_node
&&
240 (of_property_read_bool(pdev
->dev
.of_node
, "wakeup-source") ||
241 of_property_read_bool(pdev
->dev
.of_node
, "has-tpo")/* legacy */)) {
242 device_set_wakeup_capable(&pdev
->dev
, true);
243 opal_rtc_ops
.read_alarm
= opal_get_tpo_time
;
244 opal_rtc_ops
.set_alarm
= opal_set_tpo_time
;
245 opal_rtc_ops
.alarm_irq_enable
= opal_tpo_alarm_irq_enable
;
248 rtc
= devm_rtc_device_register(&pdev
->dev
, DRVNAME
, &opal_rtc_ops
,
253 rtc
->uie_unsupported
= 1;
258 static const struct of_device_id opal_rtc_match
[] = {
260 .compatible
= "ibm,opal-rtc",
264 MODULE_DEVICE_TABLE(of
, opal_rtc_match
);
266 static const struct platform_device_id opal_rtc_driver_ids
[] = {
272 MODULE_DEVICE_TABLE(platform
, opal_rtc_driver_ids
);
274 static struct platform_driver opal_rtc_driver
= {
275 .probe
= opal_rtc_probe
,
276 .id_table
= opal_rtc_driver_ids
,
279 .of_match_table
= opal_rtc_match
,
283 static int __init
opal_rtc_init(void)
285 if (!firmware_has_feature(FW_FEATURE_OPAL
))
288 return platform_driver_register(&opal_rtc_driver
);
291 static void __exit
opal_rtc_exit(void)
293 platform_driver_unregister(&opal_rtc_driver
);
296 MODULE_AUTHOR("Neelesh Gupta <neelegup@linux.vnet.ibm.com>");
297 MODULE_DESCRIPTION("IBM OPAL RTC driver");
298 MODULE_LICENSE("GPL");
300 module_init(opal_rtc_init
);
301 module_exit(opal_rtc_exit
);