diff options
author | Raptor Engineering Development Team <support@raptorengineering.com> | 2018-05-26 15:47:27 -0500 |
---|---|---|
committer | Raptor Engineering Development Team <support@raptorengineering.com> | 2019-04-19 11:33:27 +0000 |
commit | 6fd02e9300bb4749750874b7c1735fd0ffc07ba9 (patch) | |
tree | 82495d4eb0f51ba04d127c9a030757c57356a519 /arch/arm/boot/dts | |
parent | 695541f48b4a458c8fcbd2830337797045d3b1d2 (diff) | |
download | blackbird-obmc-linux-6fd02e9300bb4749750874b7c1735fd0ffc07ba9.tar.gz blackbird-obmc-linux-6fd02e9300bb4749750874b7c1735fd0ffc07ba9.zip |
Add CPU SEEPROMs to Talos device tree Enable I2C bus 0 (CPU 0 SEEPROMs) in Talos device tree
Diffstat (limited to 'arch/arm/boot/dts')
-rw-r--r-- | arch/arm/boot/dts/aspeed-bmc-opp-talos.dts | 54 |
1 files changed, 52 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-talos.dts b/arch/arm/boot/dts/aspeed-bmc-opp-talos.dts index 8ccb95607601..cd78c38e2be1 100644 --- a/arch/arm/boot/dts/aspeed-bmc-opp-talos.dts +++ b/arch/arm/boot/dts/aspeed-bmc-opp-talos.dts @@ -154,13 +154,63 @@ }; &i2c0 { - status = "disabled"; + /* CPU0 */ + status = "okay"; + + /* SEEPROM bank 0 */ + eeprom@54 { + compatible = "atmel,24c256"; + reg = <0x54>; + pagesize = <64>; + }; + /* SEEPROM bank 1 */ + eeprom@55 { + compatible = "atmel,24c256"; + reg = <0x55>; + pagesize = <64>; + }; + /* SEEPROM bank 2 */ + eeprom@56 { + compatible = "atmel,24c256"; + reg = <0x56>; + pagesize = <64>; + }; + /* SEEPROM bank 3 */ + eeprom@57 { + compatible = "atmel,24c256"; + reg = <0x57>; + pagesize = <64>; + }; }; &i2c1 { + /* CPU1 */ status = "okay"; - /* CPU1 */ + /* SEEPROM bank 0 */ + eeprom@54 { + compatible = "atmel,24c256"; + reg = <0x54>; + pagesize = <64>; + }; + /* SEEPROM bank 1 */ + eeprom@55 { + compatible = "atmel,24c256"; + reg = <0x55>; + pagesize = <64>; + }; + /* SEEPROM bank 2 */ + eeprom@56 { + compatible = "atmel,24c256"; + reg = <0x56>; + pagesize = <64>; + }; + /* SEEPROM bank 3 */ + eeprom@57 { + compatible = "atmel,24c256"; + reg = <0x57>; + pagesize = <64>; + }; }; &i2c2 { |