u-boot/arch/arm/dts/rk3399-pinebook-pro-u-boot.dtsi
Michal Suchanek 216928c772 rockchip: Pinebook Pro: Do not initialize i2c before relocation
The i2c locks up when initialized before relocation, and it stays broken
in Linux as well breaking the ability to boot Linux.

The i2c bus and pmic was not actually used in pre-reloc before
commit ad607512f5 ("power: pmic: rk8xx: Support sysreset shutdown method")

The cause is not known.

This is board-specific, other boards that do not add the option to
include the i2c bus in pre-reloc DT are not affected.

Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Reviewed-by: Peter Robinson <pbrobinson@gmail.com>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
2022-12-19 10:56:12 +08:00

39 lines
600 B
Text

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2019 Peter Robinson <pbrobinson at gmail.com>
*/
#include "rk3399-u-boot.dtsi"
#include "rk3399-sdram-lpddr4-100.dtsi"
/ {
chosen {
u-boot,spl-boot-order = "same-as-spl", &sdhci, &spiflash, &sdmmc;
};
config {
u-boot,spl-payload-offset = <0x60000>; /* @ 384KB */
};
};
&edp {
rockchip,panel = <&edp_panel>;
};
&sdhci {
max-frequency = <25000000>;
u-boot,dm-pre-reloc;
};
&sdmmc {
max-frequency = <20000000>;
u-boot,dm-pre-reloc;
};
&spiflash {
u-boot,dm-pre-reloc;
};
&vdd_log {
regulator-init-microvolt = <950000>;
};