|
26 | 26 | /* PCI VID definitions */
|
27 | 27 | #define PCI_VENDOR_ID_THALES 0x1269
|
28 | 28 | #define PCI_VENDOR_ID_QUECTEL 0x1eac
|
| 29 | +#define PCI_VENDOR_ID_NETPRISMA 0x203e |
29 | 30 |
|
30 | 31 | #define MHI_EDL_DB 91
|
31 | 32 | #define MHI_EDL_COOKIE 0xEDEDEDED
|
@@ -689,6 +690,26 @@ static const struct mhi_pci_dev_info mhi_telit_fe990a_info = {
|
689 | 690 | .mru_default = 32768,
|
690 | 691 | };
|
691 | 692 |
|
| 693 | +static const struct mhi_pci_dev_info mhi_netprisma_lcur57_info = { |
| 694 | + .name = "netprisma-lcur57", |
| 695 | + .edl = "qcom/prog_firehose_sdx24.mbn", |
| 696 | + .config = &modem_quectel_em1xx_config, |
| 697 | + .bar_num = MHI_PCI_DEFAULT_BAR_NUM, |
| 698 | + .dma_data_width = 32, |
| 699 | + .mru_default = 32768, |
| 700 | + .sideband_wake = true, |
| 701 | +}; |
| 702 | + |
| 703 | +static const struct mhi_pci_dev_info mhi_netprisma_fcun69_info = { |
| 704 | + .name = "netprisma-fcun69", |
| 705 | + .edl = "qcom/prog_firehose_sdx6x.elf", |
| 706 | + .config = &modem_quectel_em1xx_config, |
| 707 | + .bar_num = MHI_PCI_DEFAULT_BAR_NUM, |
| 708 | + .dma_data_width = 32, |
| 709 | + .mru_default = 32768, |
| 710 | + .sideband_wake = true, |
| 711 | +}; |
| 712 | + |
692 | 713 | /* Keep the list sorted based on the PID. New VID should be added as the last entry */
|
693 | 714 | static const struct pci_device_id mhi_pci_id_table[] = {
|
694 | 715 | { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0304),
|
@@ -787,6 +808,12 @@ static const struct pci_device_id mhi_pci_id_table[] = {
|
787 | 808 | /* T99W175 (sdx55), HP variant */
|
788 | 809 | { PCI_DEVICE(0x03f0, 0x0a6c),
|
789 | 810 | .driver_data = (kernel_ulong_t) &mhi_foxconn_t99w175_info },
|
| 811 | + /* NETPRISMA LCUR57 (SDX24) */ |
| 812 | + { PCI_DEVICE(PCI_VENDOR_ID_NETPRISMA, 0x1000), |
| 813 | + .driver_data = (kernel_ulong_t) &mhi_netprisma_lcur57_info }, |
| 814 | + /* NETPRISMA FCUN69 (SDX6X) */ |
| 815 | + { PCI_DEVICE(PCI_VENDOR_ID_NETPRISMA, 0x1001), |
| 816 | + .driver_data = (kernel_ulong_t) &mhi_netprisma_fcun69_info }, |
790 | 817 | { }
|
791 | 818 | };
|
792 | 819 | MODULE_DEVICE_TABLE(pci, mhi_pci_id_table);
|
|
0 commit comments