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/sound/brcm,bcm2835-i2s.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 * Broadcom BCM2835 SoC I2S/PCM module
    2 
    3 Required properties:
    4 - compatible: "brcm,bcm2835-i2s"
    5 - reg: Should contain PCM registers location and length.
    6 - clocks: the (PCM) clock to use
    7 - dmas: List of DMA controller phandle and DMA request line ordered pairs.
    8 - dma-names: Identifier string for each DMA request line in the dmas property.
    9   These strings correspond 1:1 with the ordered pairs in dmas.
   10 
   11   One of the DMA channels will be responsible for transmission (should be
   12   named "tx") and one for reception (should be named "rx").
   13 
   14 Example:
   15 
   16 bcm2835_i2s: i2s@7e203000 {
   17         compatible = "brcm,bcm2835-i2s";
   18         reg = <0x7e203000 0x24>;
   19         clocks = <&clocks BCM2835_CLOCK_PCM>;
   20 
   21         dmas = <&dma 2>,
   22                <&dma 3>;
   23         dma-names = "tx", "rx";
   24 };

Cache object: ee0451784703375a683b22d243d3740a


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