From: Chris Rauer Date: Fri, 7 Jan 2022 17:08:00 +0000 (+0000) Subject: hw/arm: Add kudo i2c eeproms. X-Git-Tag: v7.0.0-rc0~103^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=560223dcf0d9e83e26a85cec32d8aec272813d8e;p=thirdparty%2Fqemu.git hw/arm: Add kudo i2c eeproms. Signed-off-by: Chris Rauer Reviewed-by: Hao Wu Reviewed-by: Patrick Venture Reviewed-by: Philippe Mathieu-Daudé Message-id: 20220102215844.2888833-2-venture@google.com Signed-off-by: Peter Maydell --- diff --git a/hw/arm/npcm7xx_boards.c b/hw/arm/npcm7xx_boards.c index 0866d2f4f05..37de9fef434 100644 --- a/hw/arm/npcm7xx_boards.c +++ b/hw/arm/npcm7xx_boards.c @@ -328,6 +328,13 @@ static void quanta_gbs_i2c_init(NPCM7xxState *soc) */ } +static void kudo_bmc_i2c_init(NPCM7xxState *soc) +{ + at24c_eeprom_init(soc, 4, 0x50, 8192); /* mbfru */ + at24c_eeprom_init(soc, 14, 0x55, 8192); /* bmcfru */ + /* TODO: Add remaining i2c devices. */ +} + static void npcm750_evb_init(MachineState *machine) { NPCM7xxState *soc; @@ -391,6 +398,7 @@ static void kudo_bmc_init(MachineState *machine) npcm7xx_connect_flash(&soc->fiu[1], 0, "mx66u51235f", drive_get(IF_MTD, 3, 0)); + kudo_bmc_i2c_init(soc); npcm7xx_load_kernel(machine, soc); }