1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*0e8011faSEmmanuel Vadot%YAML 1.2 3*0e8011faSEmmanuel Vadot--- 4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/dma/stm32/st,stm32-dmamux.yaml# 5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*0e8011faSEmmanuel Vadot 7*0e8011faSEmmanuel Vadottitle: STMicroelectronics STM32 DMA MUX (DMA request router) 8*0e8011faSEmmanuel Vadot 9*0e8011faSEmmanuel Vadotmaintainers: 10*0e8011faSEmmanuel Vadot - Amelie Delaunay <amelie.delaunay@foss.st.com> 11*0e8011faSEmmanuel Vadot 12*0e8011faSEmmanuel VadotallOf: 13*0e8011faSEmmanuel Vadot - $ref: /schemas/dma/dma-router.yaml# 14*0e8011faSEmmanuel Vadot 15*0e8011faSEmmanuel Vadotproperties: 16*0e8011faSEmmanuel Vadot "#dma-cells": 17*0e8011faSEmmanuel Vadot const: 3 18*0e8011faSEmmanuel Vadot 19*0e8011faSEmmanuel Vadot compatible: 20*0e8011faSEmmanuel Vadot const: st,stm32h7-dmamux 21*0e8011faSEmmanuel Vadot 22*0e8011faSEmmanuel Vadot reg: 23*0e8011faSEmmanuel Vadot maxItems: 1 24*0e8011faSEmmanuel Vadot 25*0e8011faSEmmanuel Vadot clocks: 26*0e8011faSEmmanuel Vadot maxItems: 1 27*0e8011faSEmmanuel Vadot 28*0e8011faSEmmanuel Vadot resets: 29*0e8011faSEmmanuel Vadot maxItems: 1 30*0e8011faSEmmanuel Vadot 31*0e8011faSEmmanuel Vadot access-controllers: 32*0e8011faSEmmanuel Vadot minItems: 1 33*0e8011faSEmmanuel Vadot maxItems: 2 34*0e8011faSEmmanuel Vadot 35*0e8011faSEmmanuel Vadotrequired: 36*0e8011faSEmmanuel Vadot - compatible 37*0e8011faSEmmanuel Vadot - reg 38*0e8011faSEmmanuel Vadot - dma-masters 39*0e8011faSEmmanuel Vadot 40*0e8011faSEmmanuel VadotunevaluatedProperties: false 41*0e8011faSEmmanuel Vadot 42*0e8011faSEmmanuel Vadotexamples: 43*0e8011faSEmmanuel Vadot - | 44*0e8011faSEmmanuel Vadot #include <dt-bindings/interrupt-controller/arm-gic.h> 45*0e8011faSEmmanuel Vadot #include <dt-bindings/clock/stm32mp1-clks.h> 46*0e8011faSEmmanuel Vadot #include <dt-bindings/reset/stm32mp1-resets.h> 47*0e8011faSEmmanuel Vadot dma-router@40020800 { 48*0e8011faSEmmanuel Vadot compatible = "st,stm32h7-dmamux"; 49*0e8011faSEmmanuel Vadot reg = <0x40020800 0x3c>; 50*0e8011faSEmmanuel Vadot #dma-cells = <3>; 51*0e8011faSEmmanuel Vadot dma-requests = <128>; 52*0e8011faSEmmanuel Vadot dma-channels = <16>; 53*0e8011faSEmmanuel Vadot dma-masters = <&dma1>, <&dma2>; 54*0e8011faSEmmanuel Vadot clocks = <&timer_clk>; 55*0e8011faSEmmanuel Vadot }; 56*0e8011faSEmmanuel Vadot 57*0e8011faSEmmanuel Vadot... 58