blob: dbe0ef7a0eef95a748bf30a73a29ff7b4735c921 [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 {
Simon Glass8c103c32023-02-13 08:56:33 -070024 bootph-all;
Lukasz Majewskibf99b632019-06-09 22:54:43 +020025
Oleksandr Suvorovcdb18042021-09-23 23:14:37 +030026 bus@2100000 {
Simon Glass8c103c32023-02-13 08:56:33 -070027 bootph-all;
Lukasz Majewskibf99b632019-06-09 22:54:43 +020028 };
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 {
Simon Glass8c103c32023-02-13 08:56:33 -070048 bootph-all;
Lukasz Majewskibf99b632019-06-09 22:54:43 +020049};