From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E3992C433FE for ; Mon, 7 Nov 2022 11:43:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231586AbiKGLnF (ORCPT ); Mon, 7 Nov 2022 06:43:05 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53360 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231901AbiKGLm4 (ORCPT ); Mon, 7 Nov 2022 06:42:56 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D12121A055; Mon, 7 Nov 2022 03:42:55 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 83C9AB8104F; Mon, 7 Nov 2022 11:42:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2F494C4347C; Mon, 7 Nov 2022 11:42:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1667821373; bh=9eowJ01JpeSKROTBqHNO82UhWBEwBAPJBY2Eh1IN4WM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Llv1irvrrLGrhfTI02f2lfZjLN3cvPl/cefR2v5PXyszVGC7nvrZCGHY1TPJxtxdu BvSZ3axZ8OGIYKQVaKHrg2SiAjVgcgVOYfkkIW50cuSDvPwECIczCUV1iuinKpLDdO g4SVGsVdXT6e2wPiFhq5LYLWEXxOI8Xj1YiH+eCTCNXRJo7lfZR/2+TUDVf6V2YUkj UNVWDJ2kldy4UigRFHZN8uvMZ5keGCC7fKQ4t+pjFFN/4o1VZN0egADZ6f+TeGC2SP y9Gky7UlT8O/JvUbE5qQ8PdMppMR9wkvJpYhtZO+i5LLC0zvaybCn4Au2xjfmg4dng aH49f/Fi0uQ3g== Date: Mon, 7 Nov 2022 17:12:43 +0530 From: Manivannan Sadhasivam To: Johan Hovold Cc: Hemant Kumar , mhi@lists.linux.dev, linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] mhi: pci_generic: add support for sc8280xp-crd SDX55 variant Message-ID: <20221107114243.GD2220@thinkpad> References: <20221104093913.23347-1-johan+linaro@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20221104093913.23347-1-johan+linaro@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 04, 2022 at 10:39:13AM +0100, Johan Hovold wrote: > The SC8280XP Compute Reference Design (CRD) has an on-PCB SDX55 modem > which uses MBIM. > > The exact channel configuration is not known but the Foxconn SDX55 > configuration allows the modem to be used so reuse that one for now. > > Signed-off-by: Johan Hovold Modified the subject to the format "bus: mhi: host: pci_generic" and applied to mhi-next! Thanks, Mani > --- > > Changes in v2 > - drop comment describing this variant (Mani) > > > drivers/bus/mhi/host/pci_generic.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/bus/mhi/host/pci_generic.c b/drivers/bus/mhi/host/pci_generic.c > index caa4ce28cf9e..7dcd0ef3184a 100644 > --- a/drivers/bus/mhi/host/pci_generic.c > +++ b/drivers/bus/mhi/host/pci_generic.c > @@ -542,6 +542,8 @@ static const struct mhi_pci_dev_info mhi_telit_fn990_info = { > static const struct pci_device_id mhi_pci_id_table[] = { > { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0304), > .driver_data = (kernel_ulong_t) &mhi_qcom_sdx24_info }, > + { PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0306, PCI_VENDOR_ID_QCOM, 0x010c), > + .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info }, > /* EM919x (sdx55), use the same vid:pid as qcom-sdx55m */ > { PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0306, 0x18d7, 0x0200), > .driver_data = (kernel_ulong_t) &mhi_sierra_em919x_info }, > -- > 2.37.3 > > -- மணிவண்ணன் சதாசிவம்