xref: /openbmc/u-boot/board/freescale/t4rdb/pci.c (revision e8f80a5a)
1*83d290c5STom Rini // SPDX-License-Identifier: GPL-2.0+
20b2e13d9SChunhe Lan /*
30b2e13d9SChunhe Lan  * Copyright 2014 Freescale Semiconductor, Inc.
40b2e13d9SChunhe Lan  */
50b2e13d9SChunhe Lan 
60b2e13d9SChunhe Lan #include <common.h>
70b2e13d9SChunhe Lan #include <command.h>
80b2e13d9SChunhe Lan #include <pci.h>
90b2e13d9SChunhe Lan #include <asm/fsl_pci.h>
10b08c8c48SMasahiro Yamada #include <linux/libfdt.h>
110b2e13d9SChunhe Lan #include <fdt_support.h>
120b2e13d9SChunhe Lan #include <asm/fsl_serdes.h>
130b2e13d9SChunhe Lan 
pci_init_board(void)140b2e13d9SChunhe Lan void pci_init_board(void)
150b2e13d9SChunhe Lan {
160b2e13d9SChunhe Lan 	fsl_pcie_init_board(0);
170b2e13d9SChunhe Lan }
180b2e13d9SChunhe Lan 
pci_of_setup(void * blob,bd_t * bd)190b2e13d9SChunhe Lan void pci_of_setup(void *blob, bd_t *bd)
200b2e13d9SChunhe Lan {
210b2e13d9SChunhe Lan 	FT_FSL_PCI_SETUP;
220b2e13d9SChunhe Lan }
23