Skip to content
Snippets Groups Projects
Commit 776f96f5 authored by Simon Glass's avatar Simon Glass
Browse files

dm: i2c: dts: Add an I2C bus for sandbox


Add an I2C bus to the device tree, with an EEPROM emulator attached to one
of the addresses.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Acked-by: default avatarHeiko Schocher <hs@denx.de>
Reviewed-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
parent ac395f08
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,23 @@
num-gpios = <20>;
};
i2c@0 {
#address-cells = <1>;
#size-cells = <0>;
reg = <0>;
compatible = "sandbox,i2c";
clock-frequency = <400000>;
eeprom@2c {
reg = <0x2c>;
compatible = "i2c-eeprom";
emul {
compatible = "sandbox,i2c-eeprom";
sandbox,filename = "i2c.bin";
sandbox,size = <128>;
};
};
};
spi@0 {
#address-cells = <1>;
#size-cells = <0>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment