2019-07-20 11:26:05 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
%YAML 1.2
|
|
|
|
|
---
|
|
|
|
|
$id: http://devicetree.org/schemas/dma/dma-common.yaml#
|
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
|
|
title: DMA Engine Generic Binding
|
|
|
|
|
|
|
|
|
|
maintainers:
|
|
|
|
|
- Vinod Koul <vkoul@kernel.org>
|
|
|
|
|
|
|
|
|
|
description:
|
|
|
|
|
Generic binding to provide a way for a driver using DMA Engine to
|
|
|
|
|
retrieve the DMA request or channel information that goes from a
|
|
|
|
|
hardware device to a DMA controller.
|
|
|
|
|
|
|
|
|
|
select: false
|
|
|
|
|
|
|
|
|
|
properties:
|
|
|
|
|
"#dma-cells":
|
|
|
|
|
minimum: 1
|
|
|
|
|
# Should be enough
|
|
|
|
|
maximum: 255
|
|
|
|
|
description:
|
|
|
|
|
Used to provide DMA controller specific information.
|
|
|
|
|
|
2019-08-28 19:30:23 +09:00
|
|
|
dma-channel-mask:
|
2019-07-20 11:26:05 +02:00
|
|
|
description:
|
|
|
|
|
Bitmask of available DMA channels in ascending order that are
|
|
|
|
|
not reserved by firmware and are available to the
|
|
|
|
|
kernel. i.e. first channel corresponds to LSB.
|
2019-10-25 10:30:54 +03:00
|
|
|
The first item in the array is for channels 0-31, the second is for
|
|
|
|
|
channels 32-63, etc.
|
2020-04-15 19:55:49 -05:00
|
|
|
$ref: /schemas/types.yaml#/definitions/uint32-array
|
2019-10-25 10:30:54 +03:00
|
|
|
items:
|
|
|
|
|
minItems: 1
|
|
|
|
|
# Should be enough
|
|
|
|
|
maxItems: 255
|
2019-07-20 11:26:05 +02:00
|
|
|
|
|
|
|
|
dma-channels:
|
2020-12-17 16:34:29 -06:00
|
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
2019-07-20 11:26:05 +02:00
|
|
|
description:
|
|
|
|
|
Number of DMA channels supported by the controller.
|
|
|
|
|
|
|
|
|
|
dma-requests:
|
2020-12-17 16:34:29 -06:00
|
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
2019-07-20 11:26:05 +02:00
|
|
|
description:
|
|
|
|
|
Number of DMA request signals supported by the controller.
|
|
|
|
|
|
|
|
|
|
required:
|
|
|
|
|
- "#dma-cells"
|
2020-10-05 13:38:30 -05:00
|
|
|
|
|
|
|
|
additionalProperties: true
|