1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause 2*0e8011faSEmmanuel Vadot%YAML 1.2 3*0e8011faSEmmanuel Vadot--- 4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/spi/brcm,bcm2835-spi.yaml# 5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*0e8011faSEmmanuel Vadot 7*0e8011faSEmmanuel Vadottitle: Broadcom BCM2835 SPI0 controller 8*0e8011faSEmmanuel Vadot 9*0e8011faSEmmanuel Vadotmaintainers: 10*0e8011faSEmmanuel Vadot - Florian Fainelli <florian.fainelli@broadcom.com> 11*0e8011faSEmmanuel Vadot - Kanak Shilledar <kanakshilledar111@protonmail.com> 12*0e8011faSEmmanuel Vadot - Stefan Wahren <wahrenst@gmx.net> 13*0e8011faSEmmanuel Vadot 14*0e8011faSEmmanuel VadotallOf: 15*0e8011faSEmmanuel Vadot - $ref: spi-controller.yaml# 16*0e8011faSEmmanuel Vadot 17*0e8011faSEmmanuel Vadotproperties: 18*0e8011faSEmmanuel Vadot compatible: 19*0e8011faSEmmanuel Vadot enum: 20*0e8011faSEmmanuel Vadot - brcm,bcm2835-spi 21*0e8011faSEmmanuel Vadot - brcm,bcm2711-spi 22*0e8011faSEmmanuel Vadot - brcm,bcm7211-spi 23*0e8011faSEmmanuel Vadot 24*0e8011faSEmmanuel Vadot reg: 25*0e8011faSEmmanuel Vadot maxItems: 1 26*0e8011faSEmmanuel Vadot 27*0e8011faSEmmanuel Vadot interrupts: 28*0e8011faSEmmanuel Vadot maxItems: 1 29*0e8011faSEmmanuel Vadot 30*0e8011faSEmmanuel Vadot clocks: 31*0e8011faSEmmanuel Vadot maxItems: 1 32*0e8011faSEmmanuel Vadot 33*0e8011faSEmmanuel Vadotrequired: 34*0e8011faSEmmanuel Vadot - compatible 35*0e8011faSEmmanuel Vadot - reg 36*0e8011faSEmmanuel Vadot - interrupts 37*0e8011faSEmmanuel Vadot - clocks 38*0e8011faSEmmanuel Vadot 39*0e8011faSEmmanuel VadotunevaluatedProperties: false 40*0e8011faSEmmanuel Vadot 41*0e8011faSEmmanuel Vadotexamples: 42*0e8011faSEmmanuel Vadot - | 43*0e8011faSEmmanuel Vadot spi@20204000 { 44*0e8011faSEmmanuel Vadot compatible = "brcm,bcm2835-spi"; 45*0e8011faSEmmanuel Vadot reg = <0x7e204000 0x1000>; 46*0e8011faSEmmanuel Vadot interrupts = <2 22>; 47*0e8011faSEmmanuel Vadot clocks = <&clk_spi>; 48*0e8011faSEmmanuel Vadot #address-cells = <1>; 49*0e8011faSEmmanuel Vadot #size-cells = <0>; 50*0e8011faSEmmanuel Vadot }; 51