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

arm64: dts: renesas: spider-cpu: Add I2C4 and EEPROMs

Enable the I2C4 bus on the Falcon CPU board, and describe the I2C EEPROMs
present on the Spider CPU and BreakOut boards.

Extracted from a larger patch in the BSP by LUU HOAI.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/6d8917e49f83b6a932970ca169100eb086d11f16.1643898884.git.geert+renesas@glider.be

+29
+20
arch/arm64/boot/dts/renesas/r8a779f0-spider-cpu.dtsi
··· 31 31 clock-frequency = <32768>; 32 32 }; 33 33 34 + &i2c4 { 35 + pinctrl-0 = <&i2c4_pins>; 36 + pinctrl-names = "default"; 37 + 38 + status = "okay"; 39 + clock-frequency = <400000>; 40 + 41 + eeprom@50 { 42 + compatible = "rohm,br24g01", "atmel,24c01"; 43 + label = "cpu-board"; 44 + reg = <0x50>; 45 + pagesize = <8>; 46 + }; 47 + }; 48 + 34 49 &pfc { 35 50 pinctrl-0 = <&scif_clk_pins>; 36 51 pinctrl-names = "default"; 52 + 53 + i2c4_pins: i2c4 { 54 + groups = "i2c4"; 55 + function = "i2c4"; 56 + }; 37 57 38 58 scif3_pins: scif3 { 39 59 groups = "scif3_data", "scif3_ctrl";
+9
arch/arm64/boot/dts/renesas/r8a779f0-spider.dts
··· 20 20 stdout-path = "serial0:115200n8"; 21 21 }; 22 22 }; 23 + 24 + &i2c4 { 25 + eeprom@51 { 26 + compatible = "rohm,br24g01", "atmel,24c01"; 27 + label = "breakout-board"; 28 + reg = <0x51>; 29 + pagesize = <8>; 30 + }; 31 + };