mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
550eebcfb4
Since we have limited resources in SPL, it is the best interest to keep the SPL as small as possible and that includes the DTB. There are a few items in the device tree that can be removed, because these boards don't use them. Signed-off-by: Adam Ford <aford173@gmail.com>
32 lines
423 B
Text
32 lines
423 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2017
|
|
* Logic PD - http://www.logicpd.com
|
|
*/
|
|
|
|
#include "omap3-u-boot.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = &uart1;
|
|
};
|
|
|
|
aliases {
|
|
/delete-property/ serial1;
|
|
/delete-property/ serial2;
|
|
};
|
|
};
|
|
|
|
&i2c1 {
|
|
clock-frequency = <400000>;
|
|
};
|
|
|
|
&i2c2 {
|
|
clock-frequency = <400000>;
|
|
};
|
|
|
|
/delete-node/ &uart2;
|
|
/delete-node/ &uart3;
|
|
/delete-node/ &mmc2;
|
|
/delete-node/ &mmc3;
|
|
|