1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/memory-controllers/samsung,s5pv210-dmc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Samsung S5Pv210 SoC Dynamic Memory Controller 8 9maintainers: 10 - Krzysztof Kozlowski <krzk@kernel.org> 11 12description: 13 Dynamic Memory Controller interfaces external JEDEC DDR-type SDRAM. 14 15properties: 16 compatible: 17 const: samsung,s5pv210-dmc 18 19 reg: 20 maxItems: 1 21 22required: 23 - compatible 24 - reg 25 26additionalProperties: false 27 28examples: 29 - | 30 memory-controller@f0000000 { 31 compatible = "samsung,s5pv210-dmc"; 32 reg = <0xf0000000 0x1000>; 33 }; 34