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/nvidia,tegra20-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 NVIDIA Tegra 20 I2S controller
    2 
    3 Required properties:
    4 - compatible : "nvidia,tegra20-i2s"
    5 - reg : Should contain I2S registers location and length
    6 - interrupts : Should contain I2S interrupt
    7 - resets : Must contain an entry for each entry in reset-names.
    8   See ../reset/reset.txt for details.
    9 - reset-names : Must include the following entries:
   10   - i2s
   11 - dmas : Must contain an entry for each entry in clock-names.
   12   See ../dma/dma.txt for details.
   13 - dma-names : Must include the following entries:
   14   - rx
   15   - tx
   16 - clocks : Must contain one entry, for the module clock.
   17   See ../clocks/clock-bindings.txt for details.
   18 
   19 Example:
   20 
   21 i2s@70002800 {
   22         compatible = "nvidia,tegra20-i2s";
   23         reg = <0x70002800 0x200>;
   24         interrupts = < 45 >;
   25         clocks = <&tegra_car 11>;
   26         resets = <&tegra_car 11>;
   27         reset-names = "i2s";
   28         dmas = <&apbdma 21>, <&apbdma 21>;
   29         dma-names = "rx", "tx";
   30 };

Cache object: 201b3cd91d9d140fcc6a8f65fead68aa


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