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/mmc/moxa,moxart-mmc.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 MOXA ART MMC Host Controller Interface
    2 
    3   Inherits from mmc binding[1].
    4 
    5   [1] Documentation/devicetree/bindings/mmc/mmc.txt
    6 
    7 Required properties:
    8 
    9 - compatible :  Must be "moxa,moxart-mmc" or "faraday,ftsdc010"
   10 - reg :         Should contain registers location and length
   11 - interrupts :  Should contain the interrupt number
   12 - clocks :      Should contain phandle for the clock feeding the MMC controller
   13 
   14 Optional properties:
   15 
   16 - dmas :        Should contain two DMA channels, line request number must be 5 for
   17                 both channels
   18 - dma-names :   Must be "tx", "rx"
   19 
   20 Example:
   21 
   22         mmc: mmc@98e00000 {
   23                 compatible = "moxa,moxart-mmc";
   24                 reg = <0x98e00000 0x5C>;
   25                 interrupts = <5 0>;
   26                 clocks = <&clk_apb>;
   27                 dmas =  <&dma 5>,
   28                         <&dma 5>;
   29                 dma-names = "tx", "rx";
   30         };

Cache object: 714c0a4ca0598e935bc22636f6e52b9c


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