topcliff.c 449 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <mmc.h>
  8. #include <pci_ids.h>
  9. static struct pci_device_id mmc_supported[] = {
  10. { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SDIO_0 },
  11. { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SDIO_1 },
  12. };
  13. int cpu_mmc_init(bd_t *bis)
  14. {
  15. return pci_mmc_init("Topcliff SDHCI", mmc_supported,
  16. ARRAY_SIZE(mmc_supported));
  17. }