mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

Add microchip,sama7d65-dma compatible string to DT bindings documentation. Signed-off-by: Ryan Wanner <Ryan.Wanner@microchip.com> Acked-by: Rob Herring (Arm) <robh@kernel.org> Link: https://lore.kernel.org/r/8b69f0c6d8955790edcdbe5d1e205b43dedb99ff.1739555984.git.Ryan.Wanner@microchip.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
83 lines
2.2 KiB
YAML
83 lines
2.2 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/dma/atmel,sama5d4-dma.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Microchip AT91 Extensible Direct Memory Access Controller
|
|
|
|
maintainers:
|
|
- Nicolas Ferre <nicolas.ferre@microchip.com>
|
|
- Charan Pedumuru <charan.pedumuru@microchip.com>
|
|
|
|
description:
|
|
The DMA Controller (XDMAC) is a AHB-protocol central direct memory access
|
|
controller. It performs peripheral data transfer and memory move operations
|
|
over one or two bus ports through the unidirectional communication
|
|
channel. Each channel is fully programmable and provides both peripheral
|
|
or memory-to-memory transfers. The channel features are configurable at
|
|
implementation.
|
|
|
|
allOf:
|
|
- $ref: dma-controller.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- enum:
|
|
- atmel,sama5d4-dma
|
|
- microchip,sama7g5-dma
|
|
- items:
|
|
- enum:
|
|
- microchip,sam9x60-dma
|
|
- microchip,sam9x7-dma
|
|
- const: atmel,sama5d4-dma
|
|
- items:
|
|
- const: microchip,sama7d65-dma
|
|
- const: microchip,sama7g5-dma
|
|
|
|
"#dma-cells":
|
|
description: |
|
|
Represents the number of integer cells in the `dmas` property of client
|
|
devices. The single cell specifies the channel configuration register:
|
|
- bit 13: SIF (Source Interface Identifier) for memory interface.
|
|
- bit 14: DIF (Destination Interface Identifier) for peripheral interface.
|
|
- bit 30-24: PERID (Peripheral Identifier).
|
|
const: 1
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
const: dma_clk
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
- clocks
|
|
- clock-names
|
|
- "#dma-cells"
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/at91.h>
|
|
#include <dt-bindings/dma/at91.h>
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
dma-controller@f0008000 {
|
|
compatible = "atmel,sama5d4-dma";
|
|
reg = <0xf0008000 0x1000>;
|
|
interrupts = <20 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
#dma-cells = <1>;
|
|
clocks = <&pmc PMC_TYPE_PERIPHERAL 20>;
|
|
clock-names = "dma_clk";
|
|
};
|