spi-fsl-lpspi.txt 501 B

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