Commit 8e4e717b authored by Matthias Schiffer's avatar Matthias Schiffer Committed by Vignesh Raghavendra

arm64: dts: ti: k3-am64-tqma64xxl: add supply regulator for I2C devices

Describes the hardware better, and avoids a few warnings during boot:

    lm75 0-004a: supply vs not found, using dummy regulator
    at24 0-0050: supply vcc not found, using dummy regulator
    at24 0-0054: supply vcc not found, using dummy regulator
Signed-off-by: default avatarMatthias Schiffer <matthias.schiffer@ew.tq-group.com>
Link: https://lore.kernel.org/r/d5991041263c96c798b94c0844a1550e28daa3b1.1695901360.git.matthias.schiffer@ew.tq-group.comSigned-off-by: default avatarVignesh Raghavendra <vigneshr@ti.com>
parent 067878e6
......@@ -85,6 +85,15 @@ rtos_ipc_memory_region: ipc-memories@a5000000 {
no-map;
};
};
reg_1v8: regulator-1v8 {
compatible = "regulator-fixed";
regulator-name = "V_1V8";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
regulator-always-on;
regulator-boot-on;
};
};
&main_i2c0 {
......@@ -96,11 +105,13 @@ &main_i2c0 {
tmp1075: temperature-sensor@4a {
compatible = "ti,tmp1075";
reg = <0x4a>;
vs-supply = <&reg_1v8>;
};
eeprom0: eeprom@50 {
compatible = "st,24c02", "atmel,24c02";
reg = <0x50>;
vcc-supply = <&reg_1v8>;
pagesize = <16>;
read-only;
};
......@@ -114,6 +125,7 @@ pcf85063: rtc@51 {
eeprom1: eeprom@54 {
compatible = "st,24c64", "atmel,24c64";
reg = <0x54>;
vcc-supply = <&reg_1v8>;
pagesize = <32>;
};
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment