On Mon, Jun 21, 2021 at 09:46:16PM +0530, Manivannan Sadhasivam wrote: > From: ULRICH Thomas <thomas.ulrich@xxxxxxxxxxxxxxx> > > This patch adds VendorID/ProductID and MBIM Channel Definitions for > M.2 Modem Card (PCIe Variant) to MHI PCI generic controller driver. > > Cinterion MV31-W (by Thales) > Additional information on such Modem Card (USB or PCIe variant) is > available at: > https://www.thalesgroup.com/en/markets/digital-identity-and-security/iot/iot-connectivity/products/iot-products/mv31-w-ultra-high > > Signed-off-by: ULRICH Thomas <thomas.ulrich@xxxxxxxxxxxxxxx> > Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@xxxxxxxxxx> > Link: https://lore.kernel.org/r/PAZP264MB284690134DA010698E6B3BDDE60A9@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > [mani: fixed the subject, whitespace, and added sideband_wake field] > Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@xxxxxxxxxx> > --- > drivers/bus/mhi/pci_generic.c | 37 +++++++++++++++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > > diff --git a/drivers/bus/mhi/pci_generic.c b/drivers/bus/mhi/pci_generic.c > index eb9263bd1bd8..1773cb3173bc 100644 > --- a/drivers/bus/mhi/pci_generic.c > +++ b/drivers/bus/mhi/pci_generic.c > @@ -350,6 +350,40 @@ static const struct mhi_pci_dev_info mhi_foxconn_sdx55_info = { > .sideband_wake = false > }; > > +static const struct mhi_channel_config mhi_mv31_channels[] = { > + MHI_CHANNEL_CONFIG_UL(0, "LOOPBACK", 64, 0), > + MHI_CHANNEL_CONFIG_DL(1, "LOOPBACK", 64, 0), > + /* MBIM Control Channel */ > + MHI_CHANNEL_CONFIG_UL(12, "MBIM", 64, 0), > + MHI_CHANNEL_CONFIG_DL(13, "MBIM", 64, 0), > + /* MBIM Data Channel */ > + MHI_CHANNEL_CONFIG_HW_UL(100, "IP_HW0_MBIM", 512, 2), > + MHI_CHANNEL_CONFIG_HW_DL(101, "IP_HW0_MBIM", 512, 3), > +}; > + > +static struct mhi_event_config mhi_mv31_events[] = { > + MHI_EVENT_CONFIG_CTRL(0, 256), > + MHI_EVENT_CONFIG_DATA(1, 256), > + MHI_EVENT_CONFIG_HW_DATA(2, 1024, 100), > + MHI_EVENT_CONFIG_HW_DATA(3, 1024, 101) trailing ',' please. > +}; > + > +static const struct mhi_controller_config modem_mv31_config = { > + .max_channels = 128, > + .timeout_ms = 20000, > + .num_channels = ARRAY_SIZE(mhi_mv31_channels), > + .ch_cfg = mhi_mv31_channels, > + .num_events = ARRAY_SIZE(mhi_mv31_events), > + .event_cfg = mhi_mv31_events, > +}; > + > +static const struct mhi_pci_dev_info mhi_mv31_info = { > + .name = "cinterion-mv31", > + .config = &modem_mv31_config, > + .bar_num = MHI_PCI_DEFAULT_BAR_NUM, > + .dma_data_width = 32 Trailing ',' please. thanks, greg k-h