1 // SPDX-License-Identifier: GPL-2.0+
4 * Gururaja Hebbar gururajakr@sanyo.co.in
6 * reference linux-2.6.20.6/drivers/rtc/rtc-pl031.c
15 #include <asm/types.h>
18 * Register definitions
20 #define RTC_DR 0x00 /* Data read register */
21 #define RTC_MR 0x04 /* Match register */
22 #define RTC_LR 0x08 /* Data load register */
23 #define RTC_CR 0x0c /* Control register */
24 #define RTC_IMSC 0x10 /* Interrupt mask and set register */
25 #define RTC_RIS 0x14 /* Raw interrupt status register */
26 #define RTC_MIS 0x18 /* Masked interrupt status register */
27 #define RTC_ICR 0x1c /* Interrupt clear register */
29 #define RTC_CR_START (1 << 0)
31 struct pl031_platdata {
35 static inline u32 pl031_read_reg(struct udevice *dev, int reg)
37 struct pl031_platdata *pdata = dev_get_platdata(dev);
39 return readl(pdata->base + reg);
42 static inline u32 pl031_write_reg(struct udevice *dev, int reg, u32 value)
44 struct pl031_platdata *pdata = dev_get_platdata(dev);
46 return writel(value, pdata->base + reg);
52 static int pl031_probe(struct udevice *dev)
54 /* Enable RTC Start in Control register*/
55 pl031_write_reg(dev, RTC_CR, RTC_CR_START);
61 * Get the current time from the RTC
63 static int pl031_get(struct udevice *dev, struct rtc_time *tm)
70 tim = pl031_read_reg(dev, RTC_DR);
74 debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
75 tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday,
76 tm->tm_hour, tm->tm_min, tm->tm_sec);
84 static int pl031_set(struct udevice *dev, const struct rtc_time *tm)
91 debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
92 tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday,
93 tm->tm_hour, tm->tm_min, tm->tm_sec);
95 /* Calculate number of seconds this incoming time represents */
98 pl031_write_reg(dev, RTC_LR, tim);
104 * Reset the RTC. We set the date back to 1970-01-01.
106 static int pl031_reset(struct udevice *dev)
108 pl031_write_reg(dev, RTC_LR, 0);
113 static const struct rtc_ops pl031_ops = {
116 .reset = pl031_reset,
119 static const struct udevice_id pl031_ids[] = {
120 { .compatible = "arm,pl031" },
124 static int pl031_ofdata_to_platdata(struct udevice *dev)
126 struct pl031_platdata *pdata = dev_get_platdata(dev);
128 pdata->base = dev_read_addr(dev);
133 U_BOOT_DRIVER(rtc_pl031) = {
136 .of_match = pl031_ids,
137 .probe = pl031_probe,
138 .ofdata_to_platdata = pl031_ofdata_to_platdata,
139 .platdata_auto_alloc_size = sizeof(struct pl031_platdata),