Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932647AbdLUHBd (ORCPT ); Thu, 21 Dec 2017 02:01:33 -0500 Received: from Mailgw01.mediatek.com ([1.203.163.78]:54761 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1756992AbdLUHBW (ORCPT ); Thu, 21 Dec 2017 02:01:22 -0500 X-UUID: 4b12af8e3ca445179d3dfec0afb018b1-20171221 Message-ID: <1513839672.25872.13.camel@mhfsdcap03> Subject: Re: [PATCH v2 2/2] PCI: mediatek: Fixup class type for MT7622 From: Honghui Zhang To: Yong Wu CC: , , , , , , , , , , , , , , , , Date: Thu, 21 Dec 2017 15:01:12 +0800 In-Reply-To: <1513838476.23174.3.camel@mhfsdcap03> References: <1513822277-18329-1-git-send-email-honghui.zhang@mediatek.com> <1513822277-18329-3-git-send-email-honghui.zhang@mediatek.com> <1513838476.23174.3.camel@mhfsdcap03> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1845 Lines: 55 On Thu, 2017-12-21 at 14:41 +0800, Yong Wu wrote: > On Thu, 2017-12-21 at 10:11 +0800, honghui.zhang@mediatek.com wrote: > > From: Honghui Zhang > > > > The host bridge of MT7622 has hardware code the class code to an > > arbitrary, meaningless value, fix that. > > > > Signed-off-by: Honghui Zhang > > --- > > drivers/pci/host/pcie-mediatek.c | 12 ++++++++++++ > > 1 file changed, 12 insertions(+) > > > > diff --git a/drivers/pci/host/pcie-mediatek.c b/drivers/pci/host/pcie-mediatek.c > > index 3248771..ae8d367 100644 > > --- a/drivers/pci/host/pcie-mediatek.c > > +++ b/drivers/pci/host/pcie-mediatek.c > > @@ -1174,3 +1174,15 @@ static struct platform_driver mtk_pcie_driver = { > > }, > > }; > > builtin_platform_driver(mtk_pcie_driver); > > + > > +/* The host bridge of MT7622 advertises the wrong device class. */ > > +static void mtk_fixup_class(struct pci_dev *dev) > > +{ > > + dev->class = PCI_CLASS_BRIDGE_PCI << 8; > > +} > > + > > +/* > > + * The HW default value of vendor id and device id for mt7622 are 0x0e8d, > > + * 0x3258, which are arbitrary, meaningless values. > > + */ > > What's the right vendor id and device id? is it possible to fix them > too? Vendor ID is managed by PCI-SIG, you may get the assigned vendor ID from: https://pci-ids.ucw.cz/read/PC?restrict= The vendor ID for Mediatek Corp. should be 14c3. Device ID is something like vendor-defined. Those values are in the configuration space and are read-only defined by spec, it's been stored at the pci_dev, we may change the vendor and device values in pci_dev, but I don't think it's necessary to change that. BTW, Does anyone really cares about the vendor ID and device ID except the device's driver? thanks. > > > +DECLARE_PCI_FIXUP_EARLY(0x0e8d, 0x3258, mtk_fixup_class); > >