]> Git Repo - u-boot.git/blame - cmd/date.c
imx8mm-evk: Generate a single bootable flash.bin again
[u-boot.git] / cmd / date.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
3863585b
WD
2/*
3 * (C) Copyright 2001
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
3863585b
WD
5 */
6
7/*
8 * RTC, Date & Time support: get and set date & time
9 */
10#include <common.h>
11#include <command.h>
f9951ead 12#include <dm.h>
3863585b 13#include <rtc.h>
0dc018ec 14#include <i2c.h>
401d1c4f 15#include <asm/global_data.h>
3863585b 16
d87080b7
WD
17DECLARE_GLOBAL_DATA_PTR;
18
bdbc1303 19static const char * const weekdays[] = {
3863585b
WD
20 "Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur",
21};
22
2e5167cc 23#ifdef CONFIG_NEEDS_MANUAL_RELOC
3e38691e 24#define RELOC(a) ((typeof(a))((unsigned long)(a) + gd->reloc_off))
2e5167cc
WD
25#else
26#define RELOC(a) a
521af04d 27#endif
3e38691e 28
bdbc1303 29int mk_date (const char *, struct rtc_time *);
3863585b 30
1a1fa240
MV
31static struct rtc_time default_tm = { 0, 0, 0, 1, 1, 2000, 6, 0, 0 };
32
09140113
SG
33static int do_date(struct cmd_tbl *cmdtp, int flag, int argc,
34 char *const argv[])
3863585b
WD
35{
36 struct rtc_time tm;
37 int rcode = 0;
f9951ead 38 int old_bus __maybe_unused;
0dc018ec
SR
39
40 /* switch to correct I2C bus */
ffe38798 41#ifdef CONFIG_DM_RTC
f9951ead
SG
42 struct udevice *dev;
43
a1ae55ee 44 rcode = uclass_get_device_by_seq(UCLASS_RTC, 0, &dev);
f9951ead 45 if (rcode) {
a1ae55ee
MS
46 rcode = uclass_get_device(UCLASS_RTC, 0, &dev);
47 if (rcode) {
48 printf("Cannot find RTC: err=%d\n", rcode);
49 return CMD_RET_FAILURE;
50 }
f9951ead 51 }
55dabcc8 52#elif CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
3f4978c7
HS
53 old_bus = i2c_get_bus_num();
54 i2c_set_bus_num(CONFIG_SYS_RTC_BUS_NUM);
55#else
0dc018ec 56 old_bus = I2C_GET_BUS();
6d0f6bcf 57 I2C_SET_BUS(CONFIG_SYS_RTC_BUS_NUM);
3f4978c7 58#endif
3863585b
WD
59
60 switch (argc) {
61 case 2: /* set date & time */
62 if (strcmp(argv[1],"reset") == 0) {
4b9206ed 63 puts ("Reset RTC...\n");
ffe38798 64#ifdef CONFIG_DM_RTC
f9951ead
SG
65 rcode = dm_rtc_reset(dev);
66 if (!rcode)
67 rcode = dm_rtc_set(dev, &default_tm);
68#else
69 rtc_reset();
1a1fa240 70 rcode = rtc_set(&default_tm);
f9951ead 71#endif
1a1fa240
MV
72 if (rcode)
73 puts("## Failed to set date after RTC reset\n");
3863585b
WD
74 } else {
75 /* initialize tm with current time */
ffe38798 76#ifdef CONFIG_DM_RTC
f9951ead
SG
77 rcode = dm_rtc_get(dev, &tm);
78#else
79 rcode = rtc_get(&tm);
80#endif
81 if (!rcode) {
d1e23194 82 /* insert new date & time */
f9951ead 83 if (mk_date(argv[1], &tm) != 0) {
d1e23194
JCPV
84 puts ("## Bad date format\n");
85 break;
86 }
87 /* and write to RTC */
ffe38798 88#ifdef CONFIG_DM_RTC
f9951ead
SG
89 rcode = dm_rtc_set(dev, &tm);
90#else
91 rcode = rtc_set(&tm);
92#endif
93 if (rcode) {
94 printf("## Set date failed: err=%d\n",
95 rcode);
96 }
d1e23194 97 } else {
d52e3e01 98 puts("## Get date failed\n");
3863585b 99 }
3863585b
WD
100 }
101 /* FALL TROUGH */
102 case 1: /* get date & time */
ffe38798 103#ifdef CONFIG_DM_RTC
f9951ead
SG
104 rcode = dm_rtc_get(dev, &tm);
105#else
106 rcode = rtc_get(&tm);
107#endif
d1e23194 108 if (rcode) {
d52e3e01 109 puts("## Get date failed\n");
d1e23194
JCPV
110 break;
111 }
3863585b
WD
112
113 printf ("Date: %4d-%02d-%02d (%sday) Time: %2d:%02d:%02d\n",
114 tm.tm_year, tm.tm_mon, tm.tm_mday,
115 (tm.tm_wday<0 || tm.tm_wday>6) ?
3e38691e 116 "unknown " : RELOC(weekdays[tm.tm_wday]),
3863585b
WD
117 tm.tm_hour, tm.tm_min, tm.tm_sec);
118
0dc018ec 119 break;
3863585b 120 default:
4c12eeb8 121 rcode = CMD_RET_USAGE;
3863585b 122 }
0dc018ec
SR
123
124 /* switch back to original I2C bus */
55dabcc8 125#if CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
3f4978c7 126 i2c_set_bus_num(old_bus);
ffe38798 127#elif !defined(CONFIG_DM_RTC)
0dc018ec 128 I2C_SET_BUS(old_bus);
3f4978c7 129#endif
0dc018ec 130
f9951ead 131 return rcode ? CMD_RET_FAILURE : 0;
3863585b
WD
132}
133
134/*
135 * simple conversion of two-digit string with error checking
136 */
bdbc1303 137static int cnvrt2 (const char *str, int *valp)
3863585b
WD
138{
139 int val;
140
141 if ((*str < '0') || (*str > '9'))
142 return (-1);
143
144 val = *str - '0';
145
146 ++str;
147
148 if ((*str < '0') || (*str > '9'))
149 return (-1);
150
151 *valp = 10 * val + (*str - '0');
152
153 return (0);
154}
155
156/*
157 * Convert date string: MMDDhhmm[[CC]YY][.ss]
158 *
159 * Some basic checking for valid values is done, but this will not catch
160 * all possible error conditions.
161 */
bdbc1303 162int mk_date (const char *datestr, struct rtc_time *tmp)
3863585b
WD
163{
164 int len, val;
165 char *ptr;
166
44ac80e7
RK
167 ptr = strchr(datestr, '.');
168 len = strlen(datestr);
3863585b
WD
169
170 /* Set seconds */
171 if (ptr) {
172 int sec;
173
44ac80e7 174 ptr++;
3863585b
WD
175 if ((len - (ptr - datestr)) != 2)
176 return (-1);
177
44ac80e7 178 len -= 3;
3863585b
WD
179
180 if (cnvrt2 (ptr, &sec))
181 return (-1);
182
183 tmp->tm_sec = sec;
184 } else {
185 tmp->tm_sec = 0;
186 }
187
188 if (len == 12) { /* MMDDhhmmCCYY */
189 int year, century;
190
191 if (cnvrt2 (datestr+ 8, &century) ||
192 cnvrt2 (datestr+10, &year) ) {
193 return (-1);
194 }
195 tmp->tm_year = 100 * century + year;
196 } else if (len == 10) { /* MMDDhhmmYY */
197 int year, century;
198
199 century = tmp->tm_year / 100;
200 if (cnvrt2 (datestr+ 8, &year))
201 return (-1);
202 tmp->tm_year = 100 * century + year;
203 }
204
205 switch (len) {
206 case 8: /* MMDDhhmm */
207 /* fall thru */
208 case 10: /* MMDDhhmmYY */
209 /* fall thru */
210 case 12: /* MMDDhhmmCCYY */
211 if (cnvrt2 (datestr+0, &val) ||
212 val > 12) {
213 break;
214 }
215 tmp->tm_mon = val;
216 if (cnvrt2 (datestr+2, &val) ||
217 val > ((tmp->tm_mon==2) ? 29 : 31)) {
218 break;
219 }
220 tmp->tm_mday = val;
221
222 if (cnvrt2 (datestr+4, &val) ||
223 val > 23) {
224 break;
225 }
226 tmp->tm_hour = val;
227
228 if (cnvrt2 (datestr+6, &val) ||
229 val > 59) {
230 break;
231 }
232 tmp->tm_min = val;
233
234 /* calculate day of week */
199e87c3 235 rtc_calc_weekday(tmp);
3863585b
WD
236
237 return (0);
238 default:
239 break;
240 }
241
242 return (-1);
243}
244
8bde7f77
WD
245/***************************************************/
246
0d498393
WD
247U_BOOT_CMD(
248 date, 2, 1, do_date,
2fb2604d 249 "get/set/reset date & time",
8bde7f77
WD
250 "[MMDDhhmm[[CC]YY][.ss]]\ndate reset\n"
251 " - without arguments: print date & time\n"
252 " - with numeric argument: set the system date & time\n"
a89c33db 253 " - with 'reset' argument: reset the RTC"
8bde7f77 254);
This page took 0.344607 seconds and 4 git commands to generate.