rtc: omap: add copyright entry
[deliverable/linux.git] / drivers / rtc / rtc-omap.c
CommitLineData
db68b189 1/*
10211ae3 2 * TI OMAP Real Time Clock interface for Linux
db68b189
DB
3 *
4 * Copyright (C) 2003 MontaVista Software, Inc.
5 * Author: George G. Davis <gdavis@mvista.com> or <source@mvista.com>
6 *
7 * Copyright (C) 2006 David Brownell (new RTC framework)
0125138d 8 * Copyright (C) 2014 Johan Hovold <johan@kernel.org>
db68b189
DB
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/module.h>
19#include <linux/ioport.h>
20#include <linux/delay.h>
21#include <linux/rtc.h>
22#include <linux/bcd.h>
23#include <linux/platform_device.h>
9e0344dc
AM
24#include <linux/of.h>
25#include <linux/of_device.h>
fc9bd902 26#include <linux/pm_runtime.h>
4b30c9fc 27#include <linux/io.h>
db68b189 28
10211ae3
JH
29/*
30 * The OMAP RTC is a year/month/day/hours/minutes/seconds BCD clock
db68b189
DB
31 * with century-range alarm matching, driven by the 32kHz clock.
32 *
33 * The main user-visible ways it differs from PC RTCs are by omitting
34 * "don't care" alarm fields and sub-second periodic IRQs, and having
35 * an autoadjust mechanism to calibrate to the true oscillator rate.
36 *
37 * Board-specific wiring options include using split power mode with
38 * RTC_OFF_NOFF used as the reset signal (so the RTC won't be reset),
39 * and wiring RTC_WAKE_INT (so the RTC alarm can wake the system from
fa5b0782
SN
40 * low power modes) for OMAP1 boards (OMAP-L138 has this built into
41 * the SoC). See the BOARD-SPECIFIC CUSTOMIZATION comment.
db68b189
DB
42 */
43
db68b189
DB
44/* RTC registers */
45#define OMAP_RTC_SECONDS_REG 0x00
46#define OMAP_RTC_MINUTES_REG 0x04
47#define OMAP_RTC_HOURS_REG 0x08
48#define OMAP_RTC_DAYS_REG 0x0C
49#define OMAP_RTC_MONTHS_REG 0x10
50#define OMAP_RTC_YEARS_REG 0x14
51#define OMAP_RTC_WEEKS_REG 0x18
52
53#define OMAP_RTC_ALARM_SECONDS_REG 0x20
54#define OMAP_RTC_ALARM_MINUTES_REG 0x24
55#define OMAP_RTC_ALARM_HOURS_REG 0x28
56#define OMAP_RTC_ALARM_DAYS_REG 0x2c
57#define OMAP_RTC_ALARM_MONTHS_REG 0x30
58#define OMAP_RTC_ALARM_YEARS_REG 0x34
59
60#define OMAP_RTC_CTRL_REG 0x40
61#define OMAP_RTC_STATUS_REG 0x44
62#define OMAP_RTC_INTERRUPTS_REG 0x48
63
64#define OMAP_RTC_COMP_LSB_REG 0x4c
65#define OMAP_RTC_COMP_MSB_REG 0x50
66#define OMAP_RTC_OSC_REG 0x54
67
cab1458c
AM
68#define OMAP_RTC_KICK0_REG 0x6c
69#define OMAP_RTC_KICK1_REG 0x70
70
8af750e3
HG
71#define OMAP_RTC_IRQWAKEEN 0x7c
72
222a12fc
JH
73#define OMAP_RTC_ALARM2_SECONDS_REG 0x80
74#define OMAP_RTC_ALARM2_MINUTES_REG 0x84
75#define OMAP_RTC_ALARM2_HOURS_REG 0x88
76#define OMAP_RTC_ALARM2_DAYS_REG 0x8c
77#define OMAP_RTC_ALARM2_MONTHS_REG 0x90
78#define OMAP_RTC_ALARM2_YEARS_REG 0x94
79
80#define OMAP_RTC_PMIC_REG 0x98
81
db68b189 82/* OMAP_RTC_CTRL_REG bit fields: */
92adb96a
SN
83#define OMAP_RTC_CTRL_SPLIT BIT(7)
84#define OMAP_RTC_CTRL_DISABLE BIT(6)
85#define OMAP_RTC_CTRL_SET_32_COUNTER BIT(5)
86#define OMAP_RTC_CTRL_TEST BIT(4)
87#define OMAP_RTC_CTRL_MODE_12_24 BIT(3)
88#define OMAP_RTC_CTRL_AUTO_COMP BIT(2)
89#define OMAP_RTC_CTRL_ROUND_30S BIT(1)
90#define OMAP_RTC_CTRL_STOP BIT(0)
db68b189
DB
91
92/* OMAP_RTC_STATUS_REG bit fields: */
92adb96a 93#define OMAP_RTC_STATUS_POWER_UP BIT(7)
222a12fc 94#define OMAP_RTC_STATUS_ALARM2 BIT(7)
92adb96a
SN
95#define OMAP_RTC_STATUS_ALARM BIT(6)
96#define OMAP_RTC_STATUS_1D_EVENT BIT(5)
97#define OMAP_RTC_STATUS_1H_EVENT BIT(4)
98#define OMAP_RTC_STATUS_1M_EVENT BIT(3)
99#define OMAP_RTC_STATUS_1S_EVENT BIT(2)
100#define OMAP_RTC_STATUS_RUN BIT(1)
101#define OMAP_RTC_STATUS_BUSY BIT(0)
db68b189
DB
102
103/* OMAP_RTC_INTERRUPTS_REG bit fields: */
222a12fc 104#define OMAP_RTC_INTERRUPTS_IT_ALARM2 BIT(4)
92adb96a
SN
105#define OMAP_RTC_INTERRUPTS_IT_ALARM BIT(3)
106#define OMAP_RTC_INTERRUPTS_IT_TIMER BIT(2)
db68b189 107
cd914bba
SN
108/* OMAP_RTC_OSC_REG bit fields: */
109#define OMAP_RTC_OSC_32KCLK_EN BIT(6)
110
8af750e3 111/* OMAP_RTC_IRQWAKEEN bit fields: */
92adb96a 112#define OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN BIT(1)
8af750e3 113
222a12fc
JH
114/* OMAP_RTC_PMIC bit fields: */
115#define OMAP_RTC_PMIC_POWER_EN_EN BIT(16)
116
cab1458c
AM
117/* OMAP_RTC_KICKER values */
118#define KICK0_VALUE 0x83e70b13
119#define KICK1_VALUE 0x95a4f1e0
120
2153f949
JH
121struct omap_rtc_device_type {
122 bool has_32kclk_en;
123 bool has_kicker;
124 bool has_irqwakeen;
222a12fc 125 bool has_pmic_mode;
9291e340 126 bool has_power_up_reset;
2153f949 127};
cd914bba 128
55ba953a
JH
129struct omap_rtc {
130 struct rtc_device *rtc;
131 void __iomem *base;
132 int irq_alarm;
133 int irq_timer;
134 u8 interrupts_reg;
222a12fc 135 bool is_pmic_controller;
2153f949 136 const struct omap_rtc_device_type *type;
55ba953a 137};
db68b189 138
55ba953a
JH
139static inline u8 rtc_read(struct omap_rtc *rtc, unsigned int reg)
140{
141 return readb(rtc->base + reg);
142}
cab1458c 143
c253a896
JH
144static inline u32 rtc_readl(struct omap_rtc *rtc, unsigned int reg)
145{
146 return readl(rtc->base + reg);
147}
148
55ba953a
JH
149static inline void rtc_write(struct omap_rtc *rtc, unsigned int reg, u8 val)
150{
151 writeb(val, rtc->base + reg);
152}
db68b189 153
55ba953a
JH
154static inline void rtc_writel(struct omap_rtc *rtc, unsigned int reg, u32 val)
155{
156 writel(val, rtc->base + reg);
157}
db68b189 158
10211ae3
JH
159/*
160 * We rely on the rtc framework to handle locking (rtc->ops_lock),
db68b189
DB
161 * so the only other requirement is that register accesses which
162 * require BUSY to be clear are made with IRQs locally disabled
163 */
55ba953a 164static void rtc_wait_not_busy(struct omap_rtc *rtc)
db68b189 165{
10211ae3
JH
166 int count;
167 u8 status;
db68b189
DB
168
169 /* BUSY may stay active for 1/32768 second (~30 usec) */
170 for (count = 0; count < 50; count++) {
55ba953a 171 status = rtc_read(rtc, OMAP_RTC_STATUS_REG);
10211ae3 172 if (!(status & OMAP_RTC_STATUS_BUSY))
db68b189
DB
173 break;
174 udelay(1);
175 }
176 /* now we have ~15 usec to read/write various registers */
177}
178
55ba953a 179static irqreturn_t rtc_irq(int irq, void *dev_id)
db68b189 180{
10211ae3
JH
181 struct omap_rtc *rtc = dev_id;
182 unsigned long events = 0;
183 u8 irq_data;
db68b189 184
55ba953a 185 irq_data = rtc_read(rtc, OMAP_RTC_STATUS_REG);
db68b189
DB
186
187 /* alarm irq? */
188 if (irq_data & OMAP_RTC_STATUS_ALARM) {
55ba953a 189 rtc_write(rtc, OMAP_RTC_STATUS_REG, OMAP_RTC_STATUS_ALARM);
db68b189
DB
190 events |= RTC_IRQF | RTC_AF;
191 }
192
193 /* 1/sec periodic/update irq? */
194 if (irq_data & OMAP_RTC_STATUS_1S_EVENT)
195 events |= RTC_IRQF | RTC_UF;
196
55ba953a 197 rtc_update_irq(rtc->rtc, 1, events);
db68b189
DB
198
199 return IRQ_HANDLED;
200}
201
16380c15
JS
202static int omap_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
203{
55ba953a 204 struct omap_rtc *rtc = dev_get_drvdata(dev);
ab7f580b 205 u8 reg, irqwake_reg = 0;
16380c15
JS
206
207 local_irq_disable();
55ba953a
JH
208 rtc_wait_not_busy(rtc);
209 reg = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG);
2153f949 210 if (rtc->type->has_irqwakeen)
55ba953a 211 irqwake_reg = rtc_read(rtc, OMAP_RTC_IRQWAKEEN);
ab7f580b
LV
212
213 if (enabled) {
16380c15 214 reg |= OMAP_RTC_INTERRUPTS_IT_ALARM;
ab7f580b
LV
215 irqwake_reg |= OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN;
216 } else {
16380c15 217 reg &= ~OMAP_RTC_INTERRUPTS_IT_ALARM;
ab7f580b
LV
218 irqwake_reg &= ~OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN;
219 }
55ba953a
JH
220 rtc_wait_not_busy(rtc);
221 rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, reg);
2153f949 222 if (rtc->type->has_irqwakeen)
55ba953a 223 rtc_write(rtc, OMAP_RTC_IRQWAKEEN, irqwake_reg);
16380c15
JS
224 local_irq_enable();
225
226 return 0;
227}
228
db68b189
DB
229/* this hardware doesn't support "don't care" alarm fields */
230static int tm2bcd(struct rtc_time *tm)
231{
232 if (rtc_valid_tm(tm) != 0)
233 return -EINVAL;
234
fe20ba70
AB
235 tm->tm_sec = bin2bcd(tm->tm_sec);
236 tm->tm_min = bin2bcd(tm->tm_min);
237 tm->tm_hour = bin2bcd(tm->tm_hour);
238 tm->tm_mday = bin2bcd(tm->tm_mday);
db68b189 239
fe20ba70 240 tm->tm_mon = bin2bcd(tm->tm_mon + 1);
db68b189
DB
241
242 /* epoch == 1900 */
243 if (tm->tm_year < 100 || tm->tm_year > 199)
244 return -EINVAL;
fe20ba70 245 tm->tm_year = bin2bcd(tm->tm_year - 100);
db68b189
DB
246
247 return 0;
248}
249
250static void bcd2tm(struct rtc_time *tm)
251{
fe20ba70
AB
252 tm->tm_sec = bcd2bin(tm->tm_sec);
253 tm->tm_min = bcd2bin(tm->tm_min);
254 tm->tm_hour = bcd2bin(tm->tm_hour);
255 tm->tm_mday = bcd2bin(tm->tm_mday);
256 tm->tm_mon = bcd2bin(tm->tm_mon) - 1;
db68b189 257 /* epoch == 1900 */
fe20ba70 258 tm->tm_year = bcd2bin(tm->tm_year) + 100;
db68b189
DB
259}
260
cbbe326f 261static void omap_rtc_read_time_raw(struct omap_rtc *rtc, struct rtc_time *tm)
db68b189 262{
55ba953a
JH
263 tm->tm_sec = rtc_read(rtc, OMAP_RTC_SECONDS_REG);
264 tm->tm_min = rtc_read(rtc, OMAP_RTC_MINUTES_REG);
265 tm->tm_hour = rtc_read(rtc, OMAP_RTC_HOURS_REG);
266 tm->tm_mday = rtc_read(rtc, OMAP_RTC_DAYS_REG);
267 tm->tm_mon = rtc_read(rtc, OMAP_RTC_MONTHS_REG);
268 tm->tm_year = rtc_read(rtc, OMAP_RTC_YEARS_REG);
cbbe326f
JH
269}
270
271static int omap_rtc_read_time(struct device *dev, struct rtc_time *tm)
272{
273 struct omap_rtc *rtc = dev_get_drvdata(dev);
db68b189 274
cbbe326f
JH
275 /* we don't report wday/yday/isdst ... */
276 local_irq_disable();
277 rtc_wait_not_busy(rtc);
278 omap_rtc_read_time_raw(rtc, tm);
db68b189
DB
279 local_irq_enable();
280
281 bcd2tm(tm);
10211ae3 282
db68b189
DB
283 return 0;
284}
285
286static int omap_rtc_set_time(struct device *dev, struct rtc_time *tm)
287{
55ba953a
JH
288 struct omap_rtc *rtc = dev_get_drvdata(dev);
289
db68b189
DB
290 if (tm2bcd(tm) < 0)
291 return -EINVAL;
10211ae3 292
db68b189 293 local_irq_disable();
55ba953a 294 rtc_wait_not_busy(rtc);
db68b189 295
55ba953a
JH
296 rtc_write(rtc, OMAP_RTC_YEARS_REG, tm->tm_year);
297 rtc_write(rtc, OMAP_RTC_MONTHS_REG, tm->tm_mon);
298 rtc_write(rtc, OMAP_RTC_DAYS_REG, tm->tm_mday);
299 rtc_write(rtc, OMAP_RTC_HOURS_REG, tm->tm_hour);
300 rtc_write(rtc, OMAP_RTC_MINUTES_REG, tm->tm_min);
301 rtc_write(rtc, OMAP_RTC_SECONDS_REG, tm->tm_sec);
db68b189
DB
302
303 local_irq_enable();
304
305 return 0;
306}
307
308static int omap_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
309{
55ba953a 310 struct omap_rtc *rtc = dev_get_drvdata(dev);
10211ae3 311 u8 interrupts;
55ba953a 312
db68b189 313 local_irq_disable();
55ba953a 314 rtc_wait_not_busy(rtc);
db68b189 315
55ba953a
JH
316 alm->time.tm_sec = rtc_read(rtc, OMAP_RTC_ALARM_SECONDS_REG);
317 alm->time.tm_min = rtc_read(rtc, OMAP_RTC_ALARM_MINUTES_REG);
318 alm->time.tm_hour = rtc_read(rtc, OMAP_RTC_ALARM_HOURS_REG);
319 alm->time.tm_mday = rtc_read(rtc, OMAP_RTC_ALARM_DAYS_REG);
320 alm->time.tm_mon = rtc_read(rtc, OMAP_RTC_ALARM_MONTHS_REG);
321 alm->time.tm_year = rtc_read(rtc, OMAP_RTC_ALARM_YEARS_REG);
db68b189
DB
322
323 local_irq_enable();
324
325 bcd2tm(&alm->time);
10211ae3
JH
326
327 interrupts = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG);
328 alm->enabled = !!(interrupts & OMAP_RTC_INTERRUPTS_IT_ALARM);
db68b189
DB
329
330 return 0;
331}
332
333static int omap_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alm)
334{
55ba953a 335 struct omap_rtc *rtc = dev_get_drvdata(dev);
ab7f580b 336 u8 reg, irqwake_reg = 0;
db68b189 337
db68b189
DB
338 if (tm2bcd(&alm->time) < 0)
339 return -EINVAL;
340
341 local_irq_disable();
55ba953a 342 rtc_wait_not_busy(rtc);
db68b189 343
55ba953a
JH
344 rtc_write(rtc, OMAP_RTC_ALARM_YEARS_REG, alm->time.tm_year);
345 rtc_write(rtc, OMAP_RTC_ALARM_MONTHS_REG, alm->time.tm_mon);
346 rtc_write(rtc, OMAP_RTC_ALARM_DAYS_REG, alm->time.tm_mday);
347 rtc_write(rtc, OMAP_RTC_ALARM_HOURS_REG, alm->time.tm_hour);
348 rtc_write(rtc, OMAP_RTC_ALARM_MINUTES_REG, alm->time.tm_min);
349 rtc_write(rtc, OMAP_RTC_ALARM_SECONDS_REG, alm->time.tm_sec);
db68b189 350
55ba953a 351 reg = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG);
2153f949 352 if (rtc->type->has_irqwakeen)
55ba953a 353 irqwake_reg = rtc_read(rtc, OMAP_RTC_IRQWAKEEN);
ab7f580b
LV
354
355 if (alm->enabled) {
db68b189 356 reg |= OMAP_RTC_INTERRUPTS_IT_ALARM;
ab7f580b
LV
357 irqwake_reg |= OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN;
358 } else {
db68b189 359 reg &= ~OMAP_RTC_INTERRUPTS_IT_ALARM;
ab7f580b
LV
360 irqwake_reg &= ~OMAP_RTC_IRQWAKEEN_ALARM_WAKEEN;
361 }
55ba953a 362 rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, reg);
2153f949 363 if (rtc->type->has_irqwakeen)
55ba953a 364 rtc_write(rtc, OMAP_RTC_IRQWAKEEN, irqwake_reg);
db68b189
DB
365
366 local_irq_enable();
367
368 return 0;
369}
370
222a12fc
JH
371static struct omap_rtc *omap_rtc_power_off_rtc;
372
373/*
374 * omap_rtc_poweroff: RTC-controlled power off
375 *
376 * The RTC can be used to control an external PMIC via the pmic_power_en pin,
377 * which can be configured to transition to OFF on ALARM2 events.
378 *
379 * Notes:
380 * The two-second alarm offset is the shortest offset possible as the alarm
381 * registers must be set before the next timer update and the offset
382 * calculation is too heavy for everything to be done within a single access
383 * period (~15 us).
384 *
385 * Called with local interrupts disabled.
386 */
387static void omap_rtc_power_off(void)
388{
389 struct omap_rtc *rtc = omap_rtc_power_off_rtc;
390 struct rtc_time tm;
391 unsigned long now;
392 u32 val;
393
394 /* enable pmic_power_en control */
395 val = rtc_readl(rtc, OMAP_RTC_PMIC_REG);
396 rtc_writel(rtc, OMAP_RTC_PMIC_REG, val | OMAP_RTC_PMIC_POWER_EN_EN);
397
398 /* set alarm two seconds from now */
399 omap_rtc_read_time_raw(rtc, &tm);
400 bcd2tm(&tm);
401 rtc_tm_to_time(&tm, &now);
402 rtc_time_to_tm(now + 2, &tm);
403
404 if (tm2bcd(&tm) < 0) {
405 dev_err(&rtc->rtc->dev, "power off failed\n");
406 return;
407 }
408
409 rtc_wait_not_busy(rtc);
410
411 rtc_write(rtc, OMAP_RTC_ALARM2_SECONDS_REG, tm.tm_sec);
412 rtc_write(rtc, OMAP_RTC_ALARM2_MINUTES_REG, tm.tm_min);
413 rtc_write(rtc, OMAP_RTC_ALARM2_HOURS_REG, tm.tm_hour);
414 rtc_write(rtc, OMAP_RTC_ALARM2_DAYS_REG, tm.tm_mday);
415 rtc_write(rtc, OMAP_RTC_ALARM2_MONTHS_REG, tm.tm_mon);
416 rtc_write(rtc, OMAP_RTC_ALARM2_YEARS_REG, tm.tm_year);
417
418 /*
419 * enable ALARM2 interrupt
420 *
421 * NOTE: this fails on AM3352 if rtc_write (writeb) is used
422 */
423 val = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG);
424 rtc_writel(rtc, OMAP_RTC_INTERRUPTS_REG,
425 val | OMAP_RTC_INTERRUPTS_IT_ALARM2);
426
427 /*
428 * Wait for alarm to trigger (within two seconds) and external PMIC to
429 * power off the system. Add a 500 ms margin for external latencies
430 * (e.g. debounce circuits).
431 */
432 mdelay(2500);
433}
434
db68b189 435static struct rtc_class_ops omap_rtc_ops = {
db68b189
DB
436 .read_time = omap_rtc_read_time,
437 .set_time = omap_rtc_set_time,
438 .read_alarm = omap_rtc_read_alarm,
439 .set_alarm = omap_rtc_set_alarm,
16380c15 440 .alarm_irq_enable = omap_rtc_alarm_irq_enable,
db68b189
DB
441};
442
2153f949 443static const struct omap_rtc_device_type omap_rtc_default_type = {
9291e340 444 .has_power_up_reset = true,
2153f949
JH
445};
446
447static const struct omap_rtc_device_type omap_rtc_am3352_type = {
448 .has_32kclk_en = true,
449 .has_kicker = true,
450 .has_irqwakeen = true,
222a12fc 451 .has_pmic_mode = true,
2153f949
JH
452};
453
454static const struct omap_rtc_device_type omap_rtc_da830_type = {
455 .has_kicker = true,
456};
9e0344dc 457
2153f949 458static const struct platform_device_id omap_rtc_id_table[] = {
cab1458c 459 {
a430ca22 460 .name = "omap_rtc",
2153f949
JH
461 .driver_data = (kernel_ulong_t)&omap_rtc_default_type,
462 }, {
8af750e3 463 .name = "am3352-rtc",
2153f949
JH
464 .driver_data = (kernel_ulong_t)&omap_rtc_am3352_type,
465 }, {
cab1458c 466 .name = "da830-rtc",
2153f949
JH
467 .driver_data = (kernel_ulong_t)&omap_rtc_da830_type,
468 }, {
469 /* sentinel */
470 }
cab1458c 471};
2153f949 472MODULE_DEVICE_TABLE(platform, omap_rtc_id_table);
cab1458c 473
9e0344dc 474static const struct of_device_id omap_rtc_of_match[] = {
2153f949
JH
475 {
476 .compatible = "ti,am3352-rtc",
477 .data = &omap_rtc_am3352_type,
478 }, {
479 .compatible = "ti,da830-rtc",
480 .data = &omap_rtc_da830_type,
481 }, {
482 /* sentinel */
483 }
9e0344dc
AM
484};
485MODULE_DEVICE_TABLE(of, omap_rtc_of_match);
486
71fc8224 487static int __init omap_rtc_probe(struct platform_device *pdev)
db68b189 488{
10211ae3
JH
489 struct omap_rtc *rtc;
490 struct resource *res;
491 u8 reg, mask, new_ctrl;
cab1458c 492 const struct platform_device_id *id_entry;
9e0344dc 493 const struct of_device_id *of_id;
437b37a6 494 int ret;
9e0344dc 495
55ba953a
JH
496 rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
497 if (!rtc)
498 return -ENOMEM;
499
9e0344dc 500 of_id = of_match_device(omap_rtc_of_match, &pdev->dev);
2153f949
JH
501 if (of_id) {
502 rtc->type = of_id->data;
222a12fc
JH
503 rtc->is_pmic_controller = rtc->type->has_pmic_mode &&
504 of_property_read_bool(pdev->dev.of_node,
505 "ti,system-power-controller");
2153f949
JH
506 } else {
507 id_entry = platform_get_device_id(pdev);
508 rtc->type = (void *)id_entry->driver_data;
337b600f
SN
509 }
510
55ba953a
JH
511 rtc->irq_timer = platform_get_irq(pdev, 0);
512 if (rtc->irq_timer <= 0)
db68b189 513 return -ENOENT;
db68b189 514
55ba953a
JH
515 rtc->irq_alarm = platform_get_irq(pdev, 1);
516 if (rtc->irq_alarm <= 0)
db68b189 517 return -ENOENT;
db68b189 518
db68b189 519 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
55ba953a
JH
520 rtc->base = devm_ioremap_resource(&pdev->dev, res);
521 if (IS_ERR(rtc->base))
522 return PTR_ERR(rtc->base);
523
524 platform_set_drvdata(pdev, rtc);
8cfde8c1 525
fc9bd902
VH
526 /* Enable the clock/module so that we can access the registers */
527 pm_runtime_enable(&pdev->dev);
528 pm_runtime_get_sync(&pdev->dev);
529
2153f949 530 if (rtc->type->has_kicker) {
55ba953a
JH
531 rtc_writel(rtc, OMAP_RTC_KICK0_REG, KICK0_VALUE);
532 rtc_writel(rtc, OMAP_RTC_KICK1_REG, KICK1_VALUE);
cab1458c
AM
533 }
534
1ed8b5d2
JH
535 /*
536 * disable interrupts
537 *
538 * NOTE: ALARM2 is not cleared on AM3352 if rtc_write (writeb) is used
db68b189 539 */
55ba953a 540 rtc_writel(rtc, OMAP_RTC_INTERRUPTS_REG, 0);
db68b189 541
cd914bba 542 /* enable RTC functional clock */
2153f949 543 if (rtc->type->has_32kclk_en) {
55ba953a
JH
544 reg = rtc_read(rtc, OMAP_RTC_OSC_REG);
545 rtc_writel(rtc, OMAP_RTC_OSC_REG,
546 reg | OMAP_RTC_OSC_32KCLK_EN);
44c63a57 547 }
cd914bba 548
db68b189 549 /* clear old status */
55ba953a 550 reg = rtc_read(rtc, OMAP_RTC_STATUS_REG);
9291e340
JH
551
552 mask = OMAP_RTC_STATUS_ALARM;
553
222a12fc
JH
554 if (rtc->type->has_pmic_mode)
555 mask |= OMAP_RTC_STATUS_ALARM2;
556
9291e340
JH
557 if (rtc->type->has_power_up_reset) {
558 mask |= OMAP_RTC_STATUS_POWER_UP;
559 if (reg & OMAP_RTC_STATUS_POWER_UP)
560 dev_info(&pdev->dev, "RTC power up reset detected\n");
db68b189 561 }
9291e340
JH
562
563 if (reg & mask)
564 rtc_write(rtc, OMAP_RTC_STATUS_REG, reg & mask);
db68b189 565
db68b189 566 /* On boards with split power, RTC_ON_NOFF won't reset the RTC */
55ba953a 567 reg = rtc_read(rtc, OMAP_RTC_CTRL_REG);
10211ae3 568 if (reg & OMAP_RTC_CTRL_STOP)
397b630a 569 dev_info(&pdev->dev, "already running\n");
db68b189
DB
570
571 /* force to 24 hour mode */
10211ae3 572 new_ctrl = reg & (OMAP_RTC_CTRL_SPLIT | OMAP_RTC_CTRL_AUTO_COMP);
db68b189
DB
573 new_ctrl |= OMAP_RTC_CTRL_STOP;
574
10211ae3
JH
575 /*
576 * BOARD-SPECIFIC CUSTOMIZATION CAN GO HERE:
db68b189 577 *
fa5b0782
SN
578 * - Device wake-up capability setting should come through chip
579 * init logic. OMAP1 boards should initialize the "wakeup capable"
580 * flag in the platform device if the board is wired right for
581 * being woken up by RTC alarm. For OMAP-L138, this capability
582 * is built into the SoC by the "Deep Sleep" capability.
db68b189
DB
583 *
584 * - Boards wired so RTC_ON_nOFF is used as the reset signal,
585 * rather than nPWRON_RESET, should forcibly enable split
586 * power mode. (Some chip errata report that RTC_CTRL_SPLIT
587 * is write-only, and always reads as zero...)
588 */
db68b189 589
10211ae3 590 if (new_ctrl & OMAP_RTC_CTRL_SPLIT)
397b630a 591 dev_info(&pdev->dev, "split power mode\n");
db68b189
DB
592
593 if (reg != new_ctrl)
55ba953a 594 rtc_write(rtc, OMAP_RTC_CTRL_REG, new_ctrl);
db68b189 595
4390ce00
JH
596 device_init_wakeup(&pdev->dev, true);
597
55ba953a 598 rtc->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
4390ce00 599 &omap_rtc_ops, THIS_MODULE);
55ba953a
JH
600 if (IS_ERR(rtc->rtc)) {
601 ret = PTR_ERR(rtc->rtc);
4390ce00
JH
602 goto err;
603 }
4390ce00
JH
604
605 /* handle periodic and alarm irqs */
55ba953a
JH
606 ret = devm_request_irq(&pdev->dev, rtc->irq_timer, rtc_irq, 0,
607 dev_name(&rtc->rtc->dev), rtc);
4390ce00
JH
608 if (ret)
609 goto err;
610
55ba953a
JH
611 if (rtc->irq_timer != rtc->irq_alarm) {
612 ret = devm_request_irq(&pdev->dev, rtc->irq_alarm, rtc_irq, 0,
613 dev_name(&rtc->rtc->dev), rtc);
4390ce00
JH
614 if (ret)
615 goto err;
616 }
617
222a12fc
JH
618 if (rtc->is_pmic_controller) {
619 if (!pm_power_off) {
620 omap_rtc_power_off_rtc = rtc;
621 pm_power_off = omap_rtc_power_off;
622 }
623 }
624
db68b189
DB
625 return 0;
626
437b37a6 627err:
7ecd9a3f 628 device_init_wakeup(&pdev->dev, false);
2153f949 629 if (rtc->type->has_kicker)
55ba953a 630 rtc_writel(rtc, OMAP_RTC_KICK0_REG, 0);
fc9bd902
VH
631 pm_runtime_put_sync(&pdev->dev);
632 pm_runtime_disable(&pdev->dev);
437b37a6
JH
633
634 return ret;
db68b189
DB
635}
636
71fc8224 637static int __exit omap_rtc_remove(struct platform_device *pdev)
db68b189 638{
55ba953a 639 struct omap_rtc *rtc = platform_get_drvdata(pdev);
db68b189 640
222a12fc
JH
641 if (pm_power_off == omap_rtc_power_off &&
642 omap_rtc_power_off_rtc == rtc) {
643 pm_power_off = NULL;
644 omap_rtc_power_off_rtc = NULL;
645 }
646
db68b189
DB
647 device_init_wakeup(&pdev->dev, 0);
648
649 /* leave rtc running, but disable irqs */
55ba953a 650 rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, 0);
db68b189 651
2153f949 652 if (rtc->type->has_kicker)
55ba953a 653 rtc_writel(rtc, OMAP_RTC_KICK0_REG, 0);
fc9bd902
VH
654
655 /* Disable the clock/module */
656 pm_runtime_put_sync(&pdev->dev);
657 pm_runtime_disable(&pdev->dev);
658
db68b189
DB
659 return 0;
660}
661
04ebc359 662#ifdef CONFIG_PM_SLEEP
04ebc359 663static int omap_rtc_suspend(struct device *dev)
db68b189 664{
55ba953a
JH
665 struct omap_rtc *rtc = dev_get_drvdata(dev);
666
667 rtc->interrupts_reg = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG);
db68b189 668
10211ae3
JH
669 /*
670 * FIXME: the RTC alarm is not currently acting as a wakeup event
8af750e3
HG
671 * source on some platforms, and in fact this enable() call is just
672 * saving a flag that's never used...
db68b189 673 */
ab7f580b 674 if (device_may_wakeup(dev))
55ba953a 675 enable_irq_wake(rtc->irq_alarm);
ab7f580b 676 else
55ba953a 677 rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, 0);
db68b189 678
fc9bd902 679 /* Disable the clock/module */
04ebc359 680 pm_runtime_put_sync(dev);
fc9bd902 681
db68b189
DB
682 return 0;
683}
684
04ebc359 685static int omap_rtc_resume(struct device *dev)
db68b189 686{
55ba953a
JH
687 struct omap_rtc *rtc = dev_get_drvdata(dev);
688
fc9bd902 689 /* Enable the clock/module so that we can access the registers */
04ebc359 690 pm_runtime_get_sync(dev);
fc9bd902 691
ab7f580b 692 if (device_may_wakeup(dev))
55ba953a 693 disable_irq_wake(rtc->irq_alarm);
ab7f580b 694 else
55ba953a 695 rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, rtc->interrupts_reg);
ab7f580b 696
db68b189
DB
697 return 0;
698}
db68b189
DB
699#endif
700
04ebc359
JH
701static SIMPLE_DEV_PM_OPS(omap_rtc_pm_ops, omap_rtc_suspend, omap_rtc_resume);
702
db68b189
DB
703static void omap_rtc_shutdown(struct platform_device *pdev)
704{
55ba953a 705 struct omap_rtc *rtc = platform_get_drvdata(pdev);
8ad5c722 706 u8 mask;
55ba953a 707
8ad5c722
JH
708 /*
709 * Keep the ALARM interrupt enabled to allow the system to power up on
710 * alarm events.
711 */
712 mask = rtc_read(rtc, OMAP_RTC_INTERRUPTS_REG);
713 mask &= OMAP_RTC_INTERRUPTS_IT_ALARM;
714 rtc_write(rtc, OMAP_RTC_INTERRUPTS_REG, mask);
db68b189
DB
715}
716
db68b189 717static struct platform_driver omap_rtc_driver = {
71fc8224 718 .remove = __exit_p(omap_rtc_remove),
db68b189
DB
719 .shutdown = omap_rtc_shutdown,
720 .driver = {
a430ca22 721 .name = "omap_rtc",
db68b189 722 .owner = THIS_MODULE,
04ebc359 723 .pm = &omap_rtc_pm_ops,
616b7341 724 .of_match_table = omap_rtc_of_match,
db68b189 725 },
2153f949 726 .id_table = omap_rtc_id_table,
db68b189
DB
727};
728
09c5a36b 729module_platform_driver_probe(omap_rtc_driver, omap_rtc_probe);
db68b189 730
a430ca22 731MODULE_ALIAS("platform:omap_rtc");
db68b189
DB
732MODULE_AUTHOR("George G. Davis (and others)");
733MODULE_LICENSE("GPL");
This page took 0.699036 seconds and 5 git commands to generate.