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/ti,da8xx-ddrctl.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Texas Instruments da8xx DDR2/mDDR memory controller
8
9maintainers:
10  - Bartosz Golaszewski <bgolaszewski@baylibre.com>
11  - Krzysztof Kozlowski <krzk@kernel.org>
12
13description: |
14  Documentation:
15    OMAP-L138 (DA850) - http://www.ti.com/lit/ug/spruh82c/spruh82c.pdf
16
17properties:
18  compatible:
19    const: ti,da850-ddr-controller
20
21  reg:
22    maxItems: 1
23
24required:
25  - compatible
26  - reg
27
28additionalProperties: false
29
30examples:
31  - |
32    memory-controller@b0000000 {
33        compatible = "ti,da850-ddr-controller";
34        reg = <0xb0000000 0xe8>;
35    };
36