Re: [PATCH 1/4] hw/arm: Add kudo i2c eeproms.

2022-01-02 Thread Philippe Mathieu-Daudé

On 2/1/22 22:58, Patrick Venture wrote:

From: Chris Rauer 

Signed-off-by: Chris Rauer 
Reviewed-by: Hao Wu 
Reviewed-by: Patrick Venture 
---
  hw/arm/npcm7xx_boards.c | 8 
  1 file changed, 8 insertions(+)



Reviewed-by: Philippe Mathieu-Daudé 



[PATCH 1/4] hw/arm: Add kudo i2c eeproms.

2022-01-02 Thread Patrick Venture
From: Chris Rauer 

Signed-off-by: Chris Rauer 
Reviewed-by: Hao Wu 
Reviewed-by: Patrick Venture 
---
 hw/arm/npcm7xx_boards.c | 8 
 1 file changed, 8 insertions(+)

diff --git a/hw/arm/npcm7xx_boards.c b/hw/arm/npcm7xx_boards.c
index 0866d2f4f0..37de9fef43 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);
 }
 
-- 
2.34.1.448.ga2b2bfdf31-goog