From 5e8555e3ea324daaf0e38422bcba48c4df33a0d9 Mon Sep 17 00:00:00 2001
From: hc <hc@nodka.com>
Date: Tue, 07 Nov 2023 06:17:58 +0000
Subject: [PATCH] gmac read mac form eeprom
---
kernel/arch/arm64/boot/dts/rockchip/NK-R36S0.dtsi | 137 +++++++++++++++++++++++++++++++++++++++------
1 files changed, 118 insertions(+), 19 deletions(-)
diff --git a/kernel/arch/arm64/boot/dts/rockchip/NK-R36S0.dtsi b/kernel/arch/arm64/boot/dts/rockchip/NK-R36S0.dtsi
old mode 100644
new mode 100755
index f45ce09..aafefb6
--- a/kernel/arch/arm64/boot/dts/rockchip/NK-R36S0.dtsi
+++ b/kernel/arch/arm64/boot/dts/rockchip/NK-R36S0.dtsi
@@ -8,6 +8,7 @@
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/pinctrl/rockchip.h>
+#include <dt-bindings/display/media-bus-format.h>
#include "rk3568.dtsi"
#include "rk3568-evb.dtsi"
@@ -185,7 +186,50 @@
gpio_function = <1>;
};
#endif
-};
+ };
+
+ panel: panel {
+ compatible = "simple-panel";
+ backlight = <&backlight>;
+ power-supply = <&vcc3v3_lcd0_n>;
+ enable-gpios = <&gpio2 RK_PD4 GPIO_ACTIVE_HIGH>; //LCD0_VDD_H_GPIO2_D4
+ reset-gpios = <&gpio3 RK_PD1 GPIO_ACTIVE_LOW>; //7511_RST_GPIO3_D1
+ edp-bl-gpios = <&gpio0 RK_PB7 GPIO_ACTIVE_HIGH>; //LCD0_BKLT_EN_3V3
+ edp-bl-en = <&gpio0 RK_PB0 GPIO_ACTIVE_HIGH>; //LCD0_BKLT_EN_3V3
+ bus-format = <MEDIA_BUS_FMT_RGB888_1X24>;
+ bpc = <8>;
+ prepare-delay-ms = <200>;
+ enable-delay-ms = <20>;
+ lvds-gpio0 = <&gpio3 RK_PD2 GPIO_ACTIVE_HIGH>; //7511_GPIO0-GPIO3_D2
+ lvds-gpio1 = <&gpio3 RK_PD3 GPIO_ACTIVE_HIGH>; //7511_GPIO1-GPIO3_D3
+ lvds-gpio2 = <&gpio3 RK_PD4 GPIO_ACTIVE_HIGH>; //7511_GPIO2-GPIO3_D4
+ lvds-gpio3 = <&gpio3 RK_PD5 GPIO_ACTIVE_HIGH>; //7511_GPIO3-GPIO3_D5
+ nodka-lvds = <15>;
+
+ display-timings {
+ native-mode = <&timing0>;
+ timing0: timing0 {
+ clock-frequency = <72500000>;
+ hactive = <1280>;
+ vactive = <800>;
+ hfront-porch = <70>;
+ hsync-len = <2>;
+ hback-porch = <88>;
+ vfront-porch = <7>;
+ vsync-len = <4>;
+ vback-porch = <17>;
+ hsync-active = <21>;
+ vsync-active = <0>;
+ de-active = <0>;
+ pixelclk-active = <0>;
+ };
+ };
+ ports {
+ panel_in: endpoint {
+ remote-endpoint = <&edp_out>;
+ };
+ };
+ };
};
&combphy0_us {
@@ -285,8 +329,18 @@
};
&edp {
- hpd-gpios = <&gpio0 RK_PC2 GPIO_ACTIVE_HIGH>;
- status = "okay";
+ //hpd-gpios = <&gpio0 RK_PC2 GPIO_ACTIVE_HIGH>;
+ force-hpd;
+ status = "okay";
+ ports {
+ port@1 {
+ reg = <1>;
+ edp_out: endpoint {
+ remote-endpoint = <&panel_in>;
+ };
+ };
+
+ };
};
&edp_phy {
@@ -294,11 +348,11 @@
};
&edp_in_vp0 {
- status = "okay";
+ status = "disabled";
};
&edp_in_vp1 {
- status = "disabled";
+ status = "okay";
};
&gmac0 {
@@ -359,8 +413,22 @@
* power-supply should switche to vcc3v3_lcd1_n
* when mipi panel is connected to dsi1.
*/
->1x {
- power-supply = <&vcc3v3_lcd0_n>;
+
+
+&i2c3 {
+ status = "okay";
+ //mac eeprom
+ eeprom@51 {
+ //compatible = "atmel,24c02";
+ compatible = "atmel,24c256";
+ reg = <0x51>;
+ };
+
+ //nk-mcu
+ nkmcu@15 {
+ compatible = "nk_mcu";
+ reg = <0x15>;
+ };
};
&i2c4 {
@@ -466,13 +534,7 @@
};
&pinctrl {
- cam {
- camera_pwr: camera-pwr {
- rockchip,pins =
- /* camera power en */
- <0 RK_PC1 RK_FUNC_GPIO &pcfg_pull_none>;
- };
- };
+
headphone {
hp_det: hp-det {
rockchip,pins = <3 RK_PC2 RK_FUNC_GPIO &pcfg_pull_down>;
@@ -531,7 +593,7 @@
};
&rkisp_vir0 {
- status = "okay";
+ status = "disabled";
port {
#address-cells = <1>;
@@ -549,9 +611,11 @@
connect = <&vp1_out_dsi0>;
};
+
+
&route_edp {
status = "okay";
- connect = <&vp0_out_edp>;
+ connect = <&vp1_out_edp>;
};
&sata2 {
@@ -581,18 +645,18 @@
};
&uart8 {
- status = "okay";
+ status = "disabled";
pinctrl-names = "default";
pinctrl-0 = <&uart8m0_xfer &uart8m0_ctsn>;
};
&vcc3v3_lcd0_n {
- gpio = <&gpio0 RK_PC7 GPIO_ACTIVE_HIGH>;
+ gpio = <&gpio0 RK_PC4 GPIO_ACTIVE_HIGH>;
enable-active-high;
};
&vcc3v3_lcd1_n {
- gpio = <&gpio0 RK_PC5 GPIO_ACTIVE_HIGH>;
+ gpio = <&gpio3 RK_PA3 GPIO_ACTIVE_HIGH>; //MIPI_3V3EN_GPIO3_A3_d_3V3
enable-active-high;
};
@@ -616,3 +680,38 @@
BT,wake_host_irq = <&gpio3 RK_PA1 GPIO_ACTIVE_HIGH>;
status = "okay";
};
+
+&uart0 {
+ status = "okay";
+};
+
+&uart1 {
+ pinctrl-names = "default";
+ pinctrl-0 = <&uart1m0_xfer &uart1m0_ctsn>;
+ status = "okay";
+};
+
+&uart3 {
+ status = "okay";
+ pinctrl-0 = <&uart3m1_xfer>;
+};
+
+&uart4 {
+ status = "okay";
+ pinctrl-0 = <&uart4m1_xfer>;
+};
+
+&uart5 {
+ status = "okay";
+ pinctrl-0 = <&uart5m1_xfer>;
+};
+
+&uart7 {
+ status = "okay";
+ pinctrl-0 = <&uart7m1_xfer>;
+};
+
+&uart9 {
+ status = "okay";
+ pinctrl-0 = <&uart9m1_xfer>;
+};
\ No newline at end of file
--
Gitblit v1.6.2