1* Freescale Low Power SPI (LPSPI) for i.MX
2
3Required properties:
4- compatible :
5  - "fsl,imx7ulp-spi" for LPSPI compatible with the one integrated on i.MX7ULP soc
6- reg : address and length of the lpspi master registers
7- interrupts : lpspi interrupt
8- clocks : lpspi clock specifier
9
10Examples:
11
12lpspi2: lpspi@40290000 {
13	compatible = "fsl,imx7ulp-spi";
14	reg = <0x40290000 0x10000>;
15	interrupt-parent = <&intc>;
16	interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
17	clocks = <&clks IMX7ULP_CLK_LPSPI2>;
18};
19