blob: 5ce7b794b264abc77ab227490cc472dd47d72767 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Eran Liberty9095d4a2005-07-28 10:08:46 -05002/*
Vivek Mahajan288f7fb2009-05-25 17:23:16 +05303 * Copyright (C) 2004-2009 Freescale Semiconductor, Inc.
Eran Liberty9095d4a2005-07-28 10:08:46 -05004 */
5
6#include <common.h>
7#include <mpc83xx.h>
8#include <ioports.h>
Vivek Mahajan288f7fb2009-05-25 17:23:16 +05309#include <asm/io.h>
Simon Glass156283f2017-03-28 10:27:27 -060010#include <asm/processor.h>
Kim Phillips328040a2009-09-25 18:19:44 -050011#ifdef CONFIG_USB_EHCI_FSL
Mateusz Kulikowski3add69e2016-03-31 23:12:23 +020012#include <usb/ehci-ci.h>
Vivek Mahajan288f7fb2009-05-25 17:23:16 +053013#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -050014
Mario Sixb47839c2019-01-21 09:17:58 +010015#include "lblaw/lblaw.h"
Mario Six1faf95d2019-01-21 09:18:03 +010016#include "elbc/elbc.h"
Mario Sixb47839c2019-01-21 09:17:58 +010017
Wolfgang Denk6405a152006-03-31 18:32:53 +020018DECLARE_GLOBAL_DATA_PTR;
19
Dave Liue732e9c2006-11-03 12:11:15 -060020#ifdef CONFIG_QE
21extern qe_iop_conf_t qe_iop_conf_tab[];
22extern void qe_config_iopin(u8 port, u8 pin, int dir,
23 int open_drain, int assign);
24extern void qe_init(uint qe_base);
25extern void qe_reset(void);
26
27static void config_qe_ioports(void)
28{
29 u8 port, pin;
30 int dir, open_drain, assign;
31 int i;
32
33 for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) {
34 port = qe_iop_conf_tab[i].port;
35 pin = qe_iop_conf_tab[i].pin;
36 dir = qe_iop_conf_tab[i].dir;
37 open_drain = qe_iop_conf_tab[i].open_drain;
38 assign = qe_iop_conf_tab[i].assign;
39 qe_config_iopin(port, pin, dir, open_drain, assign);
40 }
41}
42#endif
43
Eran Liberty9095d4a2005-07-28 10:08:46 -050044/*
45 * Breathe some life into the CPU...
46 *
47 * Set up the memory map,
48 * initialize a bunch of registers,
49 * initialize the UPM's
50 */
51void cpu_init_f (volatile immap_t * im)
52{
Kim Phillips328040a2009-09-25 18:19:44 -050053 __be32 acr_mask =
54#ifdef CONFIG_SYS_ACR_PIPE_DEP /* Arbiter pipeline depth */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050055 ACR_PIPE_DEP |
Timur Tabi054838e2006-10-31 18:44:42 -060056#endif
Kim Phillips328040a2009-09-25 18:19:44 -050057#ifdef CONFIG_SYS_ACR_RPTCNT /* Arbiter repeat count */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050058 ACR_RPTCNT |
Kim Phillips19a91de2008-01-16 12:06:16 -060059#endif
Heiko Schocher5318b082010-01-07 08:56:00 +010060#ifdef CONFIG_SYS_ACR_APARK /* Arbiter address parking mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050061 ACR_APARK |
Heiko Schocher5318b082010-01-07 08:56:00 +010062#endif
63#ifdef CONFIG_SYS_ACR_PARKM /* Arbiter parking master */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050064 ACR_PARKM |
Heiko Schocher5318b082010-01-07 08:56:00 +010065#endif
Kim Phillips328040a2009-09-25 18:19:44 -050066 0;
67 __be32 acr_val =
68#ifdef CONFIG_SYS_ACR_PIPE_DEP /* Arbiter pipeline depth */
69 (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT) |
70#endif
71#ifdef CONFIG_SYS_ACR_RPTCNT /* Arbiter repeat count */
72 (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT) |
73#endif
Heiko Schocher5318b082010-01-07 08:56:00 +010074#ifdef CONFIG_SYS_ACR_APARK /* Arbiter address parking mode */
75 (CONFIG_SYS_ACR_APARK << ACR_APARK_SHIFT) |
76#endif
77#ifdef CONFIG_SYS_ACR_PARKM /* Arbiter parking master */
78 (CONFIG_SYS_ACR_PARKM << ACR_PARKM_SHIFT) |
79#endif
Kim Phillips328040a2009-09-25 18:19:44 -050080 0;
81 __be32 spcr_mask =
82#ifdef CONFIG_SYS_SPCR_OPT /* Optimize transactions between CSB and other dev */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050083 SPCR_OPT |
Kim Phillips328040a2009-09-25 18:19:44 -050084#endif
85#ifdef CONFIG_SYS_SPCR_TSECEP /* all eTSEC's Emergency priority */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050086 SPCR_TSECEP |
Kim Phillips328040a2009-09-25 18:19:44 -050087#endif
88#ifdef CONFIG_SYS_SPCR_TSEC1EP /* TSEC1 Emergency priority */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050089 SPCR_TSEC1EP |
Kim Phillips328040a2009-09-25 18:19:44 -050090#endif
91#ifdef CONFIG_SYS_SPCR_TSEC2EP /* TSEC2 Emergency priority */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050092 SPCR_TSEC2EP |
Kim Phillips328040a2009-09-25 18:19:44 -050093#endif
94 0;
95 __be32 spcr_val =
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020096#ifdef CONFIG_SYS_SPCR_OPT
Kim Phillips328040a2009-09-25 18:19:44 -050097 (CONFIG_SYS_SPCR_OPT << SPCR_OPT_SHIFT) |
Michael Barkowski06e2e192008-03-20 13:15:34 -040098#endif
Kim Phillips328040a2009-09-25 18:19:44 -050099#ifdef CONFIG_SYS_SPCR_TSECEP /* all eTSEC's Emergency priority */
100 (CONFIG_SYS_SPCR_TSECEP << SPCR_TSECEP_SHIFT) |
Kim Phillips19a91de2008-01-16 12:06:16 -0600101#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500102#ifdef CONFIG_SYS_SPCR_TSEC1EP /* TSEC1 Emergency priority */
103 (CONFIG_SYS_SPCR_TSEC1EP << SPCR_TSEC1EP_SHIFT) |
Timur Tabi054838e2006-10-31 18:44:42 -0600104#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500105#ifdef CONFIG_SYS_SPCR_TSEC2EP /* TSEC2 Emergency priority */
106 (CONFIG_SYS_SPCR_TSEC2EP << SPCR_TSEC2EP_SHIFT) |
Kim Phillips19a91de2008-01-16 12:06:16 -0600107#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500108 0;
109 __be32 sccr_mask =
110#ifdef CONFIG_SYS_SCCR_ENCCM /* Encryption clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500111 SCCR_ENCCM |
Kim Phillips19a91de2008-01-16 12:06:16 -0600112#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500113#ifdef CONFIG_SYS_SCCR_PCICM /* PCI & DMA clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500114 SCCR_PCICM |
Kim Phillips19a91de2008-01-16 12:06:16 -0600115#endif
Ilya Yanoka4f3ed32010-09-17 23:41:47 +0200116#ifdef CONFIG_SYS_SCCR_PCIEXP1CM /* PCIE1 clock mode */
117 SCCR_PCIEXP1CM |
118#endif
119#ifdef CONFIG_SYS_SCCR_PCIEXP2CM /* PCIE2 clock mode */
120 SCCR_PCIEXP2CM |
121#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500122#ifdef CONFIG_SYS_SCCR_TSECCM /* all TSEC's clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500123 SCCR_TSECCM |
Timur Tabi054838e2006-10-31 18:44:42 -0600124#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500125#ifdef CONFIG_SYS_SCCR_TSEC1CM /* TSEC1 clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500126 SCCR_TSEC1CM |
Timur Tabi054838e2006-10-31 18:44:42 -0600127#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500128#ifdef CONFIG_SYS_SCCR_TSEC2CM /* TSEC2 clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500129 SCCR_TSEC2CM |
Kumar Gala15c3f692007-02-27 23:51:42 -0600130#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500131#ifdef CONFIG_SYS_SCCR_TSEC1ON /* TSEC1 clock switch */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500132 SCCR_TSEC1ON |
Timur Tabi0b2deff2007-07-03 13:04:34 -0500133#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500134#ifdef CONFIG_SYS_SCCR_TSEC2ON /* TSEC2 clock switch */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500135 SCCR_TSEC2ON |
Timur Tabi0b2deff2007-07-03 13:04:34 -0500136#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500137#ifdef CONFIG_SYS_SCCR_USBMPHCM /* USB MPH clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500138 SCCR_USBMPHCM |
Kumar Gala15c3f692007-02-27 23:51:42 -0600139#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500140#ifdef CONFIG_SYS_SCCR_USBDRCM /* USB DR clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500141 SCCR_USBDRCM |
Kumar Gala15c3f692007-02-27 23:51:42 -0600142#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500143#ifdef CONFIG_SYS_SCCR_SATACM /* SATA controller clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -0500144 SCCR_SATACM |
Timur Tabi054838e2006-10-31 18:44:42 -0600145#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500146 0;
147 __be32 sccr_val =
148#ifdef CONFIG_SYS_SCCR_ENCCM /* Encryption clock mode */
149 (CONFIG_SYS_SCCR_ENCCM << SCCR_ENCCM_SHIFT) |
150#endif
151#ifdef CONFIG_SYS_SCCR_PCICM /* PCI & DMA clock mode */
152 (CONFIG_SYS_SCCR_PCICM << SCCR_PCICM_SHIFT) |
153#endif
Ilya Yanoka4f3ed32010-09-17 23:41:47 +0200154#ifdef CONFIG_SYS_SCCR_PCIEXP1CM /* PCIE1 clock mode */
155 (CONFIG_SYS_SCCR_PCIEXP1CM << SCCR_PCIEXP1CM_SHIFT) |
156#endif
157#ifdef CONFIG_SYS_SCCR_PCIEXP2CM /* PCIE2 clock mode */
158 (CONFIG_SYS_SCCR_PCIEXP2CM << SCCR_PCIEXP2CM_SHIFT) |
159#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500160#ifdef CONFIG_SYS_SCCR_TSECCM /* all TSEC's clock mode */
161 (CONFIG_SYS_SCCR_TSECCM << SCCR_TSECCM_SHIFT) |
162#endif
163#ifdef CONFIG_SYS_SCCR_TSEC1CM /* TSEC1 clock mode */
164 (CONFIG_SYS_SCCR_TSEC1CM << SCCR_TSEC1CM_SHIFT) |
165#endif
166#ifdef CONFIG_SYS_SCCR_TSEC2CM /* TSEC2 clock mode */
167 (CONFIG_SYS_SCCR_TSEC2CM << SCCR_TSEC2CM_SHIFT) |
168#endif
169#ifdef CONFIG_SYS_SCCR_TSEC1ON /* TSEC1 clock switch */
170 (CONFIG_SYS_SCCR_TSEC1ON << SCCR_TSEC1ON_SHIFT) |
171#endif
172#ifdef CONFIG_SYS_SCCR_TSEC2ON /* TSEC2 clock switch */
173 (CONFIG_SYS_SCCR_TSEC2ON << SCCR_TSEC2ON_SHIFT) |
174#endif
175#ifdef CONFIG_SYS_SCCR_USBMPHCM /* USB MPH clock mode */
176 (CONFIG_SYS_SCCR_USBMPHCM << SCCR_USBMPHCM_SHIFT) |
177#endif
178#ifdef CONFIG_SYS_SCCR_USBDRCM /* USB DR clock mode */
179 (CONFIG_SYS_SCCR_USBDRCM << SCCR_USBDRCM_SHIFT) |
180#endif
181#ifdef CONFIG_SYS_SCCR_SATACM /* SATA controller clock mode */
182 (CONFIG_SYS_SCCR_SATACM << SCCR_SATACM_SHIFT) |
183#endif
184 0;
Peter Korsgaard2a483ee2009-12-08 22:20:34 +0100185 __be32 lcrr_mask =
186#ifdef CONFIG_SYS_LCRR_DBYP /* PLL bypass */
187 LCRR_DBYP |
188#endif
189#ifdef CONFIG_SYS_LCRR_EADC /* external address delay */
190 LCRR_EADC |
191#endif
192#ifdef CONFIG_SYS_LCRR_CLKDIV /* system clock divider */
193 LCRR_CLKDIV |
194#endif
195 0;
196 __be32 lcrr_val =
197#ifdef CONFIG_SYS_LCRR_DBYP /* PLL bypass */
198 CONFIG_SYS_LCRR_DBYP |
199#endif
200#ifdef CONFIG_SYS_LCRR_EADC
201 CONFIG_SYS_LCRR_EADC |
202#endif
203#ifdef CONFIG_SYS_LCRR_CLKDIV /* system clock divider */
204 CONFIG_SYS_LCRR_CLKDIV |
205#endif
206 0;
Kim Phillips328040a2009-09-25 18:19:44 -0500207
208 /* Pointer is writable since we allocated a register for it */
209 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
210
mario.six@gdsys.cc85df7b42017-01-17 08:33:48 +0100211 /* global data region was cleared in start.S */
Kim Phillips328040a2009-09-25 18:19:44 -0500212
213 /* system performance tweaking */
214 clrsetbits_be32(&im->arbiter.acr, acr_mask, acr_val);
215
216 clrsetbits_be32(&im->sysconf.spcr, spcr_mask, spcr_val);
217
218 clrsetbits_be32(&im->clk.sccr, sccr_mask, sccr_val);
Timur Tabi054838e2006-10-31 18:44:42 -0600219
Eran Liberty9095d4a2005-07-28 10:08:46 -0500220 /* RSR - Reset Status Register - clear all status (4.6.1.3) */
Simon Glass4d6eaa32012-12-13 20:48:56 +0000221 gd->arch.reset_status = __raw_readl(&im->reset.rsr);
Kim Phillips328040a2009-09-25 18:19:44 -0500222 __raw_writel(~(RSR_RES), &im->reset.rsr);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500223
Nick Spence56fd3c22008-08-28 14:09:19 -0700224 /* AER - Arbiter Event Register - store status */
Simon Glass387a1f22012-12-13 20:48:57 +0000225 gd->arch.arbiter_event_attributes = __raw_readl(&im->arbiter.aeatr);
226 gd->arch.arbiter_event_address = __raw_readl(&im->arbiter.aeadr);
Nick Spence56fd3c22008-08-28 14:09:19 -0700227
Eran Liberty9095d4a2005-07-28 10:08:46 -0500228 /*
229 * RMR - Reset Mode Register
230 * contains checkstop reset enable (4.6.1.4)
231 */
Kim Phillips328040a2009-09-25 18:19:44 -0500232 __raw_writel(RMR_CSRE & (1<<RMR_CSRE_SHIFT), &im->reset.rmr);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500233
Peter Korsgaard2a483ee2009-12-08 22:20:34 +0100234 /* LCRR - Clock Ratio Register (10.3.1.16)
235 * write, read, and isync per MPC8379ERM rev.1 CLKDEV field description
236 */
Becky Bruce0d4cee12010-06-17 11:37:20 -0500237 clrsetbits_be32(&im->im_lbc.lcrr, lcrr_mask, lcrr_val);
238 __raw_readl(&im->im_lbc.lcrr);
Peter Korsgaard2a483ee2009-12-08 22:20:34 +0100239 isync();
240
Kim Phillips328040a2009-09-25 18:19:44 -0500241 /* Enable Time Base & Decrementer ( so we will have udelay() )*/
242 setbits_be32(&im->sysconf.spcr, SPCR_TBEN);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500243
244 /* System General Purpose Register */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200245#ifdef CONFIG_SYS_SICRH
Mario Six0344f5e2019-01-21 09:17:27 +0100246#if defined(CONFIG_ARCH_MPC834X) || defined(CONFIG_ARCH_MPC8313)
Andre Schwarzcea66482008-06-23 11:40:56 +0200247 /* regarding to MPC34x manual rev.1 bits 28..29 must be preserved */
Kim Phillips328040a2009-09-25 18:19:44 -0500248 __raw_writel((im->sysconf.sicrh & 0x0000000C) | CONFIG_SYS_SICRH,
249 &im->sysconf.sicrh);
Andre Schwarzcea66482008-06-23 11:40:56 +0200250#else
Kim Phillips328040a2009-09-25 18:19:44 -0500251 __raw_writel(CONFIG_SYS_SICRH, &im->sysconf.sicrh);
Kumar Galae5221432006-01-11 11:12:57 -0600252#endif
Andre Schwarzcea66482008-06-23 11:40:56 +0200253#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200254#ifdef CONFIG_SYS_SICRL
Kim Phillips328040a2009-09-25 18:19:44 -0500255 __raw_writel(CONFIG_SYS_SICRL, &im->sysconf.sicrl);
Kumar Galae5221432006-01-11 11:12:57 -0600256#endif
Gerlando Falautofe201cb2012-10-10 22:13:08 +0000257#ifdef CONFIG_SYS_GPR1
258 __raw_writel(CONFIG_SYS_GPR1, &im->sysconf.gpr1);
259#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500260#ifdef CONFIG_SYS_DDRCDR /* DDR control driver register */
261 __raw_writel(CONFIG_SYS_DDRCDR, &im->sysconf.ddrcdr);
Dave Liue740c462006-12-07 21:13:15 +0800262#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500263#ifdef CONFIG_SYS_OBIR /* Output buffer impedance register */
264 __raw_writel(CONFIG_SYS_OBIR, &im->sysconf.obir);
Dave Liub19ecd32007-09-18 12:37:57 +0800265#endif
Dave Liue740c462006-12-07 21:13:15 +0800266
Dave Liue732e9c2006-11-03 12:11:15 -0600267#ifdef CONFIG_QE
268 /* Config QE ioports */
269 config_qe_ioports();
270#endif
Becky Bruce0d4cee12010-06-17 11:37:20 -0500271 /* Set up preliminary BR/OR regs */
272 init_early_memctl_regs();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500273
Becky Bruce0d4cee12010-06-17 11:37:20 -0500274 /* Local Access window setup */
275#if defined(CONFIG_SYS_LBLAWBAR0_PRELIM) && defined(CONFIG_SYS_LBLAWAR0_PRELIM)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200276 im->sysconf.lblaw[0].bar = CONFIG_SYS_LBLAWBAR0_PRELIM;
277 im->sysconf.lblaw[0].ar = CONFIG_SYS_LBLAWAR0_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500278#else
Becky Bruce0d4cee12010-06-17 11:37:20 -0500279#error CONFIG_SYS_LBLAWBAR0_PRELIM & CONFIG_SYS_LBLAWAR0_PRELIM must be defined
Eran Liberty9095d4a2005-07-28 10:08:46 -0500280#endif
281
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200282#if defined(CONFIG_SYS_LBLAWBAR1_PRELIM) && defined(CONFIG_SYS_LBLAWAR1_PRELIM)
283 im->sysconf.lblaw[1].bar = CONFIG_SYS_LBLAWBAR1_PRELIM;
284 im->sysconf.lblaw[1].ar = CONFIG_SYS_LBLAWAR1_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500285#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200286#if defined(CONFIG_SYS_LBLAWBAR2_PRELIM) && defined(CONFIG_SYS_LBLAWAR2_PRELIM)
287 im->sysconf.lblaw[2].bar = CONFIG_SYS_LBLAWBAR2_PRELIM;
288 im->sysconf.lblaw[2].ar = CONFIG_SYS_LBLAWAR2_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500289#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200290#if defined(CONFIG_SYS_LBLAWBAR3_PRELIM) && defined(CONFIG_SYS_LBLAWAR3_PRELIM)
291 im->sysconf.lblaw[3].bar = CONFIG_SYS_LBLAWBAR3_PRELIM;
292 im->sysconf.lblaw[3].ar = CONFIG_SYS_LBLAWAR3_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500293#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200294#if defined(CONFIG_SYS_LBLAWBAR4_PRELIM) && defined(CONFIG_SYS_LBLAWAR4_PRELIM)
295 im->sysconf.lblaw[4].bar = CONFIG_SYS_LBLAWBAR4_PRELIM;
296 im->sysconf.lblaw[4].ar = CONFIG_SYS_LBLAWAR4_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500297#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200298#if defined(CONFIG_SYS_LBLAWBAR5_PRELIM) && defined(CONFIG_SYS_LBLAWAR5_PRELIM)
299 im->sysconf.lblaw[5].bar = CONFIG_SYS_LBLAWBAR5_PRELIM;
300 im->sysconf.lblaw[5].ar = CONFIG_SYS_LBLAWAR5_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500301#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200302#if defined(CONFIG_SYS_LBLAWBAR6_PRELIM) && defined(CONFIG_SYS_LBLAWAR6_PRELIM)
303 im->sysconf.lblaw[6].bar = CONFIG_SYS_LBLAWBAR6_PRELIM;
304 im->sysconf.lblaw[6].ar = CONFIG_SYS_LBLAWAR6_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500305#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200306#if defined(CONFIG_SYS_LBLAWBAR7_PRELIM) && defined(CONFIG_SYS_LBLAWAR7_PRELIM)
307 im->sysconf.lblaw[7].bar = CONFIG_SYS_LBLAWBAR7_PRELIM;
308 im->sysconf.lblaw[7].ar = CONFIG_SYS_LBLAWAR7_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500309#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200310#ifdef CONFIG_SYS_GPIO1_PRELIM
311 im->gpio[0].dat = CONFIG_SYS_GPIO1_DAT;
312 im->gpio[0].dir = CONFIG_SYS_GPIO1_DIR;
Kumar Galaab7ec4f2006-01-11 11:21:14 -0600313#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200314#ifdef CONFIG_SYS_GPIO2_PRELIM
315 im->gpio[1].dat = CONFIG_SYS_GPIO2_DAT;
316 im->gpio[1].dir = CONFIG_SYS_GPIO2_DIR;
Kumar Galaab7ec4f2006-01-11 11:21:14 -0600317#endif
Mario Six9164bdd2019-01-21 09:17:25 +0100318#if defined(CONFIG_USB_EHCI_FSL) && defined(CONFIG_ARCH_MPC831X)
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530319 uint32_t temp;
ramneek mehresh16b08062013-09-12 16:35:49 +0530320 struct usb_ehci *ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR;
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530321
322 /* Configure interface. */
Vivek Mahajan2d421c12009-06-24 10:08:40 +0530323 setbits_be32(&ehci->control, REFSEL_16MHZ | UTMI_PHY_EN);
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530324
325 /* Wait for clock to stabilize */
326 do {
Kim Phillips328040a2009-09-25 18:19:44 -0500327 temp = __raw_readl(&ehci->control);
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530328 udelay(1000);
329 } while (!(temp & PHY_CLK_VALID));
330#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500331}
332
Eran Liberty9095d4a2005-07-28 10:08:46 -0500333int cpu_init_r (void)
334{
Dave Liue732e9c2006-11-03 12:11:15 -0600335#ifdef CONFIG_QE
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200336 uint qe_base = CONFIG_SYS_IMMR + 0x00100000; /* QE immr base */
Kim Phillips328040a2009-09-25 18:19:44 -0500337
Dave Liue732e9c2006-11-03 12:11:15 -0600338 qe_init(qe_base);
339 qe_reset();
340#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500341 return 0;
342}
Dave Liuebd35f82007-06-25 10:41:56 +0800343
Nick Spence56fd3c22008-08-28 14:09:19 -0700344/*
345 * Print out the bus arbiter event
346 */
347#if defined(CONFIG_DISPLAY_AER_FULL)
348static int print_83xx_arb_event(int force)
349{
350 static char* event[] = {
351 "Address Time Out",
352 "Data Time Out",
353 "Address Only Transfer Type",
354 "External Control Word Transfer Type",
355 "Reserved Transfer Type",
356 "Transfer Error",
357 "reserved",
358 "reserved"
359 };
360 static char* master[] = {
361 "e300 Core Data Transaction",
362 "reserved",
363 "e300 Core Instruction Fetch",
364 "reserved",
365 "TSEC1",
366 "TSEC2",
367 "USB MPH",
368 "USB DR",
369 "Encryption Core",
370 "I2C Boot Sequencer",
371 "JTAG",
372 "reserved",
373 "eSDHC",
374 "PCI1",
375 "PCI2",
376 "DMA",
377 "QUICC Engine 00",
378 "QUICC Engine 01",
379 "QUICC Engine 10",
380 "QUICC Engine 11",
381 "reserved",
382 "reserved",
383 "reserved",
384 "reserved",
385 "SATA1",
386 "SATA2",
387 "SATA3",
388 "SATA4",
389 "reserved",
390 "PCI Express 1",
391 "PCI Express 2",
392 "TDM-DMAC"
393 };
394 static char *transfer[] = {
395 "Address-only, Clean Block",
396 "Address-only, lwarx reservation set",
397 "Single-beat or Burst write",
398 "reserved",
399 "Address-only, Flush Block",
400 "reserved",
401 "Burst write",
402 "reserved",
403 "Address-only, sync",
404 "Address-only, tlbsync",
405 "Single-beat or Burst read",
406 "Single-beat or Burst read",
407 "Address-only, Kill Block",
408 "Address-only, icbi",
409 "Burst read",
410 "reserved",
411 "Address-only, eieio",
412 "reserved",
413 "Single-beat write",
414 "reserved",
415 "ecowx - Illegal single-beat write",
416 "reserved",
417 "reserved",
418 "reserved",
419 "Address-only, TLB Invalidate",
420 "reserved",
421 "Single-beat or Burst read",
422 "reserved",
423 "eciwx - Illegal single-beat read",
424 "reserved",
425 "Burst read",
426 "reserved"
427 };
428
Simon Glass387a1f22012-12-13 20:48:57 +0000429 int etype = (gd->arch.arbiter_event_attributes & AEATR_EVENT)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200430 >> AEATR_EVENT_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000431 int mstr_id = (gd->arch.arbiter_event_attributes & AEATR_MSTR_ID)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200432 >> AEATR_MSTR_ID_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000433 int tbst = (gd->arch.arbiter_event_attributes & AEATR_TBST)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200434 >> AEATR_TBST_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000435 int tsize = (gd->arch.arbiter_event_attributes & AEATR_TSIZE)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200436 >> AEATR_TSIZE_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000437 int ttype = (gd->arch.arbiter_event_attributes & AEATR_TTYPE)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200438 >> AEATR_TTYPE_SHIFT;
Nick Spence56fd3c22008-08-28 14:09:19 -0700439
Simon Glass387a1f22012-12-13 20:48:57 +0000440 if (!force && !gd->arch.arbiter_event_address)
Nick Spence56fd3c22008-08-28 14:09:19 -0700441 return 0;
442
443 puts("Arbiter Event Status:\n");
Simon Glass387a1f22012-12-13 20:48:57 +0000444 printf(" Event Address: 0x%08lX\n",
445 gd->arch.arbiter_event_address);
Nick Spence56fd3c22008-08-28 14:09:19 -0700446 printf(" Event Type: 0x%1x = %s\n", etype, event[etype]);
447 printf(" Master ID: 0x%02x = %s\n", mstr_id, master[mstr_id]);
448 printf(" Transfer Size: 0x%1x = %d bytes\n", (tbst<<3) | tsize,
449 tbst ? (tsize ? tsize : 8) : 16 + 8 * tsize);
450 printf(" Transfer Type: 0x%02x = %s\n", ttype, transfer[ttype]);
451
Simon Glass387a1f22012-12-13 20:48:57 +0000452 return gd->arch.arbiter_event_address;
Nick Spence56fd3c22008-08-28 14:09:19 -0700453}
454
455#elif defined(CONFIG_DISPLAY_AER_BRIEF)
456
457static int print_83xx_arb_event(int force)
458{
Simon Glass387a1f22012-12-13 20:48:57 +0000459 if (!force && !gd->arch.arbiter_event_address)
Nick Spence56fd3c22008-08-28 14:09:19 -0700460 return 0;
461
462 printf("Arbiter Event Status: AEATR=0x%08lX, AEADR=0x%08lX\n",
Simon Glass387a1f22012-12-13 20:48:57 +0000463 gd->arch.arbiter_event_attributes,
464 gd->arch.arbiter_event_address);
Nick Spence56fd3c22008-08-28 14:09:19 -0700465
Simon Glass387a1f22012-12-13 20:48:57 +0000466 return gd->arch.arbiter_event_address;
Nick Spence56fd3c22008-08-28 14:09:19 -0700467}
468#endif /* CONFIG_DISPLAY_AER_xxxx */
469
Mario Six28fbefa2018-08-06 10:23:45 +0200470#ifndef CONFIG_CPU_MPC83XX
Dave Liuebd35f82007-06-25 10:41:56 +0800471/*
472 * Figure out the cause of the reset
473 */
474int prt_83xx_rsr(void)
475{
476 static struct {
477 ulong mask;
478 char *desc;
479 } bits[] = {
480 {
481 RSR_SWSR, "Software Soft"}, {
482 RSR_SWHR, "Software Hard"}, {
483 RSR_JSRS, "JTAG Soft"}, {
484 RSR_CSHR, "Check Stop"}, {
485 RSR_SWRS, "Software Watchdog"}, {
486 RSR_BMRS, "Bus Monitor"}, {
487 RSR_SRS, "External/Internal Soft"}, {
488 RSR_HRS, "External/Internal Hard"}
489 };
Robert P. J. Day0c911592016-05-23 06:49:21 -0400490 static int n = ARRAY_SIZE(bits);
Simon Glass4d6eaa32012-12-13 20:48:56 +0000491 ulong rsr = gd->arch.reset_status;
Dave Liuebd35f82007-06-25 10:41:56 +0800492 int i;
493 char *sep;
494
495 puts("Reset Status:");
496
497 sep = " ";
498 for (i = 0; i < n; i++)
499 if (rsr & bits[i].mask) {
500 printf("%s%s", sep, bits[i].desc);
501 sep = ", ";
502 }
Nick Spence56fd3c22008-08-28 14:09:19 -0700503 puts("\n");
504
505#if defined(CONFIG_DISPLAY_AER_FULL) || defined(CONFIG_DISPLAY_AER_BRIEF)
506 print_83xx_arb_event(rsr & RSR_BMRS);
507#endif
508 puts("\n");
509
Dave Liuebd35f82007-06-25 10:41:56 +0800510 return 0;
511}
Mario Six28fbefa2018-08-06 10:23:45 +0200512#endif