blob: aa660b5aeb6513b65480e881f4195af259d91e9b [file] [log] [blame]
Lukasz Majewskibf99b632019-06-09 22:54:43 +02001// 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 };
Lukasz Majewskid5354f52019-09-03 16:38:45 +020034
35 wdt-reboot {
36 compatible = "wdt-reboot";
37 wdt = <&wdog1>;
38 };
Lukasz Majewskibf99b632019-06-09 22:54:43 +020039};
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};