mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 02:38:56 +00:00
a68bad0a37
Synchronise device tree with linux v5.19-rc5. Please note that this also means that instead of the previous "generic" U-Boot specific carrier board agnostic device tree we are now using the regular one for the Verdin Development (carrier) board (e.g. imx8mm-verdin-wifi-dev.dtb rather than the previous imx8mm-verdin.dtb). Please further note that the PMIC node name got changed from a pmic label to pmic@25 which required adjustment in resp. board SPL file board/toradex/verdin-imx8mm/spl.c. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
38 lines
523 B
Text
38 lines
523 B
Text
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
/*
|
|
* Copyright 2021-2022 Marek Vasut <marex@denx.de>
|
|
*/
|
|
#include "imx8mm-verdin-wifi-dev-u-boot.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = &uart2;
|
|
};
|
|
|
|
aliases {
|
|
/delete-property/ eeprom1;
|
|
/delete-property/ eeprom2;
|
|
usbphy0 = &usbphynop1;
|
|
usbphy1 = &usbphynop2;
|
|
};
|
|
};
|
|
|
|
&i2c4 {
|
|
/delete-node/ codec@1a;
|
|
};
|
|
|
|
&pinctrl_uart1 {
|
|
/delete-property/ u-boot,dm-spl;
|
|
};
|
|
|
|
&pinctrl_uart2 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&uart1 {
|
|
/delete-property/ u-boot,dm-spl;
|
|
};
|
|
|
|
&uart2 {
|
|
u-boot,dm-spl;
|
|
};
|