mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
9eed1ca15b
Like the other Logic PD OMAP35/DM37 boards, this board has device tree enabled for U-Boot. This patch converts the board to enable SPL_OF_CONTROL and further shrinks the device tree in SPL to limit it to UART3 (console), MMC1, i2c1, and GPIO4 (for mmc1 CD and WP). There appears to be a bug in minicom so users may need to switch the minicom terminal emulation to ANSI from VT102 due to the junk that gets pushed out of the UART on startup. Signed-off-by: Adam Ford <aford173@gmail.com>
43 lines
591 B
Text
43 lines
591 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2017
|
|
* Logic PD - http://www.logicpd.com
|
|
*/
|
|
|
|
#include "omap3-u-boot.dtsi"
|
|
|
|
/ {
|
|
aliases {
|
|
/delete-property/ serial0;
|
|
/delete-property/ serial1;
|
|
};
|
|
|
|
ocp@68000000 {
|
|
/delete-node/ bandgap@48002524;
|
|
};
|
|
};
|
|
|
|
&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;
|
|
};
|
|
|
|
/delete-node/ &uart1;
|
|
/delete-node/ &uart2;
|
|
/delete-node/ &mmc2;
|
|
/delete-node/ &mmc3;
|