blob: 706b7188cf83e2c83544350569169022094bcfaa [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkaffae2b2002-08-17 09:36:01 +00002/*
3 * (C) Copyright 2002
4 * Andrew May, Viasat Inc, amay@viasat.com
wdenkaffae2b2002-08-17 09:36:01 +00005 */
6
7/*
8 * M41T11 Serial Access Timekeeper(R) SRAM
9 * can you believe a trademark on that?
10 */
11
wdenke6325152005-03-17 16:43:10 +000012/* #define DEBUG 1 */
13
wdenkaffae2b2002-08-17 09:36:01 +000014#include <common.h>
15#include <command.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060016#include <log.h>
wdenkaffae2b2002-08-17 09:36:01 +000017#include <rtc.h>
18#include <i2c.h>
19
20/*
21 I Don't have an example config file but this
22 is what should be done.
23
24#define CONFIG_RTC_M41T11 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020025#define CONFIG_SYS_I2C_RTC_ADDR 0x68
wdenkaffae2b2002-08-17 09:36:01 +000026#if 0
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020027#define CONFIG_SYS_M41T11_EXT_CENTURY_DATA
wdenkaffae2b2002-08-17 09:36:01 +000028#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029#define CONFIG_SYS_M41T11_BASE_YEAR 2000
wdenkaffae2b2002-08-17 09:36:01 +000030#endif
31*/
32
wdenkaffae2b2002-08-17 09:36:01 +000033/* ------------------------------------------------------------------------- */
34/*
35 these are simple defines for the chip local to here so they aren't too
36 verbose
37 DAY/DATE aren't nice but that is how they are on the data sheet
38*/
39#define RTC_SEC_ADDR 0x0
40#define RTC_MIN_ADDR 0x1
41#define RTC_HOUR_ADDR 0x2
42#define RTC_DAY_ADDR 0x3
43#define RTC_DATE_ADDR 0x4
44#define RTC_MONTH_ADDR 0x5
45#define RTC_YEARS_ADDR 0x6
46
47#define RTC_REG_CNT 7
48
49#define RTC_CONTROL_ADDR 0x7
50
51
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052#ifndef CONFIG_SYS_M41T11_EXT_CENTURY_DATA
wdenkaffae2b2002-08-17 09:36:01 +000053
54#define REG_CNT (RTC_REG_CNT+1)
55
56/*
57 you only get 00-99 for the year we will asume you
58 want from the year 2000 if you don't set the config
59*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060#ifndef CONFIG_SYS_M41T11_BASE_YEAR
61#define CONFIG_SYS_M41T11_BASE_YEAR 2000
wdenkaffae2b2002-08-17 09:36:01 +000062#endif
63
64#else
65/* we will store extra year info in byte 9*/
66#define M41T11_YEAR_DATA 0x8
67#define M41T11_YEAR_SIZE 1
68#define REG_CNT (RTC_REG_CNT+1+M41T11_YEAR_SIZE)
69#endif
70
71#define M41T11_STORAGE_SZ (64-REG_CNT)
72
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030073int rtc_get (struct rtc_time *tmp)
wdenkaffae2b2002-08-17 09:36:01 +000074{
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030075 int rel = 0;
wdenk8bde7f72003-06-27 21:31:46 +000076 uchar data[RTC_REG_CNT];
wdenkaffae2b2002-08-17 09:36:01 +000077
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078 i2c_read(CONFIG_SYS_I2C_RTC_ADDR, RTC_SEC_ADDR, 1, data, RTC_REG_CNT);
wdenkaffae2b2002-08-17 09:36:01 +000079
wdenk8bde7f72003-06-27 21:31:46 +000080 if( data[RTC_SEC_ADDR] & 0x80 ){
81 printf( "m41t11 RTC Clock stopped!!!\n" );
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030082 rel = -1;
wdenk8bde7f72003-06-27 21:31:46 +000083 }
wdenkaffae2b2002-08-17 09:36:01 +000084 tmp->tm_sec = bcd2bin (data[RTC_SEC_ADDR] & 0x7F);
85 tmp->tm_min = bcd2bin (data[RTC_MIN_ADDR] & 0x7F);
86 tmp->tm_hour = bcd2bin (data[RTC_HOUR_ADDR] & 0x3F);
87 tmp->tm_mday = bcd2bin (data[RTC_DATE_ADDR] & 0x3F);
88 tmp->tm_mon = bcd2bin (data[RTC_MONTH_ADDR]& 0x1F);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089#ifndef CONFIG_SYS_M41T11_EXT_CENTURY_DATA
90 tmp->tm_year = CONFIG_SYS_M41T11_BASE_YEAR
wdenk8bde7f72003-06-27 21:31:46 +000091 + bcd2bin(data[RTC_YEARS_ADDR])
92 + ((data[RTC_HOUR_ADDR]&0x40) ? 100 : 0);
wdenkaffae2b2002-08-17 09:36:01 +000093#else
wdenk8bde7f72003-06-27 21:31:46 +000094 {
95 unsigned char cent;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096 i2c_read(CONFIG_SYS_I2C_RTC_ADDR, M41T11_YEAR_DATA, 1, &cent, M41T11_YEAR_SIZE);
wdenk8bde7f72003-06-27 21:31:46 +000097 if( !(data[RTC_HOUR_ADDR] & 0x80) ){
98 printf( "m41t11 RTC: cann't keep track of years without CEB set\n" );
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +030099 rel = -1;
wdenk8bde7f72003-06-27 21:31:46 +0000100 }
101 if( (cent & 0x1) != ((data[RTC_HOUR_ADDR]&0x40)>>7) ){
102 /*century flip store off new year*/
103 cent += 1;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104 i2c_write(CONFIG_SYS_I2C_RTC_ADDR, M41T11_YEAR_DATA, 1, &cent, M41T11_YEAR_SIZE);
wdenk8bde7f72003-06-27 21:31:46 +0000105 }
106 tmp->tm_year =((int)cent*100)+bcd2bin(data[RTC_YEARS_ADDR]);
107 }
wdenkaffae2b2002-08-17 09:36:01 +0000108#endif
109 tmp->tm_wday = bcd2bin (data[RTC_DAY_ADDR] & 0x07);
110 tmp->tm_yday = 0;
111 tmp->tm_isdst= 0;
112
Simon Glass3c7dded2020-05-10 11:40:04 -0600113 debug("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
114 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
115 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
Yuri Tikhonovb73a19e2008-03-20 17:56:04 +0300116
117 return rel;
wdenkaffae2b2002-08-17 09:36:01 +0000118}
119
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200120int rtc_set (struct rtc_time *tmp)
wdenkaffae2b2002-08-17 09:36:01 +0000121{
wdenk8bde7f72003-06-27 21:31:46 +0000122 uchar data[RTC_REG_CNT];
wdenkaffae2b2002-08-17 09:36:01 +0000123
Simon Glass3c7dded2020-05-10 11:40:04 -0600124 debug("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
125 tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
126 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
wdenkaffae2b2002-08-17 09:36:01 +0000127
128 data[RTC_SEC_ADDR] = bin2bcd(tmp->tm_sec) & 0x7F;/*just in case*/
129 data[RTC_MIN_ADDR] = bin2bcd(tmp->tm_min);
130 data[RTC_HOUR_ADDR] = bin2bcd(tmp->tm_hour) & 0x3F;/*handle cent stuff later*/
131 data[RTC_DATE_ADDR] = bin2bcd(tmp->tm_mday) & 0x3F;
132 data[RTC_MONTH_ADDR] = bin2bcd(tmp->tm_mon);
133 data[RTC_DAY_ADDR] = bin2bcd(tmp->tm_wday) & 0x07;
134
wdenk8bde7f72003-06-27 21:31:46 +0000135 data[RTC_HOUR_ADDR] |= 0x80;/*we will always use CEB*/
wdenkaffae2b2002-08-17 09:36:01 +0000136
wdenk8bde7f72003-06-27 21:31:46 +0000137 data[RTC_YEARS_ADDR] = bin2bcd(tmp->tm_year%100);/*same thing either way*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138#ifndef CONFIG_SYS_M41T11_EXT_CENTURY_DATA
139 if( ((tmp->tm_year - CONFIG_SYS_M41T11_BASE_YEAR) > 200) ||
140 (tmp->tm_year < CONFIG_SYS_M41T11_BASE_YEAR) ){
wdenk8bde7f72003-06-27 21:31:46 +0000141 printf( "m41t11 RTC setting year out of range!!need recompile\n" );
142 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200143 data[RTC_HOUR_ADDR] |= (tmp->tm_year - CONFIG_SYS_M41T11_BASE_YEAR) > 100 ? 0x40 : 0;
wdenkaffae2b2002-08-17 09:36:01 +0000144#else
wdenk8bde7f72003-06-27 21:31:46 +0000145 {
146 unsigned char cent;
147 cent = tmp->tm_year ? tmp->tm_year / 100 : 0;
148 data[RTC_HOUR_ADDR] |= (cent & 0x1) ? 0x40 : 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149 i2c_write(CONFIG_SYS_I2C_RTC_ADDR, M41T11_YEAR_DATA, 1, &cent, M41T11_YEAR_SIZE);
wdenk8bde7f72003-06-27 21:31:46 +0000150 }
wdenkaffae2b2002-08-17 09:36:01 +0000151#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152 i2c_write(CONFIG_SYS_I2C_RTC_ADDR, RTC_SEC_ADDR, 1, data, RTC_REG_CNT);
Jean-Christophe PLAGNIOL-VILLARDd1e23192008-09-01 23:06:23 +0200153
154 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000155}
156
157void rtc_reset (void)
158{
wdenk8bde7f72003-06-27 21:31:46 +0000159 unsigned char val;
wdenkaffae2b2002-08-17 09:36:01 +0000160 /* clear all control & status registers */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161 i2c_read(CONFIG_SYS_I2C_RTC_ADDR, RTC_SEC_ADDR, 1, &val, 1);
wdenk8bde7f72003-06-27 21:31:46 +0000162 val = val & 0x7F;/*make sure we are running*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200163 i2c_write(CONFIG_SYS_I2C_RTC_ADDR, RTC_SEC_ADDR, 1, &val, RTC_REG_CNT);
wdenkaffae2b2002-08-17 09:36:01 +0000164
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200165 i2c_read(CONFIG_SYS_I2C_RTC_ADDR, RTC_CONTROL_ADDR, 1, &val, 1);
wdenk8bde7f72003-06-27 21:31:46 +0000166 val = val & 0x3F;/*turn off freq test keep calibration*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167 i2c_write(CONFIG_SYS_I2C_RTC_ADDR, RTC_CONTROL_ADDR, 1, &val, 1);
wdenkaffae2b2002-08-17 09:36:01 +0000168}