blob: 7d670e1a2f82eddcb045016fec3d69a5c88edc66 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +08004 */
5
6#include <common.h>
7#include <command.h>
8#include <pci.h>
9#include <asm/fsl_pci.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080011#include <fdt_support.h>
12#include <asm/fsl_serdes.h>
13
Hou Zhiqiangf2f4e152019-08-27 11:03:03 +000014#if !defined(CONFIG_DM_PCI)
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080015void pci_init_board(void)
16{
17 fsl_pcie_init_board(0);
18}
19
20void pci_of_setup(void *blob, bd_t *bd)
21{
22 FT_FSL_PCI_SETUP;
23}
Hou Zhiqiangf2f4e152019-08-27 11:03:03 +000024#endif