Path: blob/master/Documentation/devicetree/bindings/bus/renesas,bsc.yaml
26308 views
%YAML 1.21---2$id: http://devicetree.org/schemas/bus/renesas,bsc.yaml#3$schema: http://devicetree.org/meta-schemas/core.yaml#45title: Renesas Bus State Controller (BSC)67maintainers:8- Geert Uytterhoeven <geert+renesas@glider.be>910description: |11The Renesas Bus State Controller (BSC, sometimes called "LBSC within Bus12Bridge", or "External Bus Interface") can be found in several Renesas ARM13SoCs. It provides an external bus for connecting multiple external14devices to the SoC, driving several chip select lines, for e.g. NOR15FLASH, Ethernet and USB.1617While the BSC is a fairly simple memory-mapped bus, it may be part of a18PM domain, and may have a gateable functional clock. Before a device19connected to the BSC can be accessed, the PM domain containing the BSC20must be powered on, and the functional clock driving the BSC must be21enabled.2223The bindings for the BSC extend the bindings for "simple-pm-bus".2425allOf:26- $ref: simple-pm-bus.yaml#2728properties:29compatible:30items:31- enum:32- renesas,bsc-r8a73a4 # R-Mobile APE6 (r8a73a4)33- renesas,bsc-sh73a0 # SH-Mobile AG5 (sh73a0)34- const: renesas,bsc35- {} # simple-pm-bus, but not listed here to avoid false select3637reg:38maxItems: 13940interrupts:41maxItems: 14243required:44- reg4546unevaluatedProperties: false4748examples:49- |50#include <dt-bindings/interrupt-controller/irq.h>5152bsc: bus@fec10000 {53compatible = "renesas,bsc-sh73a0", "renesas,bsc", "simple-pm-bus";54#address-cells = <1>;55#size-cells = <1>;56ranges = <0 0 0x20000000>;57reg = <0xfec10000 0x400>;58interrupts = <0 39 IRQ_TYPE_LEVEL_HIGH>;59clocks = <&zb_clk>;60power-domains = <&pd_a4s>;61};626364