blob: b245363d6d60a0b6a42a6a4d675e1219faedc03d [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001* Freescale Low Power Inter IC (LPI2C) for i.MX
2
3Required properties:
4- compatible :
5 - "fsl,imx7ulp-lpi2c" for LPI2C compatible with the one integrated on i.MX7ULP soc
6 - "fsl,imx8qxp-lpi2c" for LPI2C compatible with the one integrated on i.MX8QXP soc
7- reg : address and length of the lpi2c master registers
8- interrupts : lpi2c interrupt
9- clocks : lpi2c clock specifier
10
11Examples:
12
13lpi2c7: lpi2c7@40a50000 {
14 compatible = "fsl,imx7ulp-lpi2c";
15 reg = <0x40A50000 0x10000>;
16 interrupt-parent = <&intc>;
17 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
18 clocks = <&clks IMX7ULP_CLK_LPI2C7>;
19};