2 * Maxim MAX1110/1111 ADC chip emulation.
4 * Copyright (c) 2006 Openedhand Ltd.
5 * Written by Andrzej Zaborowski <balrog@zabor.org>
7 * This code is licensed under the GNU GPLv2.
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.
13 #include "qemu/osdep.h"
15 #include "hw/ssi/ssi.h"
16 #include "migration/vmstate.h"
17 #include "qemu/module.h"
23 uint8_t tb1
, rb2
, rb3
;
30 #define TYPE_MAX_111X "max111x"
32 #define MAX_111X(obj) \
33 OBJECT_CHECK(MAX111xState, (obj), TYPE_MAX_111X)
35 #define TYPE_MAX_1110 "max1110"
36 #define TYPE_MAX_1111 "max1111"
38 /* Control-byte bitfields */
39 #define CB_PD0 (1 << 0)
40 #define CB_PD1 (1 << 1)
41 #define CB_SGL (1 << 2)
42 #define CB_UNI (1 << 3)
43 #define CB_SEL0 (1 << 4)
44 #define CB_SEL1 (1 << 5)
45 #define CB_SEL2 (1 << 6)
46 #define CB_START (1 << 7)
48 #define CHANNEL_NUM(v, b0, b1, b2) \
49 ((((v) >> (2 + (b0))) & 4) | \
50 (((v) >> (3 + (b1))) & 2) | \
51 (((v) >> (4 + (b2))) & 1))
53 static uint32_t max111x_read(MAX111xState
*s
)
58 switch (s
->cycle
++) {
68 /* Interpret a control-byte */
69 static void max111x_write(MAX111xState
*s
, uint32_t value
)
73 /* Ignore the value if START bit is zero */
74 if (!(value
& CB_START
))
79 if (!(value
& CB_PD1
)) {
87 chan
= CHANNEL_NUM(value
, 1, 0, 2);
89 chan
= CHANNEL_NUM(value
& ~CB_SEL0
, 0, 1, 2);
92 measure
= s
->input
[chan
] - s
->com
;
94 measure
= s
->input
[chan
] - s
->input
[chan
^ 1];
96 if (!(value
& CB_UNI
))
99 s
->rb2
= (measure
>> 2) & 0x3f;
100 s
->rb3
= (measure
<< 6) & 0xc0;
102 /* FIXME: When should the IRQ be lowered? */
103 qemu_irq_raise(s
->interrupt
);
106 static uint32_t max111x_transfer(SSISlave
*dev
, uint32_t value
)
108 MAX111xState
*s
= MAX_111X(dev
);
109 max111x_write(s
, value
);
110 return max111x_read(s
);
113 static const VMStateDescription vmstate_max111x
= {
116 .minimum_version_id
= 1,
117 .fields
= (VMStateField
[]) {
118 VMSTATE_SSI_SLAVE(parent_obj
, MAX111xState
),
119 VMSTATE_UINT8(tb1
, MAX111xState
),
120 VMSTATE_UINT8(rb2
, MAX111xState
),
121 VMSTATE_UINT8(rb3
, MAX111xState
),
122 VMSTATE_INT32_EQUAL(inputs
, MAX111xState
, NULL
),
123 VMSTATE_INT32(com
, MAX111xState
),
124 VMSTATE_ARRAY_INT32_UNSAFE(input
, MAX111xState
, inputs
,
125 vmstate_info_uint8
, uint8_t),
126 VMSTATE_END_OF_LIST()
130 static int max111x_init(SSISlave
*d
, int inputs
)
132 DeviceState
*dev
= DEVICE(d
);
133 MAX111xState
*s
= MAX_111X(dev
);
135 qdev_init_gpio_out(dev
, &s
->interrupt
, 1);
138 /* TODO: add a user interface for setting these */
149 vmstate_register(dev
, -1, &vmstate_max111x
, s
);
153 static void max1110_realize(SSISlave
*dev
, Error
**errp
)
155 max111x_init(dev
, 8);
158 static void max1111_realize(SSISlave
*dev
, Error
**errp
)
160 max111x_init(dev
, 4);
163 void max111x_set_input(DeviceState
*dev
, int line
, uint8_t value
)
165 MAX111xState
*s
= MAX_111X(dev
);
166 assert(line
>= 0 && line
< s
->inputs
);
167 s
->input
[line
] = value
;
170 static void max111x_class_init(ObjectClass
*klass
, void *data
)
172 SSISlaveClass
*k
= SSI_SLAVE_CLASS(klass
);
174 k
->transfer
= max111x_transfer
;
177 static const TypeInfo max111x_info
= {
178 .name
= TYPE_MAX_111X
,
179 .parent
= TYPE_SSI_SLAVE
,
180 .instance_size
= sizeof(MAX111xState
),
181 .class_init
= max111x_class_init
,
185 static void max1110_class_init(ObjectClass
*klass
, void *data
)
187 SSISlaveClass
*k
= SSI_SLAVE_CLASS(klass
);
189 k
->realize
= max1110_realize
;
192 static const TypeInfo max1110_info
= {
193 .name
= TYPE_MAX_1110
,
194 .parent
= TYPE_MAX_111X
,
195 .class_init
= max1110_class_init
,
198 static void max1111_class_init(ObjectClass
*klass
, void *data
)
200 SSISlaveClass
*k
= SSI_SLAVE_CLASS(klass
);
202 k
->realize
= max1111_realize
;
205 static const TypeInfo max1111_info
= {
206 .name
= TYPE_MAX_1111
,
207 .parent
= TYPE_MAX_111X
,
208 .class_init
= max1111_class_init
,
211 static void max111x_register_types(void)
213 type_register_static(&max111x_info
);
214 type_register_static(&max1110_info
);
215 type_register_static(&max1111_info
);
218 type_init(max111x_register_types
)