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/sifive,fu540-c000-pdma.yaml

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 # SPDX-License-Identifier: GPL-2.0
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/dma/sifive,fu540-c000-pdma.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: SiFive Unleashed Rev C000 Platform DMA
    8 
    9 maintainers:
   10   - Green Wan <green.wan@sifive.com>
   11   - Palmer Debbelt <palmer@sifive.com>
   12   - Paul Walmsley <paul.walmsley@sifive.com>
   13 
   14 description: |
   15   Platform DMA is a DMA engine of SiFive Unleashed. It supports 4
   16   channels. Each channel has 2 interrupts. One is for DMA done and
   17   the other is for DME error.
   18 
   19   In different SoC, DMA could be attached to different IRQ line.
   20   DT file need to be changed to meet the difference. For technical
   21   doc,
   22 
   23   https://static.dev.sifive.com/FU540-C000-v1.0.pdf
   24 
   25 allOf:
   26   - $ref: "dma-controller.yaml#"
   27 
   28 properties:
   29   compatible:
   30     items:
   31       - enum:
   32           - sifive,fu540-c000-pdma
   33       - const: sifive,pdma0
   34     description:
   35       Should be "sifive,<chip>-pdma" and "sifive,pdma<version>".
   36       Supported compatible strings are -
   37       "sifive,fu540-c000-pdma" for the SiFive PDMA v0 as integrated onto the
   38       SiFive FU540 chip resp and "sifive,pdma0" for the SiFive PDMA v0 IP block
   39       with no chip integration tweaks.
   40 
   41   reg:
   42     maxItems: 1
   43 
   44   interrupts:
   45     minItems: 1
   46     maxItems: 8
   47 
   48   dma-channels:
   49     description: For backwards-compatibility, the default value is 4
   50     minimum: 1
   51     maximum: 4
   52     default: 4
   53 
   54   '#dma-cells':
   55     const: 1
   56 
   57 required:
   58   - compatible
   59   - reg
   60   - interrupts
   61 
   62 unevaluatedProperties: false
   63 
   64 examples:
   65   - |
   66     dma-controller@3000000 {
   67       compatible = "sifive,fu540-c000-pdma", "sifive,pdma0";
   68       reg = <0x3000000 0x8000>;
   69       dma-channels = <4>;
   70       interrupts = <23>, <24>, <25>, <26>, <27>, <28>, <29>, <30>;
   71       #dma-cells = <1>;
   72     };
   73 
   74 ...

Cache object: 4f219740cf423b38a8a728447bb8b21d


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