xref: /openbmc/qemu/hw/rtc/ds1338.c (revision ab4b56d981d753eb2ecc610d2b5d5689716aae9c)
1 /*
2  * MAXIM DS1338 I2C RTC+NVRAM
3  *
4  * Copyright (c) 2009 CodeSourcery.
5  * Written by Paul Brook
6  *
7  * This code is licensed under the GNU GPL v2.
8  *
9  * Contributions after 2012-01-13 are licensed under the terms of the
10  * GNU GPL, version 2 or (at your option) any later version.
11  */
12 
13 #include "qemu/osdep.h"
14 #include "hw/i2c/i2c.h"
15 #include "migration/vmstate.h"
16 #include "qemu/bcd.h"
17 #include "qemu/module.h"
18 #include "qom/object.h"
19 #include "sysemu/rtc.h"
20 #include "trace.h"
21 
22 /* Size of NVRAM including both the user-accessible area and the
23  * secondary register area.
24  */
25 #define NVRAM_SIZE 64
26 
27 /* Flags definitions */
28 #define SECONDS_CH 0x80
29 #define HOURS_12   0x40
30 #define HOURS_PM   0x20
31 #define CTRL_OSF   0x20
32 
33 #define TYPE_DS1338 "ds1338"
34 OBJECT_DECLARE_SIMPLE_TYPE(DS1338State, DS1338)
35 
36 struct DS1338State {
37     I2CSlave parent_obj;
38 
39     int64_t offset;
40     uint8_t wday_offset;
41     uint8_t nvram[NVRAM_SIZE];
42     int32_t ptr;
43     bool addr_byte;
44 };
45 
46 static const VMStateDescription vmstate_ds1338 = {
47     .name = "ds1338",
48     .version_id = 2,
49     .minimum_version_id = 1,
50     .fields = (const VMStateField[]) {
51         VMSTATE_I2C_SLAVE(parent_obj, DS1338State),
52         VMSTATE_INT64(offset, DS1338State),
53         VMSTATE_UINT8_V(wday_offset, DS1338State, 2),
54         VMSTATE_UINT8_ARRAY(nvram, DS1338State, NVRAM_SIZE),
55         VMSTATE_INT32(ptr, DS1338State),
56         VMSTATE_BOOL(addr_byte, DS1338State),
57         VMSTATE_END_OF_LIST()
58     }
59 };
60 
61 static void capture_current_time(DS1338State *s)
62 {
63     /* Capture the current time into the secondary registers
64      * which will be actually read by the data transfer operation.
65      */
66     struct tm now;
67     qemu_get_timedate(&now, s->offset);
68     s->nvram[0] = to_bcd(now.tm_sec);
69     s->nvram[1] = to_bcd(now.tm_min);
70     if (s->nvram[2] & HOURS_12) {
71         int tmp = now.tm_hour;
72         if (tmp % 12 == 0) {
73             tmp += 12;
74         }
75         if (tmp <= 12) {
76             s->nvram[2] = HOURS_12 | to_bcd(tmp);
77         } else {
78             s->nvram[2] = HOURS_12 | HOURS_PM | to_bcd(tmp - 12);
79         }
80     } else {
81         s->nvram[2] = to_bcd(now.tm_hour);
82     }
83     s->nvram[3] = (now.tm_wday + s->wday_offset) % 7 + 1;
84     s->nvram[4] = to_bcd(now.tm_mday);
85     s->nvram[5] = to_bcd(now.tm_mon + 1);
86     s->nvram[6] = to_bcd(now.tm_year - 100);
87 }
88 
89 static void inc_regptr(DS1338State *s)
90 {
91     /* The register pointer wraps around after 0x3F; wraparound
92      * causes the current time/date to be retransferred into
93      * the secondary registers.
94      */
95     s->ptr = (s->ptr + 1) & (NVRAM_SIZE - 1);
96     if (!s->ptr) {
97         capture_current_time(s);
98     }
99 }
100 
101 static int ds1338_event(I2CSlave *i2c, enum i2c_event event)
102 {
103     DS1338State *s = DS1338(i2c);
104 
105     switch (event) {
106     case I2C_START_RECV:
107         /* In h/w, capture happens on any START condition, not just a
108          * START_RECV, but there is no need to actually capture on
109          * START_SEND, because the guest can't get at that data
110          * without going through a START_RECV which would overwrite it.
111          */
112         capture_current_time(s);
113         break;
114     case I2C_START_SEND:
115         s->addr_byte = true;
116         break;
117     default:
118         break;
119     }
120 
121     return 0;
122 }
123 
124 static uint8_t ds1338_recv(I2CSlave *i2c)
125 {
126     DS1338State *s = DS1338(i2c);
127     uint8_t res;
128 
129     res  = s->nvram[s->ptr];
130 
131     trace_ds1338_recv(s->ptr, res);
132 
133     inc_regptr(s);
134     return res;
135 }
136 
137 static int ds1338_send(I2CSlave *i2c, uint8_t data)
138 {
139     DS1338State *s = DS1338(i2c);
140 
141     trace_ds1338_send(s->ptr, data);
142 
143     if (s->addr_byte) {
144         s->ptr = data & (NVRAM_SIZE - 1);
145         s->addr_byte = false;
146         return 0;
147     }
148     if (s->ptr < 7) {
149         /* Time register. */
150         struct tm now;
151         qemu_get_timedate(&now, s->offset);
152         switch(s->ptr) {
153         case 0:
154             /* TODO: Implement CH (stop) bit.  */
155             now.tm_sec = from_bcd(data & 0x7f);
156             break;
157         case 1:
158             now.tm_min = from_bcd(data & 0x7f);
159             break;
160         case 2:
161             if (data & HOURS_12) {
162                 int tmp = from_bcd(data & (HOURS_PM - 1));
163                 if (data & HOURS_PM) {
164                     tmp += 12;
165                 }
166                 if (tmp % 12 == 0) {
167                     tmp -= 12;
168                 }
169                 now.tm_hour = tmp;
170             } else {
171                 now.tm_hour = from_bcd(data & (HOURS_12 - 1));
172             }
173             break;
174         case 3:
175             {
176                 /* The day field is supposed to contain a value in
177                    the range 1-7. Otherwise behavior is undefined.
178                  */
179                 int user_wday = (data & 7) - 1;
180                 s->wday_offset = (user_wday - now.tm_wday + 7) % 7;
181             }
182             break;
183         case 4:
184             now.tm_mday = from_bcd(data & 0x3f);
185             break;
186         case 5:
187             now.tm_mon = from_bcd(data & 0x1f) - 1;
188             break;
189         case 6:
190             now.tm_year = from_bcd(data) + 100;
191             break;
192         }
193         s->offset = qemu_timedate_diff(&now);
194     } else if (s->ptr == 7) {
195         /* Control register. */
196 
197         /* Ensure bits 2, 3 and 6 will read back as zero. */
198         data &= 0xB3;
199 
200         /* Attempting to write the OSF flag to logic 1 leaves the
201            value unchanged. */
202         data = (data & ~CTRL_OSF) | (data & s->nvram[s->ptr] & CTRL_OSF);
203 
204         s->nvram[s->ptr] = data;
205     } else {
206         s->nvram[s->ptr] = data;
207     }
208     inc_regptr(s);
209     return 0;
210 }
211 
212 static void ds1338_reset(DeviceState *dev)
213 {
214     DS1338State *s = DS1338(dev);
215 
216     /* The clock is running and synchronized with the host */
217     s->offset = 0;
218     s->wday_offset = 0;
219     memset(s->nvram, 0, NVRAM_SIZE);
220     s->ptr = 0;
221     s->addr_byte = false;
222 }
223 
224 static void ds1338_class_init(ObjectClass *klass, void *data)
225 {
226     DeviceClass *dc = DEVICE_CLASS(klass);
227     I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);
228 
229     k->event = ds1338_event;
230     k->recv = ds1338_recv;
231     k->send = ds1338_send;
232     device_class_set_legacy_reset(dc, ds1338_reset);
233     dc->vmsd = &vmstate_ds1338;
234 }
235 
236 static const TypeInfo ds1338_info = {
237     .name          = TYPE_DS1338,
238     .parent        = TYPE_I2C_SLAVE,
239     .instance_size = sizeof(DS1338State),
240     .class_init    = ds1338_class_init,
241 };
242 
243 static void ds1338_register_types(void)
244 {
245     type_register_static(&ds1338_info);
246 }
247 
248 type_init(ds1338_register_types)
249