pci.c 377 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2007-2014 Freescale Semiconductor, Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <command.h>
  8. #include <pci.h>
  9. #include <asm/fsl_pci.h>
  10. #include <libfdt.h>
  11. #include <fdt_support.h>
  12. #include <asm/fsl_serdes.h>
  13. void pci_init_board(void)
  14. {
  15. fsl_pcie_init_board(0);
  16. }
  17. void pci_of_setup(void *blob, bd_t *bd)
  18. {
  19. FT_FSL_PCI_SETUP;
  20. }