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/sirf-usp.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 * SiRF SoC USP module
    2 
    3 Required properties:
    4 - compatible: "sirf,prima2-usp-pcm"
    5 - reg: Base address and size entries:
    6 - dmas: List of DMA controller phandle and DMA request line ordered pairs.
    7 - dma-names: Identifier string for each DMA request line in the dmas property.
    8   These strings correspond 1:1 with the ordered pairs in dmas.
    9 
   10   One of the DMA channels will be responsible for transmission (should be
   11   named "tx") and one for reception (should be named "rx").
   12 
   13 - clocks: USP controller clock source
   14 - pinctrl-names: Must contain a "default" entry.
   15 - pinctrl-NNN: One property must exist for each entry in pinctrl-names.
   16 
   17 Example:
   18 usp0: usp@b0080000 {
   19         compatible = "sirf,prima2-usp-pcm";
   20         reg = <0xb0080000 0x10000>;
   21         clocks = <&clks 28>;
   22         dmas = <&dmac1 1>, <&dmac1 2>;
   23         dma-names = "rx", "tx";
   24         pinctrl-names = "default";
   25         pinctrl-0 = <&usp0_only_utfs_pins_a>;
   26 };
   27 

Cache object: f1043d64347786be606c1cf01d247cf8


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