u-boot-brain/arch/arm/dts/bcm283x-uboot.dtsi
Alexander Graf 9821636b64 bcm2835_pinctrl: Probe pre-reloc
The serial drivers now depend on the pinctrl driver to determine whether
they are enabled. That means if a serial device wants to be used pre-reloc,
we also need the pinctrl device pre-reloc.

Adapt the pinctrl driver as well as dts overlay accordingly.

Signed-off-by: Alexander Graf <agraf@suse.de>
2018-01-28 12:27:36 -05:00

27 lines
360 B
Plaintext

/*
* U-Boot addition to keep baudrate set by firmware
* and also initialize before relocation.
*
* (C) Copyright 2016 Fabian Vogt <fvogt@suse.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
&soc {
u-boot,dm-pre-reloc;
};
&uart0 {
skip-init;
u-boot,dm-pre-reloc;
};
&uart1 {
skip-init;
u-boot,dm-pre-reloc;
};
&gpio {
u-boot,dm-pre-reloc;
};