blob: af8facad534d17099f81c0c561009f89e58ca336 [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 Six636c1082019-01-21 09:18:11 +010017#include "sysio/sysio.h"
Mario Sixaa502542019-01-21 09:18:12 +010018#include "arbiter/arbiter.h"
Mario Sixf62074e2019-01-21 09:18:13 +010019#include "initreg/initreg.h"
Mario Sixb47839c2019-01-21 09:17:58 +010020
Wolfgang Denk6405a152006-03-31 18:32:53 +020021DECLARE_GLOBAL_DATA_PTR;
22
Dave Liue732e9c2006-11-03 12:11:15 -060023#ifdef CONFIG_QE
24extern qe_iop_conf_t qe_iop_conf_tab[];
25extern void qe_config_iopin(u8 port, u8 pin, int dir,
26 int open_drain, int assign);
27extern void qe_init(uint qe_base);
28extern void qe_reset(void);
29
30static void config_qe_ioports(void)
31{
32 u8 port, pin;
33 int dir, open_drain, assign;
34 int i;
35
36 for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) {
37 port = qe_iop_conf_tab[i].port;
38 pin = qe_iop_conf_tab[i].pin;
39 dir = qe_iop_conf_tab[i].dir;
40 open_drain = qe_iop_conf_tab[i].open_drain;
41 assign = qe_iop_conf_tab[i].assign;
42 qe_config_iopin(port, pin, dir, open_drain, assign);
43 }
44}
45#endif
46
Eran Liberty9095d4a2005-07-28 10:08:46 -050047/*
48 * Breathe some life into the CPU...
49 *
50 * Set up the memory map,
51 * initialize a bunch of registers,
52 * initialize the UPM's
53 */
54void cpu_init_f (volatile immap_t * im)
55{
Kim Phillips328040a2009-09-25 18:19:44 -050056 __be32 sccr_mask =
57#ifdef CONFIG_SYS_SCCR_ENCCM /* Encryption clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050058 SCCR_ENCCM |
Kim Phillips19a91de2008-01-16 12:06:16 -060059#endif
Kim Phillips328040a2009-09-25 18:19:44 -050060#ifdef CONFIG_SYS_SCCR_PCICM /* PCI & DMA clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050061 SCCR_PCICM |
Kim Phillips19a91de2008-01-16 12:06:16 -060062#endif
Ilya Yanoka4f3ed32010-09-17 23:41:47 +020063#ifdef CONFIG_SYS_SCCR_PCIEXP1CM /* PCIE1 clock mode */
64 SCCR_PCIEXP1CM |
65#endif
66#ifdef CONFIG_SYS_SCCR_PCIEXP2CM /* PCIE2 clock mode */
67 SCCR_PCIEXP2CM |
68#endif
Kim Phillips328040a2009-09-25 18:19:44 -050069#ifdef CONFIG_SYS_SCCR_TSECCM /* all TSEC's clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050070 SCCR_TSECCM |
Timur Tabi054838e2006-10-31 18:44:42 -060071#endif
Kim Phillips328040a2009-09-25 18:19:44 -050072#ifdef CONFIG_SYS_SCCR_TSEC1CM /* TSEC1 clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050073 SCCR_TSEC1CM |
Timur Tabi054838e2006-10-31 18:44:42 -060074#endif
Kim Phillips328040a2009-09-25 18:19:44 -050075#ifdef CONFIG_SYS_SCCR_TSEC2CM /* TSEC2 clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050076 SCCR_TSEC2CM |
Kumar Gala15c3f692007-02-27 23:51:42 -060077#endif
Kim Phillips328040a2009-09-25 18:19:44 -050078#ifdef CONFIG_SYS_SCCR_TSEC1ON /* TSEC1 clock switch */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050079 SCCR_TSEC1ON |
Timur Tabi0b2deff2007-07-03 13:04:34 -050080#endif
Kim Phillips328040a2009-09-25 18:19:44 -050081#ifdef CONFIG_SYS_SCCR_TSEC2ON /* TSEC2 clock switch */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050082 SCCR_TSEC2ON |
Timur Tabi0b2deff2007-07-03 13:04:34 -050083#endif
Kim Phillips328040a2009-09-25 18:19:44 -050084#ifdef CONFIG_SYS_SCCR_USBMPHCM /* USB MPH clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050085 SCCR_USBMPHCM |
Kumar Gala15c3f692007-02-27 23:51:42 -060086#endif
Kim Phillips328040a2009-09-25 18:19:44 -050087#ifdef CONFIG_SYS_SCCR_USBDRCM /* USB DR clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050088 SCCR_USBDRCM |
Kumar Gala15c3f692007-02-27 23:51:42 -060089#endif
Kim Phillips328040a2009-09-25 18:19:44 -050090#ifdef CONFIG_SYS_SCCR_SATACM /* SATA controller clock mode */
Kim Phillips8d5fa6a2010-05-19 17:06:46 -050091 SCCR_SATACM |
Timur Tabi054838e2006-10-31 18:44:42 -060092#endif
Kim Phillips328040a2009-09-25 18:19:44 -050093 0;
94 __be32 sccr_val =
95#ifdef CONFIG_SYS_SCCR_ENCCM /* Encryption clock mode */
96 (CONFIG_SYS_SCCR_ENCCM << SCCR_ENCCM_SHIFT) |
97#endif
98#ifdef CONFIG_SYS_SCCR_PCICM /* PCI & DMA clock mode */
99 (CONFIG_SYS_SCCR_PCICM << SCCR_PCICM_SHIFT) |
100#endif
Ilya Yanoka4f3ed32010-09-17 23:41:47 +0200101#ifdef CONFIG_SYS_SCCR_PCIEXP1CM /* PCIE1 clock mode */
102 (CONFIG_SYS_SCCR_PCIEXP1CM << SCCR_PCIEXP1CM_SHIFT) |
103#endif
104#ifdef CONFIG_SYS_SCCR_PCIEXP2CM /* PCIE2 clock mode */
105 (CONFIG_SYS_SCCR_PCIEXP2CM << SCCR_PCIEXP2CM_SHIFT) |
106#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500107#ifdef CONFIG_SYS_SCCR_TSECCM /* all TSEC's clock mode */
108 (CONFIG_SYS_SCCR_TSECCM << SCCR_TSECCM_SHIFT) |
109#endif
110#ifdef CONFIG_SYS_SCCR_TSEC1CM /* TSEC1 clock mode */
111 (CONFIG_SYS_SCCR_TSEC1CM << SCCR_TSEC1CM_SHIFT) |
112#endif
113#ifdef CONFIG_SYS_SCCR_TSEC2CM /* TSEC2 clock mode */
114 (CONFIG_SYS_SCCR_TSEC2CM << SCCR_TSEC2CM_SHIFT) |
115#endif
116#ifdef CONFIG_SYS_SCCR_TSEC1ON /* TSEC1 clock switch */
117 (CONFIG_SYS_SCCR_TSEC1ON << SCCR_TSEC1ON_SHIFT) |
118#endif
119#ifdef CONFIG_SYS_SCCR_TSEC2ON /* TSEC2 clock switch */
120 (CONFIG_SYS_SCCR_TSEC2ON << SCCR_TSEC2ON_SHIFT) |
121#endif
122#ifdef CONFIG_SYS_SCCR_USBMPHCM /* USB MPH clock mode */
123 (CONFIG_SYS_SCCR_USBMPHCM << SCCR_USBMPHCM_SHIFT) |
124#endif
125#ifdef CONFIG_SYS_SCCR_USBDRCM /* USB DR clock mode */
126 (CONFIG_SYS_SCCR_USBDRCM << SCCR_USBDRCM_SHIFT) |
127#endif
128#ifdef CONFIG_SYS_SCCR_SATACM /* SATA controller clock mode */
129 (CONFIG_SYS_SCCR_SATACM << SCCR_SATACM_SHIFT) |
130#endif
131 0;
132
133 /* Pointer is writable since we allocated a register for it */
134 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
135
mario.six@gdsys.cc85df7b42017-01-17 08:33:48 +0100136 /* global data region was cleared in start.S */
Kim Phillips328040a2009-09-25 18:19:44 -0500137
138 /* system performance tweaking */
139 clrsetbits_be32(&im->arbiter.acr, acr_mask, acr_val);
140
141 clrsetbits_be32(&im->sysconf.spcr, spcr_mask, spcr_val);
142
143 clrsetbits_be32(&im->clk.sccr, sccr_mask, sccr_val);
Timur Tabi054838e2006-10-31 18:44:42 -0600144
Eran Liberty9095d4a2005-07-28 10:08:46 -0500145 /* RSR - Reset Status Register - clear all status (4.6.1.3) */
Simon Glass4d6eaa32012-12-13 20:48:56 +0000146 gd->arch.reset_status = __raw_readl(&im->reset.rsr);
Kim Phillips328040a2009-09-25 18:19:44 -0500147 __raw_writel(~(RSR_RES), &im->reset.rsr);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500148
Nick Spence56fd3c22008-08-28 14:09:19 -0700149 /* AER - Arbiter Event Register - store status */
Simon Glass387a1f22012-12-13 20:48:57 +0000150 gd->arch.arbiter_event_attributes = __raw_readl(&im->arbiter.aeatr);
151 gd->arch.arbiter_event_address = __raw_readl(&im->arbiter.aeadr);
Nick Spence56fd3c22008-08-28 14:09:19 -0700152
Eran Liberty9095d4a2005-07-28 10:08:46 -0500153 /*
154 * RMR - Reset Mode Register
155 * contains checkstop reset enable (4.6.1.4)
156 */
Kim Phillips328040a2009-09-25 18:19:44 -0500157 __raw_writel(RMR_CSRE & (1<<RMR_CSRE_SHIFT), &im->reset.rmr);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500158
Peter Korsgaard2a483ee2009-12-08 22:20:34 +0100159 /* LCRR - Clock Ratio Register (10.3.1.16)
160 * write, read, and isync per MPC8379ERM rev.1 CLKDEV field description
161 */
Becky Bruce0d4cee12010-06-17 11:37:20 -0500162 clrsetbits_be32(&im->im_lbc.lcrr, lcrr_mask, lcrr_val);
163 __raw_readl(&im->im_lbc.lcrr);
Peter Korsgaard2a483ee2009-12-08 22:20:34 +0100164 isync();
165
Kim Phillips328040a2009-09-25 18:19:44 -0500166 /* Enable Time Base & Decrementer ( so we will have udelay() )*/
167 setbits_be32(&im->sysconf.spcr, SPCR_TBEN);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500168
169 /* System General Purpose Register */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200170#ifdef CONFIG_SYS_SICRH
Mario Six0344f5e2019-01-21 09:17:27 +0100171#if defined(CONFIG_ARCH_MPC834X) || defined(CONFIG_ARCH_MPC8313)
Andre Schwarzcea66482008-06-23 11:40:56 +0200172 /* regarding to MPC34x manual rev.1 bits 28..29 must be preserved */
Kim Phillips328040a2009-09-25 18:19:44 -0500173 __raw_writel((im->sysconf.sicrh & 0x0000000C) | CONFIG_SYS_SICRH,
174 &im->sysconf.sicrh);
Andre Schwarzcea66482008-06-23 11:40:56 +0200175#else
Kim Phillips328040a2009-09-25 18:19:44 -0500176 __raw_writel(CONFIG_SYS_SICRH, &im->sysconf.sicrh);
Kumar Galae5221432006-01-11 11:12:57 -0600177#endif
Andre Schwarzcea66482008-06-23 11:40:56 +0200178#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200179#ifdef CONFIG_SYS_SICRL
Kim Phillips328040a2009-09-25 18:19:44 -0500180 __raw_writel(CONFIG_SYS_SICRL, &im->sysconf.sicrl);
Kumar Galae5221432006-01-11 11:12:57 -0600181#endif
Gerlando Falautofe201cb2012-10-10 22:13:08 +0000182#ifdef CONFIG_SYS_GPR1
183 __raw_writel(CONFIG_SYS_GPR1, &im->sysconf.gpr1);
184#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500185#ifdef CONFIG_SYS_DDRCDR /* DDR control driver register */
186 __raw_writel(CONFIG_SYS_DDRCDR, &im->sysconf.ddrcdr);
Dave Liue740c462006-12-07 21:13:15 +0800187#endif
Kim Phillips328040a2009-09-25 18:19:44 -0500188#ifdef CONFIG_SYS_OBIR /* Output buffer impedance register */
189 __raw_writel(CONFIG_SYS_OBIR, &im->sysconf.obir);
Dave Liub19ecd32007-09-18 12:37:57 +0800190#endif
Dave Liue740c462006-12-07 21:13:15 +0800191
Dave Liue732e9c2006-11-03 12:11:15 -0600192#ifdef CONFIG_QE
193 /* Config QE ioports */
194 config_qe_ioports();
195#endif
Becky Bruce0d4cee12010-06-17 11:37:20 -0500196 /* Set up preliminary BR/OR regs */
197 init_early_memctl_regs();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500198
Becky Bruce0d4cee12010-06-17 11:37:20 -0500199 /* Local Access window setup */
200#if defined(CONFIG_SYS_LBLAWBAR0_PRELIM) && defined(CONFIG_SYS_LBLAWAR0_PRELIM)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200201 im->sysconf.lblaw[0].bar = CONFIG_SYS_LBLAWBAR0_PRELIM;
202 im->sysconf.lblaw[0].ar = CONFIG_SYS_LBLAWAR0_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500203#else
Becky Bruce0d4cee12010-06-17 11:37:20 -0500204#error CONFIG_SYS_LBLAWBAR0_PRELIM & CONFIG_SYS_LBLAWAR0_PRELIM must be defined
Eran Liberty9095d4a2005-07-28 10:08:46 -0500205#endif
206
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200207#if defined(CONFIG_SYS_LBLAWBAR1_PRELIM) && defined(CONFIG_SYS_LBLAWAR1_PRELIM)
208 im->sysconf.lblaw[1].bar = CONFIG_SYS_LBLAWBAR1_PRELIM;
209 im->sysconf.lblaw[1].ar = CONFIG_SYS_LBLAWAR1_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500210#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200211#if defined(CONFIG_SYS_LBLAWBAR2_PRELIM) && defined(CONFIG_SYS_LBLAWAR2_PRELIM)
212 im->sysconf.lblaw[2].bar = CONFIG_SYS_LBLAWBAR2_PRELIM;
213 im->sysconf.lblaw[2].ar = CONFIG_SYS_LBLAWAR2_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500214#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200215#if defined(CONFIG_SYS_LBLAWBAR3_PRELIM) && defined(CONFIG_SYS_LBLAWAR3_PRELIM)
216 im->sysconf.lblaw[3].bar = CONFIG_SYS_LBLAWBAR3_PRELIM;
217 im->sysconf.lblaw[3].ar = CONFIG_SYS_LBLAWAR3_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500218#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200219#if defined(CONFIG_SYS_LBLAWBAR4_PRELIM) && defined(CONFIG_SYS_LBLAWAR4_PRELIM)
220 im->sysconf.lblaw[4].bar = CONFIG_SYS_LBLAWBAR4_PRELIM;
221 im->sysconf.lblaw[4].ar = CONFIG_SYS_LBLAWAR4_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500222#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200223#if defined(CONFIG_SYS_LBLAWBAR5_PRELIM) && defined(CONFIG_SYS_LBLAWAR5_PRELIM)
224 im->sysconf.lblaw[5].bar = CONFIG_SYS_LBLAWBAR5_PRELIM;
225 im->sysconf.lblaw[5].ar = CONFIG_SYS_LBLAWAR5_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500226#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200227#if defined(CONFIG_SYS_LBLAWBAR6_PRELIM) && defined(CONFIG_SYS_LBLAWAR6_PRELIM)
228 im->sysconf.lblaw[6].bar = CONFIG_SYS_LBLAWBAR6_PRELIM;
229 im->sysconf.lblaw[6].ar = CONFIG_SYS_LBLAWAR6_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500230#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200231#if defined(CONFIG_SYS_LBLAWBAR7_PRELIM) && defined(CONFIG_SYS_LBLAWAR7_PRELIM)
232 im->sysconf.lblaw[7].bar = CONFIG_SYS_LBLAWBAR7_PRELIM;
233 im->sysconf.lblaw[7].ar = CONFIG_SYS_LBLAWAR7_PRELIM;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500234#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200235#ifdef CONFIG_SYS_GPIO1_PRELIM
236 im->gpio[0].dat = CONFIG_SYS_GPIO1_DAT;
237 im->gpio[0].dir = CONFIG_SYS_GPIO1_DIR;
Kumar Galaab7ec4f2006-01-11 11:21:14 -0600238#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200239#ifdef CONFIG_SYS_GPIO2_PRELIM
240 im->gpio[1].dat = CONFIG_SYS_GPIO2_DAT;
241 im->gpio[1].dir = CONFIG_SYS_GPIO2_DIR;
Kumar Galaab7ec4f2006-01-11 11:21:14 -0600242#endif
Mario Six9164bdd2019-01-21 09:17:25 +0100243#if defined(CONFIG_USB_EHCI_FSL) && defined(CONFIG_ARCH_MPC831X)
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530244 uint32_t temp;
ramneek mehresh16b08062013-09-12 16:35:49 +0530245 struct usb_ehci *ehci = (struct usb_ehci *)CONFIG_SYS_FSL_USB1_ADDR;
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530246
247 /* Configure interface. */
Vivek Mahajan2d421c12009-06-24 10:08:40 +0530248 setbits_be32(&ehci->control, REFSEL_16MHZ | UTMI_PHY_EN);
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530249
250 /* Wait for clock to stabilize */
251 do {
Kim Phillips328040a2009-09-25 18:19:44 -0500252 temp = __raw_readl(&ehci->control);
Vivek Mahajan288f7fb2009-05-25 17:23:16 +0530253 udelay(1000);
254 } while (!(temp & PHY_CLK_VALID));
255#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500256}
257
Eran Liberty9095d4a2005-07-28 10:08:46 -0500258int cpu_init_r (void)
259{
Dave Liue732e9c2006-11-03 12:11:15 -0600260#ifdef CONFIG_QE
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200261 uint qe_base = CONFIG_SYS_IMMR + 0x00100000; /* QE immr base */
Kim Phillips328040a2009-09-25 18:19:44 -0500262
Dave Liue732e9c2006-11-03 12:11:15 -0600263 qe_init(qe_base);
264 qe_reset();
265#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500266 return 0;
267}
Dave Liuebd35f82007-06-25 10:41:56 +0800268
Nick Spence56fd3c22008-08-28 14:09:19 -0700269/*
270 * Print out the bus arbiter event
271 */
272#if defined(CONFIG_DISPLAY_AER_FULL)
273static int print_83xx_arb_event(int force)
274{
275 static char* event[] = {
276 "Address Time Out",
277 "Data Time Out",
278 "Address Only Transfer Type",
279 "External Control Word Transfer Type",
280 "Reserved Transfer Type",
281 "Transfer Error",
282 "reserved",
283 "reserved"
284 };
285 static char* master[] = {
286 "e300 Core Data Transaction",
287 "reserved",
288 "e300 Core Instruction Fetch",
289 "reserved",
290 "TSEC1",
291 "TSEC2",
292 "USB MPH",
293 "USB DR",
294 "Encryption Core",
295 "I2C Boot Sequencer",
296 "JTAG",
297 "reserved",
298 "eSDHC",
299 "PCI1",
300 "PCI2",
301 "DMA",
302 "QUICC Engine 00",
303 "QUICC Engine 01",
304 "QUICC Engine 10",
305 "QUICC Engine 11",
306 "reserved",
307 "reserved",
308 "reserved",
309 "reserved",
310 "SATA1",
311 "SATA2",
312 "SATA3",
313 "SATA4",
314 "reserved",
315 "PCI Express 1",
316 "PCI Express 2",
317 "TDM-DMAC"
318 };
319 static char *transfer[] = {
320 "Address-only, Clean Block",
321 "Address-only, lwarx reservation set",
322 "Single-beat or Burst write",
323 "reserved",
324 "Address-only, Flush Block",
325 "reserved",
326 "Burst write",
327 "reserved",
328 "Address-only, sync",
329 "Address-only, tlbsync",
330 "Single-beat or Burst read",
331 "Single-beat or Burst read",
332 "Address-only, Kill Block",
333 "Address-only, icbi",
334 "Burst read",
335 "reserved",
336 "Address-only, eieio",
337 "reserved",
338 "Single-beat write",
339 "reserved",
340 "ecowx - Illegal single-beat write",
341 "reserved",
342 "reserved",
343 "reserved",
344 "Address-only, TLB Invalidate",
345 "reserved",
346 "Single-beat or Burst read",
347 "reserved",
348 "eciwx - Illegal single-beat read",
349 "reserved",
350 "Burst read",
351 "reserved"
352 };
353
Simon Glass387a1f22012-12-13 20:48:57 +0000354 int etype = (gd->arch.arbiter_event_attributes & AEATR_EVENT)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200355 >> AEATR_EVENT_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000356 int mstr_id = (gd->arch.arbiter_event_attributes & AEATR_MSTR_ID)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200357 >> AEATR_MSTR_ID_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000358 int tbst = (gd->arch.arbiter_event_attributes & AEATR_TBST)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200359 >> AEATR_TBST_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000360 int tsize = (gd->arch.arbiter_event_attributes & AEATR_TSIZE)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200361 >> AEATR_TSIZE_SHIFT;
Simon Glass387a1f22012-12-13 20:48:57 +0000362 int ttype = (gd->arch.arbiter_event_attributes & AEATR_TTYPE)
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200363 >> AEATR_TTYPE_SHIFT;
Nick Spence56fd3c22008-08-28 14:09:19 -0700364
Simon Glass387a1f22012-12-13 20:48:57 +0000365 if (!force && !gd->arch.arbiter_event_address)
Nick Spence56fd3c22008-08-28 14:09:19 -0700366 return 0;
367
368 puts("Arbiter Event Status:\n");
Simon Glass387a1f22012-12-13 20:48:57 +0000369 printf(" Event Address: 0x%08lX\n",
370 gd->arch.arbiter_event_address);
Nick Spence56fd3c22008-08-28 14:09:19 -0700371 printf(" Event Type: 0x%1x = %s\n", etype, event[etype]);
372 printf(" Master ID: 0x%02x = %s\n", mstr_id, master[mstr_id]);
373 printf(" Transfer Size: 0x%1x = %d bytes\n", (tbst<<3) | tsize,
374 tbst ? (tsize ? tsize : 8) : 16 + 8 * tsize);
375 printf(" Transfer Type: 0x%02x = %s\n", ttype, transfer[ttype]);
376
Simon Glass387a1f22012-12-13 20:48:57 +0000377 return gd->arch.arbiter_event_address;
Nick Spence56fd3c22008-08-28 14:09:19 -0700378}
379
380#elif defined(CONFIG_DISPLAY_AER_BRIEF)
381
382static int print_83xx_arb_event(int force)
383{
Simon Glass387a1f22012-12-13 20:48:57 +0000384 if (!force && !gd->arch.arbiter_event_address)
Nick Spence56fd3c22008-08-28 14:09:19 -0700385 return 0;
386
387 printf("Arbiter Event Status: AEATR=0x%08lX, AEADR=0x%08lX\n",
Simon Glass387a1f22012-12-13 20:48:57 +0000388 gd->arch.arbiter_event_attributes,
389 gd->arch.arbiter_event_address);
Nick Spence56fd3c22008-08-28 14:09:19 -0700390
Simon Glass387a1f22012-12-13 20:48:57 +0000391 return gd->arch.arbiter_event_address;
Nick Spence56fd3c22008-08-28 14:09:19 -0700392}
393#endif /* CONFIG_DISPLAY_AER_xxxx */
394
Mario Six28fbefa2018-08-06 10:23:45 +0200395#ifndef CONFIG_CPU_MPC83XX
Dave Liuebd35f82007-06-25 10:41:56 +0800396/*
397 * Figure out the cause of the reset
398 */
399int prt_83xx_rsr(void)
400{
401 static struct {
402 ulong mask;
403 char *desc;
404 } bits[] = {
405 {
406 RSR_SWSR, "Software Soft"}, {
407 RSR_SWHR, "Software Hard"}, {
408 RSR_JSRS, "JTAG Soft"}, {
409 RSR_CSHR, "Check Stop"}, {
410 RSR_SWRS, "Software Watchdog"}, {
411 RSR_BMRS, "Bus Monitor"}, {
412 RSR_SRS, "External/Internal Soft"}, {
413 RSR_HRS, "External/Internal Hard"}
414 };
Robert P. J. Day0c911592016-05-23 06:49:21 -0400415 static int n = ARRAY_SIZE(bits);
Simon Glass4d6eaa32012-12-13 20:48:56 +0000416 ulong rsr = gd->arch.reset_status;
Dave Liuebd35f82007-06-25 10:41:56 +0800417 int i;
418 char *sep;
419
420 puts("Reset Status:");
421
422 sep = " ";
423 for (i = 0; i < n; i++)
424 if (rsr & bits[i].mask) {
425 printf("%s%s", sep, bits[i].desc);
426 sep = ", ";
427 }
Nick Spence56fd3c22008-08-28 14:09:19 -0700428 puts("\n");
429
430#if defined(CONFIG_DISPLAY_AER_FULL) || defined(CONFIG_DISPLAY_AER_BRIEF)
431 print_83xx_arb_event(rsr & RSR_BMRS);
432#endif
433 puts("\n");
434
Dave Liuebd35f82007-06-25 10:41:56 +0800435 return 0;
436}
Mario Six28fbefa2018-08-06 10:23:45 +0200437#endif