mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

Remove the reference to the xo clock which is on the unsupported rpmhcc clock controller. It isn't needed for MMC functionality. Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
16 lines
474 B
Text
16 lines
474 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Needed for Linux to boot from USB, otherwise if PCIe driver is not in initramfs
|
|
* the VBUS supply will never get turned on.
|
|
* https://lore.kernel.org/linux-arm-msm/20240320122515.3243711-1-caleb.connolly@linaro.org/
|
|
*/
|
|
&pcie0_3p3v_dual {
|
|
regulator-always-on;
|
|
};
|
|
|
|
&sdhc_2 {
|
|
/* Remove the unsupported rpmhcc xo clock reference */
|
|
clocks = <&gcc GCC_SDCC2_AHB_CLK>,
|
|
<&gcc GCC_SDCC2_APPS_CLK>;
|
|
clock-names = "iface", "core";
|
|
};
|