mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +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>
83 lines
2.2 KiB
Diff
83 lines
2.2 KiB
Diff
From a8e905fb3fd0d26f724646275b72a7363b2f03d8 Mon Sep 17 00:00:00 2001
|
|
From: Max Fierke <max@maxfierke.com>
|
|
Date: Wed, 1 Jun 2022 00:17:47 -0500
|
|
Subject: [PATCH 015/117] dt-bindings: display: Add bindings for ClockworkPi
|
|
CWD686
|
|
|
|
The CWD686 is a 6.86" IPS LCD panel used as the primary
|
|
display in the ClockworkPi DevTerm portable (all cores)
|
|
|
|
Signed-off-by: Max Fierke <max@maxfierke.com>
|
|
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
.../display/panel/clockwork,cwd686.yaml | 62 +++++++++++++++++++
|
|
1 file changed, 62 insertions(+)
|
|
create mode 100644 Documentation/devicetree/bindings/display/panel/clockwork,cwd686.yaml
|
|
|
|
--- /dev/null
|
|
+++ b/Documentation/devicetree/bindings/display/panel/clockwork,cwd686.yaml
|
|
@@ -0,0 +1,62 @@
|
|
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
+%YAML 1.2
|
|
+---
|
|
+$id: http://devicetree.org/schemas/display/panel/clockwork,cwd686.yaml#
|
|
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
+
|
|
+title: Clockwork CWD686 6.86" IPS LCD panel
|
|
+
|
|
+maintainers:
|
|
+ - Max Fierke <max@maxfierke.com>
|
|
+
|
|
+description: |
|
|
+ The Clockwork CWD686 is a 6.86" ICNL9707-based IPS LCD panel used within the
|
|
+ Clockwork DevTerm series of portable devices. The panel has a 480x1280
|
|
+ resolution and uses 24 bit RGB per pixel.
|
|
+
|
|
+allOf:
|
|
+ - $ref: panel-common.yaml#
|
|
+
|
|
+properties:
|
|
+ compatible:
|
|
+ const: clockwork,cwd686
|
|
+
|
|
+ reg:
|
|
+ description: DSI virtual channel used by that screen
|
|
+ maxItems: 1
|
|
+
|
|
+ reset-gpios: true
|
|
+ rotation: true
|
|
+ backlight: true
|
|
+ iovcc-supply: true
|
|
+ vci-supply: true
|
|
+
|
|
+required:
|
|
+ - compatible
|
|
+ - reg
|
|
+ - backlight
|
|
+ - reset-gpios
|
|
+
|
|
+additionalProperties: false
|
|
+
|
|
+examples:
|
|
+ - |
|
|
+ #include <dt-bindings/gpio/gpio.h>
|
|
+
|
|
+ backlight: backlight {
|
|
+ compatible = "gpio-backlight";
|
|
+ gpios = <&gpio4 30 GPIO_ACTIVE_HIGH>;
|
|
+ };
|
|
+
|
|
+ dsi {
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+
|
|
+ panel@0 {
|
|
+ compatible = "clockwork,cwd686";
|
|
+ reg = <0>;
|
|
+ backlight = <&backlight>;
|
|
+ reset-gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>;
|
|
+ rotation = <90>;
|
|
+ };
|
|
+ };
|