Commit d58300b0 authored by Phuc Pham's avatar Phuc Pham Committed by Benjamin Cabé
Browse files

boards: renesas: Add I2C support for Renesas RZ/A3UL, T2M, N2L, V2L



Add I2C support for board Renesas RZ/A3UL-SMARC,
RZ/T2M-RSK, RZ/N2L-RSK, RZ/V2L-SMARC

Signed-off-by: default avatarPhuc Pham <phuc.pham.xr@bp.renesas.com>
Signed-off-by: default avatarNhut Nguyen <nhut.nguyen.kc@renesas.com>
parent 1b77402e
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -27,4 +27,11 @@
			pinmux = <RZA_PINMUX(PORT_04, 2, 4)>; /* MTIOCA */
		};
	};

	/omit-if-no-ref/ i2c1_pins: i2c1 {
		i2c1-spins {
			pins = <BSP_IO_RIIC1_SDA>, <BSP_IO_RIIC1_SCL>;
			input-enable;
		};
	};
};
+6 −0
Original line number Diff line number Diff line
@@ -71,3 +71,9 @@
&adc {
	status = "okay";
};

&i2c1 {
	pinctrl-0 = <&i2c1_pins>;
	pinctrl-names = "default";
	status = "okay";
};
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ supported:
  - gpio
  - pwm
  - adc
  - i2c
testing:
  ignore_tags:
    - bluetooth
+7 −0
Original line number Diff line number Diff line
@@ -41,4 +41,11 @@
				 <RZN_PINMUX(PORT_04, 0, 3)>; /* GTIOCB */
		};
	};

	/omit-if-no-ref/ i2c1_default: i2c1_default {
		i2c1-pinmux {
			pinmux = <RZN_PINMUX(PORT_05, 2, 8)>, /* SCL */
				 <RZN_PINMUX(PORT_05, 3, 9)>; /* SDA */
		};
	};
};
+6 −0
Original line number Diff line number Diff line
@@ -117,3 +117,9 @@
&adc1 {
	status = "okay";
};

&i2c1 {
	pinctrl-0 = <&i2c1_default>;
	pinctrl-names = "default";
	status = "okay";
};
Loading