Path: blob/main/sys/contrib/device-tree/Bindings/dma/allwinner,sun4i-a10-dma.yaml
48377 views
# SPDX-License-Identifier: GPL-2.01%YAML 1.22---3$id: http://devicetree.org/schemas/dma/allwinner,sun4i-a10-dma.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Allwinner A10 DMA Controller78maintainers:9- Chen-Yu Tsai <wens@csie.org>10- Maxime Ripard <mripard@kernel.org>1112allOf:13- $ref: dma-controller.yaml#1415properties:16"#dma-cells":17const: 218description:19The first cell is either 0 or 1, the former to use the normal20DMA, 1 for dedicated DMA. The second cell is the request line21number.2223compatible:24const: allwinner,sun4i-a10-dma2526reg:27maxItems: 12829interrupts:30maxItems: 13132clocks:33maxItems: 13435required:36- "#dma-cells"37- compatible38- reg39- interrupts40- clocks4142additionalProperties: false4344examples:45- |46dma: dma-controller@1c02000 {47compatible = "allwinner,sun4i-a10-dma";48reg = <0x01c02000 0x1000>;49interrupts = <27>;50clocks = <&ahb_gates 6>;51#dma-cells = <2>;52};5354...555657