blob: 71244df0797242fbfa79432233e66ea68e189e3f [file] [log] [blame]
Dave Liu5f820432006-11-03 19:33:44 -06001/*
Kim Phillips9993e192009-07-18 18:42:13 -05002 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
Dave Liu5f820432006-11-03 19:33:44 -06003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dave Liu5f820432006-11-03 19:33:44 -06005 */
6
7/*
8 * PCI Configuration space access support for MPC83xx PCI Bridge
9 */
Kim Phillips9993e192009-07-18 18:42:13 -050010
Dave Liu5f820432006-11-03 19:33:44 -060011#include <asm/mmu.h>
12#include <asm/io.h>
13#include <common.h>
Kim Phillips9993e192009-07-18 18:42:13 -050014#include <mpc83xx.h>
Dave Liu5f820432006-11-03 19:33:44 -060015#include <pci.h>
16#include <i2c.h>
Timur Tabibe5e6182006-11-03 19:15:00 -060017#include <asm/fsl_i2c.h>
Kim Phillips9993e192009-07-18 18:42:13 -050018#include "../common/pq-mds-pib.h"
Dave Liu5f820432006-11-03 19:33:44 -060019
20DECLARE_GLOBAL_DATA_PTR;
21
Kim Phillips9993e192009-07-18 18:42:13 -050022static struct pci_region pci1_regions[] = {
Dave Liu5f820432006-11-03 19:33:44 -060023 {
Kim Phillips9993e192009-07-18 18:42:13 -050024 bus_start: CONFIG_SYS_PCI1_MEM_BASE,
25 phys_start: CONFIG_SYS_PCI1_MEM_PHYS,
26 size: CONFIG_SYS_PCI1_MEM_SIZE,
27 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
28 },
Dave Liu5f820432006-11-03 19:33:44 -060029 {
Kim Phillips9993e192009-07-18 18:42:13 -050030 bus_start: CONFIG_SYS_PCI1_IO_BASE,
31 phys_start: CONFIG_SYS_PCI1_IO_PHYS,
32 size: CONFIG_SYS_PCI1_IO_SIZE,
33 flags: PCI_REGION_IO
34 },
35 {
36 bus_start: CONFIG_SYS_PCI1_MMIO_BASE,
37 phys_start: CONFIG_SYS_PCI1_MMIO_PHYS,
38 size: CONFIG_SYS_PCI1_MMIO_SIZE,
39 flags: PCI_REGION_MEM
40 },
Dave Liu5f820432006-11-03 19:33:44 -060041};
42
Kim Phillips9993e192009-07-18 18:42:13 -050043#ifdef CONFIG_MPC83XX_PCI2
44static struct pci_region pci2_regions[] = {
45 {
46 bus_start: CONFIG_SYS_PCI2_MEM_BASE,
47 phys_start: CONFIG_SYS_PCI2_MEM_PHYS,
48 size: CONFIG_SYS_PCI2_MEM_SIZE,
49 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
50 },
51 {
52 bus_start: CONFIG_SYS_PCI2_IO_BASE,
53 phys_start: CONFIG_SYS_PCI2_IO_PHYS,
54 size: CONFIG_SYS_PCI2_IO_SIZE,
55 flags: PCI_REGION_IO
56 },
57 {
58 bus_start: CONFIG_SYS_PCI2_MMIO_BASE,
59 phys_start: CONFIG_SYS_PCI2_MMIO_PHYS,
60 size: CONFIG_SYS_PCI2_MMIO_SIZE,
61 flags: PCI_REGION_MEM
62 },
63};
64#endif
65
Dave Liu5f820432006-11-03 19:33:44 -060066void pci_init_board(void)
67#ifdef CONFIG_PCISLAVE
68{
Kim Phillips9993e192009-07-18 18:42:13 -050069 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
70 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
71 volatile pcictrl83xx_t *pci_ctrl = &immr->pci_ctrl[0];
72 struct pci_region *reg[] = { pci1_regions };
Dave Liu5f820432006-11-03 19:33:44 -060073
Kim Phillips9993e192009-07-18 18:42:13 -050074 /* Configure PCI Local Access Windows */
75 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
76 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_512M;
77
78 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
79 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_1M;
80
Peter Tyser6aa3d3b2010-09-14 19:13:50 -050081 mpc83xx_pci_init(1, reg);
Kim Phillips9993e192009-07-18 18:42:13 -050082
Dave Liu5f820432006-11-03 19:33:44 -060083 /*
84 * Configure PCI Inbound Translation Windows
85 */
86 pci_ctrl[0].pitar0 = 0x0;
87 pci_ctrl[0].pibar0 = 0x0;
88 pci_ctrl[0].piwar0 = PIWAR_EN | PIWAR_RTT_SNOOP |
89 PIWAR_WTT_SNOOP | PIWAR_IWS_4K;
90
91 pci_ctrl[0].pitar1 = 0x0;
92 pci_ctrl[0].pibar1 = 0x0;
93 pci_ctrl[0].piebar1 = 0x0;
94 pci_ctrl[0].piwar1 &= ~PIWAR_EN;
95
96 pci_ctrl[0].pitar2 = 0x0;
97 pci_ctrl[0].pibar2 = 0x0;
98 pci_ctrl[0].piebar2 = 0x0;
99 pci_ctrl[0].piwar2 &= ~PIWAR_EN;
100
Kim Phillips9993e192009-07-18 18:42:13 -0500101 /* Unlock the configuration bit */
102 mpc83xx_pcislave_unlock(0);
103 printf("PCI: Agent mode enabled\n");
Dave Liu5f820432006-11-03 19:33:44 -0600104}
105#else
106{
Kim Phillips9993e192009-07-18 18:42:13 -0500107 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
108 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
109 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
110#ifndef CONFIG_MPC83XX_PCI2
111 struct pci_region *reg[] = { pci1_regions };
112#else
113 struct pci_region *reg[] = { pci1_regions, pci2_regions };
114#endif
Dave Liu5f820432006-11-03 19:33:44 -0600115
Kim Phillips9993e192009-07-18 18:42:13 -0500116 /* initialize the PCA9555PW IO expander on the PIB board */
117 pib_init();
Dave Liu5f820432006-11-03 19:33:44 -0600118
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200119#if defined(CONFIG_PCI_66M)
Dave Liu5f820432006-11-03 19:33:44 -0600120 clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2;
121 printf("PCI clock is 66MHz\n");
Wolfgang Denk2ae18242010-10-06 09:05:45 +0200122#elif defined(CONFIG_PCI_33M)
Dave Liu5f820432006-11-03 19:33:44 -0600123 clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2 |
124 OCCR_PCICD0 | OCCR_PCICD1 | OCCR_PCICD2 | OCCR_PCICR;
125 printf("PCI clock is 33MHz\n");
126#else
127 clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2;
128 printf("PCI clock is 66MHz\n");
129#endif
130 udelay(2000);
131
Kim Phillips9993e192009-07-18 18:42:13 -0500132 /* Configure PCI Local Access Windows */
133 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Dave Liu5f820432006-11-03 19:33:44 -0600134 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_512M;
135
Kim Phillips9993e192009-07-18 18:42:13 -0500136 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Dave Liu5f820432006-11-03 19:33:44 -0600137 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_1M;
138
Dave Liu5f820432006-11-03 19:33:44 -0600139 udelay(2000);
140
Kim Phillips9993e192009-07-18 18:42:13 -0500141#ifndef CONFIG_MPC83XX_PCI2
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500142 mpc83xx_pci_init(1, reg);
Kim Phillips9993e192009-07-18 18:42:13 -0500143#else
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500144 mpc83xx_pci_init(2, reg);
Kim Phillips9993e192009-07-18 18:42:13 -0500145#endif
Dave Liu5f820432006-11-03 19:33:44 -0600146}
147#endif /* CONFIG_PCISLAVE */