The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/spi/spi-fsl-lpspi.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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. Its number and order need to correspond to the
   11            value in clock-names.
   12 - clock-names : Corresponding to per clock and ipg clock in "clocks"
   13                 respectively. In i.MX7ULP, it only has per clk, so use CLK_DUMMY
   14                 to fill the "ipg" blank.
   15 - spi-slave : spi slave mode support. In slave mode, add this attribute without
   16               value. In master mode, remove it.
   17 
   18 Examples:
   19 
   20 lpspi2: lpspi@40290000 {
   21         compatible = "fsl,imx7ulp-spi";
   22         reg = <0x40290000 0x10000>;
   23         interrupt-parent = <&intc>;
   24         interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
   25         clocks = <&clks IMX7ULP_CLK_LPSPI2>,
   26                  <&clks IMX7ULP_CLK_DUMMY>;
   27         clock-names = "per", "ipg";
   28         spi-slave;
   29 };

Cache object: 1718f3a434a40ffef361759688d0f16b


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.