2 * QEMU SMBus EEPROM device
4 * Copyright (c) 2007 Arastra, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 typedef struct SMBusEEPROMDevice
{
37 static void eeprom_quick_cmd(SMBusDevice
*dev
, uint8_t read
)
40 printf("eeprom_quick_cmd: addr=0x%02x read=%d\n", dev
->addr
, read
);
44 static void eeprom_send_byte(SMBusDevice
*dev
, uint8_t val
)
46 SMBusEEPROMDevice
*eeprom
= (SMBusEEPROMDevice
*) dev
;
48 printf("eeprom_send_byte: addr=0x%02x val=0x%02x\n", dev
->addr
, val
);
53 static uint8_t eeprom_receive_byte(SMBusDevice
*dev
)
55 SMBusEEPROMDevice
*eeprom
= (SMBusEEPROMDevice
*) dev
;
56 uint8_t val
= eeprom
->data
[eeprom
->offset
++];
58 printf("eeprom_receive_byte: addr=0x%02x val=0x%02x\n", dev
->addr
, val
);
63 static void eeprom_write_data(SMBusDevice
*dev
, uint8_t cmd
, uint8_t *buf
, int len
)
65 SMBusEEPROMDevice
*eeprom
= (SMBusEEPROMDevice
*) dev
;
68 printf("eeprom_write_byte: addr=0x%02x cmd=0x%02x val=0x%02x\n", dev
->addr
,
71 /* An page write operation is not a valid SMBus command.
72 It is a block write without a length byte. Fortunately we
73 get the full block anyway. */
74 /* TODO: Should this set the current location? */
79 memcpy(eeprom
->data
+ cmd
, buf
, n
);
82 memcpy(eeprom
->data
, buf
+ n
, len
);
85 static uint8_t eeprom_read_data(SMBusDevice
*dev
, uint8_t cmd
, int n
)
87 SMBusEEPROMDevice
*eeprom
= (SMBusEEPROMDevice
*) dev
;
88 /* If this is the first byte then set the current position. */
91 /* As with writes, we implement block reads without the
93 return eeprom_receive_byte(dev
);
96 void smbus_eeprom_device_init(i2c_bus
*bus
, uint8_t addr
, uint8_t *buf
)
98 SMBusEEPROMDevice
*eeprom
;
100 eeprom
= (SMBusEEPROMDevice
*)smbus_device_init(bus
, addr
,
101 sizeof(SMBusEEPROMDevice
));
103 eeprom
->dev
.quick_cmd
= eeprom_quick_cmd
;
104 eeprom
->dev
.send_byte
= eeprom_send_byte
;
105 eeprom
->dev
.receive_byte
= eeprom_receive_byte
;
106 eeprom
->dev
.write_data
= eeprom_write_data
;
107 eeprom
->dev
.read_data
= eeprom_read_data
;