mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-22 18:02:46 +00:00
Add initial support for new target with the initial patch for ethernet support using pending upstream patches for PCS UNIPHY, PPE and EDMA. Only initramfs currently working as support for new SPI/NAND implementation, USB, CPUFreq and other devices is still unfinished and needs to be evaluated. Link: https://github.com/openwrt/openwrt/pull/17725 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
145 lines
2.8 KiB
Diff
145 lines
2.8 KiB
Diff
From 968c5e8220209eb2185654f01748c349515a3b8e Mon Sep 17 00:00:00 2001
|
|
From: Md Sadre Alam <quic_mdalam@quicinc.com>
|
|
Date: Thu, 15 Feb 2024 12:26:40 +0530
|
|
Subject: [PATCH v10 7/8] arm64: dts: qcom: ipq9574: Add SPI nand support
|
|
|
|
Add SPI NAND support for ipq9574 SoC.
|
|
|
|
Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com>
|
|
---
|
|
|
|
Change in [v10]
|
|
|
|
* No change
|
|
|
|
Change in [v9]
|
|
|
|
* No change
|
|
|
|
Change in [v8]
|
|
|
|
* No change
|
|
|
|
Change in [v7]
|
|
|
|
* No change
|
|
|
|
Change in [v6]
|
|
|
|
* No change
|
|
|
|
Change in [v5]
|
|
|
|
* No change
|
|
|
|
Change in [v4]
|
|
|
|
* No change
|
|
|
|
Change in [v3]
|
|
|
|
* Updated gpio number as per pin control driver
|
|
|
|
* Fixed alignment issue
|
|
|
|
Change in [v2]
|
|
|
|
* Added initial enablement for spi-nand
|
|
|
|
Change in [v1]
|
|
|
|
* Posted as RFC patch for design review
|
|
|
|
.../boot/dts/qcom/ipq9574-rdp-common.dtsi | 43 +++++++++++++++++++
|
|
arch/arm64/boot/dts/qcom/ipq9574.dtsi | 27 ++++++++++++
|
|
2 files changed, 70 insertions(+)
|
|
|
|
--- a/arch/arm64/boot/dts/qcom/ipq9574-rdp433.dts
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq9574-rdp433.dts
|
|
@@ -121,6 +121,49 @@
|
|
bias-pull-down;
|
|
};
|
|
};
|
|
+
|
|
+ qpic_snand_default_state: qpic-snand-default-state {
|
|
+ clock-pins {
|
|
+ pins = "gpio5";
|
|
+ function = "qspi_clk";
|
|
+ drive-strength = <8>;
|
|
+ bias-disable;
|
|
+ };
|
|
+
|
|
+ cs-pins {
|
|
+ pins = "gpio4";
|
|
+ function = "qspi_cs";
|
|
+ drive-strength = <8>;
|
|
+ bias-disable;
|
|
+ };
|
|
+
|
|
+ data-pins {
|
|
+ pins = "gpio0", "gpio1", "gpio2", "gpio3";
|
|
+ function = "qspi_data";
|
|
+ drive-strength = <8>;
|
|
+ bias-disable;
|
|
+ };
|
|
+ };
|
|
+};
|
|
+
|
|
+&qpic_bam {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&qpic_nand {
|
|
+ pinctrl-0 = <&qpic_snand_default_state>;
|
|
+ pinctrl-names = "default";
|
|
+ status = "okay";
|
|
+
|
|
+ flash@0 {
|
|
+ compatible = "spi-nand";
|
|
+ reg = <0>;
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <1>;
|
|
+ nand-ecc-engine = <&qpic_nand>;
|
|
+ nand-ecc-strength = <4>;
|
|
+ nand-ecc-step-size = <512>;
|
|
+ };
|
|
};
|
|
|
|
&usb_0_dwc3 {
|
|
--- a/arch/arm64/boot/dts/qcom/ipq9574.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq9574.dtsi
|
|
@@ -300,6 +300,33 @@
|
|
reg = <0x01937000 0x21000>;
|
|
};
|
|
|
|
+ qpic_bam: dma-controller@7984000 {
|
|
+ compatible = "qcom,bam-v1.7.0";
|
|
+ reg = <0x7984000 0x1c000>;
|
|
+ interrupts = <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>;
|
|
+ clocks = <&gcc GCC_QPIC_AHB_CLK>;
|
|
+ clock-names = "bam_clk";
|
|
+ #dma-cells = <1>;
|
|
+ qcom,ee = <0>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
+ qpic_nand: spi@79b0000 {
|
|
+ compatible = "qcom,spi-qpic-snand", "qcom,ipq9574-nand";
|
|
+ reg = <0x79b0000 0x10000>;
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+ clocks = <&gcc GCC_QPIC_CLK>,
|
|
+ <&gcc GCC_QPIC_AHB_CLK>,
|
|
+ <&gcc GCC_QPIC_IO_MACRO_CLK>;
|
|
+ clock-names = "core", "aon", "iom";
|
|
+ dmas = <&qpic_bam 0>,
|
|
+ <&qpic_bam 1>,
|
|
+ <&qpic_bam 2>;
|
|
+ dma-names = "tx", "rx", "cmd";
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
sdhc_1: mmc@7804000 {
|
|
compatible = "qcom,ipq9574-sdhci", "qcom,sdhci-msm-v5";
|
|
reg = <0x07804000 0x1000>, <0x07805000 0x1000>;
|