1 // SPDX-License-Identifier: GPL-2.0+
4 * ARIO Data Networks, Inc. dchiu@ariodata.com
7 * Frank Panno <fpanno@delphintech.com>, Delphin Technology AG
9 * Based on MontaVista DS1743 code and U-Boot mc146818 code
13 * Date & Time support for the DS1556 RTC
16 /*#define RTC_DEBUG */
22 #if defined(CONFIG_CMD_DATE)
24 static uchar rtc_read( unsigned int addr );
25 static void rtc_write( unsigned int addr, uchar val);
27 #define RTC_BASE ( CONFIG_SYS_NVRAM_SIZE + CONFIG_SYS_NVRAM_BASE_ADDR )
29 #define RTC_YEAR ( RTC_BASE + 0xf )
30 #define RTC_MONTH ( RTC_BASE + 0xe )
31 #define RTC_DAY_OF_MONTH ( RTC_BASE + 0xd )
32 #define RTC_DAY_OF_WEEK ( RTC_BASE + 0xc )
33 #define RTC_HOURS ( RTC_BASE + 0xb )
34 #define RTC_MINUTES ( RTC_BASE + 0xa )
35 #define RTC_SECONDS ( RTC_BASE + 0x9 )
36 #define RTC_CENTURY ( RTC_BASE + 0x8 )
38 #define RTC_CONTROLA RTC_CENTURY
39 #define RTC_CONTROLB RTC_SECONDS
40 #define RTC_CONTROLC RTC_BASE
42 #define RTC_CA_WRITE 0x80
43 #define RTC_CA_READ 0x40
45 #define RTC_CB_OSC_DISABLE 0x80
47 #define RTC_CC_BATTERY_FLAG 0x10
48 #define RTC_CC_FREQ_TEST 0x40
50 /* ------------------------------------------------------------------------- */
52 int rtc_get( struct rtc_time *tmp )
55 uchar mday, wday, mon, year;
61 reg_a = rtc_read( RTC_CONTROLA );
62 /* lock clock registers for read */
63 rtc_write( RTC_CONTROLA, ( reg_a | RTC_CA_READ ));
65 sec = rtc_read( RTC_SECONDS );
66 min = rtc_read( RTC_MINUTES );
67 hour = rtc_read( RTC_HOURS );
68 mday = rtc_read( RTC_DAY_OF_MONTH );
69 wday = rtc_read( RTC_DAY_OF_WEEK );
70 mon = rtc_read( RTC_MONTH );
71 year = rtc_read( RTC_YEAR );
72 century = rtc_read( RTC_CENTURY );
74 /* unlock clock registers after read */
75 rtc_write( RTC_CONTROLA, ( reg_a & ~RTC_CA_READ ));
78 printf( "Get RTC year: %02x mon/cent: %02x mon: %02x mday: %02x wday: %02x "
79 "hr: %02x min: %02x sec: %02x\n",
80 year, century, mon, mday, wday,
83 tmp->tm_sec = bcd2bin( sec & 0x7F );
84 tmp->tm_min = bcd2bin( min & 0x7F );
85 tmp->tm_hour = bcd2bin( hour & 0x3F );
86 tmp->tm_mday = bcd2bin( mday & 0x3F );
87 tmp->tm_mon = bcd2bin( mon & 0x1F );
88 tmp->tm_wday = bcd2bin( wday & 0x07 );
90 /* glue year from century and year in century */
91 tmp->tm_year = bcd2bin( year ) +
92 ( bcd2bin( century & 0x3F ) * 100 );
97 printf( "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 );
104 int rtc_set( struct rtc_time *tmp )
108 printf( "Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
109 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
110 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
112 /* lock clock registers for write */
113 reg_a = rtc_read( RTC_CONTROLA );
114 rtc_write( RTC_CONTROLA, ( reg_a | RTC_CA_WRITE ));
116 rtc_write( RTC_MONTH, bin2bcd( tmp->tm_mon ));
118 rtc_write( RTC_DAY_OF_WEEK, bin2bcd( tmp->tm_wday ));
119 rtc_write( RTC_DAY_OF_MONTH, bin2bcd( tmp->tm_mday ));
120 rtc_write( RTC_HOURS, bin2bcd( tmp->tm_hour ));
121 rtc_write( RTC_MINUTES, bin2bcd( tmp->tm_min ));
122 rtc_write( RTC_SECONDS, bin2bcd( tmp->tm_sec ));
124 /* break year up into century and year in century */
125 rtc_write( RTC_YEAR, bin2bcd( tmp->tm_year % 100 ));
126 rtc_write( RTC_CENTURY, bin2bcd( tmp->tm_year / 100 ));
128 /* unlock clock registers after read */
129 rtc_write( RTC_CONTROLA, ( reg_a & ~RTC_CA_WRITE ));
134 void rtc_reset (void)
136 uchar reg_a, reg_b, reg_c;
138 reg_a = rtc_read( RTC_CONTROLA );
139 reg_b = rtc_read( RTC_CONTROLB );
141 if ( reg_b & RTC_CB_OSC_DISABLE )
143 printf( "real-time-clock was stopped. Now starting...\n" );
144 reg_a |= RTC_CA_WRITE;
145 reg_b &= ~RTC_CB_OSC_DISABLE;
147 rtc_write( RTC_CONTROLA, reg_a );
148 rtc_write( RTC_CONTROLB, reg_b );
151 /* make sure read/write clock register bits are cleared */
152 reg_a &= ~( RTC_CA_WRITE | RTC_CA_READ );
153 rtc_write( RTC_CONTROLA, reg_a );
155 reg_c = rtc_read( RTC_CONTROLC );
156 if (( reg_c & RTC_CC_BATTERY_FLAG ) == 0 )
157 printf( "RTC battery low. Clock setting may not be reliable.\n" );
160 /* ------------------------------------------------------------------------- */
162 static uchar rtc_read( unsigned int addr )
164 uchar val = *(volatile unsigned char*)(addr);
166 printf( "rtc_read: %x:%x\n", addr, val );
171 static void rtc_write( unsigned int addr, uchar val )
174 printf( "rtc_write: %x:%x\n", addr, val );
176 *(volatile unsigned char*)(addr) = val;