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/ste-coh901318.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 ST-Ericsson COH 901 318 DMA Controller
    2 
    3 This is a DMA controller which has begun as a fork of the
    4 ARM PL08x PrimeCell VHDL code.
    5 
    6 Required properties:
    7 - compatible: should be "stericsson,coh901318"
    8 - reg: register locations and length
    9 - interrupts: the single DMA IRQ
   10 - #dma-cells: must be set to <1>, as the channels on the
   11   COH 901 318 are simple and identified by a single number
   12 - dma-channels: the number of DMA channels handled
   13 
   14 Example:
   15 
   16 dmac: dma-controller@c00020000 {
   17         compatible = "stericsson,coh901318";
   18         reg = <0xc0020000 0x1000>;
   19         interrupt-parent = <&vica>;
   20         interrupts = <2>;
   21         #dma-cells = <1>;
   22         dma-channels = <40>;
   23 };
   24 
   25 Consumers example:
   26 
   27 uart0: serial@c0013000 {
   28         compatible = "...";
   29         (...)
   30         dmas = <&dmac 17 &dmac 18>;
   31         dma-names = "tx", "rx";
   32 };

Cache object: 999dcca66036a3fff783e63fcec0c2be


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