Skip to content

Commit 9bef8be

Browse files
dnlplmgregkh
authored andcommitted
bus: mhi: host: pci_generic: Add Telit FE990B40 modem support
commit 6eaee77 upstream. Add SDX72 based modem Telit FE990B40, reusing FN920C04 configuration. 01:00.0 Unassigned class [ff00]: Qualcomm Device 0309 Subsystem: Device 1c5d:2025 Signed-off-by: Daniele Palmas <dnlplm@gmail.com> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@oss.qualcomm.com> Link: https://patch.msgid.link/20251015102059.1781001-1-dnlplm@gmail.com Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 2a6bfa9 commit 9bef8be

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

drivers/bus/mhi/host/pci_generic.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -744,6 +744,16 @@ static const struct mhi_pci_dev_info mhi_telit_fn990b40_info = {
744744
.edl_trigger = true,
745745
};
746746

747+
static const struct mhi_pci_dev_info mhi_telit_fe990b40_info = {
748+
.name = "telit-fe990b40",
749+
.config = &modem_telit_fn920c04_config,
750+
.bar_num = MHI_PCI_DEFAULT_BAR_NUM,
751+
.dma_data_width = 32,
752+
.sideband_wake = false,
753+
.mru_default = 32768,
754+
.edl_trigger = true,
755+
};
756+
747757
static const struct mhi_pci_dev_info mhi_netprisma_lcur57_info = {
748758
.name = "netprisma-lcur57",
749759
.edl = "qcom/prog_firehose_sdx24.mbn",
@@ -792,6 +802,9 @@ static const struct pci_device_id mhi_pci_id_table[] = {
792802
/* Telit FN990B40 (sdx72) */
793803
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0309, 0x1c5d, 0x201a),
794804
.driver_data = (kernel_ulong_t) &mhi_telit_fn990b40_info },
805+
/* Telit FE990B40 (sdx72) */
806+
{ PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0309, 0x1c5d, 0x2025),
807+
.driver_data = (kernel_ulong_t) &mhi_telit_fe990b40_info },
795808
{ PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0309),
796809
.driver_data = (kernel_ulong_t) &mhi_qcom_sdx75_info },
797810
{ PCI_DEVICE(PCI_VENDOR_ID_QUECTEL, 0x1001), /* EM120R-GL (sdx24) */

0 commit comments

Comments
 (0)