Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 1 | /* |
| 2 | * IBM OPAL RTC driver |
| 3 | * Copyright (C) 2014 IBM |
| 4 | * |
| 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. |
| 9 | * |
| 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. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program. |
| 17 | */ |
| 18 | |
Joe Perches | a737e83 | 2015-04-16 12:46:14 -0700 | [diff] [blame] | 19 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 20 | |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 21 | #define DRVNAME "rtc-opal" |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 22 | |
| 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> |
| 29 | #include <linux/of.h> |
| 30 | #include <asm/opal.h> |
| 31 | #include <asm/firmware.h> |
| 32 | |
| 33 | static void opal_to_tm(u32 y_m_d, u64 h_m_s_ms, struct rtc_time *tm) |
| 34 | { |
| 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); |
| 42 | |
Daniel Axtens | 00b912b | 2015-12-15 18:09:14 +1100 | [diff] [blame] | 43 | tm->tm_wday = -1; |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static void tm_to_opal(struct rtc_time *tm, u32 *y_m_d, u64 *h_m_s_ms) |
| 47 | { |
| 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)); |
| 52 | |
| 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; |
| 56 | } |
| 57 | |
| 58 | static int opal_get_rtc_time(struct device *dev, struct rtc_time *tm) |
| 59 | { |
| 60 | long rc = OPAL_BUSY; |
Stewart Smith | b7dc0f5 | 2016-08-02 11:50:16 +1000 | [diff] [blame^] | 61 | int retries = 10; |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 62 | u32 y_m_d; |
| 63 | u64 h_m_s_ms; |
| 64 | __be32 __y_m_d; |
| 65 | __be64 __h_m_s_ms; |
| 66 | |
| 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); |
Stewart Smith | b7dc0f5 | 2016-08-02 11:50:16 +1000 | [diff] [blame^] | 71 | else if (retries-- && (rc == OPAL_HARDWARE |
| 72 | || rc == OPAL_INTERNAL_ERROR)) |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 73 | msleep(10); |
Stewart Smith | b7dc0f5 | 2016-08-02 11:50:16 +1000 | [diff] [blame^] | 74 | else if (rc != OPAL_BUSY && rc != OPAL_BUSY_EVENT) |
| 75 | break; |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | if (rc != OPAL_SUCCESS) |
| 79 | return -EIO; |
| 80 | |
| 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); |
| 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | static int opal_set_rtc_time(struct device *dev, struct rtc_time *tm) |
| 89 | { |
| 90 | long rc = OPAL_BUSY; |
Stewart Smith | b7dc0f5 | 2016-08-02 11:50:16 +1000 | [diff] [blame^] | 91 | int retries = 10; |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 92 | u32 y_m_d = 0; |
| 93 | u64 h_m_s_ms = 0; |
| 94 | |
| 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); |
Stewart Smith | b7dc0f5 | 2016-08-02 11:50:16 +1000 | [diff] [blame^] | 100 | else if (retries-- && (rc == OPAL_HARDWARE |
| 101 | || rc == OPAL_INTERNAL_ERROR)) |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 102 | msleep(10); |
Stewart Smith | b7dc0f5 | 2016-08-02 11:50:16 +1000 | [diff] [blame^] | 103 | else if (rc != OPAL_BUSY && rc != OPAL_BUSY_EVENT) |
| 104 | break; |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | return rc == OPAL_SUCCESS ? 0 : -EIO; |
| 108 | } |
| 109 | |
| 110 | /* |
| 111 | * TPO Timed Power-On |
| 112 | * |
| 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.. |
| 116 | */ |
| 117 | static int opal_get_tpo_time(struct device *dev, struct rtc_wkalrm *alarm) |
| 118 | { |
| 119 | __be32 __y_m_d, __h_m; |
| 120 | struct opal_msg msg; |
| 121 | int rc, token; |
| 122 | u64 h_m_s_ms; |
| 123 | u32 y_m_d; |
| 124 | |
| 125 | token = opal_async_get_token_interruptible(); |
| 126 | if (token < 0) { |
| 127 | if (token != -ERESTARTSYS) |
| 128 | pr_err("Failed to get the async token\n"); |
| 129 | |
| 130 | return token; |
| 131 | } |
| 132 | |
| 133 | rc = opal_tpo_read(token, &__y_m_d, &__h_m); |
| 134 | if (rc != OPAL_ASYNC_COMPLETION) { |
| 135 | rc = -EIO; |
| 136 | goto exit; |
| 137 | } |
| 138 | |
| 139 | rc = opal_async_wait_response(token, &msg); |
| 140 | if (rc) { |
| 141 | rc = -EIO; |
| 142 | goto exit; |
| 143 | } |
| 144 | |
Suraj Jitindar Singh | d0226d3 | 2016-06-29 13:38:38 +1000 | [diff] [blame] | 145 | rc = opal_get_async_rc(msg); |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 146 | if (rc != OPAL_SUCCESS) { |
| 147 | rc = -EIO; |
| 148 | goto exit; |
| 149 | } |
| 150 | |
| 151 | y_m_d = be32_to_cpu(__y_m_d); |
| 152 | h_m_s_ms = ((u64)be32_to_cpu(__h_m) << 32); |
| 153 | opal_to_tm(y_m_d, h_m_s_ms, &alarm->time); |
| 154 | |
| 155 | exit: |
| 156 | opal_async_release_token(token); |
| 157 | return rc; |
| 158 | } |
| 159 | |
| 160 | /* Set Timed Power-On */ |
| 161 | static int opal_set_tpo_time(struct device *dev, struct rtc_wkalrm *alarm) |
| 162 | { |
Andrzej Hajda | c353009 | 2015-09-21 15:33:56 +0200 | [diff] [blame] | 163 | u64 h_m_s_ms = 0; |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 164 | struct opal_msg msg; |
| 165 | u32 y_m_d = 0; |
Andrzej Hajda | c353009 | 2015-09-21 15:33:56 +0200 | [diff] [blame] | 166 | int token, rc; |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 167 | |
| 168 | tm_to_opal(&alarm->time, &y_m_d, &h_m_s_ms); |
| 169 | |
| 170 | token = opal_async_get_token_interruptible(); |
| 171 | if (token < 0) { |
| 172 | if (token != -ERESTARTSYS) |
| 173 | pr_err("Failed to get the async token\n"); |
| 174 | |
| 175 | return token; |
| 176 | } |
| 177 | |
| 178 | /* TPO, we care about hour and minute */ |
| 179 | rc = opal_tpo_write(token, y_m_d, |
| 180 | (u32)((h_m_s_ms >> 32) & 0xffff0000)); |
| 181 | if (rc != OPAL_ASYNC_COMPLETION) { |
| 182 | rc = -EIO; |
| 183 | goto exit; |
| 184 | } |
| 185 | |
| 186 | rc = opal_async_wait_response(token, &msg); |
| 187 | if (rc) { |
| 188 | rc = -EIO; |
| 189 | goto exit; |
| 190 | } |
| 191 | |
Suraj Jitindar Singh | d0226d3 | 2016-06-29 13:38:38 +1000 | [diff] [blame] | 192 | rc = opal_get_async_rc(msg); |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 193 | if (rc != OPAL_SUCCESS) |
| 194 | rc = -EIO; |
| 195 | |
| 196 | exit: |
| 197 | opal_async_release_token(token); |
| 198 | return rc; |
| 199 | } |
| 200 | |
Vaibhav Jain | f4a2eec | 2015-07-14 13:28:28 +0530 | [diff] [blame] | 201 | static struct rtc_class_ops opal_rtc_ops = { |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 202 | .read_time = opal_get_rtc_time, |
| 203 | .set_time = opal_set_rtc_time, |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 204 | }; |
| 205 | |
| 206 | static int opal_rtc_probe(struct platform_device *pdev) |
| 207 | { |
| 208 | struct rtc_device *rtc; |
| 209 | |
Sudeep Holla | 347e40f | 2015-10-21 11:10:00 +0100 | [diff] [blame] | 210 | if (pdev->dev.of_node && |
| 211 | (of_property_read_bool(pdev->dev.of_node, "wakeup-source") || |
| 212 | of_property_read_bool(pdev->dev.of_node, "has-tpo")/* legacy */)) { |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 213 | device_set_wakeup_capable(&pdev->dev, true); |
Vaibhav Jain | f4a2eec | 2015-07-14 13:28:28 +0530 | [diff] [blame] | 214 | opal_rtc_ops.read_alarm = opal_get_tpo_time; |
| 215 | opal_rtc_ops.set_alarm = opal_set_tpo_time; |
| 216 | } |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 217 | |
| 218 | rtc = devm_rtc_device_register(&pdev->dev, DRVNAME, &opal_rtc_ops, |
| 219 | THIS_MODULE); |
| 220 | if (IS_ERR(rtc)) |
| 221 | return PTR_ERR(rtc); |
| 222 | |
| 223 | rtc->uie_unsupported = 1; |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | static const struct of_device_id opal_rtc_match[] = { |
| 229 | { |
| 230 | .compatible = "ibm,opal-rtc", |
| 231 | }, |
| 232 | { } |
| 233 | }; |
| 234 | MODULE_DEVICE_TABLE(of, opal_rtc_match); |
| 235 | |
| 236 | static const struct platform_device_id opal_rtc_driver_ids[] = { |
| 237 | { |
| 238 | .name = "opal-rtc", |
| 239 | }, |
| 240 | { } |
| 241 | }; |
| 242 | MODULE_DEVICE_TABLE(platform, opal_rtc_driver_ids); |
| 243 | |
| 244 | static struct platform_driver opal_rtc_driver = { |
| 245 | .probe = opal_rtc_probe, |
| 246 | .id_table = opal_rtc_driver_ids, |
| 247 | .driver = { |
| 248 | .name = DRVNAME, |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 249 | .of_match_table = opal_rtc_match, |
| 250 | }, |
| 251 | }; |
| 252 | |
| 253 | static int __init opal_rtc_init(void) |
| 254 | { |
| 255 | if (!firmware_has_feature(FW_FEATURE_OPAL)) |
| 256 | return -ENODEV; |
| 257 | |
| 258 | return platform_driver_register(&opal_rtc_driver); |
| 259 | } |
| 260 | |
| 261 | static void __exit opal_rtc_exit(void) |
| 262 | { |
| 263 | platform_driver_unregister(&opal_rtc_driver); |
| 264 | } |
| 265 | |
| 266 | MODULE_AUTHOR("Neelesh Gupta <neelegup@linux.vnet.ibm.com>"); |
| 267 | MODULE_DESCRIPTION("IBM OPAL RTC driver"); |
| 268 | MODULE_LICENSE("GPL"); |
| 269 | |
| 270 | module_init(opal_rtc_init); |
| 271 | module_exit(opal_rtc_exit); |