Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc/p1010rdb: add EEPROMs to device tree

Add EEPROM to the P1010RDB device tree.
The 24c01 acts as a memory SPD so it shouldn't be overwritten without
care.
The 24c256 is a general purpose memory.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

authored by

Gustavo Zacarias and committed by
Kumar Gala
babb5e8d 4b2e185d

+12
+12
arch/powerpc/boot/dts/p1010rdb.dtsi
··· 126 126 127 127 &board_soc { 128 128 i2c@3000 { 129 + eeprom@50 { 130 + compatible = "st,24c256"; 131 + reg = <0x50>; 132 + }; 133 + 129 134 rtc@68 { 130 135 compatible = "pericom,pt7c4338"; 131 136 reg = <0x68>; 137 + }; 138 + }; 139 + 140 + i2c@3100 { 141 + eeprom@52 { 142 + compatible = "atmel,24c01"; 143 + reg = <0x52>; 132 144 }; 133 145 }; 134 146