2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2008-12-17 22:36:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Extreme Engineering Solutions, Inc.
|
|
|
|
* Copyright 2007-2008 Freescale Semiconductor, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:47 +00:00
|
|
|
#include <init.h>
|
2008-12-17 22:36:23 +00:00
|
|
|
#include <pci.h>
|
2009-04-02 18:22:48 +00:00
|
|
|
#include <asm/fsl_pci.h>
|
2010-12-15 10:55:20 +00:00
|
|
|
#include <asm/fsl_serdes.h>
|
2009-08-07 18:16:34 +00:00
|
|
|
#include <asm/io.h>
|
2010-10-22 05:20:22 +00:00
|
|
|
#include <linux/compiler.h>
|
2018-03-04 16:20:11 +00:00
|
|
|
#include <linux/libfdt.h>
|
2008-12-17 22:36:23 +00:00
|
|
|
#include <fdt_support.h>
|
|
|
|
|
|
|
|
#if defined(CONFIG_OF_BOARD_SETUP)
|
2020-06-26 06:13:33 +00:00
|
|
|
void ft_board_pci_setup(void *blob, struct bd_info *bd)
|
2008-12-17 22:36:23 +00:00
|
|
|
{
|
2010-07-09 03:37:44 +00:00
|
|
|
FT_FSL_PCI_SETUP;
|
2008-12-17 22:36:23 +00:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_OF_BOARD_SETUP */
|