Merge tag 'drm-msm-fixes-2019-01-24' of git://people.freedesktop.org/~robclark/linux...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / spi / spi-fsl-lpspi.txt
1 * Freescale Low Power SPI (LPSPI) for i.MX
2
3 Required properties:
4 - compatible :
5   - "fsl,imx7ulp-spi" for LPSPI compatible with the one integrated on i.MX7ULP soc
6   - "fsl,imx8qxp-spi" for LPSPI compatible with the one integrated on i.MX8QXP soc
7 - reg : address and length of the lpspi master registers
8 - interrupt-parent : core interrupt controller
9 - interrupts : lpspi interrupt
10 - clocks : lpspi clock specifier
11 - spi-slave : spi slave mode support. In slave mode, add this attribute without
12               value. In master mode, remove it.
13
14 Examples:
15
16 lpspi2: lpspi@40290000 {
17         compatible = "fsl,imx7ulp-spi";
18         reg = <0x40290000 0x10000>;
19         interrupt-parent = <&intc>;
20         interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
21         clocks = <&clks IMX7ULP_CLK_LPSPI2>;
22         spi-slave;
23 };