File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 8
8
#include <arm/armv8-r.dtsi>
9
9
#include <zephyr/dt-bindings/interrupt-controller/arm-gic.h>
10
10
#include <zephyr/dt-bindings/clock/nxp_s32z2_clock.h>
11
+ #include <zephyr/dt-bindings/i2c/i2c.h>
11
12
12
13
/ {
13
14
cpus {
1094
1095
status = "disabled";
1095
1096
};
1096
1097
1098
+ lpi2c1: i2c@409d0000 {
1099
+ compatible = "nxp,imx-lpi2c";
1100
+ reg = <0x409d0000 0x10000>;
1101
+ #address-cells = <1>;
1102
+ #size-cells = <0>;
1103
+ interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL IRQ_DEFAULT_PRIORITY>;
1104
+ clocks = <&clock NXP_S32_P1_REG_INTF_CLK>;
1105
+ clock-frequency = <I2C_BITRATE_STANDARD>;
1106
+ status = "disabled";
1107
+ };
1108
+
1109
+ lpi2c2: i2c@421d0000 {
1110
+ compatible = "nxp,imx-lpi2c";
1111
+ reg = <0x421d0000 0x10000>;
1112
+ #address-cells = <1>;
1113
+ #size-cells = <0>;
1114
+ interrupts = <GIC_SPI 254 IRQ_TYPE_LEVEL IRQ_DEFAULT_PRIORITY>;
1115
+ clocks = <&clock NXP_S32_P4_REG_INTF_CLK>;
1116
+ clock-frequency = <I2C_BITRATE_STANDARD>;
1117
+ status = "disabled";
1118
+ };
1097
1119
};
1098
1120
};
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ config SOC_SERIES_S32ZE
17
17
select HAS_MCUX
18
18
select HAS_MCUX_PIT
19
19
select HAS_MCUX_FLEXCAN
20
+ select HAS_MCUX_LPI2C
20
21
21
22
if SOC_SERIES_S32ZE
22
23
You can’t perform that action at this time.
0 commit comments