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}; 23