mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 14:28:22 +01:00
72c0f7aa6e
Orange Pi Zero Plus2 board is based on AllWinner H5 SoC. For more details on its hardware see linux-sunxi wiki: http://linux-sunxi.org/Xunlong_Orange_Pi_Zero_Plus_2 This patch enables basic support for orange-pi-zero-plus2 board: - mainline kernel 4.14.2 - mainline u-boot 2017.11 - dts kernel patch that fixes boot from SD card - dts kernel patch enabling AP6212 WiFi/BT chip Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
From 1596e282f52c8f43fd1cc4a39096f28563558a5c Mon Sep 17 00:00:00 2001
|
|
From: Sergey Matyukevich <geomatsi@gmail.com>
|
|
Date: Fri, 3 Nov 2017 22:12:43 +0300
|
|
Subject: [PATCH 1/2] arm64: dts: orange-pi-zero-plus2: fix sdcard detect
|
|
|
|
The sdcard detect pin on orange-pi-zero-plus2 is pulled up.
|
|
Fix cd-gpio description to enable sdcard detect.
|
|
|
|
Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
|
|
---
|
|
arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts b/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts
|
|
index b6b7a561df8c..a42fd79a62a3 100644
|
|
--- a/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts
|
|
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dts
|
|
@@ -71,7 +71,7 @@
|
|
pinctrl-0 = <&mmc0_pins_a>, <&mmc0_cd_pin>;
|
|
vmmc-supply = <®_vcc3v3>;
|
|
bus-width = <4>;
|
|
- cd-gpios = <&pio 5 6 GPIO_ACTIVE_HIGH>;
|
|
+ cd-gpios = <&pio 5 6 GPIO_ACTIVE_LOW>;
|
|
status = "okay";
|
|
};
|
|
|
|
--
|
|
2.11.0
|
|
|