| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | #ifndef QEMU_I2C_H
 | 
					
						
							|  |  |  | #define QEMU_I2C_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/qdev.h"
 | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | /* The QEMU I2C implementation only supports simple transfers that complete
 | 
					
						
							|  |  |  |    immediately.  It does not support slave devices that need to be able to | 
					
						
							|  |  |  |    defer their response (eg. CPU slave interfaces where the data is supplied | 
					
						
							|  |  |  |    by the device driver in response to an interrupt).  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum i2c_event { | 
					
						
							|  |  |  |     I2C_START_RECV, | 
					
						
							|  |  |  |     I2C_START_SEND, | 
					
						
							|  |  |  |     I2C_FINISH, | 
					
						
							| 
									
										
										
										
											2007-07-11 22:48:58 +00:00
										 |  |  |     I2C_NACK /* Masker NACKed a receive byte.  */ | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:28:27 -06:00
										 |  |  | typedef struct I2CSlave I2CSlave; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  | #define TYPE_I2C_SLAVE "i2c-slave"
 | 
					
						
							|  |  |  | #define I2C_SLAVE(obj) \
 | 
					
						
							|  |  |  |      OBJECT_CHECK(I2CSlave, (obj), TYPE_I2C_SLAVE) | 
					
						
							|  |  |  | #define I2C_SLAVE_CLASS(klass) \
 | 
					
						
							|  |  |  |      OBJECT_CLASS_CHECK(I2CSlaveClass, (klass), TYPE_I2C_SLAVE) | 
					
						
							|  |  |  | #define I2C_SLAVE_GET_CLASS(obj) \
 | 
					
						
							|  |  |  |      OBJECT_GET_CLASS(I2CSlaveClass, (obj), TYPE_I2C_SLAVE) | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  | typedef struct I2CSlaveClass | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DeviceClass parent_class; | 
					
						
							| 
									
										
										
										
											2009-05-23 00:05:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  |     /* Callbacks provided by the device.  */ | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  |     int (*init)(I2CSlave *dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 11:40:20 +00:00
										 |  |  |     /* Master to slave. Returns non-zero for a NAK, 0 for success. */ | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  |     int (*send)(I2CSlave *s, uint8_t data); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 11:40:20 +00:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Slave to master.  This cannot fail, the device should always | 
					
						
							|  |  |  |      * return something here.  Negative values probably result in 0xff | 
					
						
							|  |  |  |      * and a possible log from the driver, and shouldn't be used. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  |     int (*recv)(I2CSlave *s); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 11:40:20 +00:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Notify the slave of a bus state change.  For start event, | 
					
						
							|  |  |  |      * returns non-zero to NAK an operation.  For other events the | 
					
						
							|  |  |  |      * return code is not used and should be zero. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     int (*event)(I2CSlave *s, enum i2c_event event); | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  | } I2CSlaveClass; | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:28:27 -06:00
										 |  |  | struct I2CSlave | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  |     DeviceState qdev; | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Remaining fields for internal use by the I2C code.  */ | 
					
						
							| 
									
										
										
										
											2009-09-29 22:48:26 +02:00
										 |  |  |     uint8_t address; | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-03 00:18:51 +02:00
										 |  |  | I2CBus *i2c_init_bus(DeviceState *parent, const char *name); | 
					
						
							| 
									
										
										
										
											2011-12-04 20:28:27 -06:00
										 |  |  | void i2c_set_slave_address(I2CSlave *dev, uint8_t address); | 
					
						
							| 
									
										
										
										
											2013-08-03 00:18:51 +02:00
										 |  |  | int i2c_bus_busy(I2CBus *bus); | 
					
						
							|  |  |  | int i2c_start_transfer(I2CBus *bus, uint8_t address, int recv); | 
					
						
							|  |  |  | void i2c_end_transfer(I2CBus *bus); | 
					
						
							|  |  |  | void i2c_nack(I2CBus *bus); | 
					
						
							| 
									
										
										
										
											2016-06-14 15:59:14 +01:00
										 |  |  | int i2c_send_recv(I2CBus *bus, uint8_t *data, bool send); | 
					
						
							| 
									
										
										
										
											2013-08-03 00:18:51 +02:00
										 |  |  | int i2c_send(I2CBus *bus, uint8_t data); | 
					
						
							|  |  |  | int i2c_recv(I2CBus *bus); | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-03 00:18:51 +02:00
										 |  |  | DeviceState *i2c_create_slave(I2CBus *bus, const char *name, uint8_t addr); | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | /* wm8750.c */ | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | void wm8750_data_req_set(DeviceState *dev, | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  |                 void (*data_req)(void *, int, int), void *opaque); | 
					
						
							|  |  |  | void wm8750_dac_dat(void *opaque, uint32_t sample); | 
					
						
							|  |  |  | uint32_t wm8750_adc_dat(void *opaque); | 
					
						
							| 
									
										
										
										
											2008-04-26 12:00:18 +00:00
										 |  |  | void *wm8750_dac_buffer(void *opaque, int samples); | 
					
						
							|  |  |  | void wm8750_dac_commit(void *opaque); | 
					
						
							| 
									
										
										
										
											2008-11-12 17:36:08 +00:00
										 |  |  | void wm8750_set_bclk_in(void *opaque, int new_hz); | 
					
						
							| 
									
										
										
										
											2007-05-23 22:04:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-09 22:16:11 +00:00
										 |  |  | /* lm832x.c */ | 
					
						
							| 
									
										
										
										
											2011-07-29 16:35:18 +01:00
										 |  |  | void lm832x_key_event(DeviceState *dev, int key, int state); | 
					
						
							| 
									
										
										
										
											2008-05-09 22:16:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-13 17:07:20 +01:00
										 |  |  | extern const VMStateDescription vmstate_i2c_slave; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define VMSTATE_I2C_SLAVE(_field, _state) {                          \
 | 
					
						
							|  |  |  |     .name       = (stringify(_field)),                               \ | 
					
						
							| 
									
										
										
										
											2011-12-04 20:28:27 -06:00
										 |  |  |     .size       = sizeof(I2CSlave),                                  \ | 
					
						
							| 
									
										
										
										
											2012-01-13 17:07:20 +01:00
										 |  |  |     .vmsd       = &vmstate_i2c_slave,                                \ | 
					
						
							|  |  |  |     .flags      = VMS_STRUCT,                                        \ | 
					
						
							| 
									
										
										
										
											2011-12-04 20:28:27 -06:00
										 |  |  |     .offset     = vmstate_offset_value(_state, _field, I2CSlave),    \ | 
					
						
							| 
									
										
										
										
											2012-01-13 17:07:20 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-23 00:03:59 +00:00
										 |  |  | #endif
 |