mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
d7cc15bb53
In order to use the device tree for MMC, the card-detect pin needs to be inverted. This patch places this into the am3517-evm-u-boot.dtsi file to keep the main DTS and DTSI files clean and in-sync with Linux Signed-off-by: Adam Ford <aford173@gmail.com>
27 lines
268 B
Text
27 lines
268 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2017
|
|
* Logic PD - http://www.logicpd.com
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = &uart3;
|
|
};
|
|
};
|
|
|
|
&mmc1 {
|
|
cd-inverted;
|
|
};
|
|
|
|
&uart1 {
|
|
reg-shift = <2>;
|
|
};
|
|
|
|
&uart2 {
|
|
reg-shift = <2>;
|
|
};
|
|
|
|
&uart3 {
|
|
reg-shift = <2>;
|
|
};
|