forked from Openwrt/openwrt
e4a4c91d8b
* Dell DW5932e * Foxconn T99W175 (HP variant) * Foxconn T99W510 * Generic SDX75-based * Quectel EM160R-GL (newer variants) * Quectel RM520 * Quectel RM520N-GL (Lenovo variant) * SC8280XP Compute Reference Design * Telit FE990 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
35 lines
1.5 KiB
Diff
35 lines
1.5 KiB
Diff
From 5e20ac8e7d3221e079e87066c4e8f4b64bd58ccb Mon Sep 17 00:00:00 2001
|
|
From: Slark Xiao <slark_xiao@163.com>
|
|
Date: Wed, 12 Jul 2023 16:37:41 +0800
|
|
Subject: [PATCH 09/13] bus: mhi: host: pci_generic: Add support for Dell
|
|
DW5932e
|
|
|
|
The DW5932e has 2 variants: eSIM(DW5932e-eSIM) and non-eSIM(DW5932e).
|
|
Both of them are designed based on Qualcomm SDX62 and it will
|
|
align with the Foxconn sdx65 settings.
|
|
|
|
Signed-off-by: Slark Xiao <slark_xiao@163.com>
|
|
Reviewed-by: Loic Poulain <loic.poulain@linaro.org>
|
|
Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>
|
|
Link: https://lore.kernel.org/r/20230712083741.7615-1-slark_xiao@163.com
|
|
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
|
---
|
|
drivers/bus/mhi/host/pci_generic.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
--- a/drivers/bus/mhi/host/pci_generic.c
|
|
+++ b/drivers/bus/mhi/host/pci_generic.c
|
|
@@ -638,6 +638,12 @@ static const struct pci_device_id mhi_pc
|
|
/* T99W510 (sdx24), variant 3 */
|
|
{ PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0f2),
|
|
.driver_data = (kernel_ulong_t) &mhi_foxconn_sdx24_info },
|
|
+ /* DW5932e-eSIM (sdx62), With eSIM */
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0f5),
|
|
+ .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx65_info },
|
|
+ /* DW5932e (sdx62), Non-eSIM */
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0f9),
|
|
+ .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx65_info },
|
|
/* MV31-W (Cinterion) */
|
|
{ PCI_DEVICE(PCI_VENDOR_ID_THALES, 0x00b3),
|
|
.driver_data = (kernel_ulong_t) &mhi_mv31_info },
|