summaryrefslogtreecommitdiff
path: root/board/freescale/t4rdb/pci.c
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2014-05-13 17:09:28 -0400
committerTom Rini <trini@ti.com>2014-05-13 17:09:28 -0400
commit557a3319089499aa0e55d65a6b43b7137f362003 (patch)
tree092341615ca6449473e4d9f7cb2158391bb86892 /board/freescale/t4rdb/pci.c
parent27b4e4b9913f65b52d20485dff3f8800bf78f3d7 (diff)
parent8ad5d45e0044f5e64dbe7c6bd4e6aa0121a26b23 (diff)
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
Diffstat (limited to 'board/freescale/t4rdb/pci.c')
-rw-r--r--board/freescale/t4rdb/pci.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/board/freescale/t4rdb/pci.c b/board/freescale/t4rdb/pci.c
new file mode 100644
index 00000000000..6387a20caec
--- /dev/null
+++ b/board/freescale/t4rdb/pci.c
@@ -0,0 +1,23 @@
+/*
+ * Copyright 2014 Freescale Semiconductor, Inc.
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#include <common.h>
+#include <command.h>
+#include <pci.h>
+#include <asm/fsl_pci.h>
+#include <libfdt.h>
+#include <fdt_support.h>
+#include <asm/fsl_serdes.h>
+
+void pci_init_board(void)
+{
+ fsl_pcie_init_board(0);
+}
+
+void pci_of_setup(void *blob, bd_t *bd)
+{
+ FT_FSL_PCI_SETUP;
+}