1 // SPDX-License-Identifier: GPL-2.0+
3 * Simulate an I2C real time clock
5 * Copyright (c) 2015 Google, Inc
10 * This is a test driver. It starts off with the current time of the machine,
11 * but also supports setting the time, using an offset from the current
12 * clock. This driver is only intended for testing, not accurate
13 * time-keeping. It does not change the system time.
26 #define debug_buffer print_buffer
28 #define debug_buffer(x, ...)
32 * struct sandbox_i2c_rtc_plat_data - platform data for the RTC
34 * @base_time: Base system time when RTC device was bound
35 * @offset: RTC offset from current system time
36 * @use_system_time: true to use system time, false to use @base_time
37 * @reg: Register values
39 struct sandbox_i2c_rtc_plat_data {
46 struct sandbox_i2c_rtc {
47 unsigned int offset_secs;
50 long sandbox_i2c_rtc_set_offset(struct udevice *dev, bool use_system_time,
53 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(dev);
56 old_offset = plat->offset;
57 plat->use_system_time = use_system_time;
59 plat->offset = offset;
60 os_set_time_offset(plat->offset);
65 long sandbox_i2c_rtc_get_set_base_time(struct udevice *dev, long base_time)
67 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(dev);
70 old_base_time = plat->base_time;
72 plat->base_time = base_time;
77 static void reset_time(struct udevice *dev)
79 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(dev);
83 plat->base_time = rtc_mktime(&now);
84 plat->offset = os_get_time_offset();
85 plat->use_system_time = true;
88 static int sandbox_i2c_rtc_get(struct udevice *dev, struct rtc_time *time)
90 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(dev);
91 struct rtc_time tm_now;
94 if (plat->use_system_time) {
95 os_localtime(&tm_now);
96 now = rtc_mktime(&tm_now);
98 now = plat->base_time;
101 rtc_to_tm(now + plat->offset, time);
106 static int sandbox_i2c_rtc_set(struct udevice *dev, const struct rtc_time *time)
108 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(dev);
109 struct rtc_time tm_now;
112 if (plat->use_system_time) {
113 os_localtime(&tm_now);
114 now = rtc_mktime(&tm_now);
116 now = plat->base_time;
118 plat->offset = rtc_mktime(time) - now;
119 os_set_time_offset(plat->offset);
124 /* Update the current time in the registers */
125 static int sandbox_i2c_rtc_prepare_read(struct udevice *emul)
127 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(emul);
128 struct rtc_time time;
131 ret = sandbox_i2c_rtc_get(emul, &time);
135 plat->reg[REG_SEC] = time.tm_sec;
136 plat->reg[REG_MIN] = time.tm_min;
137 plat->reg[REG_HOUR] = time.tm_hour;
138 plat->reg[REG_MDAY] = time.tm_mday;
139 plat->reg[REG_MON] = time.tm_mon;
140 plat->reg[REG_YEAR] = time.tm_year - 1900;
141 plat->reg[REG_WDAY] = time.tm_wday;
146 static int sandbox_i2c_rtc_complete_write(struct udevice *emul)
148 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(emul);
149 struct rtc_time time;
152 time.tm_sec = plat->reg[REG_SEC];
153 time.tm_min = plat->reg[REG_MIN];
154 time.tm_hour = plat->reg[REG_HOUR];
155 time.tm_mday = plat->reg[REG_MDAY];
156 time.tm_mon = plat->reg[REG_MON];
157 time.tm_year = plat->reg[REG_YEAR] + 1900;
158 time.tm_wday = plat->reg[REG_WDAY];
160 ret = sandbox_i2c_rtc_set(emul, &time);
167 static int sandbox_i2c_rtc_xfer(struct udevice *emul, struct i2c_msg *msg,
170 struct sandbox_i2c_rtc_plat_data *plat = dev_get_plat(emul);
174 debug("\n%s\n", __func__);
175 ret = sandbox_i2c_rtc_prepare_read(emul);
178 for (; nmsgs > 0; nmsgs--, msg++) {
183 debug(" %s: msg->len=%d",
184 msg->flags & I2C_M_RD ? "read" : "write",
186 if (msg->flags & I2C_M_RD) {
187 debug(", offset %x, len %x: ", offset, len);
189 /* Read the register */
190 memcpy(msg->buf, plat->reg + offset, len);
191 memset(msg->buf + len, '\xff', msg->len - len);
192 debug_buffer(0, msg->buf, 1, msg->len, 0);
193 } else if (len >= 1) {
195 offset = *ptr++ & (REG_COUNT - 1);
197 debug(", set offset %x: ", offset);
198 debug_buffer(0, msg->buf, 1, msg->len, 0);
200 /* Write the register */
201 memcpy(plat->reg + offset, ptr, len);
202 /* If the reset register was written to, do reset. */
203 if (offset <= REG_RESET && REG_RESET < offset + len)
207 ret = sandbox_i2c_rtc_complete_write(emul);
214 struct dm_i2c_ops sandbox_i2c_rtc_emul_ops = {
215 .xfer = sandbox_i2c_rtc_xfer,
218 static int sandbox_i2c_rtc_bind(struct udevice *dev)
225 static const struct udevice_id sandbox_i2c_rtc_ids[] = {
226 { .compatible = "sandbox,i2c-rtc-emul" },
230 U_BOOT_DRIVER(sandbox_i2c_rtc_emul) = {
231 .name = "sandbox_i2c_rtc_emul",
232 .id = UCLASS_I2C_EMUL,
233 .of_match = sandbox_i2c_rtc_ids,
234 .bind = sandbox_i2c_rtc_bind,
235 .priv_auto = sizeof(struct sandbox_i2c_rtc),
236 .plat_auto = sizeof(struct sandbox_i2c_rtc_plat_data),
237 .ops = &sandbox_i2c_rtc_emul_ops,