mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
899836c315
The only GPIO bank needed in SPL is GPIO4 and the SPL space is tight. This patch removes the all but GPIO4 from the spl device tree to reduce the SPL footprint. Signed-off-by: Adam Ford <aford173@gmail.com>
52 lines
658 B
Text
52 lines
658 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;
|
|
};
|
|
};
|
|
|
|
&gpio1 {
|
|
/delete-property/ u-boot,dm-spl;
|
|
};
|
|
|
|
&gpio2 {
|
|
/delete-property/ u-boot,dm-spl;
|
|
};
|
|
|
|
&gpio3 {
|
|
/delete-property/ u-boot,dm-spl;
|
|
};
|
|
|
|
&gpio5 {
|
|
/delete-property/ u-boot,dm-spl;
|
|
};
|
|
|
|
&gpio6 {
|
|
/delete-property/ u-boot,dm-spl;
|
|
};
|
|
|
|
&i2c1 {
|
|
clock-frequency = <400000>;
|
|
};
|
|
|
|
&i2c2 {
|
|
clock-frequency = <400000>;
|
|
};
|
|
|
|
/delete-node/ &uart2;
|
|
/delete-node/ &uart3;
|
|
/delete-node/ &mmc2;
|
|
/delete-node/ &mmc3;
|
|
|