blob: b942218b7ab892de18081a95c2ede3abae41e5e4 [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 };
34};
35
36&i2c3 {
37 at24@50 {
38 u-boot,i2c-offset-len = <2>;
39 };
40};
41
42&uart5 {
43 u-boot,dm-pre-reloc;
44};