Fabian Vogt | ff5d7ae | 2016-09-26 14:26:48 +0200 | [diff] [blame] | 1 | /* |
2 | * U-Boot addition to keep baudrate set by firmware | ||||
3 | * and also initialize before relocation. | ||||
4 | * | ||||
5 | * (C) Copyright 2016 Fabian Vogt <fvogt@suse.com> | ||||
6 | * | ||||
7 | * SPDX-License-Identifier: GPL-2.0+ | ||||
8 | */ | ||||
9 | |||||
10 | &soc { | ||||
11 | u-boot,dm-pre-reloc; | ||||
12 | }; | ||||
13 | |||||
14 | &uart0 { | ||||
15 | skip-init; | ||||
16 | u-boot,dm-pre-reloc; | ||||
17 | }; | ||||
18 | |||||
19 | &uart1 { | ||||
20 | skip-init; | ||||
21 | u-boot,dm-pre-reloc; | ||||
22 | }; | ||||
Alexander Graf | 9821636 | 2018-01-25 12:05:56 +0100 | [diff] [blame] | 23 | |
24 | &gpio { | ||||
25 | u-boot,dm-pre-reloc; | ||||
26 | }; |