]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
c4d0e811 SL |
2 | /* |
3 | * Copyright 2007-2013 Freescale Semiconductor, Inc. | |
c4d0e811 SL |
4 | */ |
5 | ||
6 | #include <common.h> | |
7 | #include <command.h> | |
2cf431c2 | 8 | #include <init.h> |
c4d0e811 SL |
9 | #include <pci.h> |
10 | #include <asm/fsl_pci.h> | |
b08c8c48 | 11 | #include <linux/libfdt.h> |
c4d0e811 SL |
12 | #include <fdt_support.h> |
13 | #include <asm/fsl_serdes.h> | |
14 | ||
15311c85 | 15 | #if !defined(CONFIG_DM_PCI) |
c4d0e811 SL |
16 | void pci_init_board(void) |
17 | { | |
18 | fsl_pcie_init_board(0); | |
19 | } | |
20 | ||
b75d8dc5 | 21 | void pci_of_setup(void *blob, struct bd_info *bd) |
c4d0e811 SL |
22 | { |
23 | FT_FSL_PCI_SETUP; | |
24 | } | |
15311c85 | 25 | #endif |