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-xlp.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 SPI Master controller for Netlogic XLP MIPS64 SOCs
    2 ==================================================
    3 
    4 Currently this SPI controller driver is supported for the following
    5 Netlogic XLP SoCs:
    6         XLP832, XLP316, XLP208, XLP980, XLP532
    7 
    8 Required properties:
    9 - compatible            : Should be "netlogic,xlp832-spi".
   10 - #address-cells        : Number of cells required to define a chip select address
   11                           on the SPI bus.
   12 - #size-cells           : Should be zero.
   13 - reg                   : Should contain register location and length.
   14 - clocks                : Phandle of the spi clock
   15 - interrupts            : Interrupt number used by this controller.
   16 
   17 SPI slave nodes must be children of the SPI master node and can contain
   18 properties described in Documentation/devicetree/bindings/spi/spi-bus.txt.
   19 
   20 Example:
   21 
   22         spi: xlp_spi@3a100 {
   23                 compatible = "netlogic,xlp832-spi";
   24                 #address-cells = <1>;
   25                 #size-cells = <0>;
   26                 reg = <0 0x3a100 0x100>;
   27                 clocks = <&spi_clk>;
   28                 interrupts = <34>;
   29                 interrupt-parent = <&pic>;
   30 
   31                 spi_nor@1 {
   32                         compatible = "spansion,s25sl12801";
   33                         #address-cells = <1>;
   34                         #size-cells = <1>;
   35                         reg = <1>;      /* Chip Select */
   36                         spi-max-frequency = <40000000>;
   37                 };
   38 };

Cache object: 25e595f575f879d8f694226e8ffd5348


[ 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.