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/qcom,spi-geni-qcom.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 GENI based Qualcomm Universal Peripheral (QUP) Serial Peripheral Interface (SPI)
    2 
    3 The QUP v3 core is a GENI based AHB slave that provides a common data path
    4 (an output FIFO and an input FIFO) for serial peripheral interface (SPI)
    5 mini-core.
    6 
    7 SPI in master mode supports up to 50MHz, up to four chip selects, programmable
    8 data path from 4 bits to 32 bits and numerous protocol variants.
    9 
   10 Required properties:
   11 - compatible:           Must contain "qcom,geni-spi".
   12 - reg:                  Must contain SPI register location and length.
   13 - interrupts:           Must contain SPI controller interrupts.
   14 - clock-names:          Must contain "se".
   15 - clocks:               Serial engine core clock needed by the device.
   16 - #address-cells:       Must be <1> to define a chip select address on
   17                         the SPI bus.
   18 - #size-cells:          Must be <0>.
   19 
   20 SPI Controller nodes must be child of GENI based Qualcomm Universal
   21 Peripharal. Please refer GENI based QUP wrapper controller node bindings
   22 described in Documentation/devicetree/bindings/soc/qcom/qcom,geni-se.yaml.
   23 
   24 SPI slave nodes must be children of the SPI master node and conform to SPI bus
   25 binding as described in Documentation/devicetree/bindings/spi/spi-bus.txt.
   26 
   27 Example:
   28         spi0: spi@a84000 {
   29                 compatible = "qcom,geni-spi";
   30                 reg = <0xa84000 0x4000>;
   31                 interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>;
   32                 clock-names = "se";
   33                 clocks = <&clock_gcc GCC_QUPV3_WRAP0_S0_CLK>;
   34                 pinctrl-names = "default", "sleep";
   35                 pinctrl-0 = <&qup_1_spi_2_active>;
   36                 pinctrl-1 = <&qup_1_spi_2_sleep>;
   37                 #address-cells = <1>;
   38                 #size-cells = <0>;
   39         };

Cache object: 3ba80e8c6f2530e21faa9e20b8f4776b


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