Lukasz Majewski | bf99b63 | 2019-06-09 22:54:43 +0200 | [diff] [blame] | 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 | |
Oleksandr Suvorov | cdb1804 | 2021-09-23 23:14:37 +0300 | [diff] [blame] | 26 | bus@2100000 { |
Lukasz Majewski | bf99b63 | 2019-06-09 22:54:43 +0200 | [diff] [blame] | 27 | u-boot,dm-pre-reloc; |
| 28 | }; |
| 29 | }; |
| 30 | |
| 31 | chosen { |
| 32 | stdout-path = &uart5; |
| 33 | }; |
Lukasz Majewski | d5354f5 | 2019-09-03 16:38:45 +0200 | [diff] [blame] | 34 | |
| 35 | wdt-reboot { |
| 36 | compatible = "wdt-reboot"; |
| 37 | wdt = <&wdog1>; |
| 38 | }; |
Lukasz Majewski | bf99b63 | 2019-06-09 22:54:43 +0200 | [diff] [blame] | 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 | }; |