-
Notifications
You must be signed in to change notification settings - Fork 19.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kernel: refresh
6.6
patches (#13179)
- Loading branch information
1 parent
d83ce75
commit fd9b9cc
Showing
62 changed files
with
338 additions
and
558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -285,7 +285,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
static inline int mmc_blk_part_switch(struct mmc_card *card, | ||
unsigned int part_type); | ||
static void mmc_blk_rw_rq_prep(struct mmc_queue_req *mqrq, | ||
@@ -3066,6 +3073,8 @@ static int mmc_blk_probe(struct mmc_card | ||
@@ -3016,6 +3023,8 @@ static int mmc_blk_probe(struct mmc_card | ||
{ | ||
struct mmc_blk_data *md; | ||
int ret = 0; | ||
|
@@ -294,7 +294,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
/* | ||
* Check that the card supports the command class(es) we need. | ||
@@ -3073,7 +3082,16 @@ static int mmc_blk_probe(struct mmc_card | ||
@@ -3023,7 +3032,16 @@ static int mmc_blk_probe(struct mmc_card | ||
if (!(card->csd.cmdclass & CCC_BLOCK_READ)) | ||
return -ENODEV; | ||
|
||
|
@@ -312,7 +312,7 @@ Signed-off-by: Phil Elwell <[email protected]> | |
|
||
card->complete_wq = alloc_workqueue("mmc_complete", | ||
WQ_MEM_RECLAIM | WQ_HIGHPRI, 0); | ||
@@ -3088,6 +3106,17 @@ static int mmc_blk_probe(struct mmc_card | ||
@@ -3038,6 +3056,17 @@ static int mmc_blk_probe(struct mmc_card | ||
goto out_free; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
}; | ||
|
||
static const struct pci_device_id rtl8169_pci_tbl[] = { | ||
@@ -1201,7 +1203,7 @@ static void rtl_writephy(struct rtl8169_ | ||
@@ -1228,7 +1230,7 @@ static void rtl_writephy(struct rtl8169_ | ||
case RTL_GIGA_MAC_VER_31: | ||
r8168dp_2_mdio_write(tp, location, val); | ||
break; | ||
|
@@ -53,7 +53,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
r8168g_mdio_write(tp, location, val); | ||
break; | ||
default: | ||
@@ -1216,7 +1218,7 @@ static int rtl_readphy(struct rtl8169_pr | ||
@@ -1243,7 +1245,7 @@ static int rtl_readphy(struct rtl8169_pr | ||
case RTL_GIGA_MAC_VER_28: | ||
case RTL_GIGA_MAC_VER_31: | ||
return r8168dp_2_mdio_read(tp, location); | ||
|
@@ -62,7 +62,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
return r8168g_mdio_read(tp, location); | ||
default: | ||
return r8169_mdio_read(tp, location); | ||
@@ -1425,7 +1427,7 @@ static void rtl_set_d3_pll_down(struct r | ||
@@ -1452,7 +1454,7 @@ static void rtl_set_d3_pll_down(struct r | ||
case RTL_GIGA_MAC_VER_25 ... RTL_GIGA_MAC_VER_26: | ||
case RTL_GIGA_MAC_VER_29 ... RTL_GIGA_MAC_VER_30: | ||
case RTL_GIGA_MAC_VER_32 ... RTL_GIGA_MAC_VER_37: | ||
|
@@ -71,7 +71,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
if (enable) | ||
RTL_W8(tp, PMCH, RTL_R8(tp, PMCH) & ~D3_NO_PLL_DOWN); | ||
else | ||
@@ -1592,7 +1594,7 @@ static void __rtl8169_set_wol(struct rtl | ||
@@ -1619,7 +1621,7 @@ static void __rtl8169_set_wol(struct rtl | ||
break; | ||
case RTL_GIGA_MAC_VER_34: | ||
case RTL_GIGA_MAC_VER_37: | ||
|
@@ -80,31 +80,31 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
if (wolopts) | ||
rtl_mod_config2(tp, 0, PME_SIGNAL); | ||
else | ||
@@ -2071,6 +2073,7 @@ static void rtl_set_eee_txidle_timer(str | ||
@@ -2098,6 +2100,7 @@ static void rtl_set_eee_txidle_timer(str | ||
case RTL_GIGA_MAC_VER_61: | ||
case RTL_GIGA_MAC_VER_63: | ||
case RTL_GIGA_MAC_VER_65: | ||
+ case RTL_GIGA_MAC_VER_66: | ||
tp->tx_lpi_timer = timer_val; | ||
RTL_W16(tp, EEE_TXIDLE_TIMER_8125, timer_val); | ||
break; | ||
@@ -2200,6 +2203,7 @@ static enum mac_version rtl8169_get_mac_ | ||
@@ -2227,6 +2230,7 @@ static enum mac_version rtl8169_get_mac_ | ||
enum mac_version ver; | ||
} mac_info[] = { | ||
/* 8126A family. */ | ||
+ { 0x7cf, 0x64a, RTL_GIGA_MAC_VER_66 }, | ||
{ 0x7cf, 0x649, RTL_GIGA_MAC_VER_65 }, | ||
|
||
/* 8125B family. */ | ||
@@ -2471,6 +2475,7 @@ static void rtl_init_rxcfg(struct rtl816 | ||
@@ -2498,6 +2502,7 @@ static void rtl_init_rxcfg(struct rtl816 | ||
break; | ||
case RTL_GIGA_MAC_VER_63: | ||
case RTL_GIGA_MAC_VER_65: | ||
+ case RTL_GIGA_MAC_VER_66: | ||
RTL_W32(tp, RxConfig, RX_FETCH_DFLT_8125 | RX_DMA_BURST | | ||
RX_PAUSE_SLOT_ON); | ||
break; | ||
@@ -2657,7 +2662,7 @@ static void rtl_wait_txrx_fifo_empty(str | ||
@@ -2684,7 +2689,7 @@ static void rtl_wait_txrx_fifo_empty(str | ||
case RTL_GIGA_MAC_VER_61 ... RTL_GIGA_MAC_VER_61: | ||
rtl_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42); | ||
break; | ||
|
@@ -113,7 +113,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
RTL_W8(tp, ChipCmd, RTL_R8(tp, ChipCmd) | StopReq); | ||
rtl_loop_wait_high(tp, &rtl_rxtx_empty_cond, 100, 42); | ||
rtl_loop_wait_high(tp, &rtl_rxtx_empty_cond_2, 100, 42); | ||
@@ -2900,7 +2905,7 @@ static void rtl_enable_exit_l1(struct rt | ||
@@ -2927,7 +2932,7 @@ static void rtl_enable_exit_l1(struct rt | ||
case RTL_GIGA_MAC_VER_37 ... RTL_GIGA_MAC_VER_38: | ||
rtl_eri_set_bits(tp, 0xd4, 0x0c00); | ||
break; | ||
|
@@ -122,7 +122,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
r8168_mac_ocp_modify(tp, 0xc0ac, 0, 0x1f80); | ||
break; | ||
default: | ||
@@ -2914,7 +2919,7 @@ static void rtl_disable_exit_l1(struct r | ||
@@ -2941,7 +2946,7 @@ static void rtl_disable_exit_l1(struct r | ||
case RTL_GIGA_MAC_VER_34 ... RTL_GIGA_MAC_VER_38: | ||
rtl_eri_clear_bits(tp, 0xd4, 0x1f00); | ||
break; | ||
|
@@ -131,15 +131,15 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
r8168_mac_ocp_modify(tp, 0xc0ac, 0x1f80, 0); | ||
break; | ||
default: | ||
@@ -2941,6 +2946,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
@@ -2968,6 +2973,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
rtl_mod_config5(tp, 0, ASPM_en); | ||
switch (tp->mac_version) { | ||
case RTL_GIGA_MAC_VER_65: | ||
+ case RTL_GIGA_MAC_VER_66: | ||
val8 = RTL_R8(tp, INT_CFG0_8125) | INT_CFG0_CLKREQEN; | ||
RTL_W8(tp, INT_CFG0_8125, val8); | ||
break; | ||
@@ -2951,7 +2957,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
@@ -2978,7 +2984,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
|
||
switch (tp->mac_version) { | ||
case RTL_GIGA_MAC_VER_46 ... RTL_GIGA_MAC_VER_48: | ||
|
@@ -148,7 +148,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
/* reset ephy tx/rx disable timer */ | ||
r8168_mac_ocp_modify(tp, 0xe094, 0xff00, 0); | ||
/* chip can trigger L1.2 */ | ||
@@ -2963,7 +2969,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
@@ -2990,7 +2996,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
} else { | ||
switch (tp->mac_version) { | ||
case RTL_GIGA_MAC_VER_46 ... RTL_GIGA_MAC_VER_48: | ||
|
@@ -157,15 +157,15 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
r8168_mac_ocp_modify(tp, 0xe092, 0x00ff, 0); | ||
break; | ||
default: | ||
@@ -2972,6 +2978,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
@@ -2999,6 +3005,7 @@ static void rtl_hw_aspm_clkreq_enable(st | ||
|
||
switch (tp->mac_version) { | ||
case RTL_GIGA_MAC_VER_65: | ||
+ case RTL_GIGA_MAC_VER_66: | ||
val8 = RTL_R8(tp, INT_CFG0_8125) & ~INT_CFG0_CLKREQEN; | ||
RTL_W8(tp, INT_CFG0_8125, val8); | ||
break; | ||
@@ -3691,10 +3698,12 @@ static void rtl_hw_start_8125_common(str | ||
@@ -3718,10 +3725,12 @@ static void rtl_hw_start_8125_common(str | ||
/* disable new tx descriptor format */ | ||
r8168_mac_ocp_modify(tp, 0xeb58, 0x0001, 0x0000); | ||
|
||
|
@@ -180,7 +180,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
r8168_mac_ocp_modify(tp, 0xe614, 0x0700, 0x0400); | ||
else if (tp->mac_version == RTL_GIGA_MAC_VER_63) | ||
r8168_mac_ocp_modify(tp, 0xe614, 0x0700, 0x0200); | ||
@@ -3712,7 +3721,8 @@ static void rtl_hw_start_8125_common(str | ||
@@ -3739,7 +3748,8 @@ static void rtl_hw_start_8125_common(str | ||
r8168_mac_ocp_modify(tp, 0xe056, 0x00f0, 0x0030); | ||
r8168_mac_ocp_modify(tp, 0xe040, 0x1000, 0x0000); | ||
r8168_mac_ocp_modify(tp, 0xea1c, 0x0003, 0x0001); | ||
|
@@ -190,23 +190,23 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
r8168_mac_ocp_modify(tp, 0xea1c, 0x0300, 0x0000); | ||
else | ||
r8168_mac_ocp_modify(tp, 0xea1c, 0x0004, 0x0000); | ||
@@ -3826,6 +3836,7 @@ static void rtl_hw_config(struct rtl8169 | ||
@@ -3853,6 +3863,7 @@ static void rtl_hw_config(struct rtl8169 | ||
[RTL_GIGA_MAC_VER_61] = rtl_hw_start_8125a_2, | ||
[RTL_GIGA_MAC_VER_63] = rtl_hw_start_8125b, | ||
[RTL_GIGA_MAC_VER_65] = rtl_hw_start_8126a, | ||
+ [RTL_GIGA_MAC_VER_66] = rtl_hw_start_8126a, | ||
}; | ||
|
||
if (hw_configs[tp->mac_version]) | ||
@@ -3846,6 +3857,7 @@ static void rtl_hw_start_8125(struct rtl | ||
@@ -3873,6 +3884,7 @@ static void rtl_hw_start_8125(struct rtl | ||
break; | ||
case RTL_GIGA_MAC_VER_63: | ||
case RTL_GIGA_MAC_VER_65: | ||
+ case RTL_GIGA_MAC_VER_66: | ||
for (i = 0xa00; i < 0xa80; i += 4) | ||
RTL_W32(tp, i, 0); | ||
RTL_W16(tp, INT_CFG1_8125, 0x0000); | ||
@@ -4074,7 +4086,7 @@ static void rtl8169_cleanup(struct rtl81 | ||
@@ -4101,7 +4113,7 @@ static void rtl8169_cleanup(struct rtl81 | ||
RTL_W8(tp, ChipCmd, RTL_R8(tp, ChipCmd) | StopReq); | ||
rtl_loop_wait_high(tp, &rtl_txcfg_empty_cond, 100, 666); | ||
break; | ||
|
@@ -215,7 +215,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
rtl_enable_rxdvgate(tp); | ||
fsleep(2000); | ||
break; | ||
@@ -4225,7 +4237,7 @@ static unsigned int rtl_quirk_packet_pad | ||
@@ -4252,7 +4264,7 @@ static unsigned int rtl_quirk_packet_pad | ||
|
||
switch (tp->mac_version) { | ||
case RTL_GIGA_MAC_VER_34: | ||
|
@@ -224,7 +224,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
padto = max_t(unsigned int, padto, ETH_ZLEN); | ||
break; | ||
default: | ||
@@ -5259,7 +5271,7 @@ static void rtl_hw_initialize(struct rtl | ||
@@ -5288,7 +5300,7 @@ static void rtl_hw_initialize(struct rtl | ||
case RTL_GIGA_MAC_VER_40 ... RTL_GIGA_MAC_VER_48: | ||
rtl_hw_init_8168g(tp); | ||
break; | ||
|
@@ -235,7 +235,7 @@ Signed-off-by: Jakub Kicinski <[email protected]> | |
default: | ||
--- a/drivers/net/ethernet/realtek/r8169_phy_config.c | ||
+++ b/drivers/net/ethernet/realtek/r8169_phy_config.c | ||
@@ -1159,6 +1159,7 @@ void r8169_hw_phy_config(struct rtl8169_ | ||
@@ -1161,6 +1161,7 @@ void r8169_hw_phy_config(struct rtl8169_ | ||
[RTL_GIGA_MAC_VER_61] = rtl8125a_2_hw_phy_config, | ||
[RTL_GIGA_MAC_VER_63] = rtl8125b_hw_phy_config, | ||
[RTL_GIGA_MAC_VER_65] = rtl8126a_hw_phy_config, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,10 @@ Signed-off-by: Bjorn Andersson <[email protected]> | |
arch/arm64/boot/dts/qcom/ipq5018.dtsi | 7 +++++++ | ||
1 file changed, 7 insertions(+) | ||
|
||
diff --git a/arch/arm64/boot/dts/qcom/ipq5018.dtsi b/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
index 9f13d2dcdfd589..288758c91379df 100644 | ||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
@@ -181,6 +181,13 @@ | ||
}; | ||
@@ -391,6 +391,13 @@ | ||
clock-names = "xo"; | ||
}; | ||
|
||
+ watchdog: watchdog@b017000 { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,6 @@ Signed-off-by: Bjorn Andersson <[email protected]> | |
Documentation/devicetree/bindings/firmware/qcom,scm.yaml | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/Documentation/devicetree/bindings/firmware/qcom,scm.yaml b/Documentation/devicetree/bindings/firmware/qcom,scm.yaml | ||
index cb706145ae04c1..0613a37a851af4 100644 | ||
--- a/Documentation/devicetree/bindings/firmware/qcom,scm.yaml | ||
+++ b/Documentation/devicetree/bindings/firmware/qcom,scm.yaml | ||
@@ -24,6 +24,7 @@ properties: | ||
|
28 changes: 0 additions & 28 deletions
28
...ax/patches-6.6/0069-v6.7-arm64-dts-qcom-IPQ5018-indicate-that-SDI-shoud-be-disabled.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,6 @@ Signed-off-by: Vinod Koul <[email protected]> | |
.../devicetree/bindings/phy/qcom,ipq5332-usb-hsphy.yaml | 4 +++- | ||
1 file changed, 3 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/Documentation/devicetree/bindings/phy/qcom,ipq5332-usb-hsphy.yaml b/Documentation/devicetree/bindings/phy/qcom,ipq5332-usb-hsphy.yaml | ||
index 2671a048c926c2..e77576d06c0e4e 100644 | ||
--- a/Documentation/devicetree/bindings/phy/qcom,ipq5332-usb-hsphy.yaml | ||
+++ b/Documentation/devicetree/bindings/phy/qcom,ipq5332-usb-hsphy.yaml | ||
@@ -17,7 +17,9 @@ description: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,6 @@ Signed-off-by: Greg Kroah-Hartman <[email protected]> | |
Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | 3 +++ | ||
1 file changed, 3 insertions(+) | ||
|
||
diff --git a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | ||
index 67591057f2349b..1ad62e55dfe2e2 100644 | ||
--- a/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | ||
+++ b/Documentation/devicetree/bindings/usb/qcom,dwc3.yaml | ||
@@ -14,6 +14,7 @@ properties: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,11 @@ Signed-off-by: Bjorn Andersson <[email protected]> | |
arch/arm64/boot/dts/qcom/ipq5018.dtsi | 54 +++++++++++++++++++++++++++ | ||
1 file changed, 54 insertions(+) | ||
|
||
diff --git a/arch/arm64/boot/dts/qcom/ipq5018.dtsi b/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
index 38ffdc3cbdcd7c..340b90cc17db85 100644 | ||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
@@ -94,6 +94,19 @@ | ||
#size-cells = <1>; | ||
ranges = <0 0 0 0xffffffff>; | ||
@@ -204,6 +204,19 @@ | ||
status = "disabled"; | ||
}; | ||
|
||
+ usbphy0: phy@5b000 { | ||
+ compatible = "qcom,ipq5018-usb-hsphy"; | ||
|
@@ -38,11 +36,10 @@ index 38ffdc3cbdcd7c..340b90cc17db85 100644 | |
tlmm: pinctrl@1000000 { | ||
compatible = "qcom,ipq5018-tlmm"; | ||
reg = <0x01000000 0x300000>; | ||
@@ -156,6 +169,47 @@ | ||
status = "disabled"; | ||
@@ -300,6 +313,47 @@ | ||
}; | ||
|
||
+ usb: usb@8af8800 { | ||
usb: usb@8af8800 { | ||
+ compatible = "qcom,ipq5018-dwc3", "qcom,dwc3"; | ||
+ reg = <0x08af8800 0x400>; | ||
+ | ||
|
@@ -83,6 +80,7 @@ index 38ffdc3cbdcd7c..340b90cc17db85 100644 | |
+ }; | ||
+ }; | ||
+ | ||
intc: interrupt-controller@b000000 { | ||
compatible = "qcom,msm-qgic2"; | ||
reg = <0x0b000000 0x1000>, /* GICD */ | ||
+ usb: usb@8af8800 { | ||
compatible = "qcom,ipq5018-dwc3", "qcom,dwc3"; | ||
reg = <0x08af8800 0x400>; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,12 +14,10 @@ Signed-off-by: Bjorn Andersson <[email protected]> | |
arch/arm64/boot/dts/qcom/ipq5018.dtsi | 24 ++++++++++++++++++++++++ | ||
1 file changed, 24 insertions(+) | ||
|
||
diff --git a/arch/arm64/boot/dts/qcom/ipq5018.dtsi b/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
index 340b90cc17db85..0b739077ed7079 100644 | ||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi | ||
@@ -159,6 +159,16 @@ | ||
status = "disabled"; | ||
@@ -288,6 +288,16 @@ | ||
qcom,ee = <0>; | ||
}; | ||
|
||
+ blsp_dma: dma-controller@7884000 { | ||
|
@@ -35,7 +33,7 @@ index 340b90cc17db85..0b739077ed7079 100644 | |
blsp1_uart1: serial@78af000 { | ||
compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm"; | ||
reg = <0x078af000 0x200>; | ||
@@ -169,6 +179,20 @@ | ||
@@ -298,6 +308,20 @@ | ||
status = "disabled"; | ||
}; | ||
|
||
|
@@ -53,6 +51,6 @@ index 340b90cc17db85..0b739077ed7079 100644 | |
+ status = "disabled"; | ||
+ }; | ||
+ | ||
usb: usb@8af8800 { | ||
compatible = "qcom,ipq5018-dwc3", "qcom,dwc3"; | ||
reg = <0x08af8800 0x400>; | ||
blsp1_spi1: spi@78b5000 { | ||
compatible = "qcom,spi-qup-v2.2.1"; | ||
#address-cells = <1>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,6 @@ Signed-off-by: Bjorn Andersson <[email protected]> | |
Documentation/devicetree/bindings/clock/qcom,a53pll.yaml | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/Documentation/devicetree/bindings/clock/qcom,a53pll.yaml b/Documentation/devicetree/bindings/clock/qcom,a53pll.yaml | ||
index 9436266828afaf..5ca927a8b1d538 100644 | ||
--- a/Documentation/devicetree/bindings/clock/qcom,a53pll.yaml | ||
+++ b/Documentation/devicetree/bindings/clock/qcom,a53pll.yaml | ||
@@ -16,6 +16,7 @@ description: | ||
|
Oops, something went wrong.