]> git.proxmox.com Git - mirror_qemu.git/blame - hw/ds1338.c
tap: reset vnet header size on open
[mirror_qemu.git] / hw / ds1338.c
CommitLineData
1dfe3943
PB
1/*
2 * MAXIM DS1338 I2C RTC+NVRAM
3 *
4 * Copyright (c) 2009 CodeSourcery.
5 * Written by Paul Brook
6 *
8e31bf38 7 * This code is licensed under the GNU GPL v2.
6b620ca3
PB
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.
1dfe3943
PB
11 */
12
13#include "i2c.h"
14
ba4906a9
PM
15/* Size of NVRAM including both the user-accessible area and the
16 * secondary register area.
17 */
18#define NVRAM_SIZE 64
19
1dfe3943 20typedef struct {
9e07bdf8 21 I2CSlave i2c;
f4741402 22 int64_t offset;
ba4906a9 23 uint8_t nvram[NVRAM_SIZE];
f4741402
PM
24 int32_t ptr;
25 bool addr_byte;
1dfe3943
PB
26} DS1338State;
27
f4741402
PM
28static const VMStateDescription vmstate_ds1338 = {
29 .name = "ds1338",
30 .version_id = 1,
31 .minimum_version_id = 1,
32 .minimum_version_id_old = 1,
33 .fields = (VMStateField[]) {
34 VMSTATE_I2C_SLAVE(i2c, DS1338State),
35 VMSTATE_INT64(offset, DS1338State),
36 VMSTATE_UINT8_ARRAY(nvram, DS1338State, NVRAM_SIZE),
37 VMSTATE_INT32(ptr, DS1338State),
38 VMSTATE_BOOL(addr_byte, DS1338State),
39 VMSTATE_END_OF_LIST()
40 }
41};
42
35b87a86
PM
43static void capture_current_time(DS1338State *s)
44{
45 /* Capture the current time into the secondary registers
46 * which will be actually read by the data transfer operation.
47 */
7f7fd0f2
PM
48 struct tm now;
49 qemu_get_timedate(&now, s->offset);
50 s->nvram[0] = to_bcd(now.tm_sec);
51 s->nvram[1] = to_bcd(now.tm_min);
35b87a86 52 if (s->nvram[2] & 0x40) {
7f7fd0f2
PM
53 s->nvram[2] = (to_bcd((now.tm_hour % 12)) + 1) | 0x40;
54 if (now.tm_hour >= 12) {
35b87a86
PM
55 s->nvram[2] |= 0x20;
56 }
57 } else {
7f7fd0f2 58 s->nvram[2] = to_bcd(now.tm_hour);
35b87a86 59 }
7f7fd0f2
PM
60 s->nvram[3] = to_bcd(now.tm_wday) + 1;
61 s->nvram[4] = to_bcd(now.tm_mday);
62 s->nvram[5] = to_bcd(now.tm_mon) + 1;
63 s->nvram[6] = to_bcd(now.tm_year - 100);
35b87a86
PM
64}
65
66static void inc_regptr(DS1338State *s)
67{
68 /* The register pointer wraps around after 0x3F; wraparound
69 * causes the current time/date to be retransferred into
70 * the secondary registers.
71 */
72 s->ptr = (s->ptr + 1) & (NVRAM_SIZE - 1);
73 if (!s->ptr) {
74 capture_current_time(s);
75 }
76}
77
9e07bdf8 78static void ds1338_event(I2CSlave *i2c, enum i2c_event event)
1dfe3943
PB
79{
80 DS1338State *s = FROM_I2C_SLAVE(DS1338State, i2c);
81
82 switch (event) {
83 case I2C_START_RECV:
35b87a86
PM
84 /* In h/w, capture happens on any START condition, not just a
85 * START_RECV, but there is no need to actually capture on
86 * START_SEND, because the guest can't get at that data
87 * without going through a START_RECV which would overwrite it.
88 */
89 capture_current_time(s);
1dfe3943
PB
90 break;
91 case I2C_START_SEND:
f4741402 92 s->addr_byte = true;
1dfe3943
PB
93 break;
94 default:
95 break;
96 }
97}
98
9e07bdf8 99static int ds1338_recv(I2CSlave *i2c)
1dfe3943
PB
100{
101 DS1338State *s = FROM_I2C_SLAVE(DS1338State, i2c);
102 uint8_t res;
103
104 res = s->nvram[s->ptr];
35b87a86 105 inc_regptr(s);
1dfe3943
PB
106 return res;
107}
108
9e07bdf8 109static int ds1338_send(I2CSlave *i2c, uint8_t data)
1dfe3943
PB
110{
111 DS1338State *s = FROM_I2C_SLAVE(DS1338State, i2c);
112 if (s->addr_byte) {
ba4906a9 113 s->ptr = data & (NVRAM_SIZE - 1);
f4741402 114 s->addr_byte = false;
1dfe3943
PB
115 return 0;
116 }
ba4906a9 117 if (s->ptr < 8) {
7f7fd0f2
PM
118 struct tm now;
119 qemu_get_timedate(&now, s->offset);
ba4906a9 120 switch(s->ptr) {
1dfe3943
PB
121 case 0:
122 /* TODO: Implement CH (stop) bit. */
7f7fd0f2 123 now.tm_sec = from_bcd(data & 0x7f);
1dfe3943
PB
124 break;
125 case 1:
7f7fd0f2 126 now.tm_min = from_bcd(data & 0x7f);
1dfe3943
PB
127 break;
128 case 2:
129 if (data & 0x40) {
130 if (data & 0x20) {
131 data = from_bcd(data & 0x4f) + 11;
132 } else {
133 data = from_bcd(data & 0x1f) - 1;
134 }
135 } else {
136 data = from_bcd(data);
137 }
7f7fd0f2 138 now.tm_hour = data;
1dfe3943
PB
139 break;
140 case 3:
7f7fd0f2 141 now.tm_wday = from_bcd(data & 7) - 1;
1dfe3943
PB
142 break;
143 case 4:
7f7fd0f2 144 now.tm_mday = from_bcd(data & 0x3f);
1dfe3943
PB
145 break;
146 case 5:
7f7fd0f2 147 now.tm_mon = from_bcd(data & 0x1f) - 1;
fbac6a7d 148 break;
1dfe3943 149 case 6:
7f7fd0f2 150 now.tm_year = from_bcd(data) + 100;
1dfe3943
PB
151 break;
152 case 7:
153 /* Control register. Currently ignored. */
154 break;
155 }
7f7fd0f2 156 s->offset = qemu_timedate_diff(&now);
ba4906a9
PM
157 } else {
158 s->nvram[s->ptr] = data;
1dfe3943 159 }
35b87a86 160 inc_regptr(s);
1dfe3943
PB
161 return 0;
162}
163
9e07bdf8 164static int ds1338_init(I2CSlave *i2c)
1dfe3943
PB
165{
166 return 0;
167}
168
b5ea9327
AL
169static void ds1338_class_init(ObjectClass *klass, void *data)
170{
f4741402 171 DeviceClass *dc = DEVICE_CLASS(klass);
b5ea9327
AL
172 I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);
173
174 k->init = ds1338_init;
175 k->event = ds1338_event;
176 k->recv = ds1338_recv;
177 k->send = ds1338_send;
f4741402 178 dc->vmsd = &vmstate_ds1338;
b5ea9327
AL
179}
180
39bffca2
AL
181static TypeInfo ds1338_info = {
182 .name = "ds1338",
183 .parent = TYPE_I2C_SLAVE,
184 .instance_size = sizeof(DS1338State),
185 .class_init = ds1338_class_init,
1dfe3943
PB
186};
187
83f7d43a 188static void ds1338_register_types(void)
1dfe3943 189{
39bffca2 190 type_register_static(&ds1338_info);
1dfe3943
PB
191}
192
83f7d43a 193type_init(ds1338_register_types)