diff options
author | Patrick Venture <venture@google.com> | 2021-06-08 13:25:20 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-06-16 14:33:51 +0100 |
commit | 319466876b33dc98aa2b9e59deab126c2236bd3e (patch) | |
tree | f0a2cb138993fe0f503dbebcb01f17093c11b582 /hw/arm/npcm7xx_boards.c | |
parent | d3327a38cda104dd292105b6b9d140f2158209f9 (diff) | |
download | qemu-319466876b33dc98aa2b9e59deab126c2236bd3e.zip qemu-319466876b33dc98aa2b9e59deab126c2236bd3e.tar.gz qemu-319466876b33dc98aa2b9e59deab126c2236bd3e.tar.bz2 |
hw/arm: gsj add i2c comments
Adds comments to the board init to identify missing i2c devices.
Signed-off-by: Patrick Venture <venture@google.com>
Reviewed-by: Hao Wu <wuhaotsh@google.com>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Message-id: 20210608202522.2677850-2-venture@google.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/npcm7xx_boards.c')
-rw-r--r-- | hw/arm/npcm7xx_boards.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/hw/arm/npcm7xx_boards.c b/hw/arm/npcm7xx_boards.c index bba23e2..eed0da7 100644 --- a/hw/arm/npcm7xx_boards.c +++ b/hw/arm/npcm7xx_boards.c @@ -221,7 +221,21 @@ static void quanta_gsj_i2c_init(NPCM7xxState *soc) at24c_eeprom_init(soc, 9, 0x55, 8192); at24c_eeprom_init(soc, 10, 0x55, 8192); - /* TODO: Add additional i2c devices. */ + /* + * i2c-11: + * - power-brick@36: delta,dps800 + * - hotswap@15: ti,lm5066i + */ + + /* + * i2c-12: + * - ucd90160@6b + */ + + /* + * i2c-15: + * - pca9548@75 + */ } static void quanta_gsj_fan_init(NPCM7xxMachine *machine, NPCM7xxState *soc) |