blob: 8ab9752e2ba6cabb17ba9e4b9a2aad6a79383c3e [file] [log] [blame]
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001/*
Zhao Chenhuib813cbe2011-08-24 13:20:04 +08002 * Copyright 2004, 2007, 2009-2011 Freescale Semiconductor, Inc.
Jon Loeligerd9b94f22005-07-25 14:05:07 -05003 *
4 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <pci.h>
27#include <asm/processor.h>
Jon Loeligere31d2c12008-03-18 13:51:06 -050028#include <asm/mmu.h>
Jon Loeligerd9b94f22005-07-25 14:05:07 -050029#include <asm/immap_85xx.h>
Kumar Galac8514622009-04-02 13:22:48 -050030#include <asm/fsl_pci.h>
Jon Loeligere31d2c12008-03-18 13:51:06 -050031#include <asm/fsl_ddr_sdram.h>
Kumar Gala5d27e022010-12-15 04:55:20 -060032#include <asm/fsl_serdes.h>
Andy Fleming09f3e092006-09-13 10:34:18 -050033#include <miiphy.h>
Kumar Galab90d2542007-11-29 00:11:44 -060034#include <libfdt.h>
35#include <fdt_support.h>
Jon Loeligerd9b94f22005-07-25 14:05:07 -050036
37#include "../common/cadmus.h"
38#include "../common/eeprom.h"
Matthew McClintockbf1dfff2006-06-28 10:46:13 -050039#include "../common/via.h"
Jon Loeligerd9b94f22005-07-25 14:05:07 -050040
Jon Loeligerd9b94f22005-07-25 14:05:07 -050041void local_bus_init(void);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050042
Jon Loeligerd9b94f22005-07-25 14:05:07 -050043int checkboard (void)
44{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
46 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050047
48 /* PCI slot in USER bits CSR[6:7] by convention. */
49 uint pci_slot = get_pci_slot ();
50
Jon Loeligerd9b94f22005-07-25 14:05:07 -050051 uint cpu_board_rev = get_cpu_board_revision ();
52
53 printf ("Board: CDS Version 0x%02x, PCI Slot %d\n",
54 get_board_version (), pci_slot);
55
56 printf ("CPU Board Revision %d.%d (0x%04x)\n",
57 MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev),
58 MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050059 /*
60 * Initialize local bus.
61 */
62 local_bus_init ();
63
Jon Loeligerd9b94f22005-07-25 14:05:07 -050064 /*
65 * Hack TSEC 3 and 4 IO voltages.
66 */
67 gur->tsec34ioovcr = 0xe7e0; /* 1110 0111 1110 0xxx */
68
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050069 ecm->eedr = 0xffffffff; /* clear ecm errors */
70 ecm->eeer = 0xffffffff; /* enable ecm errors */
Jon Loeligerd9b94f22005-07-25 14:05:07 -050071 return 0;
72}
73
Jon Loeligerd9b94f22005-07-25 14:05:07 -050074/*
75 * Initialize Local Bus
76 */
77void
78local_bus_init(void)
79{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Becky Brucef51cdaf2010-06-17 11:37:20 -050081 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050082
83 uint clkdiv;
84 uint lbc_hz;
85 sys_info_t sysinfo;
86
87 get_sys_info(&sysinfo);
Trent Piephoa5d212a2008-12-03 15:16:34 -080088 clkdiv = (lbc->lcrr & LCRR_CLKDIV) * 2;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050089 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
90
91 gur->lbiuiplldcr1 = 0x00078080;
92 if (clkdiv == 16) {
93 gur->lbiuiplldcr0 = 0x7c0f1bf0;
94 } else if (clkdiv == 8) {
95 gur->lbiuiplldcr0 = 0x6c0f1bf0;
96 } else if (clkdiv == 4) {
97 gur->lbiuiplldcr0 = 0x5c0f1bf0;
98 }
99
100 lbc->lcrr |= 0x00030000;
101
102 asm("sync;isync;msync");
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500103
104 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
105 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500106}
107
108/*
109 * Initialize SDRAM memory on the Local Bus.
110 */
Becky Bruce70961ba2010-12-17 17:17:57 -0600111void lbc_sdram_init(void)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500112{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113#if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500114
115 uint idx;
Becky Brucef51cdaf2010-06-17 11:37:20 -0500116 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200117 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500118 uint cpu_board_rev;
119 uint lsdmr_common;
120
Becky Bruce7ea38712010-12-17 17:17:59 -0600121 puts("LBC SDRAM: ");
122 print_size(CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024,
chenhui zhaoa6d0bfa2011-09-06 16:41:14 +0000123 "\n");
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500124
125 /*
126 * Setup SDRAM Base and Option Registers
127 */
Becky Brucef51cdaf2010-06-17 11:37:20 -0500128 set_lbc_or(2, CONFIG_SYS_OR2_PRELIM);
129 set_lbc_br(2, CONFIG_SYS_BR2_PRELIM);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200130 lbc->lbcr = CONFIG_SYS_LBC_LBCR;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500131 asm("msync");
132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133 lbc->lsrt = CONFIG_SYS_LBC_LSRT;
134 lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500135 asm("msync");
136
137 /*
138 * MPC8548 uses "new" 15-16 style addressing.
139 */
140 cpu_board_rev = get_cpu_board_revision();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200141 lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500142 lsdmr_common |= LSDMR_BSMA1516;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500143
144 /*
145 * Issue PRECHARGE ALL command.
146 */
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500147 lbc->lsdmr = lsdmr_common | LSDMR_OP_PCHALL;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500148 asm("sync;msync");
149 *sdram_addr = 0xff;
150 ppcDcbf((unsigned long) sdram_addr);
151 udelay(100);
152
153 /*
154 * Issue 8 AUTO REFRESH commands.
155 */
156 for (idx = 0; idx < 8; idx++) {
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500157 lbc->lsdmr = lsdmr_common | LSDMR_OP_ARFRSH;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500158 asm("sync;msync");
159 *sdram_addr = 0xff;
160 ppcDcbf((unsigned long) sdram_addr);
161 udelay(100);
162 }
163
164 /*
165 * Issue 8 MODE-set command.
166 */
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500167 lbc->lsdmr = lsdmr_common | LSDMR_OP_MRW;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500168 asm("sync;msync");
169 *sdram_addr = 0xff;
170 ppcDcbf((unsigned long) sdram_addr);
171 udelay(100);
172
173 /*
174 * Issue NORMAL OP command.
175 */
Kumar Galab0fe93ed2009-03-26 01:34:38 -0500176 lbc->lsdmr = lsdmr_common | LSDMR_OP_NORMAL;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500177 asm("sync;msync");
178 *sdram_addr = 0xff;
179 ppcDcbf((unsigned long) sdram_addr);
180 udelay(200); /* Overkill. Must wait > 200 bus cycles */
181
182#endif /* enable SDRAM init */
183}
184
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500185#if defined(CONFIG_PCI) || defined(CONFIG_PCI1)
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500186/* For some reason the Tundra PCI bridge shows up on itself as a
187 * different device. Work around that by refusing to configure it.
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500188 */
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500189void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { }
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500190
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500191static struct pci_config_table pci_mpc85xxcds_config_table[] = {
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500192 {0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}},
Randy Vinson7f3f2bd2007-02-27 19:42:22 -0700193 {0x1106, 0x0686, PCI_ANY_ID, 1, VIA_ID, 0, mpc85xx_config_via, {0,0,0}},
194 {0x1106, 0x0571, PCI_ANY_ID, 1, VIA_ID, 1,
Andy Flemingffa621a2007-02-24 01:08:13 -0600195 mpc85xx_config_via_usbide, {0,0,0}},
Randy Vinson7f3f2bd2007-02-27 19:42:22 -0700196 {0x1105, 0x3038, PCI_ANY_ID, 1, VIA_ID, 2,
197 mpc85xx_config_via_usb, {0,0,0}},
198 {0x1106, 0x3038, PCI_ANY_ID, 1, VIA_ID, 3,
199 mpc85xx_config_via_usb2, {0,0,0}},
200 {0x1106, 0x3058, PCI_ANY_ID, 1, VIA_ID, 5,
Andy Flemingffa621a2007-02-24 01:08:13 -0600201 mpc85xx_config_via_power, {0,0,0}},
Randy Vinson7f3f2bd2007-02-27 19:42:22 -0700202 {0x1106, 0x3068, PCI_ANY_ID, 1, VIA_ID, 6,
203 mpc85xx_config_via_ac97, {0,0,0}},
Andy Flemingffa621a2007-02-24 01:08:13 -0600204 {},
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500205};
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500206
Zhao Chenhuib813cbe2011-08-24 13:20:04 +0800207static struct pci_controller pci1_hose;
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500208#endif /* CONFIG_PCI */
209
Kumar Gala7b626882009-11-04 11:15:29 -0600210void pci_init_board(void)
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500211{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200212 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Galaf5fa8f32010-12-17 10:21:22 -0600213 struct fsl_pci_info pci_info;
Kumar Gala7b626882009-11-04 11:15:29 -0600214 u32 devdisr, pordevsr, io_sel;
215 u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel;
216 int first_free_busno = 0;
Kumar Gala7b626882009-11-04 11:15:29 -0600217
218 devdisr = in_be32(&gur->devdisr);
219 pordevsr = in_be32(&gur->pordevsr);
220 porpllsr = in_be32(&gur->porpllsr);
221 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
222
223 debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel);
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500224
225#ifdef CONFIG_PCI1
Kumar Gala7b626882009-11-04 11:15:29 -0600226 pci_speed = get_clock_freq (); /* PCI PSPEED in [4:5] */
227 pci_32 = pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */
228 pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
229 pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500230
Kumar Gala7b626882009-11-04 11:15:29 -0600231 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
Kumar Galaf5fa8f32010-12-17 10:21:22 -0600232 SET_STD_PCI_INFO(pci_info, 1);
233 set_next_law(pci_info.mem_phys,
234 law_size_bits(pci_info.mem_size), pci_info.law);
235 set_next_law(pci_info.io_phys,
236 law_size_bits(pci_info.io_size), pci_info.law);
237
238 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
chenhui zhaoa6d0bfa2011-09-06 16:41:14 +0000239 printf("PCI1: %d bit, %s MHz, %s, %s, %s (base address %lx)\n",
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500240 (pci_32) ? 32 : 64,
241 (pci_speed == 33333000) ? "33" :
242 (pci_speed == 66666000) ? "66" : "unknown",
243 pci_clk_sel ? "sync" : "async",
244 pci_agent ? "agent" : "host",
Kumar Gala7b626882009-11-04 11:15:29 -0600245 pci_arb ? "arbiter" : "external-arbiter",
Kumar Galaf5fa8f32010-12-17 10:21:22 -0600246 pci_info.regs);
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500247
Zhao Chenhuib813cbe2011-08-24 13:20:04 +0800248 pci1_hose.config_table = pci_mpc85xxcds_config_table;
Kumar Galaf5fa8f32010-12-17 10:21:22 -0600249 first_free_busno = fsl_pci_init_port(&pci_info,
Kumar Gala7b626882009-11-04 11:15:29 -0600250 &pci1_hose, first_free_busno);
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500251
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500252#ifdef CONFIG_PCIX_CHECK
Kumar Gala7b626882009-11-04 11:15:29 -0600253 if (!(pordevsr & MPC85xx_PORDEVSR_PCI1)) {
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500254 /* PCI-X init */
255 if (CONFIG_SYS_CLK_FREQ < 66000000)
256 printf("PCI-X will only work at 66 MHz\n");
257
258 reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ
259 | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E;
260 pci_hose_write_config_word(hose, bus, PCIX_COMMAND, reg16);
261 }
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500262#endif
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500263 } else {
chenhui zhaoa6d0bfa2011-09-06 16:41:14 +0000264 printf("PCI1: disabled\n");
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500265 }
Kumar Gala7b626882009-11-04 11:15:29 -0600266
267 puts("\n");
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500268#else
Kumar Gala7b626882009-11-04 11:15:29 -0600269 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500270#endif
271
272#ifdef CONFIG_PCI2
273{
Kumar Gala7b626882009-11-04 11:15:29 -0600274 uint pci2_clk_sel = porpllsr & 0x4000; /* PORPLLSR[17] */
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500275 uint pci_dual = get_pci_dual (); /* PCI DUAL in CM_PCI[3] */
276 if (pci_dual) {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500277 printf("PCI2: 32 bit, 66 MHz, %s\n",
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500278 pci2_clk_sel ? "sync" : "async");
279 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500280 printf("PCI2: disabled\n");
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500281 }
282}
283#else
Kumar Gala7b626882009-11-04 11:15:29 -0600284 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI2); /* disable */
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500285#endif /* CONFIG_PCI2 */
286
Kumar Galaf5fa8f32010-12-17 10:21:22 -0600287 fsl_pcie_init_board(first_free_busno);
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500288}
Andy Fleming09f3e092006-09-13 10:34:18 -0500289
290int last_stage_init(void)
291{
Jon Loeligerf5012822006-10-20 15:54:34 -0500292 unsigned short temp;
Andy Fleming09f3e092006-09-13 10:34:18 -0500293
294 /* Change the resistors for the PHY */
295 /* This is needed to get the RGMII working for the 1.3+
296 * CDS cards */
297 if (get_board_version() == 0x13) {
Kim Phillips255a35772007-05-16 16:52:19 -0500298 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500299 TSEC1_PHY_ADDR, 29, 18);
300
Kim Phillips255a35772007-05-16 16:52:19 -0500301 miiphy_read(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500302 TSEC1_PHY_ADDR, 30, &temp);
303
304 temp = (temp & 0xf03f);
305 temp |= 2 << 9; /* 36 ohm */
306 temp |= 2 << 6; /* 39 ohm */
307
Kim Phillips255a35772007-05-16 16:52:19 -0500308 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500309 TSEC1_PHY_ADDR, 30, temp);
310
Kim Phillips255a35772007-05-16 16:52:19 -0500311 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500312 TSEC1_PHY_ADDR, 29, 3);
313
Kim Phillips255a35772007-05-16 16:52:19 -0500314 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500315 TSEC1_PHY_ADDR, 30, 0x8000);
316 }
317
318 return 0;
319}
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500320
321
Kumar Galab90d2542007-11-29 00:11:44 -0600322#if defined(CONFIG_OF_BOARD_SETUP)
Kumar Gala2dba0de2008-10-21 08:28:33 -0500323void ft_pci_setup(void *blob, bd_t *bd)
324{
Kumar Gala6525d512010-07-08 22:37:44 -0500325 FT_FSL_PCI_SETUP;
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500326}
327#endif