Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | // SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2011 DENX Software Engineering GmbH * Heiko Schocher <hs@denx.de> * Copyright (C) 2021 Dario Binacchi <dariobin@libero.it> */ #include <command.h> #include <dm.h> #include <clk.h> #include <log.h> #include <rtc.h> #include <asm/io.h> #include <dm/device_compat.h> #include <linux/delay.h> /* RTC registers */ #define OMAP_RTC_SECONDS_REG 0x00 #define OMAP_RTC_MINUTES_REG 0x04 #define OMAP_RTC_HOURS_REG 0x08 #define OMAP_RTC_DAYS_REG 0x0C #define OMAP_RTC_MONTHS_REG 0x10 #define OMAP_RTC_YEARS_REG 0x14 #define OMAP_RTC_WEEKS_REG 0x18 #define OMAP_RTC_CTRL_REG 0x40 #define OMAP_RTC_STATUS_REG 0x44 #define OMAP_RTC_INTERRUPTS_REG 0x48 #define OMAP_RTC_OSC_REG 0x54 #define OMAP_RTC_SCRATCH0_REG 0x60 #define OMAP_RTC_SCRATCH1_REG 0x64 #define OMAP_RTC_SCRATCH2_REG 0x68 #define OMAP_RTC_KICK0_REG 0x6c #define OMAP_RTC_KICK1_REG 0x70 #define OMAP_RTC_PMIC_REG 0x98 /* OMAP_RTC_CTRL_REG bit fields: */ #define OMAP_RTC_CTRL_SPLIT BIT(7) #define OMAP_RTC_CTRL_DISABLE BIT(6) #define OMAP_RTC_CTRL_SET_32_COUNTER BIT(5) #define OMAP_RTC_CTRL_TEST BIT(4) #define OMAP_RTC_CTRL_MODE_12_24 BIT(3) #define OMAP_RTC_CTRL_AUTO_COMP BIT(2) #define OMAP_RTC_CTRL_ROUND_30S BIT(1) #define OMAP_RTC_CTRL_STOP BIT(0) /* OMAP_RTC_STATUS_REG bit fields */ #define OMAP_RTC_STATUS_POWER_UP BIT(7) #define OMAP_RTC_STATUS_ALARM2 BIT(7) #define OMAP_RTC_STATUS_ALARM BIT(6) #define OMAP_RTC_STATUS_1D_EVENT BIT(5) #define OMAP_RTC_STATUS_1H_EVENT BIT(4) #define OMAP_RTC_STATUS_1M_EVENT BIT(3) #define OMAP_RTC_STATUS_1S_EVENT BIT(2) #define OMAP_RTC_STATUS_RUN BIT(1) #define OMAP_RTC_STATUS_BUSY BIT(0) /* OMAP_RTC_OSC_REG bit fields */ #define OMAP_RTC_OSC_32KCLK_EN BIT(6) #define OMAP_RTC_OSC_SEL_32KCLK_SRC BIT(3) #define OMAP_RTC_OSC_OSC32K_GZ_DISABLE BIT(4) /* OMAP_RTC_KICKER values */ #define OMAP_RTC_KICK0_VALUE 0x83e70b13 #define OMAP_RTC_KICK1_VALUE 0x95a4f1e0 struct omap_rtc_device_type { bool has_32kclk_en; bool has_irqwakeen; bool has_pmic_mode; bool has_power_up_reset; }; struct omap_rtc_priv { fdt_addr_t base; u8 max_reg; struct udevice *dev; struct clk clk; bool has_ext_clk; const struct omap_rtc_device_type *type; }; static inline u8 omap_rtc_readb(struct omap_rtc_priv *priv, unsigned int reg) { return readb(priv->base + reg); } static inline u32 omap_rtc_readl(struct omap_rtc_priv *priv, unsigned int reg) { return readl(priv->base + reg); } static inline void omap_rtc_writeb(struct omap_rtc_priv *priv, unsigned int reg, u8 val) { writeb(val, priv->base + reg); } static inline void omap_rtc_writel(struct omap_rtc_priv *priv, unsigned int reg, u32 val) { writel(val, priv->base + reg); } static inline void omap_rtc_unlock(struct omap_rtc_priv *priv) { omap_rtc_writel(priv, OMAP_RTC_KICK0_REG, OMAP_RTC_KICK0_VALUE); omap_rtc_writel(priv, OMAP_RTC_KICK1_REG, OMAP_RTC_KICK1_VALUE); } static inline void omap_rtc_lock(struct omap_rtc_priv *priv) { omap_rtc_writel(priv, OMAP_RTC_KICK0_REG, 0); omap_rtc_writel(priv, OMAP_RTC_KICK1_REG, 0); } static int omap_rtc_wait_not_busy(struct omap_rtc_priv *priv) { int count; u8 status; status = omap_rtc_readb(priv, OMAP_RTC_STATUS_REG); if ((status & OMAP_RTC_STATUS_RUN) != OMAP_RTC_STATUS_RUN) { printf("RTC doesn't run\n"); return -1; } /* BUSY may stay active for 1/32768 second (~30 usec) */ for (count = 0; count < 50; count++) { if (!(status & OMAP_RTC_STATUS_BUSY)) break; udelay(1); status = omap_rtc_readb(priv, OMAP_RTC_STATUS_REG); } /* now we have ~15 usec to read/write various registers */ return 0; } static int omap_rtc_reset(struct udevice *dev) { struct omap_rtc_priv *priv = dev_get_priv(dev); /* run RTC counter */ omap_rtc_writeb(priv, OMAP_RTC_CTRL_REG, 0x01); return 0; } static int omap_rtc_set(struct udevice *dev, const struct rtc_time *tm) { struct omap_rtc_priv *priv = dev_get_priv(dev); int ret; ret = omap_rtc_wait_not_busy(priv); if (ret) return ret; omap_rtc_unlock(priv); omap_rtc_writeb(priv, OMAP_RTC_YEARS_REG, bin2bcd(tm->tm_year % 100)); omap_rtc_writeb(priv, OMAP_RTC_MONTHS_REG, bin2bcd(tm->tm_mon)); omap_rtc_writeb(priv, OMAP_RTC_WEEKS_REG, bin2bcd(tm->tm_wday)); omap_rtc_writeb(priv, OMAP_RTC_DAYS_REG, bin2bcd(tm->tm_mday)); omap_rtc_writeb(priv, OMAP_RTC_HOURS_REG, bin2bcd(tm->tm_hour)); omap_rtc_writeb(priv, OMAP_RTC_MINUTES_REG, bin2bcd(tm->tm_min)); omap_rtc_writeb(priv, OMAP_RTC_SECONDS_REG, bin2bcd(tm->tm_sec)); omap_rtc_lock(priv); dev_dbg(dev, "Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n", tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday, tm->tm_hour, tm->tm_min, tm->tm_sec); return 0; } static int omap_rtc_get(struct udevice *dev, struct rtc_time *tm) { struct omap_rtc_priv *priv = dev_get_priv(dev); unsigned long sec, min, hour, mday, wday, mon_cent, year; int ret; ret = omap_rtc_wait_not_busy(priv); if (ret) return ret; sec = omap_rtc_readb(priv, OMAP_RTC_SECONDS_REG); min = omap_rtc_readb(priv, OMAP_RTC_MINUTES_REG); hour = omap_rtc_readb(priv, OMAP_RTC_HOURS_REG); mday = omap_rtc_readb(priv, OMAP_RTC_DAYS_REG); wday = omap_rtc_readb(priv, OMAP_RTC_WEEKS_REG); mon_cent = omap_rtc_readb(priv, OMAP_RTC_MONTHS_REG); year = omap_rtc_readb(priv, OMAP_RTC_YEARS_REG); dev_dbg(dev, "Get RTC year: %02lx mon/cent: %02lx mday: %02lx wday: %02lx " "hr: %02lx min: %02lx sec: %02lx\n", year, mon_cent, mday, wday, hour, min, sec); tm->tm_sec = bcd2bin(sec & 0x7F); tm->tm_min = bcd2bin(min & 0x7F); tm->tm_hour = bcd2bin(hour & 0x3F); tm->tm_mday = bcd2bin(mday & 0x3F); tm->tm_mon = bcd2bin(mon_cent & 0x1F); tm->tm_year = bcd2bin(year) + 2000; tm->tm_wday = bcd2bin(wday & 0x07); tm->tm_yday = 0; tm->tm_isdst = 0; dev_dbg(dev, "Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n", tm->tm_year, tm->tm_mon, tm->tm_mday, tm->tm_wday, tm->tm_hour, tm->tm_min, tm->tm_sec); return 0; } static int omap_rtc_scratch_read(struct udevice *dev, uint offset, u8 *buffer, uint len) { struct omap_rtc_priv *priv = dev_get_priv(dev); u32 *val = (u32 *)buffer; unsigned int reg; int i; if (len & 3) return -EFAULT; for (i = 0; i < len / 4; i++) { reg = OMAP_RTC_SCRATCH0_REG + offset + (i * 4); if (reg >= OMAP_RTC_KICK0_REG) return -EFAULT; val[i] = omap_rtc_readl(priv, reg); } return 0; } static int omap_rtc_scratch_write(struct udevice *dev, uint offset, const u8 *buffer, uint len) { struct omap_rtc_priv *priv = dev_get_priv(dev); u32 *val = (u32 *)buffer; unsigned int reg; int i; if (len & 3) return -EFAULT; omap_rtc_unlock(priv); for (i = 0; i < len / 4; i++) { reg = OMAP_RTC_SCRATCH0_REG + offset + (i * 4); if (reg >= OMAP_RTC_KICK0_REG) return -EFAULT; omap_rtc_writel(priv, reg, val[i]); } omap_rtc_lock(priv); return 0; } static int omap_rtc_remove(struct udevice *dev) { struct omap_rtc_priv *priv = dev_get_priv(dev); u8 reg; if (priv->clk.dev) clk_disable(&priv->clk); omap_rtc_unlock(priv); /* leave rtc running, but disable irqs */ omap_rtc_writeb(priv, OMAP_RTC_INTERRUPTS_REG, 0); if (priv->has_ext_clk) { reg = omap_rtc_readb(priv, OMAP_RTC_OSC_REG); reg &= ~OMAP_RTC_OSC_SEL_32KCLK_SRC; omap_rtc_writeb(priv, OMAP_RTC_OSC_REG, reg); } omap_rtc_lock(priv); return 0; } static int omap_rtc_probe(struct udevice *dev) { struct omap_rtc_priv *priv = dev_get_priv(dev); struct rtc_time tm; u8 reg, mask, new_ctrl; priv->dev = dev; priv->type = (struct omap_rtc_device_type *)dev_get_driver_data(dev); priv->max_reg = OMAP_RTC_PMIC_REG; if (!clk_get_by_name(dev, "ext-clk", &priv->clk)) priv->has_ext_clk = true; else clk_get_by_name(dev, "int-clk", &priv->clk); if (priv->clk.dev) clk_enable(&priv->clk); else dev_warn(dev, "missing clock\n"); omap_rtc_unlock(priv); /* * disable interrupts * * NOTE: ALARM2 is not cleared on AM3352 if rtc_write (writeb) is used */ omap_rtc_writel(priv, OMAP_RTC_INTERRUPTS_REG, 0); if (priv->type->has_32kclk_en) { reg = omap_rtc_readb(priv, OMAP_RTC_OSC_REG); omap_rtc_writeb(priv, OMAP_RTC_OSC_REG, reg | OMAP_RTC_OSC_32KCLK_EN); } /* clear old status */ reg = omap_rtc_readb(priv, OMAP_RTC_STATUS_REG); mask = OMAP_RTC_STATUS_ALARM; if (priv->type->has_pmic_mode) mask |= OMAP_RTC_STATUS_ALARM2; if (priv->type->has_power_up_reset) { mask |= OMAP_RTC_STATUS_POWER_UP; if (reg & OMAP_RTC_STATUS_POWER_UP) dev_info(dev, "RTC power up reset detected\n"); } if (reg & mask) omap_rtc_writeb(priv, OMAP_RTC_STATUS_REG, reg & mask); /* On boards with split power, RTC_ON_NOFF won't reset the RTC */ reg = omap_rtc_readb(priv, OMAP_RTC_CTRL_REG); if (reg & OMAP_RTC_CTRL_STOP) dev_info(dev, "already running\n"); /* force to 24 hour mode */ new_ctrl = reg & (OMAP_RTC_CTRL_SPLIT | OMAP_RTC_CTRL_AUTO_COMP); new_ctrl |= OMAP_RTC_CTRL_STOP; /* * BOARD-SPECIFIC CUSTOMIZATION CAN GO HERE: * * - Device wake-up capability setting should come through chip * init logic. OMAP1 boards should initialize the "wakeup capable" * flag in the platform device if the board is wired right for * being woken up by RTC alarm. For OMAP-L138, this capability * is built into the SoC by the "Deep Sleep" capability. * * - Boards wired so RTC_ON_nOFF is used as the reset signal, * rather than nPWRON_RESET, should forcibly enable split * power mode. (Some chip errata report that RTC_CTRL_SPLIT * is write-only, and always reads as zero...) */ if (new_ctrl & OMAP_RTC_CTRL_SPLIT) dev_info(dev, "split power mode\n"); if (reg != new_ctrl) omap_rtc_writeb(priv, OMAP_RTC_CTRL_REG, new_ctrl); /* * If we have the external clock then switch to it so we can keep * ticking across suspend. */ if (priv->has_ext_clk) { reg = omap_rtc_readb(priv, OMAP_RTC_OSC_REG); reg &= ~OMAP_RTC_OSC_OSC32K_GZ_DISABLE; reg |= OMAP_RTC_OSC_32KCLK_EN | OMAP_RTC_OSC_SEL_32KCLK_SRC; omap_rtc_writeb(priv, OMAP_RTC_OSC_REG, reg); } omap_rtc_lock(priv); if (omap_rtc_get(dev, &tm)) { dev_err(dev, "failed to get datetime\n"); } else if (tm.tm_year == 2000 && tm.tm_mon == 1 && tm.tm_mday == 1 && tm.tm_wday == 0) { tm.tm_wday = 6; omap_rtc_set(dev, &tm); } return 0; } static int omap_rtc_of_to_plat(struct udevice *dev) { struct omap_rtc_priv *priv = dev_get_priv(dev); priv->base = dev_read_addr(dev); if (priv->base == FDT_ADDR_T_NONE) { dev_err(dev, "invalid address\n"); return -EINVAL; } dev_dbg(dev, "base=%pa\n", &priv->base); return 0; } static const struct rtc_ops omap_rtc_ops = { .get = omap_rtc_get, .set = omap_rtc_set, .reset = omap_rtc_reset, .read = omap_rtc_scratch_read, .write = omap_rtc_scratch_write, }; static const struct omap_rtc_device_type omap_rtc_am3352_type = { .has_32kclk_en = true, .has_irqwakeen = true, .has_pmic_mode = true, }; static const struct omap_rtc_device_type omap_rtc_da830_type = { .has_32kclk_en = false, .has_irqwakeen = false, .has_pmic_mode = false, }; static const struct udevice_id omap_rtc_ids[] = { {.compatible = "ti,am3352-rtc", .data = (ulong)&omap_rtc_am3352_type}, {.compatible = "ti,da830-rtc", .data = (ulong)&omap_rtc_da830_type } }; U_BOOT_DRIVER(omap_rtc) = { .name = "omap_rtc", .id = UCLASS_RTC, .of_match = omap_rtc_ids, .ops = &omap_rtc_ops, .of_to_plat = omap_rtc_of_to_plat, .probe = omap_rtc_probe, .remove = omap_rtc_remove, .priv_auto = sizeof(struct omap_rtc_priv), }; |