blob: 1216d6329915b96ab8f7d31c173be76ca1bc743f [file] [log] [blame]
York Sunb5b06fb2012-12-23 19:25:27 +00001/*
2 * Copyright 2011-2012 Freescale Semiconductor, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
York Sunb5b06fb2012-12-23 19:25:27 +00005 */
6
7#include <common.h>
8#include <command.h>
9#include <pci.h>
10#include <asm/fsl_pci.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090011#include <linux/libfdt.h>
York Sunb5b06fb2012-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}