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/xilinx/zynqmp_dma.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 Xilinx ZynqMP DMA engine, it does support memory to memory transfers,
    2 memory to device and device to memory transfers. It also has flow
    3 control and rate control support for slave/peripheral dma access.
    4 
    5 Required properties:
    6 - compatible            : Should be "xlnx,zynqmp-dma-1.0"
    7 - reg                   : Memory map for gdma/adma module access.
    8 - interrupts            : Should contain DMA channel interrupt.
    9 - xlnx,bus-width        : Axi buswidth in bits. Should contain 128 or 64
   10 - clock-names           : List of input clocks "clk_main", "clk_apb"
   11                           (see clock bindings for details)
   12 
   13 Optional properties:
   14 - dma-coherent          : Present if dma operations are coherent.
   15 
   16 Example:
   17 ++++++++
   18 fpd_dma_chan1: dma@fd500000 {
   19         compatible = "xlnx,zynqmp-dma-1.0";
   20         reg = <0x0 0xFD500000 0x1000>;
   21         interrupt-parent = <&gic>;
   22         interrupts = <0 117 4>;
   23         clock-names = "clk_main", "clk_apb";
   24         xlnx,bus-width = <128>;
   25         dma-coherent;
   26 };

Cache object: 59449295ff652c7b17c0afdf66875a18


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