| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * MAX7310 8-port GPIO expansion chip. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2006 Openedhand Ltd. | 
					
						
							|  |  |  |  * Written by Andrzej Zaborowski <balrog@zabor.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is licensed under GNU GPL. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-26 18:17:30 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/i2c/i2c.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:42 +02:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:45 +02:00
										 |  |  | #include "migration/vmstate.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-01 12:42:34 +02:00
										 |  |  | #include "qemu/log.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 16:35:07 +02:00
										 |  |  | #include "qemu/module.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | #include "qom/object.h"
 | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  | #define TYPE_MAX7310 "max7310"
 | 
					
						
							| 
									
										
										
										
											2020-09-16 14:25:19 -04:00
										 |  |  | OBJECT_DECLARE_SIMPLE_TYPE(MAX7310State, MAX7310) | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | struct MAX7310State { | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  |     I2CSlave parent_obj; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |     int i2c_command_byte; | 
					
						
							|  |  |  |     int len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     uint8_t level; | 
					
						
							|  |  |  |     uint8_t direction; | 
					
						
							|  |  |  |     uint8_t polarity; | 
					
						
							|  |  |  |     uint8_t status; | 
					
						
							|  |  |  |     uint8_t command; | 
					
						
							|  |  |  |     qemu_irq handler[8]; | 
					
						
							|  |  |  |     qemu_irq *gpio_in; | 
					
						
							| 
									
										
										
										
											2020-09-03 16:43:22 -04:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-11 23:57:38 +03:00
										 |  |  | static void max7310_reset(DeviceState *dev) | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  |     MAX7310State *s = MAX7310(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |     s->level &= s->direction; | 
					
						
							|  |  |  |     s->direction = 0xff; | 
					
						
							|  |  |  |     s->polarity = 0xf0; | 
					
						
							|  |  |  |     s->status = 0x01; | 
					
						
							|  |  |  |     s->command = 0x00; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-14 11:50:50 -06:00
										 |  |  | static uint8_t max7310_rx(I2CSlave *i2c) | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  |     MAX7310State *s = MAX7310(i2c); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch (s->command) { | 
					
						
							|  |  |  |     case 0x00:	/* Input port */ | 
					
						
							|  |  |  |         return s->level ^ s->polarity; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x01:	/* Output port */ | 
					
						
							|  |  |  |         return s->level & ~s->direction; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x02:	/* Polarity inversion */ | 
					
						
							|  |  |  |         return s->polarity; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x03:	/* Configuration */ | 
					
						
							|  |  |  |         return s->direction; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x04:	/* Timeout */ | 
					
						
							|  |  |  |         return s->status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0xff:	/* Reserved */ | 
					
						
							|  |  |  |         return 0xff; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2020-09-01 12:42:34 +02:00
										 |  |  |         qemu_log_mask(LOG_UNIMP, "%s: Unsupported register 0x02%" PRIx8 "\n", | 
					
						
							|  |  |  |                       __func__, s->command); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0xff; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:28:27 -06:00
										 |  |  | static int max7310_tx(I2CSlave *i2c, uint8_t data) | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  |     MAX7310State *s = MAX7310(i2c); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |     uint8_t diff; | 
					
						
							|  |  |  |     int line; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->len ++ > 1) { | 
					
						
							|  |  |  | #ifdef VERBOSE
 | 
					
						
							| 
									
										
										
										
											2017-11-08 14:56:31 -08:00
										 |  |  |         printf("%s: message too long (%i bytes)\n", __func__, s->len); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->i2c_command_byte) { | 
					
						
							|  |  |  |         s->command = data; | 
					
						
							|  |  |  |         s->i2c_command_byte = 0; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (s->command) { | 
					
						
							|  |  |  |     case 0x01:	/* Output port */ | 
					
						
							|  |  |  |         for (diff = (data ^ s->level) & ~s->direction; diff; | 
					
						
							|  |  |  |                         diff &= ~(1 << line)) { | 
					
						
							| 
									
										
										
										
											2015-03-23 15:29:26 +00:00
										 |  |  |             line = ctz32(diff); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |             if (s->handler[line]) | 
					
						
							|  |  |  |                 qemu_set_irq(s->handler[line], (data >> line) & 1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         s->level = (s->level & s->direction) | (data & ~s->direction); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x02:	/* Polarity inversion */ | 
					
						
							|  |  |  |         s->polarity = data; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x03:	/* Configuration */ | 
					
						
							|  |  |  |         s->level &= ~(s->direction ^ data); | 
					
						
							|  |  |  |         s->direction = data; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x04:	/* Timeout */ | 
					
						
							|  |  |  |         s->status = data; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case 0x00:	/* Input port - ignore writes */ | 
					
						
							| 
									
										
										
										
											2018-12-13 23:37:37 +01:00
										 |  |  |         break; | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2020-09-01 12:42:34 +02:00
										 |  |  |         qemu_log_mask(LOG_UNIMP, "%s: Unsupported register 0x02%" PRIx8 "\n", | 
					
						
							|  |  |  |                       __func__, s->command); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 11:40:20 +00:00
										 |  |  | static int max7310_event(I2CSlave *i2c, enum i2c_event event) | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  |     MAX7310State *s = MAX7310(i2c); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |     s->len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (event) { | 
					
						
							|  |  |  |     case I2C_START_SEND: | 
					
						
							|  |  |  |         s->i2c_command_byte = 1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case I2C_FINISH: | 
					
						
							|  |  |  | #ifdef VERBOSE
 | 
					
						
							| 
									
										
										
										
											2008-05-09 22:17:18 +00:00
										 |  |  |         if (s->len == 1) | 
					
						
							| 
									
										
										
										
											2017-11-08 14:56:31 -08:00
										 |  |  |             printf("%s: message too short (%i bytes)\n", __func__, s->len); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-09 11:40:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 22:48:32 +02:00
										 |  |  | static const VMStateDescription vmstate_max7310 = { | 
					
						
							|  |  |  |     .name = "max7310", | 
					
						
							|  |  |  |     .version_id = 0, | 
					
						
							|  |  |  |     .minimum_version_id = 0, | 
					
						
							| 
									
										
										
										
											2014-05-13 16:09:35 +01:00
										 |  |  |     .fields = (VMStateField[]) { | 
					
						
							| 
									
										
										
										
											2009-09-29 22:48:32 +02:00
										 |  |  |         VMSTATE_INT32(i2c_command_byte, MAX7310State), | 
					
						
							|  |  |  |         VMSTATE_INT32(len, MAX7310State), | 
					
						
							|  |  |  |         VMSTATE_UINT8(level, MAX7310State), | 
					
						
							|  |  |  |         VMSTATE_UINT8(direction, MAX7310State), | 
					
						
							|  |  |  |         VMSTATE_UINT8(polarity, MAX7310State), | 
					
						
							|  |  |  |         VMSTATE_UINT8(status, MAX7310State), | 
					
						
							|  |  |  |         VMSTATE_UINT8(command, MAX7310State), | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  |         VMSTATE_I2C_SLAVE(parent_obj, MAX7310State), | 
					
						
							| 
									
										
										
										
											2009-09-29 22:48:32 +02:00
										 |  |  |         VMSTATE_END_OF_LIST() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-05-24 18:50:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | static void max7310_gpio_set(void *opaque, int line, int level) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  |     MAX7310State *s = (MAX7310State *) opaque; | 
					
						
							| 
									
										
										
										
											2020-09-10 09:23:24 +02:00
										 |  |  |     assert(line >= 0 && line < ARRAY_SIZE(s->handler)); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (level) | 
					
						
							|  |  |  |         s->level |= s->direction & (1 << line); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         s->level &= ~(s->direction & (1 << line)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* MAX7310 is SMBus-compatible (can be used with only SMBus protocols),
 | 
					
						
							|  |  |  |  * but also accepts sequences that are not SMBus so return an I2C device.  */ | 
					
						
							| 
									
										
										
										
											2018-05-28 16:45:07 +02:00
										 |  |  | static void max7310_realize(DeviceState *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-05-28 16:45:07 +02:00
										 |  |  |     I2CSlave *i2c = I2C_SLAVE(dev); | 
					
						
							|  |  |  |     MAX7310State *s = MAX7310(dev); | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-11 23:57:38 +03:00
										 |  |  |     qdev_init_gpio_in(&i2c->qdev, max7310_gpio_set, 8); | 
					
						
							|  |  |  |     qdev_init_gpio_out(&i2c->qdev, s->handler, 8); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  | static void max7310_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     DeviceClass *dc = DEVICE_CLASS(klass); | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  |     I2CSlaveClass *k = I2C_SLAVE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-28 16:45:07 +02:00
										 |  |  |     dc->realize = max7310_realize; | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  |     k->event = max7310_event; | 
					
						
							|  |  |  |     k->recv = max7310_rx; | 
					
						
							|  |  |  |     k->send = max7310_tx; | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     dc->reset = max7310_reset; | 
					
						
							|  |  |  |     dc->vmsd = &vmstate_max7310; | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo max7310_info = { | 
					
						
							| 
									
										
										
										
											2013-12-19 22:21:57 +01:00
										 |  |  |     .name          = TYPE_MAX7310, | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     .parent        = TYPE_I2C_SLAVE, | 
					
						
							|  |  |  |     .instance_size = sizeof(MAX7310State), | 
					
						
							|  |  |  |     .class_init    = max7310_class_init, | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | static void max7310_register_types(void) | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     type_register_static(&max7310_info); | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | type_init(max7310_register_types) |