blob: 9b1560bd7777072f0e24d9f55bb15ccb96d50b5e [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
Kim Phillips9993e192009-07-18 18:42:13 -050019static struct pci_region pci1_regions[] = {
20 {
21 bus_start: CONFIG_SYS_PCI1_MEM_BASE,
22 phys_start: CONFIG_SYS_PCI1_MEM_PHYS,
23 size: CONFIG_SYS_PCI1_MEM_SIZE,
24 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
Paul Gortmaker91e25762007-01-16 11:38:14 -050025 },
Kim Phillips9993e192009-07-18 18:42:13 -050026 {
27 bus_start: CONFIG_SYS_PCI1_IO_BASE,
28 phys_start: CONFIG_SYS_PCI1_IO_PHYS,
29 size: CONFIG_SYS_PCI1_IO_SIZE,
30 flags: PCI_REGION_IO
31 },
32 {
33 bus_start: CONFIG_SYS_PCI1_MMIO_BASE,
34 phys_start: CONFIG_SYS_PCI1_MMIO_PHYS,
35 size: CONFIG_SYS_PCI1_MMIO_SIZE,
36 flags: PCI_REGION_MEM
37 },
Paul Gortmaker91e25762007-01-16 11:38:14 -050038};
39
Kim Phillips9993e192009-07-18 18:42:13 -050040/*
Paul Gortmaker91e25762007-01-16 11:38:14 -050041 * pci_init_board()
42 *
43 * NOTICE: PCI2 is not supported. There is only one
44 * physical PCI slot on the board.
45 *
46 */
47void
48pci_init_board(void)
49{
Kim Phillips9993e192009-07-18 18:42:13 -050050 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
51 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
52 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
53 struct pci_region *reg[] = { pci1_regions };
Paul Gortmaker91e25762007-01-16 11:38:14 -050054
Kim Phillips9993e192009-07-18 18:42:13 -050055 /* Enable all 8 PCI_CLK_OUTPUTS */
Paul Gortmaker91e25762007-01-16 11:38:14 -050056 clk->occr = 0xff000000;
57 udelay(2000);
58
Kim Phillips9993e192009-07-18 18:42:13 -050059 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Paul Gortmaker91e25762007-01-16 11:38:14 -050061 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
62
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Paul Gortmaker91e25762007-01-16 11:38:14 -050064 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_4M;
65
Kim Phillips9993e192009-07-18 18:42:13 -050066 udelay(2000);
Paul Gortmaker91e25762007-01-16 11:38:14 -050067
Peter Tyser6aa3d3b2010-09-14 19:13:50 -050068 mpc83xx_pci_init(1, reg);
Paul Gortmaker91e25762007-01-16 11:38:14 -050069}