Skip to content

Commit 00559ba

Browse files
dnlplmMani-Sadhasivam
authored andcommitted
bus: mhi: host: pci_generic: Add Telit FN990B40 modem support
Add SDX72 based modem Telit FN990B40, reusing FN920C04 configuration. 01:00.0 Unassigned class [ff00]: Qualcomm Device 0309 Subsystem: Device 1c5d:201a Signed-off-by: Daniele Palmas <[email protected]> [mani: added sdx72 in the comment to identify the chipset] Signed-off-by: Manivannan Sadhasivam <[email protected]> Link: https://patch.msgid.link/[email protected]
1 parent 5bd398e commit 00559ba

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

drivers/bus/mhi/host/pci_generic.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,16 @@ static const struct mhi_pci_dev_info mhi_telit_fn920c04_info = {
859859
.edl_trigger = true,
860860
};
861861

862+
static const struct mhi_pci_dev_info mhi_telit_fn990b40_info = {
863+
.name = "telit-fn990b40",
864+
.config = &modem_telit_fn920c04_config,
865+
.bar_num = MHI_PCI_DEFAULT_BAR_NUM,
866+
.dma_data_width = 32,
867+
.sideband_wake = false,
868+
.mru_default = 32768,
869+
.edl_trigger = true,
870+
};
871+
862872
static const struct mhi_pci_dev_info mhi_netprisma_lcur57_info = {
863873
.name = "netprisma-lcur57",
864874
.edl = "qcom/prog_firehose_sdx24.mbn",
@@ -924,6 +934,9 @@ static const struct pci_device_id mhi_pci_id_table[] = {
924934
.driver_data = (kernel_ulong_t) &mhi_foxconn_t99w696_info },
925935
{ PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0308),
926936
.driver_data = (kernel_ulong_t) &mhi_qcom_sdx65_info },
937+
/* Telit FN990B40 (sdx72) */
938+
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0309, 0x1c5d, 0x201a),
939+
.driver_data = (kernel_ulong_t) &mhi_telit_fn990b40_info },
927940
{ PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0309),
928941
.driver_data = (kernel_ulong_t) &mhi_qcom_sdx75_info },
929942
/* QDU100, x100-DU */

0 commit comments

Comments
 (0)