Based on kernel version 6.12.4
. Page generated on 2024-12-12 21:01 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | # SPDX-License-Identifier: GPL-2.0 %YAML 1.2 --- $id: http://devicetree.org/schemas/dma/marvell,xor-v2.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Marvell XOR v2 engines maintainers: - Andrew Lunn <andrew@lunn.ch> properties: compatible: oneOf: - const: marvell,xor-v2 - items: - enum: - marvell,armada-7k-xor - const: marvell,xor-v2 reg: items: - description: DMA registers - description: global registers clocks: minItems: 1 maxItems: 2 clock-names: minItems: 1 items: - const: core - const: reg msi-parent: description: Phandle to the MSI-capable interrupt controller used for interrupts. maxItems: 1 dma-coherent: true required: - compatible - reg - msi-parent - dma-coherent additionalProperties: false examples: - | xor0@6a0000 { compatible = "marvell,armada-7k-xor", "marvell,xor-v2"; reg = <0x6a0000 0x1000>, <0x6b0000 0x1000>; clocks = <&ap_clk 0>, <&ap_clk 1>; clock-names = "core", "reg"; msi-parent = <&gic_v2m0>; dma-coherent; }; |