mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-30 14:27:28 +00:00
'interrupt-parent' is often documented as part of define bindings, but it is really outside the scope of a device binding. It's never required in a given node as it is often inherited from a parent node. Or it can be implicit if a parent node is an 'interrupt-controller' node. So remove it from all the binding files. Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
20 lines
593 B
Plaintext
20 lines
593 B
Plaintext
* Freescale Low Power Inter IC (LPI2C) for i.MX
|
|
|
|
Required properties:
|
|
- compatible :
|
|
- "fsl,imx7ulp-lpi2c" for LPI2C compatible with the one integrated on i.MX7ULP soc
|
|
- "fsl,imx8dv-lpi2c" for LPI2C compatible with the one integrated on i.MX8DV soc
|
|
- reg : address and length of the lpi2c master registers
|
|
- interrupts : lpi2c interrupt
|
|
- clocks : lpi2c clock specifier
|
|
|
|
Examples:
|
|
|
|
lpi2c7: lpi2c7@40a50000 {
|
|
compatible = "fsl,imx8dv-lpi2c";
|
|
reg = <0x40A50000 0x10000>;
|
|
interrupt-parent = <&intc>;
|
|
interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&clks IMX7ULP_CLK_LPI2C7>;
|
|
};
|