2 * Maxim MAX1110/1111 ADC chip emulation.
4 * Copyright (c) 2006 Openedhand Ltd.
7 * This code is licensed under the GNU GPLv2.
15 uint8_t tb1, rb2, rb3;
22 /* Control-byte bitfields */
23 #define CB_PD0 (1 << 0)
24 #define CB_PD1 (1 << 1)
25 #define CB_SGL (1 << 2)
26 #define CB_UNI (1 << 3)
27 #define CB_SEL0 (1 << 4)
28 #define CB_SEL1 (1 << 5)
29 #define CB_SEL2 (1 << 6)
30 #define CB_START (1 << 7)
32 #define CHANNEL_NUM(v, b0, b1, b2) \
33 ((((v) >> (2 + (b0))) & 4) | \
34 (((v) >> (3 + (b1))) & 2) | \
35 (((v) >> (4 + (b2))) & 1))
37 static uint32_t max111x_read(MAX111xState *s)
42 switch (s->cycle ++) {
52 /* Interpret a control-byte */
53 static void max111x_write(MAX111xState *s, uint32_t value)
57 /* Ignore the value if START bit is zero */
58 if (!(value & CB_START))
63 if (!(value & CB_PD1)) {
71 chan = CHANNEL_NUM(value, 1, 0, 2);
73 chan = CHANNEL_NUM(value & ~CB_SEL0, 0, 1, 2);
76 measure = s->input[chan] - s->com;
78 measure = s->input[chan] - s->input[chan ^ 1];
80 if (!(value & CB_UNI))
83 s->rb2 = (measure >> 2) & 0x3f;
84 s->rb3 = (measure << 6) & 0xc0;
86 /* FIXME: When should the IRQ be lowered? */
87 qemu_irq_raise(s->interrupt);
90 static uint32_t max111x_transfer(SSISlave *dev, uint32_t value)
92 MAX111xState *s = FROM_SSI_SLAVE(MAX111xState, dev);
93 max111x_write(s, value);
94 return max111x_read(s);
97 static void max111x_save(QEMUFile *f, void *opaque)
99 MAX111xState *s = (MAX111xState *) opaque;
102 qemu_put_8s(f, &s->tb1);
103 qemu_put_8s(f, &s->rb2);
104 qemu_put_8s(f, &s->rb3);
105 qemu_put_be32(f, s->inputs);
106 qemu_put_be32(f, s->com);
107 for (i = 0; i < s->inputs; i ++)
108 qemu_put_byte(f, s->input[i]);
111 static int max111x_load(QEMUFile *f, void *opaque, int version_id)
113 MAX111xState *s = (MAX111xState *) opaque;
116 qemu_get_8s(f, &s->tb1);
117 qemu_get_8s(f, &s->rb2);
118 qemu_get_8s(f, &s->rb3);
119 if (s->inputs != qemu_get_be32(f))
121 s->com = qemu_get_be32(f);
122 for (i = 0; i < s->inputs; i ++)
123 s->input[i] = qemu_get_byte(f);
128 static int max111x_init(SSISlave *dev, int inputs)
130 MAX111xState *s = FROM_SSI_SLAVE(MAX111xState, dev);
132 qdev_init_gpio_out(&dev->qdev, &s->interrupt, 1);
135 /* TODO: add a user interface for setting these */
146 register_savevm("max111x", -1, 0, max111x_save, max111x_load, s);
150 static int max1110_init(SSISlave *dev)
152 return max111x_init(dev, 8);
155 static int max1111_init(SSISlave *dev)
157 return max111x_init(dev, 4);
160 void max111x_set_input(DeviceState *dev, int line, uint8_t value)
162 MAX111xState *s = FROM_SSI_SLAVE(MAX111xState, SSI_SLAVE_FROM_QDEV(dev));
163 assert(line >= 0 && line < s->inputs);
164 s->input[line] = value;
167 static SSISlaveInfo max1110_info = {
168 .qdev.name = "max1110",
169 .qdev.size = sizeof(MAX111xState),
170 .init = max1110_init,
171 .transfer = max111x_transfer
174 static SSISlaveInfo max1111_info = {
175 .qdev.name = "max1111",
176 .qdev.size = sizeof(MAX111xState),
177 .init = max1111_init,
178 .transfer = max111x_transfer
181 static void max111x_register_devices(void)
183 ssi_register_slave(&max1110_info);
184 ssi_register_slave(&max1111_info);
187 device_init(max111x_register_devices)