1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * U-Boot additions
4 *
5 * (C) Copyright 2020 Tero Kristo <t-kristo@ti.com>
6 */
7
8&l4_cfg {
9	segment@0 {
10		/* SCM Core */
11		target-module@2000 {
12			compatible = "simple-bus";
13		};
14
15		/* USB HS */
16		target-module@64000 {
17			compatible = "simple-bus";
18		};
19	};
20
21	segment@80000 {
22		/* USB OTG */
23		target-module@2b000 {
24			compatible = "simple-bus";
25		};
26	};
27
28};
29
30&l4_per {
31	segment@0 {
32		/* UART3 */
33		target-module@20000 {
34			compatible = "simple-bus";
35		};
36
37		/* I2C1 */
38		target-module@70000 {
39			compatible = "simple-bus";
40		};
41
42		/* MMC1 */
43		target-module@9c000 {
44			compatible = "simple-bus";
45		};
46	};
47};
48