mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
hw/i2c/aspeed: add DEV_ADDR in old register mode
Add support for writing and reading the device address register in old register mode. On the AST2400 (only 1 slave address) * no upper bits On the AST2500 (2 possible slave addresses), * bit[31] : Slave Address match indicator * bit[30] : Slave Address Receiving pending On the AST2600 (3 possible slave addresses), * bit[31-30] : Slave Address match indicator * bit[29] : Slave Address Receiving pending The model could be more precise to take into account all fields but since the Linux driver is masking the register value being set, it should be fine. See commit 3fb2e2aeafb2 ("i2c: aspeed: disable additional device addresses on ast2[56]xx") from Zeiv. This can be addressed later. Signed-off-by: Klaus Jensen <k.jensen@samsung.com> [ clg: add details to commit log ] Message-Id: <20220601210831.67259-3-its@irrelevant.dk> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
b03ec4ff06
commit
d72a712ce0
2 changed files with 10 additions and 2 deletions
|
@ -295,6 +295,14 @@ static inline uint32_t aspeed_i2c_bus_cmd_offset(AspeedI2CBus *bus)
|
|||
return R_I2CD_CMD;
|
||||
}
|
||||
|
||||
static inline uint32_t aspeed_i2c_bus_dev_addr_offset(AspeedI2CBus *bus)
|
||||
{
|
||||
if (aspeed_i2c_is_new_mode(bus->controller)) {
|
||||
return R_I2CS_DEV_ADDR;
|
||||
}
|
||||
return R_I2CD_DEV_ADDR;
|
||||
}
|
||||
|
||||
static inline uint32_t aspeed_i2c_bus_intr_ctrl_offset(AspeedI2CBus *bus)
|
||||
{
|
||||
if (aspeed_i2c_is_new_mode(bus->controller)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue