~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/board/freescale/t208xqds/pci.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2007-2013 Freescale Semiconductor, Inc.
 
3
 *
 
4
 * SPDX-License-Identifier:     GPL-2.0+
 
5
 */
 
6
 
 
7
#include <common.h>
 
8
#include <command.h>
 
9
#include <pci.h>
 
10
#include <asm/fsl_pci.h>
 
11
#include <libfdt.h>
 
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
}