mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
rockchip: remove dwcmshc hack for rk3528
This hack is only needed when running sdk u-boot.
This commit is contained in:
parent
36b2cd19df
commit
2fe48cd61a
@ -1219,7 +1219,8 @@
|
||||
};
|
||||
|
||||
sdhci: mmc@ffbf0000 {
|
||||
compatible = "rockchip,rk3528-dwcmshc";
|
||||
compatible = "rockchip,rk3528-dwcmshc",
|
||||
"rockchip,rk3588-dwcmshc";
|
||||
reg = <0x0 0xffbf0000 0x0 0x10000>;
|
||||
interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>;
|
||||
assigned-clocks = <&cru BCLK_EMMC>, <&cru TCLK_EMMC>, <&cru CCLK_SRC_EMMC>;
|
||||
|
@ -28,12 +28,15 @@
|
||||
#phy-cells = <1>;
|
||||
--- a/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
|
||||
+++ b/drivers/phy/rockchip/phy-rockchip-naneng-combphy.c
|
||||
@@ -299,7 +299,7 @@ static int rockchip_combphy_parse_dt(str
|
||||
@@ -299,7 +299,10 @@ static int rockchip_combphy_parse_dt(str
|
||||
|
||||
priv->ext_refclk = device_property_present(dev, "rockchip,ext-refclk");
|
||||
|
||||
- priv->phy_rst = devm_reset_control_array_get_exclusive(dev);
|
||||
+ priv->phy_rst = devm_reset_control_get(dev, "phy");
|
||||
- priv->phy_rst = devm_reset_control_get(dev, "phy");
|
||||
+ priv->phy_rst = devm_reset_control_get_exclusive(dev, "phy");
|
||||
+ /* fallback to old behaviour */
|
||||
+ if (PTR_ERR(priv->phy_rst) == -ENOENT)
|
||||
+ priv->phy_rst = devm_reset_control_array_get_exclusive(dev);
|
||||
if (IS_ERR(priv->phy_rst))
|
||||
return dev_err_probe(dev, PTR_ERR(priv->phy_rst), "failed to get phy reset\n");
|
||||
|
||||
|
@ -1,100 +1,3 @@
|
||||
--- a/drivers/mmc/host/sdhci-of-dwcmshc.c
|
||||
+++ b/drivers/mmc/host/sdhci-of-dwcmshc.c
|
||||
@@ -295,19 +295,20 @@ static void dwcmshc_rk3568_set_clock(str
|
||||
0x3 << 19; /* post-change delay */
|
||||
sdhci_writel(host, extra, dwc_priv->vendor_specific_area1 + DWCMSHC_EMMC_ATCTRL);
|
||||
|
||||
- if (host->mmc->ios.timing == MMC_TIMING_MMC_HS200 ||
|
||||
- host->mmc->ios.timing == MMC_TIMING_MMC_HS400)
|
||||
+ if (host->mmc->ios.timing == MMC_TIMING_MMC_HS200)
|
||||
txclk_tapnum = priv->txclk_tapnum;
|
||||
|
||||
- if ((priv->devtype == DWCMSHC_RK3588) && host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
|
||||
+ if (host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
|
||||
txclk_tapnum = DLL_TXCLK_TAPNUM_90_DEGREES;
|
||||
|
||||
- extra = DLL_CMDOUT_SRC_CLK_NEG |
|
||||
- DLL_CMDOUT_EN_SRC_CLK_NEG |
|
||||
- DWCMSHC_EMMC_DLL_DLYENA |
|
||||
- DLL_CMDOUT_TAPNUM_90_DEGREES |
|
||||
- DLL_CMDOUT_TAPNUM_FROM_SW;
|
||||
- sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
|
||||
+ if (priv->devtype != DWCMSHC_RK3568) {
|
||||
+ extra = DLL_CMDOUT_SRC_CLK_NEG |
|
||||
+ DLL_CMDOUT_EN_SRC_CLK_NEG |
|
||||
+ DWCMSHC_EMMC_DLL_DLYENA |
|
||||
+ DLL_CMDOUT_TAPNUM_90_DEGREES |
|
||||
+ DLL_CMDOUT_TAPNUM_FROM_SW;
|
||||
+ sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
|
||||
+ }
|
||||
}
|
||||
|
||||
extra = DWCMSHC_EMMC_DLL_DLYENA |
|
||||
@@ -355,6 +356,15 @@ static const struct sdhci_ops sdhci_dwcm
|
||||
.adma_write_desc = dwcmshc_adma_write_desc,
|
||||
};
|
||||
|
||||
+static const struct sdhci_ops sdhci_dwcmshc_rk3528_ops = {
|
||||
+ .set_clock = dwcmshc_rk3568_set_clock,
|
||||
+ .set_bus_width = sdhci_set_bus_width,
|
||||
+ .set_uhs_signaling = dwcmshc_set_uhs_signaling,
|
||||
+ .get_max_clock = sdhci_pltfm_clk_get_max_clock,
|
||||
+ .reset = rk35xx_sdhci_reset,
|
||||
+ .adma_write_desc = dwcmshc_adma_write_desc,
|
||||
+};
|
||||
+
|
||||
static const struct sdhci_pltfm_data sdhci_dwcmshc_pdata = {
|
||||
.ops = &sdhci_dwcmshc_ops,
|
||||
.quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
|
||||
@@ -378,6 +388,14 @@ static const struct sdhci_pltfm_data sdh
|
||||
SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN,
|
||||
};
|
||||
|
||||
+static const struct sdhci_pltfm_data sdhci_dwcmshc_rk3528_pdata = {
|
||||
+ .ops = &sdhci_dwcmshc_rk3528_ops,
|
||||
+ .quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN |
|
||||
+ SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
|
||||
+ .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
|
||||
+ SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN,
|
||||
+};
|
||||
+
|
||||
static int dwcmshc_rk35xx_init(struct sdhci_host *host, struct dwcmshc_priv *dwc_priv)
|
||||
{
|
||||
int err;
|
||||
@@ -443,6 +461,10 @@ static const struct of_device_id sdhci_d
|
||||
.data = &sdhci_dwcmshc_rk35xx_pdata,
|
||||
},
|
||||
{
|
||||
+ .compatible = "rockchip,rk3528-dwcmshc",
|
||||
+ .data = &sdhci_dwcmshc_rk3528_pdata,
|
||||
+ },
|
||||
+ {
|
||||
.compatible = "snps,dwcmshc-sdhci",
|
||||
.data = &sdhci_dwcmshc_pdata,
|
||||
},
|
||||
@@ -521,17 +543,18 @@ static int dwcmshc_probe(struct platform
|
||||
host->mmc_host_ops.request = dwcmshc_request;
|
||||
host->mmc_host_ops.hs400_enhanced_strobe = dwcmshc_hs400_enhanced_strobe;
|
||||
|
||||
- if (pltfm_data == &sdhci_dwcmshc_rk35xx_pdata) {
|
||||
+ if ((pltfm_data == &sdhci_dwcmshc_rk35xx_pdata) ||
|
||||
+ (pltfm_data == &sdhci_dwcmshc_rk3528_pdata)) {
|
||||
rk_priv = devm_kzalloc(&pdev->dev, sizeof(struct rk35xx_priv), GFP_KERNEL);
|
||||
if (!rk_priv) {
|
||||
err = -ENOMEM;
|
||||
goto err_clk;
|
||||
}
|
||||
|
||||
- if (of_device_is_compatible(pdev->dev.of_node, "rockchip,rk3588-dwcmshc"))
|
||||
- rk_priv->devtype = DWCMSHC_RK3588;
|
||||
- else
|
||||
+ if (of_device_is_compatible(pdev->dev.of_node, "rockchip,rk3568-dwcmshc"))
|
||||
rk_priv->devtype = DWCMSHC_RK3568;
|
||||
+ else
|
||||
+ rk_priv->devtype = DWCMSHC_RK3588;
|
||||
|
||||
priv->priv = rk_priv;
|
||||
|
||||
--- a/drivers/pci/controller/dwc/Makefile
|
||||
+++ b/drivers/pci/controller/dwc/Makefile
|
||||
@@ -16,6 +16,7 @@ obj-$(CONFIG_PCIE_QCOM_EP) += pcie-qcom-
|
||||
|
@ -1,3 +1,16 @@
|
||||
From 7c24d9902e1dab659e020798f0d682e0cd650a88 Mon Sep 17 00:00:00 2001
|
||||
From: Jianwei Zheng <jianwei.zheng@rock-chips.com>
|
||||
Date: Sun, 9 Oct 2022 11:22:44 +0800
|
||||
Subject: [PATCH] phy: rockchip: inno-usb2: add usb2 phy support for rk3528
|
||||
|
||||
This patch add usb2 phy support for rk3528.
|
||||
|
||||
Signed-off-by: Jianwei Zheng <jianwei.zheng@rock-chips.com>
|
||||
Change-Id: Ia4a861bccd6a37db4e1ba42cede66a6b07947b5d
|
||||
---
|
||||
drivers/phy/rockchip/phy-rockchip-inno-usb2.c | 51 ++++++++++++++++
|
||||
1 file changed, 51 insertions(+)
|
||||
|
||||
--- a/drivers/phy/rockchip/phy-rockchip-inno-usb2.c
|
||||
+++ b/drivers/phy/rockchip/phy-rockchip-inno-usb2.c
|
||||
@@ -1905,6 +1905,56 @@ static const struct rockchip_usb2phy_cfg
|
||||
@ -11,10 +24,10 @@
|
||||
+ .clkout_ctl = { 0x041c, 7, 2, 0, 0x27 },
|
||||
+ .port_cfgs = {
|
||||
+ [USB2PHY_PORT_OTG] = {
|
||||
+ .phy_sus = { 0x6004c, 15, 0, 0, 0x1d1 },
|
||||
+ .bvalid_det_en = { 0x60074, 3, 2, 0, 3 },
|
||||
+ .bvalid_det_st = { 0x60078, 3, 2, 0, 3 },
|
||||
+ .bvalid_det_clr = { 0x6007c, 3, 2, 0, 3 },
|
||||
+ .phy_sus = { 0x6004c, 8, 0, 0, 0x1d1 },
|
||||
+ .bvalid_det_en = { 0x60074, 2, 2, 0, 1 },
|
||||
+ .bvalid_det_st = { 0x60078, 2, 2, 0, 1 },
|
||||
+ .bvalid_det_clr = { 0x6007c, 2, 2, 0, 1 },
|
||||
+ .idfall_det_en = { 0x60074, 5, 5, 0, 1 },
|
||||
+ .idfall_det_st = { 0x60078, 5, 5, 0, 1 },
|
||||
+ .idfall_det_clr = { 0x6007c, 5, 5, 0, 1 },
|
||||
@ -30,7 +43,7 @@
|
||||
+ .utmi_ls = { 0x6006c, 5, 4, 0, 1 },
|
||||
+ },
|
||||
+ [USB2PHY_PORT_HOST] = {
|
||||
+ .phy_sus = { 0x6005c, 15, 0, 0x1d2, 0x1d1 },
|
||||
+ .phy_sus = { 0x6005c, 8, 0, 0x1d2, 0x1d1 },
|
||||
+ .ls_det_en = { 0x60090, 0, 0, 0, 1 },
|
||||
+ .ls_det_st = { 0x60094, 0, 0, 0, 1 },
|
||||
+ .ls_det_clr = { 0x60098, 0, 0, 0, 1 },
|
||||
|
@ -1,96 +1,3 @@
|
||||
--- a/drivers/mmc/host/sdhci-of-dwcmshc.c
|
||||
+++ b/drivers/mmc/host/sdhci-of-dwcmshc.c
|
||||
@@ -688,19 +688,20 @@ static void dwcmshc_rk3568_set_clock(str
|
||||
0x3 << 19; /* post-change delay */
|
||||
sdhci_writel(host, extra, dwc_priv->vendor_specific_area1 + DWCMSHC_EMMC_ATCTRL);
|
||||
|
||||
- if (host->mmc->ios.timing == MMC_TIMING_MMC_HS200 ||
|
||||
- host->mmc->ios.timing == MMC_TIMING_MMC_HS400)
|
||||
+ if (host->mmc->ios.timing == MMC_TIMING_MMC_HS200)
|
||||
txclk_tapnum = priv->txclk_tapnum;
|
||||
|
||||
- if ((priv->devtype == DWCMSHC_RK3588) && host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
|
||||
+ if (host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
|
||||
txclk_tapnum = DLL_TXCLK_TAPNUM_90_DEGREES;
|
||||
|
||||
- extra = DLL_CMDOUT_SRC_CLK_NEG |
|
||||
- DLL_CMDOUT_EN_SRC_CLK_NEG |
|
||||
- DWCMSHC_EMMC_DLL_DLYENA |
|
||||
- DLL_CMDOUT_TAPNUM_90_DEGREES |
|
||||
- DLL_CMDOUT_TAPNUM_FROM_SW;
|
||||
- sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
|
||||
+ if (priv->devtype != DWCMSHC_RK3568) {
|
||||
+ extra = DLL_CMDOUT_SRC_CLK_NEG |
|
||||
+ DLL_CMDOUT_EN_SRC_CLK_NEG |
|
||||
+ DWCMSHC_EMMC_DLL_DLYENA |
|
||||
+ DLL_CMDOUT_TAPNUM_90_DEGREES |
|
||||
+ DLL_CMDOUT_TAPNUM_FROM_SW;
|
||||
+ sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
|
||||
+ }
|
||||
}
|
||||
|
||||
extra = DWCMSHC_EMMC_DLL_DLYENA |
|
||||
@@ -741,10 +742,10 @@ static int dwcmshc_rk35xx_init(struct de
|
||||
if (!priv)
|
||||
return -ENOMEM;
|
||||
|
||||
- if (of_device_is_compatible(dev->of_node, "rockchip,rk3588-dwcmshc"))
|
||||
- priv->devtype = DWCMSHC_RK3588;
|
||||
- else
|
||||
+ if (of_device_is_compatible(dev->of_node, "rockchip,rk3568-dwcmshc"))
|
||||
priv->devtype = DWCMSHC_RK3568;
|
||||
+ else
|
||||
+ priv->devtype = DWCMSHC_RK3588;
|
||||
|
||||
priv->reset = devm_reset_control_array_get_optional_exclusive(mmc_dev(host->mmc));
|
||||
if (IS_ERR(priv->reset)) {
|
||||
@@ -1156,6 +1157,16 @@ static const struct sdhci_ops sdhci_dwcm
|
||||
.irq = dwcmshc_cqe_irq_handler,
|
||||
};
|
||||
|
||||
+static const struct sdhci_ops sdhci_dwcmshc_rk3528_ops = {
|
||||
+ .set_clock = dwcmshc_rk3568_set_clock,
|
||||
+ .set_bus_width = sdhci_set_bus_width,
|
||||
+ .set_uhs_signaling = dwcmshc_set_uhs_signaling,
|
||||
+ .get_max_clock = sdhci_pltfm_clk_get_max_clock,
|
||||
+ .reset = rk35xx_sdhci_reset,
|
||||
+ .adma_write_desc = dwcmshc_adma_write_desc,
|
||||
+ .irq = dwcmshc_cqe_irq_handler,
|
||||
+};
|
||||
+
|
||||
static const struct sdhci_ops sdhci_dwcmshc_th1520_ops = {
|
||||
.set_clock = sdhci_set_clock,
|
||||
.set_bus_width = sdhci_set_bus_width,
|
||||
@@ -1218,6 +1229,18 @@ static const struct dwcmshc_pltfm_data s
|
||||
.postinit = dwcmshc_rk35xx_postinit,
|
||||
};
|
||||
|
||||
+static const struct dwcmshc_pltfm_data sdhci_dwcmshc_rk3528_pdata = {
|
||||
+ .pdata = {
|
||||
+ .ops = &sdhci_dwcmshc_rk3528_ops,
|
||||
+ .quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN |
|
||||
+ SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
|
||||
+ .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
|
||||
+ SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN,
|
||||
+ },
|
||||
+ .init = dwcmshc_rk35xx_init,
|
||||
+ .postinit = dwcmshc_rk35xx_postinit,
|
||||
+};
|
||||
+
|
||||
static const struct dwcmshc_pltfm_data sdhci_dwcmshc_th1520_pdata = {
|
||||
.pdata = {
|
||||
.ops = &sdhci_dwcmshc_th1520_ops,
|
||||
@@ -1320,6 +1343,10 @@ static const struct of_device_id sdhci_d
|
||||
.compatible = "rockchip,rk3568-dwcmshc",
|
||||
.data = &sdhci_dwcmshc_rk35xx_pdata,
|
||||
},
|
||||
+ {
|
||||
+ .compatible = "rockchip,rk3528-dwcmshc",
|
||||
+ .data = &sdhci_dwcmshc_rk3528_pdata,
|
||||
+ },
|
||||
{
|
||||
.compatible = "snps,dwcmshc-sdhci",
|
||||
.data = &sdhci_dwcmshc_pdata,
|
||||
--- a/drivers/pci/controller/dwc/Makefile
|
||||
+++ b/drivers/pci/controller/dwc/Makefile
|
||||
@@ -18,6 +18,7 @@ obj-$(CONFIG_PCIE_QCOM_EP) += pcie-qcom-
|
||||
|
@ -1,100 +1,3 @@
|
||||
--- a/drivers/mmc/host/sdhci-of-dwcmshc.c
|
||||
+++ b/drivers/mmc/host/sdhci-of-dwcmshc.c
|
||||
@@ -296,19 +296,20 @@ static void dwcmshc_rk3568_set_clock(str
|
||||
0x3 << 19; /* post-change delay */
|
||||
sdhci_writel(host, extra, dwc_priv->vendor_specific_area1 + DWCMSHC_EMMC_ATCTRL);
|
||||
|
||||
- if (host->mmc->ios.timing == MMC_TIMING_MMC_HS200 ||
|
||||
- host->mmc->ios.timing == MMC_TIMING_MMC_HS400)
|
||||
+ if (host->mmc->ios.timing == MMC_TIMING_MMC_HS200)
|
||||
txclk_tapnum = priv->txclk_tapnum;
|
||||
|
||||
- if ((priv->devtype == DWCMSHC_RK3588) && host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
|
||||
+ if (host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
|
||||
txclk_tapnum = DLL_TXCLK_TAPNUM_90_DEGREES;
|
||||
|
||||
- extra = DLL_CMDOUT_SRC_CLK_NEG |
|
||||
- DLL_CMDOUT_EN_SRC_CLK_NEG |
|
||||
- DWCMSHC_EMMC_DLL_DLYENA |
|
||||
- DLL_CMDOUT_TAPNUM_90_DEGREES |
|
||||
- DLL_CMDOUT_TAPNUM_FROM_SW;
|
||||
- sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
|
||||
+ if (priv->devtype != DWCMSHC_RK3568) {
|
||||
+ extra = DLL_CMDOUT_SRC_CLK_NEG |
|
||||
+ DLL_CMDOUT_EN_SRC_CLK_NEG |
|
||||
+ DWCMSHC_EMMC_DLL_DLYENA |
|
||||
+ DLL_CMDOUT_TAPNUM_90_DEGREES |
|
||||
+ DLL_CMDOUT_TAPNUM_FROM_SW;
|
||||
+ sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
|
||||
+ }
|
||||
}
|
||||
|
||||
extra = DWCMSHC_EMMC_DLL_DLYENA |
|
||||
@@ -356,6 +357,15 @@ static const struct sdhci_ops sdhci_dwcm
|
||||
.adma_write_desc = dwcmshc_adma_write_desc,
|
||||
};
|
||||
|
||||
+static const struct sdhci_ops sdhci_dwcmshc_rk3528_ops = {
|
||||
+ .set_clock = dwcmshc_rk3568_set_clock,
|
||||
+ .set_bus_width = sdhci_set_bus_width,
|
||||
+ .set_uhs_signaling = dwcmshc_set_uhs_signaling,
|
||||
+ .get_max_clock = sdhci_pltfm_clk_get_max_clock,
|
||||
+ .reset = rk35xx_sdhci_reset,
|
||||
+ .adma_write_desc = dwcmshc_adma_write_desc,
|
||||
+};
|
||||
+
|
||||
static const struct sdhci_pltfm_data sdhci_dwcmshc_pdata = {
|
||||
.ops = &sdhci_dwcmshc_ops,
|
||||
.quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
|
||||
@@ -379,6 +389,14 @@ static const struct sdhci_pltfm_data sdh
|
||||
SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN,
|
||||
};
|
||||
|
||||
+static const struct sdhci_pltfm_data sdhci_dwcmshc_rk3528_pdata = {
|
||||
+ .ops = &sdhci_dwcmshc_rk3528_ops,
|
||||
+ .quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN |
|
||||
+ SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
|
||||
+ .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
|
||||
+ SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN,
|
||||
+};
|
||||
+
|
||||
static int dwcmshc_rk35xx_init(struct sdhci_host *host, struct dwcmshc_priv *dwc_priv)
|
||||
{
|
||||
int err;
|
||||
@@ -444,6 +462,10 @@ static const struct of_device_id sdhci_d
|
||||
.data = &sdhci_dwcmshc_rk35xx_pdata,
|
||||
},
|
||||
{
|
||||
+ .compatible = "rockchip,rk3528-dwcmshc",
|
||||
+ .data = &sdhci_dwcmshc_rk3528_pdata,
|
||||
+ },
|
||||
+ {
|
||||
.compatible = "snps,dwcmshc-sdhci",
|
||||
.data = &sdhci_dwcmshc_pdata,
|
||||
},
|
||||
@@ -523,17 +545,18 @@ static int dwcmshc_probe(struct platform
|
||||
host->mmc_host_ops.request = dwcmshc_request;
|
||||
host->mmc_host_ops.hs400_enhanced_strobe = dwcmshc_hs400_enhanced_strobe;
|
||||
|
||||
- if (pltfm_data == &sdhci_dwcmshc_rk35xx_pdata) {
|
||||
+ if ((pltfm_data == &sdhci_dwcmshc_rk35xx_pdata) ||
|
||||
+ (pltfm_data == &sdhci_dwcmshc_rk3528_pdata)) {
|
||||
rk_priv = devm_kzalloc(&pdev->dev, sizeof(struct rk35xx_priv), GFP_KERNEL);
|
||||
if (!rk_priv) {
|
||||
err = -ENOMEM;
|
||||
goto err_clk;
|
||||
}
|
||||
|
||||
- if (of_device_is_compatible(pdev->dev.of_node, "rockchip,rk3588-dwcmshc"))
|
||||
- rk_priv->devtype = DWCMSHC_RK3588;
|
||||
- else
|
||||
+ if (of_device_is_compatible(pdev->dev.of_node, "rockchip,rk3568-dwcmshc"))
|
||||
rk_priv->devtype = DWCMSHC_RK3568;
|
||||
+ else
|
||||
+ rk_priv->devtype = DWCMSHC_RK3588;
|
||||
|
||||
priv->priv = rk_priv;
|
||||
|
||||
--- a/drivers/pci/controller/dwc/Makefile
|
||||
+++ b/drivers/pci/controller/dwc/Makefile
|
||||
@@ -17,6 +17,7 @@ obj-$(CONFIG_PCIE_QCOM_EP) += pcie-qcom-
|
||||
|
Loading…
Reference in New Issue
Block a user