1DT bindings for Renesas R-Mobile and SH-Mobile memory controllers 2================================================================= 3 4Renesas R-Mobile and SH-Mobile SoCs contain one or more memory controllers. 5These memory controllers differ from one SoC variant to another, and are called 6by different names ("DDR Bus Controller (DBSC)", "DDR3 Bus State Controller 7(DBSC3)", "SDRAM Bus State Controller (SBSC)"). 8 9Currently memory controller device nodes are used only to reference PM 10domains, and prevent these PM domains from being powered down, which would 11crash the system. 12 13As there exist no actual drivers for these controllers yet, these bindings 14should be considered EXPERIMENTAL for now. 15 16Required properties: 17 - compatible: Must be one of the following SoC-specific values: 18 - "renesas,dbsc-r8a73a4" (R-Mobile APE6) 19 - "renesas,dbsc3-r8a7740" (R-Mobile A1) 20 - "renesas,sbsc-sh73a0" (SH-Mobile AG5) 21 - reg: Must contain the base address and length of the memory controller's 22 registers. 23 24Optional properties: 25 - interrupts: Must contain a list of interrupt specifiers for memory 26 controller interrupts, if available. 27 - interrupts-names: Must contain a list of interrupt names corresponding to 28 the interrupts in the interrupts property, if available. 29 Valid interrupt names are: 30 - "sec" (secure interrupt) 31 - "temp" (normal (temperature) interrupt) 32 - power-domains: Must contain a reference to the PM domain that the memory 33 controller belongs to, if available. 34 35Example: 36 37 sbsc1: memory-controller@fe400000 { 38 compatible = "renesas,sbsc-sh73a0"; 39 reg = <0xfe400000 0x400>; 40 interrupts = <0 35 IRQ_TYPE_LEVEL_HIGH>, 41 <0 36 IRQ_TYPE_LEVEL_HIGH>; 42 interrupt-names = "sec", "temp"; 43 power-domains = <&pd_a4bc0>; 44 }; 45