mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-24 05:48:41 +00:00
Adapted rk322x-dev to kernel 5.8.y Added ssv6x5x driver to legacy kernel, rk322x-config now allows the user to select which driver load at boot Added esp8089 kernel module, device tree overlay and detection in rk322x-config script Fixed some indentation Added reset button binding Added sdcard debounce Fixes indentation, added device tree overlay for high-leakage cpus Added support for bluetooth device tree overlay and realtek systemd service for rk322x targets
92 lines
2.2 KiB
Diff
92 lines
2.2 KiB
Diff
diff --git a/arch/arm/boot/dts/rk322x.dtsi b/arch/arm/boot/dts/rk322x.dtsi
|
|
index b2fcf0e75..25051c03f 100644
|
|
--- a/arch/arm/boot/dts/rk322x.dtsi
|
|
+++ b/arch/arm/boot/dts/rk322x.dtsi
|
|
@@ -1149,51 +1149,71 @@
|
|
|
|
flash_cs0: flash-cs0 {
|
|
rockchip,pins =
|
|
- <2 RK_PA6 1 &pcfg_pull_none>;
|
|
+ <2 RK_PA6 1 &pcfg_pull_up>;
|
|
};
|
|
|
|
flash_cs1: flash-cs1 {
|
|
rockchip,pins =
|
|
- <0 RK_PC7 1 &pcfg_pull_none>;
|
|
+ <0 RK_PC7 1 &pcfg_pull_up>;
|
|
+ };
|
|
+
|
|
+ flash_cs2: flash-cs2 {
|
|
+ rockchip,pins =
|
|
+ <1 RK_PC6 1 &pcfg_pull_up>;
|
|
+ };
|
|
+
|
|
+ flash_cs3: flash-cs3 {
|
|
+ rockchip,pins =
|
|
+ <1 RK_PC7 1 &pcfg_pull_up>;
|
|
};
|
|
|
|
flash_rdy: flash-rdy {
|
|
rockchip,pins =
|
|
- <2 RK_PA4 1 &pcfg_pull_none>;
|
|
+ <2 RK_PA4 1 &pcfg_pull_up>;
|
|
};
|
|
|
|
flash_ale: flash-ale {
|
|
rockchip,pins =
|
|
- <2 RK_PA0 1 &pcfg_pull_none>;
|
|
+ <2 RK_PA0 1 &pcfg_pull_down>;
|
|
};
|
|
|
|
flash_cle: flash-cle {
|
|
rockchip,pins =
|
|
- <2 RK_PA1 1 &pcfg_pull_none>;
|
|
+ <2 RK_PA1 1 &pcfg_pull_down>;
|
|
};
|
|
|
|
flash_wrn: flash-wrn {
|
|
- rockchip,pins =
|
|
- <2 RK_PA2 1 &pcfg_pull_none>;
|
|
+ rockchip,pins =
|
|
+ <2 RK_PA2 1 &pcfg_pull_up>;
|
|
};
|
|
|
|
flash_rdn: flash-rdn {
|
|
rockchip,pins =
|
|
- <2 RK_PA3 1 &pcfg_pull_none>;
|
|
+ <2 RK_PA3 1 &pcfg_pull_up>;
|
|
};
|
|
|
|
flash_bus8: flash-bus8 {
|
|
- rockchip,pins = <1 RK_PD0 1 &pcfg_pull_none>,
|
|
- <1 RK_PD1 1 &pcfg_pull_none>,
|
|
- <1 RK_PD2 1 &pcfg_pull_none>,
|
|
- <1 RK_PD3 1 &pcfg_pull_none>,
|
|
- <1 RK_PD4 1 &pcfg_pull_none>,
|
|
- <1 RK_PD5 1 &pcfg_pull_none>,
|
|
- <1 RK_PD6 1 &pcfg_pull_none>,
|
|
- <1 RK_PD7 1 &pcfg_pull_none>;
|
|
+ rockchip,pins = <1 RK_PD0 1 &pcfg_pull_up>,
|
|
+ <1 RK_PD1 1 &pcfg_pull_up>,
|
|
+ <1 RK_PD2 1 &pcfg_pull_up>,
|
|
+ <1 RK_PD3 1 &pcfg_pull_up>,
|
|
+ <1 RK_PD4 1 &pcfg_pull_up>,
|
|
+ <1 RK_PD5 1 &pcfg_pull_up>,
|
|
+ <1 RK_PD6 1 &pcfg_pull_up>,
|
|
+ <1 RK_PD7 1 &pcfg_pull_up>;
|
|
};
|
|
+
|
|
+ flash_dqs: flash-dqs {
|
|
+ rockchip,pins = <2 RK_PA7 1 &pcfg_pull_up>;
|
|
+ };
|
|
+
|
|
+ flash_wp: flash-wp {
|
|
+ rockchip,pins = <2 RK_PA5 1 &pcfg_pull_down>;
|
|
+ };
|
|
+
|
|
};
|
|
|
|
+
|
|
gmac {
|
|
rgmii_pins: rgmii-pins {
|
|
rockchip,pins = <2 RK_PB6 1 &pcfg_pull_none>,
|