Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Shengzhou Liu | aba8004 | 2014-11-24 17:11:55 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2014 Freescale Semiconductor, Inc. |
Shengzhou Liu | aba8004 | 2014-11-24 17:11:55 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <command.h> |
Simon Glass | 2cf431c | 2019-11-14 12:57:47 -0700 | [diff] [blame^] | 8 | #include <init.h> |
Shengzhou Liu | aba8004 | 2014-11-24 17:11:55 +0800 | [diff] [blame] | 9 | #include <pci.h> |
| 10 | #include <asm/fsl_pci.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 11 | #include <linux/libfdt.h> |
Shengzhou Liu | aba8004 | 2014-11-24 17:11:55 +0800 | [diff] [blame] | 12 | #include <fdt_support.h> |
| 13 | #include <asm/fsl_serdes.h> |
| 14 | |
| 15 | void pci_init_board(void) |
| 16 | { |
| 17 | fsl_pcie_init_board(0); |
| 18 | } |
| 19 | |
| 20 | void pci_of_setup(void *blob, bd_t *bd) |
| 21 | { |
| 22 | FT_FSL_PCI_SETUP; |
| 23 | } |