blob: 9f7324feddfe10e30ada3a457f9837e1d266fb93 [file] [log] [blame]
Kumar Gala86902b82006-01-12 19:51:38 -06001/*
Kim Phillips9993e192009-07-18 18:42:13 -05002 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Kumar Gala86902b82006-01-12 19:51:38 -06005 */
6
7#include <asm/mmu.h>
Ira W. Snyder162338e2008-08-22 11:00:13 -07008#include <asm/io.h>
Kumar Gala86902b82006-01-12 19:51:38 -06009#include <common.h>
Ira W. Snyder162338e2008-08-22 11:00:13 -070010#include <mpc83xx.h>
Kumar Gala86902b82006-01-12 19:51:38 -060011#include <pci.h>
Kumar Gala86902b82006-01-12 19:51:38 -060012#include <i2c.h>
Ira W. Snyder162338e2008-08-22 11:00:13 -070013#include <asm/fsl_i2c.h>
Kumar Gala86902b82006-01-12 19:51:38 -060014
Wolfgang Denkd87080b2006-03-31 18:32:53 +020015DECLARE_GLOBAL_DATA_PTR;
16
Ira W. Snyder162338e2008-08-22 11:00:13 -070017static struct pci_region pci1_regions[] = {
18 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020019 bus_start: CONFIG_SYS_PCI1_MEM_BASE,
20 phys_start: CONFIG_SYS_PCI1_MEM_PHYS,
21 size: CONFIG_SYS_PCI1_MEM_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070022 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
Kumar Gala86902b82006-01-12 19:51:38 -060023 },
Ira W. Snyder162338e2008-08-22 11:00:13 -070024 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020025 bus_start: CONFIG_SYS_PCI1_IO_BASE,
26 phys_start: CONFIG_SYS_PCI1_IO_PHYS,
27 size: CONFIG_SYS_PCI1_IO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070028 flags: PCI_REGION_IO
29 },
30 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020031 bus_start: CONFIG_SYS_PCI1_MMIO_BASE,
32 phys_start: CONFIG_SYS_PCI1_MMIO_PHYS,
33 size: CONFIG_SYS_PCI1_MMIO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070034 flags: PCI_REGION_MEM
35 },
36};
37
38#ifdef CONFIG_MPC83XX_PCI2
39static struct pci_region pci2_regions[] = {
40 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041 bus_start: CONFIG_SYS_PCI2_MEM_BASE,
42 phys_start: CONFIG_SYS_PCI2_MEM_PHYS,
43 size: CONFIG_SYS_PCI2_MEM_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070044 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
45 },
46 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047 bus_start: CONFIG_SYS_PCI2_IO_BASE,
48 phys_start: CONFIG_SYS_PCI2_IO_PHYS,
49 size: CONFIG_SYS_PCI2_IO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070050 flags: PCI_REGION_IO
51 },
52 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053 bus_start: CONFIG_SYS_PCI2_MMIO_BASE,
54 phys_start: CONFIG_SYS_PCI2_MMIO_PHYS,
55 size: CONFIG_SYS_PCI2_MMIO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070056 flags: PCI_REGION_MEM
57 },
Kumar Gala86902b82006-01-12 19:51:38 -060058};
59#endif
60
Ira W. Snyder447ad572008-08-22 11:00:15 -070061#ifndef CONFIG_PCISLAVE
Ira W. Snyder162338e2008-08-22 11:00:13 -070062void pib_init(void)
Kumar Gala86902b82006-01-12 19:51:38 -060063{
Ben Warren183da6d2006-09-12 10:15:53 -040064 u8 val8, orig_i2c_bus;
Kumar Gala86902b82006-01-12 19:51:38 -060065 /*
66 * Assign PIB PMC slot to desired PCI bus
67 */
Ben Warren183da6d2006-09-12 10:15:53 -040068 /* Switch temporarily to I2C bus #2 */
69 orig_i2c_bus = i2c_get_bus_num();
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010070 i2c_set_bus_num(1);
Kumar Gala86902b82006-01-12 19:51:38 -060071
72 val8 = 0;
73 i2c_write(0x23, 0x6, 1, &val8, 1);
74 i2c_write(0x23, 0x7, 1, &val8, 1);
75 val8 = 0xff;
76 i2c_write(0x23, 0x2, 1, &val8, 1);
77 i2c_write(0x23, 0x3, 1, &val8, 1);
78
79 val8 = 0;
80 i2c_write(0x26, 0x6, 1, &val8, 1);
81 val8 = 0x34;
82 i2c_write(0x26, 0x7, 1, &val8, 1);
83#if defined(PCI_64BIT)
84 val8 = 0xf4; /* PMC2:PCI1/64-bit */
85#elif defined(PCI_ALL_PCI1)
86 val8 = 0xf3; /* PMC1:PCI1 PMC2:PCI1 PMC3:PCI1 */
87#elif defined(PCI_ONE_PCI1)
88 val8 = 0xf9; /* PMC1:PCI1 PMC2:PCI2 PMC3:PCI2 */
89#else
90 val8 = 0xf5; /* PMC1:PCI1 PMC2:PCI1 PMC3:PCI2 */
91#endif
92 i2c_write(0x26, 0x2, 1, &val8, 1);
93 val8 = 0xff;
94 i2c_write(0x26, 0x3, 1, &val8, 1);
95 val8 = 0;
96 i2c_write(0x27, 0x6, 1, &val8, 1);
97 i2c_write(0x27, 0x7, 1, &val8, 1);
98 val8 = 0xff;
99 i2c_write(0x27, 0x2, 1, &val8, 1);
100 val8 = 0xef;
101 i2c_write(0x27, 0x3, 1, &val8, 1);
102 asm("eieio");
103
104#if defined(PCI_64BIT)
105 printf("PCI1: 64-bit on PMC2\n");
106#elif defined(PCI_ALL_PCI1)
107 printf("PCI1: 32-bit on PMC1, PMC2, PMC3\n");
108#elif defined(PCI_ONE_PCI1)
109 printf("PCI1: 32-bit on PMC1\n");
110 printf("PCI2: 32-bit on PMC2, PMC3\n");
111#else
112 printf("PCI1: 32-bit on PMC1, PMC2\n");
113 printf("PCI2: 32-bit on PMC3\n");
114#endif
Ben Warren183da6d2006-09-12 10:15:53 -0400115 /* Reset to original I2C bus */
Timur Tabibe5e6182006-11-03 19:15:00 -0600116 i2c_set_bus_num(orig_i2c_bus);
Kumar Gala86902b82006-01-12 19:51:38 -0600117}
118
Ira W. Snyder162338e2008-08-22 11:00:13 -0700119void pci_init_board(void)
Kumar Gala86902b82006-01-12 19:51:38 -0600120{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Ira W. Snyder162338e2008-08-22 11:00:13 -0700122 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
123 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
124#ifndef CONFIG_MPC83XX_PCI2
125 struct pci_region *reg[] = { pci1_regions };
126#else
127 struct pci_region *reg[] = { pci1_regions, pci2_regions };
128#endif
Kumar Gala86902b82006-01-12 19:51:38 -0600129
Ira W. Snyder162338e2008-08-22 11:00:13 -0700130 /* initialize the PCA9555PW IO expander on the PIB board */
Kumar Gala86902b82006-01-12 19:51:38 -0600131 pib_init();
132
Ira W. Snyder162338e2008-08-22 11:00:13 -0700133 /* Enable all 8 PCI_CLK_OUTPUTS */
Kumar Gala86902b82006-01-12 19:51:38 -0600134 clk->occr = 0xff000000;
135 udelay(2000);
136
Ira W. Snyder162338e2008-08-22 11:00:13 -0700137 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Kumar Gala86902b82006-01-12 19:51:38 -0600139 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
140
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200141 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Kumar Gala8fe9bf62006-04-20 13:45:32 -0500142 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_4M;
Kumar Gala86902b82006-01-12 19:51:38 -0600143
Ira W. Snyder162338e2008-08-22 11:00:13 -0700144 udelay(2000);
Kumar Gala86902b82006-01-12 19:51:38 -0600145
Ira W. Snyder162338e2008-08-22 11:00:13 -0700146#ifndef CONFIG_MPC83XX_PCI2
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500147 mpc83xx_pci_init(1, reg);
Ira W. Snyder162338e2008-08-22 11:00:13 -0700148#else
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500149 mpc83xx_pci_init(2, reg);
Kumar Gala86902b82006-01-12 19:51:38 -0600150#endif
Kumar Gala86902b82006-01-12 19:51:38 -0600151}
Kumar Gala8fe9bf62006-04-20 13:45:32 -0500152
Ira W. Snyder447ad572008-08-22 11:00:15 -0700153#else
154void pci_init_board(void)
155{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200156 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Ira W. Snyder447ad572008-08-22 11:00:15 -0700157 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
158 volatile pcictrl83xx_t *pci_ctrl = &immr->pci_ctrl[0];
159 struct pci_region *reg[] = { pci1_regions };
160
Ira W. Snyder447ad572008-08-22 11:00:15 -0700161 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200162 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Ira W. Snyder447ad572008-08-22 11:00:15 -0700163 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
164
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200165 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Ira W. Snyder447ad572008-08-22 11:00:15 -0700166 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_4M;
167
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500168 mpc83xx_pci_init(1, reg);
Ira W. Snyder447ad572008-08-22 11:00:15 -0700169
170 /* Configure PCI Inbound Translation Windows (3 1MB windows) */
171 pci_ctrl->pitar0 = 0x0;
172 pci_ctrl->pibar0 = 0x0;
173 pci_ctrl->piwar0 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
174 PIWAR_WTT_SNOOP | PIWAR_IWS_1M;
175
176 pci_ctrl->pitar1 = 0x0;
177 pci_ctrl->pibar1 = 0x0;
178 pci_ctrl->piebar1 = 0x0;
179 pci_ctrl->piwar1 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
180 PIWAR_WTT_SNOOP | PIWAR_IWS_1M;
181
182 pci_ctrl->pitar2 = 0x0;
183 pci_ctrl->pibar2 = 0x0;
184 pci_ctrl->piebar2 = 0x0;
185 pci_ctrl->piwar2 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
186 PIWAR_WTT_SNOOP | PIWAR_IWS_1M;
187
188 /* Unlock the configuration bit */
189 mpc83xx_pcislave_unlock(0);
190 printf("PCI: Agent mode enabled\n");
191}
192#endif /* CONFIG_PCISLAVE */