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-sprd.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 Spreadtrum SPI Controller
    2 
    3 Required properties:
    4 - compatible: Should be "sprd,sc9860-spi".
    5 - reg: Offset and length of SPI controller register space.
    6 - interrupts: Should contain SPI interrupt.
    7 - clock-names: Should contain following entries:
    8         "spi" for SPI clock,
    9         "source" for SPI source (parent) clock,
   10         "enable" for SPI module enable clock.
   11 - clocks: List of clock input name strings sorted in the same order
   12         as the clock-names property.
   13 - #address-cells: The number of cells required to define a chip select
   14         address on the SPI bus. Should be set to 1.
   15 - #size-cells: Should be set to 0.
   16 
   17 Optional properties:
   18 dma-names: Should contain names of the SPI used DMA channel.
   19 dmas: Should contain DMA channels and DMA slave ids which the SPI used
   20         sorted in the same order as the dma-names property.
   21 
   22 Example:
   23 spi0: spi@70a00000{
   24         compatible = "sprd,sc9860-spi";
   25         reg = <0 0x70a00000 0 0x1000>;
   26         interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
   27         clock-names = "spi", "source","enable";
   28         clocks = <&clk_spi0>, <&ext_26m>, <&clk_ap_apb_gates 5>;
   29         dma-names = "rx_chn", "tx_chn";
   30         dmas = <&apdma 11 11>, <&apdma 12 12>;
   31         #address-cells = <1>;
   32         #size-cells = <0>;
   33 };

Cache object: c0a781845dfe6b9b0f7bdcd15e309fa4


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