blob: 45dd461e772b0bbb05d0aa1243f893f891696ba1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
York Sun0789dc92012-12-23 19:25:27 +00002/*
3 * Copyright 2011-2012 Freescale Semiconductor, Inc.
York Sun0789dc92012-12-23 19:25:27 +00004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass18afe102019-11-14 12:57:47 -07008#include <init.h>
York Sun0789dc92012-12-23 19:25:27 +00009#include <pci.h>
10#include <asm/fsl_pci.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090011#include <linux/libfdt.h>
York Sun0789dc92012-12-23 19:25:27 +000012#include <fdt_support.h>
13#include <asm/fsl_serdes.h>
14
15void 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}