blob: e792fe313d0845fd4f262094c76f4dc5177dae79 [file] [log] [blame]
Paul Gortmaker91e25762007-01-16 11:38:14 -05001/*
2 * pci.c -- WindRiver SBC8349 PCI board support.
3 * Copyright (c) 2006 Wind River Systems, Inc.
Kim Phillips9993e192009-07-18 18:42:13 -05004 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
Paul Gortmaker91e25762007-01-16 11:38:14 -05005 *
6 * Based on MPC8349 PCI support but w/o PIB related code.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Paul Gortmaker91e25762007-01-16 11:38:14 -05009 */
10
11#include <asm/mmu.h>
Kim Phillips9993e192009-07-18 18:42:13 -050012#include <asm/io.h>
Paul Gortmaker91e25762007-01-16 11:38:14 -050013#include <common.h>
Kim Phillips9993e192009-07-18 18:42:13 -050014#include <mpc83xx.h>
Paul Gortmaker91e25762007-01-16 11:38:14 -050015#include <pci.h>
Paul Gortmaker91e25762007-01-16 11:38:14 -050016#include <i2c.h>
Kim Phillips9993e192009-07-18 18:42:13 -050017#include <asm/fsl_i2c.h>
Paul Gortmaker91e25762007-01-16 11:38:14 -050018
19DECLARE_GLOBAL_DATA_PTR;
20
Kim Phillips9993e192009-07-18 18:42:13 -050021static struct pci_region pci1_regions[] = {
22 {
23 bus_start: CONFIG_SYS_PCI1_MEM_BASE,
24 phys_start: CONFIG_SYS_PCI1_MEM_PHYS,
25 size: CONFIG_SYS_PCI1_MEM_SIZE,
26 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
Paul Gortmaker91e25762007-01-16 11:38:14 -050027 },
Kim Phillips9993e192009-07-18 18:42:13 -050028 {
29 bus_start: CONFIG_SYS_PCI1_IO_BASE,
30 phys_start: CONFIG_SYS_PCI1_IO_PHYS,
31 size: CONFIG_SYS_PCI1_IO_SIZE,
32 flags: PCI_REGION_IO
33 },
34 {
35 bus_start: CONFIG_SYS_PCI1_MMIO_BASE,
36 phys_start: CONFIG_SYS_PCI1_MMIO_PHYS,
37 size: CONFIG_SYS_PCI1_MMIO_SIZE,
38 flags: PCI_REGION_MEM
39 },
Paul Gortmaker91e25762007-01-16 11:38:14 -050040};
41
Kim Phillips9993e192009-07-18 18:42:13 -050042/*
Paul Gortmaker91e25762007-01-16 11:38:14 -050043 * pci_init_board()
44 *
45 * NOTICE: PCI2 is not supported. There is only one
46 * physical PCI slot on the board.
47 *
48 */
49void
50pci_init_board(void)
51{
Kim Phillips9993e192009-07-18 18:42:13 -050052 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
53 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
54 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
55 struct pci_region *reg[] = { pci1_regions };
Paul Gortmaker91e25762007-01-16 11:38:14 -050056
Kim Phillips9993e192009-07-18 18:42:13 -050057 /* Enable all 8 PCI_CLK_OUTPUTS */
Paul Gortmaker91e25762007-01-16 11:38:14 -050058 clk->occr = 0xff000000;
59 udelay(2000);
60
Kim Phillips9993e192009-07-18 18:42:13 -050061 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020062 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Paul Gortmaker91e25762007-01-16 11:38:14 -050063 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
64
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Paul Gortmaker91e25762007-01-16 11:38:14 -050066 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_4M;
67
Kim Phillips9993e192009-07-18 18:42:13 -050068 udelay(2000);
Paul Gortmaker91e25762007-01-16 11:38:14 -050069
Peter Tyser6aa3d3b2010-09-14 19:13:50 -050070 mpc83xx_pci_init(1, reg);
Paul Gortmaker91e25762007-01-16 11:38:14 -050071}