hw/misc/pca9552: Add missing TypeInfo::class_size field
[qemu.git] / hw / misc / pca9552.c
blob68b574d084c354e8dfa3c60cc73cd84debc437bb
1 /*
2 * PCA9552 I2C LED blinker
4 * https://www.nxp.com/docs/en/application-note/AN264.pdf
6 * Copyright (c) 2017-2018, IBM Corporation.
7 * Copyright (c) 2020 Philippe Mathieu-Daudé
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * later. See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qemu/log.h"
15 #include "qemu/module.h"
16 #include "qemu/bitops.h"
17 #include "hw/qdev-properties.h"
18 #include "hw/misc/pca9552.h"
19 #include "hw/misc/pca9552_regs.h"
20 #include "hw/irq.h"
21 #include "migration/vmstate.h"
22 #include "qapi/error.h"
23 #include "qapi/visitor.h"
24 #include "trace.h"
26 typedef struct PCA955xClass {
27 /*< private >*/
28 I2CSlaveClass parent_class;
29 /*< public >*/
31 uint8_t pin_count;
32 uint8_t max_reg;
33 } PCA955xClass;
35 #define PCA955X_CLASS(klass) \
36 OBJECT_CLASS_CHECK(PCA955xClass, (klass), TYPE_PCA955X)
37 #define PCA955X_GET_CLASS(obj) \
38 OBJECT_GET_CLASS(PCA955xClass, (obj), TYPE_PCA955X)
40 #define PCA9552_LED_ON 0x0
41 #define PCA9552_LED_OFF 0x1
42 #define PCA9552_LED_PWM0 0x2
43 #define PCA9552_LED_PWM1 0x3
45 static const char *led_state[] = {"on", "off", "pwm0", "pwm1"};
47 static uint8_t pca955x_pin_get_config(PCA955xState *s, int pin)
49 uint8_t reg = PCA9552_LS0 + (pin / 4);
50 uint8_t shift = (pin % 4) << 1;
52 return extract32(s->regs[reg], shift, 2);
55 /* Return INPUT status (bit #N belongs to GPIO #N) */
56 static uint16_t pca955x_pins_get_status(PCA955xState *s)
58 return (s->regs[PCA9552_INPUT1] << 8) | s->regs[PCA9552_INPUT0];
61 static void pca955x_display_pins_status(PCA955xState *s,
62 uint16_t previous_pins_status)
64 PCA955xClass *k = PCA955X_GET_CLASS(s);
65 uint16_t pins_status, pins_changed;
66 int i;
68 pins_status = pca955x_pins_get_status(s);
69 pins_changed = previous_pins_status ^ pins_status;
70 if (!pins_changed) {
71 return;
73 if (trace_event_get_state_backends(TRACE_PCA955X_GPIO_STATUS)) {
74 char *buf = g_newa(char, k->pin_count + 1);
76 for (i = 0; i < k->pin_count; i++) {
77 if (extract32(pins_status, i, 1)) {
78 buf[i] = '*';
79 } else {
80 buf[i] = '.';
83 buf[i] = '\0';
84 trace_pca955x_gpio_status(s->description, buf);
86 if (trace_event_get_state_backends(TRACE_PCA955X_GPIO_CHANGE)) {
87 for (i = 0; i < k->pin_count; i++) {
88 if (extract32(pins_changed, i, 1)) {
89 unsigned new_state = extract32(pins_status, i, 1);
92 * We display the state using the PCA logic ("active-high").
93 * This is not the state of the LED, which signal might be
94 * wired "active-low" on the board.
96 trace_pca955x_gpio_change(s->description, i,
97 !new_state, new_state);
103 static void pca955x_update_pin_input(PCA955xState *s)
105 PCA955xClass *k = PCA955X_GET_CLASS(s);
106 int i;
108 for (i = 0; i < k->pin_count; i++) {
109 uint8_t input_reg = PCA9552_INPUT0 + (i / 8);
110 uint8_t input_shift = (i % 8);
111 uint8_t config = pca955x_pin_get_config(s, i);
113 switch (config) {
114 case PCA9552_LED_ON:
115 qemu_set_irq(s->gpio[i], 1);
116 s->regs[input_reg] |= 1 << input_shift;
117 break;
118 case PCA9552_LED_OFF:
119 qemu_set_irq(s->gpio[i], 0);
120 s->regs[input_reg] &= ~(1 << input_shift);
121 break;
122 case PCA9552_LED_PWM0:
123 case PCA9552_LED_PWM1:
124 /* TODO */
125 default:
126 break;
131 static uint8_t pca955x_read(PCA955xState *s, uint8_t reg)
133 switch (reg) {
134 case PCA9552_INPUT0:
135 case PCA9552_INPUT1:
136 case PCA9552_PSC0:
137 case PCA9552_PWM0:
138 case PCA9552_PSC1:
139 case PCA9552_PWM1:
140 case PCA9552_LS0:
141 case PCA9552_LS1:
142 case PCA9552_LS2:
143 case PCA9552_LS3:
144 return s->regs[reg];
145 default:
146 qemu_log_mask(LOG_GUEST_ERROR, "%s: unexpected read to register %d\n",
147 __func__, reg);
148 return 0xFF;
152 static void pca955x_write(PCA955xState *s, uint8_t reg, uint8_t data)
154 uint16_t pins_status;
156 switch (reg) {
157 case PCA9552_PSC0:
158 case PCA9552_PWM0:
159 case PCA9552_PSC1:
160 case PCA9552_PWM1:
161 s->regs[reg] = data;
162 break;
164 case PCA9552_LS0:
165 case PCA9552_LS1:
166 case PCA9552_LS2:
167 case PCA9552_LS3:
168 pins_status = pca955x_pins_get_status(s);
169 s->regs[reg] = data;
170 pca955x_update_pin_input(s);
171 pca955x_display_pins_status(s, pins_status);
172 break;
174 case PCA9552_INPUT0:
175 case PCA9552_INPUT1:
176 default:
177 qemu_log_mask(LOG_GUEST_ERROR, "%s: unexpected write to register %d\n",
178 __func__, reg);
183 * When Auto-Increment is on, the register address is incremented
184 * after each byte is sent to or received by the device. The index
185 * rollovers to 0 when the maximum register address is reached.
187 static void pca955x_autoinc(PCA955xState *s)
189 PCA955xClass *k = PCA955X_GET_CLASS(s);
191 if (s->pointer != 0xFF && s->pointer & PCA9552_AUTOINC) {
192 uint8_t reg = s->pointer & 0xf;
194 reg = (reg + 1) % (k->max_reg + 1);
195 s->pointer = reg | PCA9552_AUTOINC;
199 static uint8_t pca955x_recv(I2CSlave *i2c)
201 PCA955xState *s = PCA955X(i2c);
202 uint8_t ret;
204 ret = pca955x_read(s, s->pointer & 0xf);
207 * From the Specs:
209 * Important Note: When a Read sequence is initiated and the
210 * AI bit is set to Logic Level 1, the Read Sequence MUST
211 * start by a register different from 0.
213 * I don't know what should be done in this case, so throw an
214 * error.
216 if (s->pointer == PCA9552_AUTOINC) {
217 qemu_log_mask(LOG_GUEST_ERROR,
218 "%s: Autoincrement read starting with register 0\n",
219 __func__);
222 pca955x_autoinc(s);
224 return ret;
227 static int pca955x_send(I2CSlave *i2c, uint8_t data)
229 PCA955xState *s = PCA955X(i2c);
231 /* First byte sent by is the register address */
232 if (s->len == 0) {
233 s->pointer = data;
234 s->len++;
235 } else {
236 pca955x_write(s, s->pointer & 0xf, data);
238 pca955x_autoinc(s);
241 return 0;
244 static int pca955x_event(I2CSlave *i2c, enum i2c_event event)
246 PCA955xState *s = PCA955X(i2c);
248 s->len = 0;
249 return 0;
252 static void pca955x_get_led(Object *obj, Visitor *v, const char *name,
253 void *opaque, Error **errp)
255 PCA955xClass *k = PCA955X_GET_CLASS(obj);
256 PCA955xState *s = PCA955X(obj);
257 int led, rc, reg;
258 uint8_t state;
260 rc = sscanf(name, "led%2d", &led);
261 if (rc != 1) {
262 error_setg(errp, "%s: error reading %s", __func__, name);
263 return;
265 if (led < 0 || led > k->pin_count) {
266 error_setg(errp, "%s invalid led %s", __func__, name);
267 return;
270 * Get the LSx register as the qom interface should expose the device
271 * state, not the modeled 'input line' behaviour which would come from
272 * reading the INPUTx reg
274 reg = PCA9552_LS0 + led / 4;
275 state = (pca955x_read(s, reg) >> (led % 8)) & 0x3;
276 visit_type_str(v, name, (char **)&led_state[state], errp);
280 * Return an LED selector register value based on an existing one, with
281 * the appropriate 2-bit state value set for the given LED number (0-3).
283 static inline uint8_t pca955x_ledsel(uint8_t oldval, int led_num, int state)
285 return (oldval & (~(0x3 << (led_num << 1)))) |
286 ((state & 0x3) << (led_num << 1));
289 static void pca955x_set_led(Object *obj, Visitor *v, const char *name,
290 void *opaque, Error **errp)
292 PCA955xClass *k = PCA955X_GET_CLASS(obj);
293 PCA955xState *s = PCA955X(obj);
294 Error *local_err = NULL;
295 int led, rc, reg, val;
296 uint8_t state;
297 char *state_str;
299 visit_type_str(v, name, &state_str, &local_err);
300 if (local_err) {
301 error_propagate(errp, local_err);
302 return;
304 rc = sscanf(name, "led%2d", &led);
305 if (rc != 1) {
306 error_setg(errp, "%s: error reading %s", __func__, name);
307 return;
309 if (led < 0 || led > k->pin_count) {
310 error_setg(errp, "%s invalid led %s", __func__, name);
311 return;
314 for (state = 0; state < ARRAY_SIZE(led_state); state++) {
315 if (!strcmp(state_str, led_state[state])) {
316 break;
319 if (state >= ARRAY_SIZE(led_state)) {
320 error_setg(errp, "%s invalid led state %s", __func__, state_str);
321 return;
324 reg = PCA9552_LS0 + led / 4;
325 val = pca955x_read(s, reg);
326 val = pca955x_ledsel(val, led % 4, state);
327 pca955x_write(s, reg, val);
330 static const VMStateDescription pca9552_vmstate = {
331 .name = "PCA9552",
332 .version_id = 0,
333 .minimum_version_id = 0,
334 .fields = (VMStateField[]) {
335 VMSTATE_UINT8(len, PCA955xState),
336 VMSTATE_UINT8(pointer, PCA955xState),
337 VMSTATE_UINT8_ARRAY(regs, PCA955xState, PCA955X_NR_REGS),
338 VMSTATE_I2C_SLAVE(i2c, PCA955xState),
339 VMSTATE_END_OF_LIST()
343 static void pca9552_reset(DeviceState *dev)
345 PCA955xState *s = PCA955X(dev);
347 s->regs[PCA9552_PSC0] = 0xFF;
348 s->regs[PCA9552_PWM0] = 0x80;
349 s->regs[PCA9552_PSC1] = 0xFF;
350 s->regs[PCA9552_PWM1] = 0x80;
351 s->regs[PCA9552_LS0] = 0x55; /* all OFF */
352 s->regs[PCA9552_LS1] = 0x55;
353 s->regs[PCA9552_LS2] = 0x55;
354 s->regs[PCA9552_LS3] = 0x55;
356 pca955x_update_pin_input(s);
358 s->pointer = 0xFF;
359 s->len = 0;
362 static void pca955x_initfn(Object *obj)
364 PCA955xClass *k = PCA955X_GET_CLASS(obj);
365 int led;
367 assert(k->pin_count <= PCA955X_PIN_COUNT_MAX);
368 for (led = 0; led < k->pin_count; led++) {
369 char *name;
371 name = g_strdup_printf("led%d", led);
372 object_property_add(obj, name, "bool", pca955x_get_led, pca955x_set_led,
373 NULL, NULL);
374 g_free(name);
378 static void pca955x_realize(DeviceState *dev, Error **errp)
380 PCA955xClass *k = PCA955X_GET_CLASS(dev);
381 PCA955xState *s = PCA955X(dev);
383 if (!s->description) {
384 s->description = g_strdup("pca-unspecified");
387 qdev_init_gpio_out(dev, s->gpio, k->pin_count);
390 static Property pca955x_properties[] = {
391 DEFINE_PROP_STRING("description", PCA955xState, description),
392 DEFINE_PROP_END_OF_LIST(),
395 static void pca955x_class_init(ObjectClass *klass, void *data)
397 DeviceClass *dc = DEVICE_CLASS(klass);
398 I2CSlaveClass *k = I2C_SLAVE_CLASS(klass);
400 k->event = pca955x_event;
401 k->recv = pca955x_recv;
402 k->send = pca955x_send;
403 dc->realize = pca955x_realize;
404 device_class_set_props(dc, pca955x_properties);
407 static const TypeInfo pca955x_info = {
408 .name = TYPE_PCA955X,
409 .parent = TYPE_I2C_SLAVE,
410 .instance_init = pca955x_initfn,
411 .instance_size = sizeof(PCA955xState),
412 .class_init = pca955x_class_init,
413 .class_size = sizeof(PCA955xClass),
414 .abstract = true,
417 static void pca9552_class_init(ObjectClass *oc, void *data)
419 DeviceClass *dc = DEVICE_CLASS(oc);
420 PCA955xClass *pc = PCA955X_CLASS(oc);
422 dc->reset = pca9552_reset;
423 dc->vmsd = &pca9552_vmstate;
424 pc->max_reg = PCA9552_LS3;
425 pc->pin_count = 16;
428 static const TypeInfo pca9552_info = {
429 .name = TYPE_PCA9552,
430 .parent = TYPE_PCA955X,
431 .class_init = pca9552_class_init,
434 static void pca955x_register_types(void)
436 type_register_static(&pca955x_info);
437 type_register_static(&pca9552_info);
440 type_init(pca955x_register_types)