1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2010 Freescale Semiconductor, Inc.
5 * Author: Priyanka Jain <Priyanka.Jain@freescale.com>
9 * This file provides Date & Time support (no alarms) for PT7C4338 chip.
11 * This file is based on drivers/rtc/ds1337.c
13 * PT7C4338 chip is manufactured by Pericom Technology Inc.
14 * It is a serial real-time clock which provides
15 * 1)Low-power clock/calendar.
16 * 2)Programmable square-wave output.
17 * It has 56 bytes of nonvolatile RAM.
25 /* RTC register addresses */
26 #define RTC_SEC_REG_ADDR 0x0
27 #define RTC_MIN_REG_ADDR 0x1
28 #define RTC_HR_REG_ADDR 0x2
29 #define RTC_DAY_REG_ADDR 0x3
30 #define RTC_DATE_REG_ADDR 0x4
31 #define RTC_MON_REG_ADDR 0x5
32 #define RTC_YR_REG_ADDR 0x6
33 #define RTC_CTL_STAT_REG_ADDR 0x7
35 /* RTC second register address bit */
36 #define RTC_SEC_BIT_CH 0x80 /* Clock Halt (in Register 0) */
38 /* RTC control and status register bits */
39 #define RTC_CTL_STAT_BIT_RS0 0x1 /* Rate select 0 */
40 #define RTC_CTL_STAT_BIT_RS1 0x2 /* Rate select 1 */
41 #define RTC_CTL_STAT_BIT_SQWE 0x10 /* Square Wave Enable */
42 #define RTC_CTL_STAT_BIT_OSF 0x20 /* Oscillator Stop Flag */
43 #define RTC_CTL_STAT_BIT_OUT 0x80 /* Output Level Control */
46 #define RTC_PT7C4338_RESET_VAL \
47 (RTC_CTL_STAT_BIT_RS0 | RTC_CTL_STAT_BIT_RS1 | RTC_CTL_STAT_BIT_OUT)
49 /****** Helper functions ****************************************/
50 static u8 rtc_read(u8 reg)
52 return i2c_reg_read(CONFIG_SYS_I2C_RTC_ADDR, reg);
55 static void rtc_write(u8 reg, u8 val)
57 i2c_reg_write(CONFIG_SYS_I2C_RTC_ADDR, reg, val);
59 /****************************************************************/
61 /* Get the current time from the RTC */
62 int rtc_get(struct rtc_time *tmp)
65 u8 sec, min, hour, mday, wday, mon, year, ctl_stat;
67 ctl_stat = rtc_read(RTC_CTL_STAT_REG_ADDR);
68 sec = rtc_read(RTC_SEC_REG_ADDR);
69 min = rtc_read(RTC_MIN_REG_ADDR);
70 hour = rtc_read(RTC_HR_REG_ADDR);
71 wday = rtc_read(RTC_DAY_REG_ADDR);
72 mday = rtc_read(RTC_DATE_REG_ADDR);
73 mon = rtc_read(RTC_MON_REG_ADDR);
74 year = rtc_read(RTC_YR_REG_ADDR);
75 debug("Get RTC year: %02x mon: %02x mday: %02x wday: %02x "
76 "hr: %02x min: %02x sec: %02x control_status: %02x\n",
77 year, mon, mday, wday, hour, min, sec, ctl_stat);
79 if (ctl_stat & RTC_CTL_STAT_BIT_OSF) {
80 printf("### Warning: RTC oscillator has stopped\n");
81 /* clear the OSF flag */
82 rtc_write(RTC_CTL_STAT_REG_ADDR,
83 rtc_read(RTC_CTL_STAT_REG_ADDR)\
84 & ~RTC_CTL_STAT_BIT_OSF);
88 tmp->tm_sec = bcd2bin(sec & 0x7F);
89 tmp->tm_min = bcd2bin(min & 0x7F);
90 tmp->tm_hour = bcd2bin(hour & 0x3F);
91 tmp->tm_mday = bcd2bin(mday & 0x3F);
92 tmp->tm_mon = bcd2bin(mon & 0x1F);
93 tmp->tm_year = bcd2bin(year) + 2000;
94 tmp->tm_wday = bcd2bin((wday - 1) & 0x07);
97 debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
98 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
99 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
105 int rtc_set(struct rtc_time *tmp)
107 debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
108 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
109 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
111 rtc_write(RTC_YR_REG_ADDR, bin2bcd(tmp->tm_year % 100));
112 rtc_write(RTC_MON_REG_ADDR, bin2bcd(tmp->tm_mon));
113 rtc_write(RTC_DAY_REG_ADDR, bin2bcd(tmp->tm_wday + 1));
114 rtc_write(RTC_DATE_REG_ADDR, bin2bcd(tmp->tm_mday));
115 rtc_write(RTC_HR_REG_ADDR, bin2bcd(tmp->tm_hour));
116 rtc_write(RTC_MIN_REG_ADDR, bin2bcd(tmp->tm_min));
117 rtc_write(RTC_SEC_REG_ADDR, bin2bcd(tmp->tm_sec));
125 rtc_write(RTC_SEC_REG_ADDR, 0x00); /* clearing Clock Halt */
126 rtc_write(RTC_CTL_STAT_REG_ADDR, RTC_PT7C4338_RESET_VAL);