mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
f810ea6acb
Tinker board needs to mux all the sdmmc gpio and activate the regulator connected to bank 7. Remove all the bank that are not in use and mark them as dm,spl so-that it would initialize at SPL. Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Reviewed-by: Kever Yang<kever.yang@rock-chips.com>
66 lines
656 B
Text
66 lines
656 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2019 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#include "rk3288-u-boot.dtsi"
|
|
|
|
&pinctrl {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&uart2 {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&uart2_xfer {
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
|
|
&sdmmc {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&gpio7 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&vcc_sd {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&pcfg_pull_none_drv_8ma {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&pcfg_pull_up_drv_8ma {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&pcfg_pull_none {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&pcfg_pull_up {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&sdmmc_bus4 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&sdmmc_cd {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&sdmmc_clk {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&sdmmc_cmd {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&sdmmc_pwr {
|
|
u-boot,dm-spl;
|
|
};
|