blob: 45ab9223ae1fe296e6cdc9e9dfe6c88194cd679c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Shengzhou Liu48c6f322014-11-24 17:11:56 +08002/*
3 * Copyright 2007-2014 Freescale Semiconductor, Inc.
Shengzhou Liu48c6f322014-11-24 17:11:56 +08004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass2cf431c2019-11-14 12:57:47 -07008#include <init.h>
Shengzhou Liu48c6f322014-11-24 17:11:56 +08009#include <pci.h>
10#include <asm/fsl_pci.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090011#include <linux/libfdt.h>
Shengzhou Liu48c6f322014-11-24 17:11:56 +080012#include <fdt_support.h>
13#include <asm/fsl_serdes.h>
14
Hou Zhiqiang5c8219e2019-08-27 11:03:20 +000015#if !defined(CONFIG_DM_PCI)
Shengzhou Liu48c6f322014-11-24 17:11:56 +080016void pci_init_board(void)
17{
18 fsl_pcie_init_board(0);
19}
20
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090021void pci_of_setup(void *blob, struct bd_info *bd)
Shengzhou Liu48c6f322014-11-24 17:11:56 +080022{
23 FT_FSL_PCI_SETUP;
24}
Hou Zhiqiang5c8219e2019-08-27 11:03:20 +000025#endif