Re: [U-Boot] [PATCH] mmc: Support generic PCI SD host controller

2017-08-14 Thread Tom Rini
On Mon, Aug 14, 2017 at 11:06:32PM +0800, Bin Meng wrote:
> Hi Jaehoon, Tom,
> 
> On Wed, Aug 9, 2017 at 3:21 PM, Bin Meng  wrote:
> > This changes pci_mmc driver to use PCI_CLASS_SYSTEM_SDHCI instead of
> > individual vendor id & device id pair to support generic PCI SD host
> > controller.
> >
> > Signed-off-by: Bin Meng 
> > ---
> >
> >  drivers/mmc/pci_mmc.c | 7 +--
> >  1 file changed, 1 insertion(+), 6 deletions(-)
> >
> 
> Who is going to review and take this patch?

I would expect Jaehoon to review and take this.  Thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [PATCH] mmc: Support generic PCI SD host controller

2017-08-14 Thread Bin Meng
Hi Jaehoon, Tom,

On Wed, Aug 9, 2017 at 3:21 PM, Bin Meng  wrote:
> This changes pci_mmc driver to use PCI_CLASS_SYSTEM_SDHCI instead of
> individual vendor id & device id pair to support generic PCI SD host
> controller.
>
> Signed-off-by: Bin Meng 
> ---
>
>  drivers/mmc/pci_mmc.c | 7 +--
>  1 file changed, 1 insertion(+), 6 deletions(-)
>

Who is going to review and take this patch?

Regards,
Bin
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [PATCH] mmc: Support generic PCI SD host controller

2017-08-09 Thread Bin Meng
This changes pci_mmc driver to use PCI_CLASS_SYSTEM_SDHCI instead of
individual vendor id & device id pair to support generic PCI SD host
controller.

Signed-off-by: Bin Meng 
---

 drivers/mmc/pci_mmc.c | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/mmc/pci_mmc.c b/drivers/mmc/pci_mmc.c
index 6db8977..05c0044 100644
--- a/drivers/mmc/pci_mmc.c
+++ b/drivers/mmc/pci_mmc.c
@@ -64,12 +64,7 @@ U_BOOT_DRIVER(pci_mmc) = {
 };
 
 static struct pci_device_id mmc_supported[] = {
-   { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_SDIO) },
-   { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_SD) },
-   { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT_EMMC2) },
-   { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_QRK_SDIO) },
-   { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SDIO_0) },
-   { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SDIO_1) },
+   { PCI_DEVICE_CLASS(PCI_CLASS_SYSTEM_SDHCI << 8, 0x00) },
{},
 };
 
-- 
2.9.2

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot