mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
99545b4bb1
This target adds support for the Allwinner D1 RISC-V based SoCs. - RISC-V single-core T-Head C906 (RV64GCV) - Tensilica HiFi4 DSP - DDR2/DDR3 support - 10/100/1000M ethernet - usual peripherals like USB2, SPI, I2C, PWM, etc. Four boards are supported: - Dongshan Nezha STU - 512Mb RAM - ethernet - LicheePi RV Dock - 512Mb RAM - wireless-only (RTL8723DS) - MangoPi MQ-Pro - 512Mb RAM - there are pads available for an SPI flash - wireless-only (RTL8723DS) - Nezha D1 - 512Mb/1Gb/2Gb RAM - 256Mb NAND flash - ethernet, wireless Installation: Standard SD-card installation via dd-ing the generated image to an SD-card of at least 256Mb. Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
76 lines
1.7 KiB
Diff
76 lines
1.7 KiB
Diff
From 03dbb926f6d65f75af902e421c44aeaaf84be66a Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Thu, 11 Aug 2022 22:46:28 -0500
|
|
Subject: [PATCH 089/117] riscv: dts: allwinner: lichee-rv-86-panel-480p: Add
|
|
panel
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
.../sun20i-d1-lichee-rv-86-panel-480p.dts | 51 +++++++++++++++++++
|
|
1 file changed, 51 insertions(+)
|
|
|
|
--- a/arch/riscv/boot/dts/allwinner/sun20i-d1-lichee-rv-86-panel-480p.dts
|
|
+++ b/arch/riscv/boot/dts/allwinner/sun20i-d1-lichee-rv-86-panel-480p.dts
|
|
@@ -7,6 +7,40 @@
|
|
model = "Sipeed Lichee RV 86 Panel (480p)";
|
|
compatible = "sipeed,lichee-rv-86-panel-480p", "sipeed,lichee-rv",
|
|
"allwinner,sun20i-d1";
|
|
+
|
|
+ backlight: backlight {
|
|
+ compatible = "pwm-backlight";
|
|
+ power-supply = <®_vcc>;
|
|
+ pwms = <&pwm 7 50000 0>;
|
|
+ };
|
|
+
|
|
+ spi {
|
|
+ compatible = "spi-gpio";
|
|
+ cs-gpios = <&pio 4 14 GPIO_ACTIVE_LOW>; /* PE14 */
|
|
+ mosi-gpios = <&pio 4 12 GPIO_ACTIVE_HIGH>; /* PE12 */
|
|
+ sck-gpios = <&pio 4 15 GPIO_ACTIVE_HIGH>; /* PE15 */
|
|
+ num-chipselects = <1>;
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+
|
|
+ panel@0 {
|
|
+ compatible = "sitronix,st7701s";
|
|
+ reg = <0>;
|
|
+ backlight = <&backlight>;
|
|
+ reset-gpios = <&pio 6 13 GPIO_ACTIVE_LOW>; /* PG13 */
|
|
+ spi-3wire;
|
|
+
|
|
+ port {
|
|
+ panel_in_tcon_lcd0: endpoint {
|
|
+ remote-endpoint = <&tcon_lcd0_out_panel>;
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+};
|
|
+
|
|
+&de {
|
|
+ status = "okay";
|
|
};
|
|
|
|
&i2c2 {
|
|
@@ -27,3 +61,20 @@
|
|
wakeup-source;
|
|
};
|
|
};
|
|
+
|
|
+&pwm {
|
|
+ pinctrl-0 = <&pwm7_pd22_pin>;
|
|
+ pinctrl-names = "default";
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&tcon_lcd0 {
|
|
+ pinctrl-0 = <&lcd_rgb666_pins>;
|
|
+ pinctrl-names = "default";
|
|
+};
|
|
+
|
|
+&tcon_lcd0_out {
|
|
+ tcon_lcd0_out_panel: endpoint {
|
|
+ remote-endpoint = <&panel_in_tcon_lcd0>;
|
|
+ };
|
|
+};
|