406 lines
8.3 KiB
Diff
406 lines
8.3 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Oleg <balbes-150@yandex.ru>
|
||
|
Date: Mon, 4 Jan 2021 11:51:43 +0100
|
||
|
Subject: [ARCHEOLOGY] add station legacy (#2521)
|
||
|
|
||
|
> X-Git-Archeology: - Revision a1e96e68d864ddc2fef169f3f503a9493311313b: https://github.com/armbian/build/commit/a1e96e68d864ddc2fef169f3f503a9493311313b
|
||
|
> X-Git-Archeology: Date: Mon, 04 Jan 2021 11:51:43 +0100
|
||
|
> X-Git-Archeology: From: Oleg <balbes-150@yandex.ru>
|
||
|
> X-Git-Archeology: Subject: add station legacy (#2521)
|
||
|
> X-Git-Archeology:
|
||
|
> X-Git-Archeology: - Revision 0cdffb29b07305209efb12cf3b5ac6032d3a1153: https://github.com/armbian/build/commit/0cdffb29b07305209efb12cf3b5ac6032d3a1153
|
||
|
> X-Git-Archeology: Date: Wed, 24 Mar 2021 19:01:53 +0100
|
||
|
> X-Git-Archeology: From: Igor Pecovnik <igorpecovnik@users.noreply.github.com>
|
||
|
> X-Git-Archeology: Subject: Renaming DEV branch to EDGE (#2704)
|
||
|
> X-Git-Archeology:
|
||
|
---
|
||
|
arch/arm64/boot/dts/rockchip/rk3328-firefly-port.dtsi | 377 ++++++++++
|
||
|
1 file changed, 377 insertions(+)
|
||
|
|
||
|
diff --git a/arch/arm64/boot/dts/rockchip/rk3328-firefly-port.dtsi b/arch/arm64/boot/dts/rockchip/rk3328-firefly-port.dtsi
|
||
|
new file mode 100644
|
||
|
index 000000000000..9d6c8bf751d1
|
||
|
--- /dev/null
|
||
|
+++ b/arch/arm64/boot/dts/rockchip/rk3328-firefly-port.dtsi
|
||
|
@@ -0,0 +1,377 @@
|
||
|
+
|
||
|
+#include "rk3328-firefly-core.dtsi"
|
||
|
+
|
||
|
+/ {
|
||
|
+ compatible = "firefly,rk3328-firefly-port", "rockchip,rk3328";
|
||
|
+
|
||
|
+ gmac_clkin: external-gmac-clock {
|
||
|
+ compatible = "fixed-clock";
|
||
|
+ clock-frequency = <125000000>;
|
||
|
+ clock-output-names = "gmac_clkin";
|
||
|
+ #clock-cells = <0>;
|
||
|
+ };
|
||
|
+
|
||
|
+ sdio_pwrseq: sdio-pwrseq {
|
||
|
+ compatible = "mmc-pwrseq-simple";
|
||
|
+ pinctrl-names = "default";
|
||
|
+ pinctrl-0 = <&wifi_enable_h>;
|
||
|
+
|
||
|
+ /*
|
||
|
+ * On the module itself this is one of these (depending
|
||
|
+ * on the actual card populated):
|
||
|
+ * - SDIO_RESET_L_WL_REG_ON
|
||
|
+ * - PDN (power down when low)
|
||
|
+ */
|
||
|
+ reset-gpios = <&gpio1 18 GPIO_ACTIVE_LOW>;
|
||
|
+ };
|
||
|
+
|
||
|
+ sound {
|
||
|
+ compatible = "simple-audio-card";
|
||
|
+ simple-audio-card,format = "i2s";
|
||
|
+ simple-audio-card,mclk-fs = <256>;
|
||
|
+ simple-audio-card,name = "rockchip,rk3328";
|
||
|
+ simple-audio-card,cpu {
|
||
|
+ sound-dai = <&i2s1>;
|
||
|
+ };
|
||
|
+ simple-audio-card,codec {
|
||
|
+ sound-dai = <&codec>;
|
||
|
+ };
|
||
|
+ };
|
||
|
+
|
||
|
+ hdmi-sound {
|
||
|
+ compatible = "simple-audio-card";
|
||
|
+ simple-audio-card,format = "i2s";
|
||
|
+ simple-audio-card,mclk-fs = <128>;
|
||
|
+ simple-audio-card,name = "rockchip,hdmi";
|
||
|
+ simple-audio-card,cpu {
|
||
|
+ sound-dai = <&i2s0>;
|
||
|
+ };
|
||
|
+ simple-audio-card,codec {
|
||
|
+ sound-dai = <&hdmi>;
|
||
|
+ };
|
||
|
+ };
|
||
|
+
|
||
|
+ spdif-sound {
|
||
|
+ status = "disabled";
|
||
|
+ compatible = "simple-audio-card";
|
||
|
+ simple-audio-card,name = "rockchip,spdif";
|
||
|
+ simple-audio-card,cpu {
|
||
|
+ sound-dai = <&spdif>;
|
||
|
+ };
|
||
|
+ simple-audio-card,codec {
|
||
|
+ sound-dai = <&spdif_out>;
|
||
|
+ };
|
||
|
+ };
|
||
|
+
|
||
|
+ spdif_out: spdif-out {
|
||
|
+ status = "disabled";
|
||
|
+ compatible = "linux,spdif-dit";
|
||
|
+ #sound-dai-cells = <0>;
|
||
|
+ };
|
||
|
+
|
||
|
+ vcc_host_5v: vcc-host-5v-regulator {
|
||
|
+ compatible = "regulator-fixed";
|
||
|
+ enable-active-high;
|
||
|
+ gpio = <&gpio0 0 GPIO_ACTIVE_HIGH>;
|
||
|
+ pinctrl-names = "default";
|
||
|
+ pinctrl-0 = <&usb_host_drv>;
|
||
|
+ regulator-name = "vcc_host_5v";
|
||
|
+ regulator-always-on;
|
||
|
+ vin-supply = <&vcc_sys>;
|
||
|
+ };
|
||
|
+
|
||
|
+ leds {
|
||
|
+ compatible = "gpio-leds";
|
||
|
+
|
||
|
+ power {
|
||
|
+ label = "firefly:blue:power";
|
||
|
+ linux,default-trigger = "ir-power-click";
|
||
|
+ gpios = <&rk805 1 GPIO_ACTIVE_LOW>;
|
||
|
+ default-state = "on";
|
||
|
+ mode = <0x23>;
|
||
|
+ };
|
||
|
+
|
||
|
+ user {
|
||
|
+ label = "firefly:yellow:user";
|
||
|
+ linux,default-trigger = "ir-user-click";
|
||
|
+ gpios = <&rk805 0 GPIO_ACTIVE_LOW>;
|
||
|
+ default-state = "on";
|
||
|
+ mode = <0x05>;
|
||
|
+ };
|
||
|
+
|
||
|
+ ir {
|
||
|
+ status = "disabled";
|
||
|
+ /* gpios = <&gpio2 GPIO_C2 GPIO_ACTIVE_HIGH>; */
|
||
|
+ linux,default-trigger = "ir";
|
||
|
+ default-state = "off";
|
||
|
+ mode = <0x00>;
|
||
|
+ };
|
||
|
+ };
|
||
|
+
|
||
|
+ adc-keys {
|
||
|
+ u-boot,dm-pre-reloc;
|
||
|
+ compatible = "adc-keys";
|
||
|
+ io-channels = <&saradc 0>;
|
||
|
+ };
|
||
|
+};
|
||
|
+
|
||
|
+&saradc {
|
||
|
+ vref-supply = <&vdd_18>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&codec {
|
||
|
+ #sound-dai-cells = <0>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&display_subsystem {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&route_hdmi {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&gmac2io {
|
||
|
+ phy-supply = <&vcc_phy>;
|
||
|
+ phy-mode = "rgmii";
|
||
|
+ clock_in_out = "input";
|
||
|
+ snps,reset-gpio = <&gpio1 RK_PC2 GPIO_ACTIVE_LOW>;
|
||
|
+ snps,reset-active-low;
|
||
|
+ snps,force_thresh_dma_mode;
|
||
|
+ snps,reset-delays-us = <0 10000 50000>;
|
||
|
+ assigned-clocks = <&cru SCLK_MAC2IO>, <&cru SCLK_MAC2IO_EXT>;
|
||
|
+ assigned-clock-parents = <&gmac_clkin>, <&gmac_clkin>;
|
||
|
+ pinctrl-names = "default";
|
||
|
+ pinctrl-0 = <&rgmiim1_pins>;
|
||
|
+ tx_delay = <0x28>;
|
||
|
+ rx_delay = <0x16>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&gmac2phy {
|
||
|
+ phy-supply = <&vcc_phy>;
|
||
|
+ clock_in_out = "output";
|
||
|
+ assigned-clocks = <&cru SCLK_MAC2PHY_SRC>;
|
||
|
+ assigned-clock-rate = <50000000>;
|
||
|
+ assigned-clocks = <&cru SCLK_MAC2PHY>;
|
||
|
+ assigned-clock-parents = <&cru SCLK_MAC2PHY_SRC>;
|
||
|
+ status = "disabled";
|
||
|
+};
|
||
|
+
|
||
|
+&hdmi {
|
||
|
+ #sound-dai-cells = <0>;
|
||
|
+ ddc-i2c-scl-high-time-ns = <9625>;
|
||
|
+ ddc-i2c-scl-low-time-ns = <10000>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&hdmiphy {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&i2s0 {
|
||
|
+ #sound-dai-cells = <0>;
|
||
|
+ rockchip,bclk-fs = <128>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&i2s1 {
|
||
|
+ #sound-dai-cells = <0>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&pinctrl {
|
||
|
+
|
||
|
+ sdio-pwrseq {
|
||
|
+ wifi_enable_h: wifi-enable-h {
|
||
|
+ rockchip,pins =
|
||
|
+ <1 18 RK_FUNC_GPIO &pcfg_pull_none>;
|
||
|
+ };
|
||
|
+ };
|
||
|
+
|
||
|
+ usb {
|
||
|
+ usb_host_drv: usb-host-drv {
|
||
|
+ rockchip,pins =
|
||
|
+ <0 0 RK_FUNC_GPIO &pcfg_pull_none>;
|
||
|
+ };
|
||
|
+ };
|
||
|
+
|
||
|
+};
|
||
|
+
|
||
|
+&sdio {
|
||
|
+ bus-width = <4>;
|
||
|
+ cap-sd-highspeed;
|
||
|
+ cap-sdio-irq;
|
||
|
+ disable-wp;
|
||
|
+ keep-power-in-suspend;
|
||
|
+ max-frequency = <150000000>;
|
||
|
+ mmc-pwrseq = <&sdio_pwrseq>;
|
||
|
+ non-removable;
|
||
|
+ num-slots = <1>;
|
||
|
+ pinctrl-names = "default";
|
||
|
+ pinctrl-0 = <&sdmmc1_bus4 &sdmmc1_cmd &sdmmc1_clk>;
|
||
|
+ supports-sdio;
|
||
|
+ status = "disabled";
|
||
|
+};
|
||
|
+
|
||
|
+&spdif {
|
||
|
+ #sound-dai-cells = <0>;
|
||
|
+ status = "disabled";
|
||
|
+};
|
||
|
+
|
||
|
+&uart1 {
|
||
|
+ pinctrl-names = "default";
|
||
|
+ pinctrl-0 = <&uart1_xfer>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&u2phy {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&u2phy_host {
|
||
|
+ phy-supply = <&vcc_host_5v>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&u2phy_otg {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&u3phy {
|
||
|
+ phy-supply = <&vcc_host_5v>;
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&u3phy_utmi {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&u3phy_pipe {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&usb20_otg {
|
||
|
+ dr_mode = "host";
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&usb_host0_ehci {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&usb_host0_ohci {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&usbdrd3 {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&usbdrd_dwc3 {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&vepu {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&vop {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&vop_mmu {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&vpu_service {
|
||
|
+ status = "okay";
|
||
|
+};
|
||
|
+
|
||
|
+&pwm3 {
|
||
|
+ status = "okay";
|
||
|
+ compatible = "rockchip,remotectl-pwm";
|
||
|
+ pinctrl-names = "default";
|
||
|
+ pinctrl-0 = <&pwmir_pin>;
|
||
|
+ remote_pwm_id = <3>;
|
||
|
+ handle_cpu_id = <1>;
|
||
|
+ remote_support_psci = <1>;
|
||
|
+
|
||
|
+ ir_key1 {
|
||
|
+ rockchip,usercode = <0x4040>;
|
||
|
+ rockchip,key_table =
|
||
|
+ <0xf2 KEY_REPLY>,
|
||
|
+ <0xba KEY_BACK>,
|
||
|
+ <0xf4 KEY_UP>,
|
||
|
+ <0xf1 KEY_DOWN>,
|
||
|
+ <0xef KEY_LEFT>,
|
||
|
+ <0xee KEY_RIGHT>,
|
||
|
+ <0xbd KEY_HOME>,
|
||
|
+ <0xea KEY_VOLUMEUP>,
|
||
|
+ <0xe3 KEY_VOLUMEDOWN>,
|
||
|
+ <0xe2 KEY_SEARCH>,
|
||
|
+ <0xb2 KEY_POWER>,
|
||
|
+ <0xbc KEY_MUTE>,
|
||
|
+ <0xec KEY_MENU>,
|
||
|
+ <0xbf 0x190>,
|
||
|
+ <0xe0 0x191>,
|
||
|
+ <0xe1 0x192>,
|
||
|
+ <0xe9 183>,
|
||
|
+ <0xe6 248>,
|
||
|
+ <0xe8 185>,
|
||
|
+ <0xe7 186>,
|
||
|
+ <0xf0 388>,
|
||
|
+ <0xbe 0x175>;
|
||
|
+ };
|
||
|
+
|
||
|
+ ir_key2 {
|
||
|
+ rockchip,usercode = <0xff00>;
|
||
|
+ rockchip,key_table =
|
||
|
+ <0xeb KEY_POWER>,
|
||
|
+ <0xec KEY_COMPOSE>,
|
||
|
+ <0xfe KEY_BACK>,
|
||
|
+ <0xb7 KEY_HOME>,
|
||
|
+ <0xa3 KEY_WWW>,
|
||
|
+ <0xf4 KEY_VOLUMEUP>,
|
||
|
+ <0xa7 KEY_VOLUMEDOWN>,
|
||
|
+ <0xf8 KEY_ENTER>,
|
||
|
+ <0xfc KEY_UP>,
|
||
|
+ <0xfd KEY_DOWN>,
|
||
|
+ <0xf1 KEY_LEFT>,
|
||
|
+ <0xe5 KEY_RIGHT>;
|
||
|
+ };
|
||
|
+
|
||
|
+ ir_key3 {
|
||
|
+ rockchip,usercode = <0x1dcc>;
|
||
|
+ rockchip,key_table =
|
||
|
+ <0xee KEY_REPLY>,
|
||
|
+ <0xf0 KEY_BACK>,
|
||
|
+ <0xf8 KEY_UP>,
|
||
|
+ <0xbb KEY_DOWN>,
|
||
|
+ <0xef KEY_LEFT>,
|
||
|
+ <0xed KEY_RIGHT>,
|
||
|
+ <0xfc KEY_HOME>,
|
||
|
+ <0xf1 KEY_VOLUMEUP>,
|
||
|
+ <0xfd KEY_VOLUMEDOWN>,
|
||
|
+ <0xb7 KEY_SEARCH>,
|
||
|
+ <0xff KEY_POWER>,
|
||
|
+ <0xf3 KEY_MUTE>,
|
||
|
+ <0xbf KEY_MENU>,
|
||
|
+ <0xf9 0x191>,
|
||
|
+ <0xf5 0x192>,
|
||
|
+ <0xb3 388>,
|
||
|
+ <0xbe KEY_1>,
|
||
|
+ <0xba KEY_2>,
|
||
|
+ <0xb2 KEY_3>,
|
||
|
+ <0xbd KEY_4>,
|
||
|
+ <0xf9 KEY_5>,
|
||
|
+ <0xb1 KEY_6>,
|
||
|
+ <0xfc KEY_7>,
|
||
|
+ <0xf8 KEY_8>,
|
||
|
+ <0xb0 KEY_9>,
|
||
|
+ <0xb6 KEY_0>,
|
||
|
+ <0xb5 KEY_BACKSPACE>;
|
||
|
+ };
|
||
|
+};
|
||
|
--
|
||
|
Armbian
|
||
|
|