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/dma/mtk-hsdma.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 MediaTek High-Speed DMA Controller
    2 ==================================
    3 
    4 This device follows the generic DMA bindings defined in dma/dma.txt.
    5 
    6 Required properties:
    7 
    8 - compatible:   Must be one of
    9                   "mediatek,mt7622-hsdma": for MT7622 SoC
   10                   "mediatek,mt7623-hsdma": for MT7623 SoC
   11 - reg:          Should contain the register's base address and length.
   12 - interrupts:   Should contain a reference to the interrupt used by this
   13                 device.
   14 - clocks:       Should be the clock specifiers corresponding to the entry in
   15                 clock-names property.
   16 - clock-names:  Should contain "hsdma" entries.
   17 - power-domains: Phandle to the power domain that the device is part of
   18 - #dma-cells:   The length of the DMA specifier, must be <1>. This one cell
   19                 in dmas property of a client device represents the channel
   20                 number.
   21 Example:
   22 
   23         hsdma: dma-controller@1b007000 {
   24                 compatible = "mediatek,mt7623-hsdma";
   25                 reg = <0 0x1b007000 0 0x1000>;
   26                 interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_LOW>;
   27                 clocks = <&ethsys CLK_ETHSYS_HSDMA>;
   28                 clock-names = "hsdma";
   29                 power-domains = <&scpsys MT2701_POWER_DOMAIN_ETH>;
   30                 #dma-cells = <1>;
   31         };
   32 
   33 DMA clients must use the format described in dma/dma.txt file.

Cache object: 1afb7ad3a0cf501381baa37d8066cfee


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