blob: ac0c95687a5277db6981bb20fbfe3530d7c36c7a [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>
Simon Glass18afe102019-11-14 12:57:47 -07008#include <init.h>
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +08009#include <pci.h>
10#include <asm/fsl_pci.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080012#include <fdt_support.h>
13#include <asm/fsl_serdes.h>
14
Hou Zhiqiangf2f4e152019-08-27 11:03:03 +000015#if !defined(CONFIG_DM_PCI)
Chunhe Lan8e4f3ff2014-04-14 18:42:06 +080016void pci_init_board(void)
17{
18 fsl_pcie_init_board(0);
19}
20
21void pci_of_setup(void *blob, bd_t *bd)
22{
23 FT_FSL_PCI_SETUP;
24}
Hou Zhiqiangf2f4e152019-08-27 11:03:03 +000025#endif