1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019
4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
5 *
6 * SPDX-License-Identifier:     GPL-2.0+ or X11
7 */
8
9/*
10 * The minimal augmentation DTS U-Boot file to allow UART5
11 * configuration in the pre-relocation stage of U-Boot
12 * proper.
13 *
14 * As the same UART is already configured in SPL, we don't need
15 * setup pinmux for it again.
16 */
17
18/ {
19	aliases {
20		mmc0 = &usdhc4;
21	};
22
23	soc {
24		u-boot,dm-pre-reloc;
25
26		aips-bus@2100000 {
27			u-boot,dm-pre-reloc;
28		};
29	};
30
31	chosen {
32		stdout-path = &uart5;
33	};
34
35	wdt-reboot {
36		compatible = "wdt-reboot";
37		wdt = <&wdog1>;
38	};
39};
40
41&i2c3 {
42	at24@50 {
43		u-boot,i2c-offset-len = <2>;
44	};
45};
46
47&uart5 {
48	u-boot,dm-pre-reloc;
49};
50