blob: 21d038aebb231b91bf17068309309e134f4cde5b [file] [log] [blame]
Fabian Vogtff5d7ae2016-09-26 14:26:48 +02001/*
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 Graf98216362018-01-25 12:05:56 +010023
24&gpio {
25 u-boot,dm-pre-reloc;
26};