blob: fc25bb28ad12a63d924f891bcaad98f99e9d8528 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk9c53f402003-10-15 23:53:47 +00002/*
Dipen Dudhat5d51bf92011-01-19 12:46:27 +05303 * Copyright 2004,2007-2011 Freescale Semiconductor, Inc.
wdenk9c53f402003-10-15 23:53:47 +00004 * (C) Copyright 2002, 2003 Motorola Inc.
5 * Xianghua Xiao (X.Xiao@motorola.com)
6 *
7 * (C) Copyright 2000
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk9c53f402003-10-15 23:53:47 +00009 */
10
Andy Flemingfecff2b2008-08-31 16:33:26 -050011#include <config.h>
wdenk9c53f402003-10-15 23:53:47 +000012#include <common.h>
Simon Glass970b61e2019-11-14 12:57:09 -070013#include <cpu_func.h>
Simon Glass97589732020-05-10 11:40:02 -060014#include <init.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070015#include <irq_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glassa9dc0682019-12-28 10:44:59 -070017#include <time.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070018#include <vsprintf.h>
wdenk9c53f402003-10-15 23:53:47 +000019#include <watchdog.h>
20#include <command.h>
Andy Fleming6843a6e2008-10-30 16:51:33 -050021#include <fsl_esdhc.h>
wdenk9c53f402003-10-15 23:53:47 +000022#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060023#include <asm/global_data.h>
Sergei Poselenovddc1a472008-06-06 15:42:40 +020024#include <asm/io.h>
Becky Bruceee888da2010-06-17 11:37:25 -050025#include <asm/mmu.h>
York Sun37562f62013-10-22 12:39:02 -070026#include <fsl_ifc.h>
Becky Bruceee888da2010-06-17 11:37:25 -050027#include <asm/fsl_law.h>
Becky Bruce5e35d8a2010-12-17 17:17:56 -060028#include <asm/fsl_lbc.h>
York Sunc41b7442010-09-28 15:20:33 -070029#include <post.h>
30#include <asm/processor.h>
York Sunf0626592013-09-30 09:22:09 -070031#include <fsl_ddr_sdram.h>
Christophe Leroy31f6e932017-07-13 15:09:54 +020032#include <asm/ppc.h>
Simon Glassdbd79542020-05-10 11:40:11 -060033#include <linux/delay.h>
wdenk9c53f402003-10-15 23:53:47 +000034
James Yang957b1912008-02-08 16:44:53 -060035DECLARE_GLOBAL_DATA_PTR;
36
Ira W. Snydera85994c2011-11-21 13:20:32 -080037/*
38 * Default board reset function
39 */
40static void
41__board_reset(void)
42{
43 /* Do nothing */
44}
45void board_reset(void) __attribute__((weak, alias("__board_reset")));
46
wdenk9c53f402003-10-15 23:53:47 +000047int checkcpu (void)
48{
wdenka445ddf2004-06-09 00:34:46 +000049 sys_info_t sysinfo;
wdenka445ddf2004-06-09 00:34:46 +000050 uint pvr, svr;
51 uint ver;
52 uint major, minor;
Kumar Gala8ddf00c2008-06-10 16:53:46 -050053 struct cpu_type *cpu;
Wolfgang Denk20591042008-10-19 02:35:49 +020054 char buf1[32], buf2[32];
York Sunc87e81e2013-06-25 11:37:43 -070055#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
56 ccsr_gur_t __iomem *gur =
57 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
58#endif
York Sun3b5179f2012-10-08 07:44:31 +000059
60 /*
61 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
62 * mode. Previous platform use ddr ratio to do the same. This
63 * information is only for display here.
64 */
Kumar Galadccd9e32009-03-19 02:46:19 -050065#ifdef CONFIG_FSL_CORENET
York Sun383f6f62012-10-08 07:44:16 +000066#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
York Sun3b5179f2012-10-08 07:44:31 +000067 u32 ddr_sync = 0; /* only async mode is supported */
York Sun383f6f62012-10-08 07:44:16 +000068#else
York Sun3b5179f2012-10-08 07:44:31 +000069 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080070 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
York Sun383f6f62012-10-08 07:44:16 +000071#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
York Sun3b5179f2012-10-08 07:44:31 +000072#else /* CONFIG_FSL_CORENET */
73#ifdef CONFIG_DDR_CLK_FREQ
74 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
75 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala54b68102008-05-29 01:21:24 -050076#else
77 u32 ddr_ratio = 0;
Kumar Galadccd9e32009-03-19 02:46:19 -050078#endif /* CONFIG_DDR_CLK_FREQ */
York Sun3b5179f2012-10-08 07:44:31 +000079#endif /* CONFIG_FSL_CORENET */
80
Timur Tabi47289422011-08-05 16:15:24 -050081 unsigned int i, core, nr_cores = cpu_numcores();
82 u32 mask = cpu_mask();
wdenk9c53f402003-10-15 23:53:47 +000083
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +053084#ifdef CONFIG_HETROGENOUS_CLUSTERS
85 unsigned int j, dsp_core, dsp_numcores = cpu_num_dspcores();
86 u32 dsp_mask = cpu_dsp_mask();
87#endif
88
wdenka445ddf2004-06-09 00:34:46 +000089 svr = get_svr();
wdenka445ddf2004-06-09 00:34:46 +000090 major = SVR_MAJ(svr);
91 minor = SVR_MIN(svr);
92
Shengzhou Liu26ed2d02014-04-25 16:31:22 +080093#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
94 if (SVR_SOC_VER(svr) == SVR_T4080) {
95 ccsr_rcpm_t *rcpm =
96 (void __iomem *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
97
98 setbits_be32(&gur->devdisr2, FSL_CORENET_DEVDISR2_DTSEC1_6 ||
99 FSL_CORENET_DEVDISR2_DTSEC1_9);
100 setbits_be32(&gur->devdisr3, FSL_CORENET_DEVDISR3_PCIE3);
101 setbits_be32(&gur->devdisr5, FSL_CORENET_DEVDISR5_DDR3);
102
103 /* It needs SW to disable core4~7 as HW design sake on T4080 */
104 for (i = 4; i < 8; i++)
105 cpu_disable(i);
106
107 /* request core4~7 into PH20 state, prior to entering PCL10
108 * state, all cores in cluster should be placed in PH20 state.
109 */
110 setbits_be32(&rcpm->pcph20setr, 0xf0);
111
112 /* put the 2nd cluster into PCL10 state */
113 setbits_be32(&rcpm->clpcl10setr, 1 << 1);
114 }
115#endif
116
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530117 if (cpu_numcores() > 1) {
Poonam Aggrwal36a68432009-09-03 19:42:40 +0530118#ifndef CONFIG_MP
119 puts("Unicore software on multiprocessor system!!\n"
120 "To enable mutlticore build define CONFIG_MP\n");
121#endif
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500122 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530123 printf("CPU%d: ", pic->whoami);
124 } else {
125 puts("CPU: ");
126 }
Andy Flemingf5740972008-02-06 01:19:40 -0600127
Simon Glassa8b57392012-12-13 20:48:48 +0000128 cpu = gd->arch.cpu;
Andy Flemingf5740972008-02-06 01:19:40 -0600129
Poonam Aggrwalda6e1ca2009-09-02 13:35:21 +0530130 puts(cpu->name);
131 if (IS_E_PROCESSOR(svr))
132 puts("E");
Andy Flemingf5740972008-02-06 01:19:40 -0600133
wdenka445ddf2004-06-09 00:34:46 +0000134 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +0000135
wdenk3f3262b2005-03-15 22:56:53 +0000136 pvr = get_pvr();
137 ver = PVR_VER(pvr);
138 major = PVR_MAJ(pvr);
139 minor = PVR_MIN(pvr);
140
141 printf("Core: ");
Kumar Galae222ed32011-07-25 09:28:39 -0500142 switch(ver) {
143 case PVR_VER_E500_V1:
144 case PVR_VER_E500_V2:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300145 puts("e500");
Kumar Galae222ed32011-07-25 09:28:39 -0500146 break;
147 case PVR_VER_E500MC:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300148 puts("e500mc");
Kumar Galae222ed32011-07-25 09:28:39 -0500149 break;
150 case PVR_VER_E5500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300151 puts("e5500");
Kumar Galae222ed32011-07-25 09:28:39 -0500152 break;
Kumar Galac1abf4a2012-08-17 08:20:23 +0000153 case PVR_VER_E6500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300154 puts("e6500");
Kumar Galac1abf4a2012-08-17 08:20:23 +0000155 break;
Kumar Galae222ed32011-07-25 09:28:39 -0500156 default:
Kumar Galabd2985c2009-10-21 13:23:54 -0500157 puts("Unknown");
Kumar Galae222ed32011-07-25 09:28:39 -0500158 break;
wdenk3f3262b2005-03-15 22:56:53 +0000159 }
Kumar Gala9f4a6892008-10-23 01:47:38 -0500160
wdenk3f3262b2005-03-15 22:56:53 +0000161 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
162
York Sun908412d2012-10-08 07:44:10 +0000163 if (nr_cores > CONFIG_MAX_CPUS) {
164 panic("\nUnexpected number of cores: %d, max is %d\n",
165 nr_cores, CONFIG_MAX_CPUS);
166 }
167
wdenka445ddf2004-06-09 00:34:46 +0000168 get_sys_info(&sysinfo);
169
vijay raid84fd502014-04-15 11:34:12 +0530170#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
171 if (sysinfo.diff_sysclk == 1)
172 puts("Single Source Clock Configuration\n");
173#endif
174
Kumar Galaf92794c2009-02-04 09:35:57 -0600175 puts("Clock Configuration:");
Timur Tabi47289422011-08-05 16:15:24 -0500176 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1f79d142009-02-19 00:41:08 +0100177 if (!(i & 3))
178 printf ("\n ");
Timur Tabi47289422011-08-05 16:15:24 -0500179 printf("CPU%d:%-4s MHz, ", core,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530180 strmhz(buf1, sysinfo.freq_processor[core]));
Kumar Galaf92794c2009-02-04 09:35:57 -0600181 }
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530182
183#ifdef CONFIG_HETROGENOUS_CLUSTERS
184 for_each_cpu(j, dsp_core, dsp_numcores, dsp_mask) {
185 if (!(j & 3))
186 printf("\n ");
187 printf("DSP CPU%d:%-4s MHz, ", j,
188 strmhz(buf1, sysinfo.freq_processor_dsp[dsp_core]));
189 }
190#endif
191
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530192 printf("\n CCB:%-4s MHz,", strmhz(buf1, sysinfo.freq_systembus));
193 printf("\n");
Kumar Gala54b68102008-05-29 01:21:24 -0500194
Kumar Galadccd9e32009-03-19 02:46:19 -0500195#ifdef CONFIG_FSL_CORENET
196 if (ddr_sync == 1) {
197 printf(" DDR:%-4s MHz (%s MT/s data rate) "
198 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530199 strmhz(buf1, sysinfo.freq_ddrbus/2),
200 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500201 } else {
202 printf(" DDR:%-4s MHz (%s MT/s data rate) "
203 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530204 strmhz(buf1, sysinfo.freq_ddrbus/2),
205 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500206 }
207#else
Kumar Gala07db1702007-12-07 04:59:26 -0600208 switch (ddr_ratio) {
209 case 0x0:
Wolfgang Denk20591042008-10-19 02:35:49 +0200210 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530211 strmhz(buf1, sysinfo.freq_ddrbus/2),
212 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600213 break;
214 case 0x7:
Kumar Galadccd9e32009-03-19 02:46:19 -0500215 printf(" DDR:%-4s MHz (%s MT/s data rate) "
216 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530217 strmhz(buf1, sysinfo.freq_ddrbus/2),
218 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600219 break;
220 default:
Kumar Galadccd9e32009-03-19 02:46:19 -0500221 printf(" DDR:%-4s MHz (%s MT/s data rate) "
222 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530223 strmhz(buf1, sysinfo.freq_ddrbus/2),
224 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600225 break;
226 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500227#endif
wdenka445ddf2004-06-09 00:34:46 +0000228
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530229#if defined(CONFIG_FSL_LBC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530230 if (sysinfo.freq_localbus > LCRR_CLKDIV) {
231 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500232 } else {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800233 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530234 sysinfo.freq_localbus);
Kumar Galadccd9e32009-03-19 02:46:19 -0500235 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530236#endif
wdenka445ddf2004-06-09 00:34:46 +0000237
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000238#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530239 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000240#endif
241
Andy Flemingf5740972008-02-06 01:19:40 -0600242#ifdef CONFIG_CPM2
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530243 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freq_systembus));
Andy Flemingf5740972008-02-06 01:19:40 -0600244#endif
wdenka445ddf2004-06-09 00:34:46 +0000245
Haiying Wang61414682009-05-20 12:30:29 -0400246#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530247 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freq_qe));
Haiying Wang61414682009-05-20 12:30:29 -0400248#endif
249
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530250#if defined(CONFIG_SYS_CPRI)
251 printf(" ");
252 printf("CPRI:%-4s MHz", strmhz(buf1, sysinfo.freq_cpri));
253#endif
254
255#if defined(CONFIG_SYS_MAPLE)
256 printf("\n ");
257 printf("MAPLE:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple));
258 printf("MAPLE-ULB:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple_ulb));
259 printf("MAPLE-eTVPE:%-4s MHz\n",
260 strmhz(buf1, sysinfo.freq_maple_etvpe));
261#endif
262
Kumar Galadccd9e32009-03-19 02:46:19 -0500263#ifdef CONFIG_SYS_DPAA_FMAN
264 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve3a9ed2f2010-06-17 00:08:29 -0500265 printf(" FMAN%d: %s MHz\n", i + 1,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530266 strmhz(buf1, sysinfo.freq_fman[i]));
Kumar Galadccd9e32009-03-19 02:46:19 -0500267 }
268#endif
269
Haiying Wang09d0aa92012-10-11 07:13:39 +0000270#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530271 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freq_qman));
Haiying Wang09d0aa92012-10-11 07:13:39 +0000272#endif
273
Kumar Galadccd9e32009-03-19 02:46:19 -0500274#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530275 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freq_pme));
Kumar Galadccd9e32009-03-19 02:46:19 -0500276#endif
277
Shruti Kanetkar81159362013-08-15 11:25:38 -0500278 puts("L1: D-cache 32 KiB enabled\n I-cache 32 KiB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000279
York Sunc87e81e2013-06-25 11:37:43 -0700280#ifdef CONFIG_FSL_CORENET
281 /* Display the RCW, so that no one gets confused as to what RCW
282 * we're actually using for this boot.
283 */
284 puts("Reset Configuration Word (RCW):");
285 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
286 u32 rcw = in_be32(&gur->rcwsr[i]);
287
288 if ((i % 4) == 0)
289 printf("\n %08x:", i * 4);
290 printf(" %08x", rcw);
291 }
292 puts("\n");
293#endif
294
wdenk9c53f402003-10-15 23:53:47 +0000295 return 0;
296}
297
298
299/* ------------------------------------------------------------------------- */
300
Simon Glassed38aef2020-05-10 11:40:03 -0600301int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000302{
Kumar Galaaff01532009-09-08 13:46:46 -0500303/* Everything after the first generation of PQ3 parts has RSTCR */
York Sunbf820c02016-11-16 11:18:31 -0800304#if defined(CONFIG_ARCH_MPC8540) || defined(CONFIG_ARCH_MPC8541) || \
York Sunb4046f42016-11-16 11:26:45 -0800305 defined(CONFIG_ARCH_MPC8555) || defined(CONFIG_ARCH_MPC8560)
Sergei Poselenov25147422008-05-08 14:17:08 +0200306 unsigned long val, msr;
307
wdenk9c53f402003-10-15 23:53:47 +0000308 /*
309 * Initiate hard reset in debug control register DBCR0
Kumar Galaaff01532009-09-08 13:46:46 -0500310 * Make sure MSR[DE] = 1. This only resets the core.
wdenk9c53f402003-10-15 23:53:47 +0000311 */
Sergei Poselenov25147422008-05-08 14:17:08 +0200312 msr = mfmsr ();
313 msr |= MSR_DE;
314 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400315
Sergei Poselenov25147422008-05-08 14:17:08 +0200316 val = mfspr(DBCR0);
317 val |= 0x70000000;
318 mtspr(DBCR0,val);
Kumar Galaaff01532009-09-08 13:46:46 -0500319#else
320 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snydera85994c2011-11-21 13:20:32 -0800321
322 /* Attempt board-specific reset */
323 board_reset();
324
325 /* Next try asserting HRESET_REQ */
326 out_be32(&gur->rstcr, 0x2);
Kumar Galaaff01532009-09-08 13:46:46 -0500327 udelay(100);
328#endif
Sergei Poselenov25147422008-05-08 14:17:08 +0200329
wdenk9c53f402003-10-15 23:53:47 +0000330 return 1;
331}
332
333
334/*
335 * Get timebase clock frequency
336 */
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600337#ifndef CONFIG_SYS_FSL_TBCLK_DIV
338#define CONFIG_SYS_FSL_TBCLK_DIV 8
339#endif
Simon Glassa9dc0682019-12-28 10:44:59 -0700340__weak unsigned long get_tbclk(void)
wdenk9c53f402003-10-15 23:53:47 +0000341{
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600342 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
343
344 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk9c53f402003-10-15 23:53:47 +0000345}
346
347
348#if defined(CONFIG_WATCHDOG)
Boschung, Rainerf63c0dc12014-06-03 09:05:14 +0200349#define WATCHDOG_MASK (TCR_WP(63) | TCR_WRC(3) | TCR_WIE)
350void
351init_85xx_watchdog(void)
352{
353 mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WATCHDOG_MASK) |
354 TCR_WP(CONFIG_WATCHDOG_PRESC) | TCR_WRC(CONFIG_WATCHDOG_RC));
355}
356
wdenk9c53f402003-10-15 23:53:47 +0000357void
wdenk9c53f402003-10-15 23:53:47 +0000358reset_85xx_watchdog(void)
359{
360 /*
361 * Clear TSR(WIS) bit by writing 1
362 */
Mark Marshall10b13c92012-09-09 23:06:03 +0000363 mtspr(SPRN_TSR, TSR_WIS);
wdenk9c53f402003-10-15 23:53:47 +0000364}
Horst Kronstorferf70831e2013-03-13 10:14:05 +0000365
366void
367watchdog_reset(void)
368{
369 int re_enable = disable_interrupts();
370
371 reset_85xx_watchdog();
372 if (re_enable)
373 enable_interrupts();
374}
wdenk9c53f402003-10-15 23:53:47 +0000375#endif /* CONFIG_WATCHDOG */
376
Sergei Poselenovddc1a472008-06-06 15:42:40 +0200377/*
Andy Fleming6843a6e2008-10-30 16:51:33 -0500378 * Initializes on-chip MMC controllers.
379 * to override, implement board_mmc_init()
380 */
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900381int cpu_mmc_init(struct bd_info *bis)
Andy Fleming6843a6e2008-10-30 16:51:33 -0500382{
383#ifdef CONFIG_FSL_ESDHC
384 return fsl_esdhc_mmc_init(bis);
385#else
386 return 0;
387#endif
388}
Becky Bruceee888da2010-06-17 11:37:25 -0500389
390/*
391 * Print out the state of various machine registers.
Dipen Dudhat00c42942011-01-20 16:29:35 +0530392 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
393 * parameters for IFC and TLBs
Becky Bruceee888da2010-06-17 11:37:25 -0500394 */
Christophe Leroy31f6e932017-07-13 15:09:54 +0200395void print_reginfo(void)
Becky Bruceee888da2010-06-17 11:37:25 -0500396{
397 print_tlbcam();
Bin Mengc39f3402021-02-25 17:22:27 +0800398#ifdef CONFIG_FSL_LAW
Becky Bruceee888da2010-06-17 11:37:25 -0500399 print_laws();
Bin Mengc39f3402021-02-25 17:22:27 +0800400#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530401#if defined(CONFIG_FSL_LBC)
Becky Bruceee888da2010-06-17 11:37:25 -0500402 print_lbc_regs();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530403#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +0530404#ifdef CONFIG_FSL_IFC
405 print_ifc_regs();
406#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530407
Becky Bruceee888da2010-06-17 11:37:25 -0500408}
York Sunc41b7442010-09-28 15:20:33 -0700409
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600410/* Common ddr init for non-corenet fsl 85xx platforms */
411#ifndef CONFIG_FSL_CORENET
Scott Wood095b7122012-09-20 19:02:18 -0500412#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
413 !defined(CONFIG_SYS_INIT_L2_ADDR)
Simon Glassd35f3382017-04-06 12:47:05 -0600414int dram_init(void)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600415{
Alexander Grafc3468482014-04-11 17:09:45 +0200416#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD) || \
York Sun51e91e82016-11-18 12:29:51 -0800417 defined(CONFIG_ARCH_QEMU_E500)
Simon Glass39f90ba2017-03-31 08:40:25 -0600418 gd->ram_size = fsl_ddr_sdram_size();
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800419#else
Simon Glass39f90ba2017-03-31 08:40:25 -0600420 gd->ram_size = (phys_size_t)CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800421#endif
Simon Glass39f90ba2017-03-31 08:40:25 -0600422
423 return 0;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800424}
425#else /* CONFIG_SYS_RAMBOOT */
Simon Glassd35f3382017-04-06 12:47:05 -0600426int dram_init(void)
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800427{
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600428 phys_size_t dram_size = 0;
429
Becky Bruce4212f232010-12-17 17:17:58 -0600430#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600431 {
432 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
433 unsigned int x = 10;
434 unsigned int i;
435
436 /*
437 * Work around to stabilize DDR DLL
438 */
439 out_be32(&gur->ddrdllcr, 0x81000000);
440 asm("sync;isync;msync");
441 udelay(200);
442 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
443 setbits_be32(&gur->devdisr, 0x00010000);
444 for (i = 0; i < x; i++)
445 ;
446 clrbits_be32(&gur->devdisr, 0x00010000);
447 x++;
448 }
449 }
450#endif
451
York Sune73cc042011-06-07 09:42:16 +0800452#if defined(CONFIG_SPD_EEPROM) || \
453 defined(CONFIG_DDR_SPD) || \
454 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600455 dram_size = fsl_ddr_sdram();
456#else
457 dram_size = fixed_sdram();
458#endif
459 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
460 dram_size *= 0x100000;
461
462#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
463 /*
464 * Initialize and enable DDR ECC.
465 */
466 ddr_enable_ecc(dram_size);
467#endif
468
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530469#if defined(CONFIG_FSL_LBC)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600470 /* Some boards also have sdram on the lbc */
Becky Bruceb88d3d02010-12-17 17:17:57 -0600471 lbc_sdram_init();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530472#endif
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600473
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200474 debug("DDR: ");
Simon Glass39f90ba2017-03-31 08:40:25 -0600475 gd->ram_size = dram_size;
476
477 return 0;
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600478}
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800479#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600480#endif
481
York Sunc41b7442010-09-28 15:20:33 -0700482#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
483
484/* Board-specific functions defined in each board's ddr.c */
485void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
York Sun79a779b2014-08-01 15:51:00 -0700486 unsigned int ctrl_num, unsigned int dimm_slots_per_ctrl);
York Sunc41b7442010-09-28 15:20:33 -0700487void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
488 phys_addr_t *rpn);
489unsigned int
490 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
491
Becky Bruce69694472011-07-18 18:49:15 -0500492void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
493
York Sunc41b7442010-09-28 15:20:33 -0700494static void dump_spd_ddr_reg(void)
495{
496 int i, j, k, m;
497 u8 *p_8;
498 u32 *p_32;
York Sunfe845072016-12-28 08:43:45 -0800499 struct ccsr_ddr __iomem *ddr[CONFIG_SYS_NUM_DDR_CTLRS];
York Sunc41b7442010-09-28 15:20:33 -0700500 generic_spd_eeprom_t
York Sunfe845072016-12-28 08:43:45 -0800501 spd[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_DIMM_SLOTS_PER_CTLR];
York Sunc41b7442010-09-28 15:20:33 -0700502
York Sunfe845072016-12-28 08:43:45 -0800503 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sun79a779b2014-08-01 15:51:00 -0700504 fsl_ddr_get_spd(spd[i], i, CONFIG_DIMM_SLOTS_PER_CTLR);
York Sunc41b7442010-09-28 15:20:33 -0700505
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400506 puts("SPD data of all dimms (zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700507 puts("Byte (hex) ");
508 k = 1;
York Sunfe845072016-12-28 08:43:45 -0800509 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700510 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
511 printf("Dimm%d ", k++);
512 }
513 puts("\n");
514 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
515 m = 0;
516 printf("%3d (0x%02x) ", k, k);
York Sunfe845072016-12-28 08:43:45 -0800517 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700518 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
519 p_8 = (u8 *) &spd[i][j];
520 if (p_8[k]) {
521 printf("0x%02x ", p_8[k]);
522 m++;
523 } else
524 puts(" ");
525 }
526 }
527 if (m)
528 puts("\n");
529 else
530 puts("\r");
531 }
532
York Sunfe845072016-12-28 08:43:45 -0800533 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700534 switch (i) {
535 case 0:
York Sunf0626592013-09-30 09:22:09 -0700536 ddr[i] = (void *)CONFIG_SYS_FSL_DDR_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700537 break;
York Sunfe845072016-12-28 08:43:45 -0800538#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sunc41b7442010-09-28 15:20:33 -0700539 case 1:
York Sunf0626592013-09-30 09:22:09 -0700540 ddr[i] = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700541 break;
542#endif
York Sunfe845072016-12-28 08:43:45 -0800543#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sune8dc17b2012-08-17 08:22:39 +0000544 case 2:
York Sunf0626592013-09-30 09:22:09 -0700545 ddr[i] = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000546 break;
547#endif
York Sunfe845072016-12-28 08:43:45 -0800548#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sune8dc17b2012-08-17 08:22:39 +0000549 case 3:
York Sunf0626592013-09-30 09:22:09 -0700550 ddr[i] = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000551 break;
552#endif
York Sunc41b7442010-09-28 15:20:33 -0700553 default:
554 printf("%s unexpected controller number = %u\n",
555 __func__, i);
556 return;
557 }
558 }
559 printf("DDR registers dump for all controllers "
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400560 "(zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700561 puts("Offset (hex) ");
York Sunfe845072016-12-28 08:43:45 -0800562 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sunc41b7442010-09-28 15:20:33 -0700563 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
564 puts("\n");
York Suna21803d2013-11-18 10:29:32 -0800565 for (k = 0; k < sizeof(struct ccsr_ddr)/4; k++) {
York Sunc41b7442010-09-28 15:20:33 -0700566 m = 0;
567 printf("%6d (0x%04x)", k * 4, k * 4);
York Sunfe845072016-12-28 08:43:45 -0800568 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700569 p_32 = (u32 *) ddr[i];
570 if (p_32[k]) {
571 printf(" 0x%08x", p_32[k]);
572 m++;
573 } else
574 puts(" ");
575 }
576 if (m)
577 puts("\n");
578 else
579 puts("\r");
580 }
581 puts("\n");
582}
583
584/* invalid the TLBs for DDR and setup new ones to cover p_addr */
585static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
586{
587 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
588 unsigned long epn;
589 u32 tsize, valid, ptr;
York Sunc41b7442010-09-28 15:20:33 -0700590 int ddr_esel;
591
Becky Bruce69694472011-07-18 18:49:15 -0500592 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunc41b7442010-09-28 15:20:33 -0700593
594 /* Setup new tlb to cover the physical address */
595 setup_ddr_tlbs_phys(p_addr, size>>20);
596
597 ptr = vstart;
598 ddr_esel = find_tlb_idx((void *)ptr, 1);
599 if (ddr_esel != -1) {
600 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
601 } else {
602 printf("TLB error in function %s\n", __func__);
603 return -1;
604 }
605
606 return 0;
607}
608
609/*
610 * slide the testing window up to test another area
611 * for 32_bit system, the maximum testable memory is limited to
612 * CONFIG_MAX_MEM_MAPPED
613 */
614int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
615{
616 phys_addr_t test_cap, p_addr;
617 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
618
619#if !defined(CONFIG_PHYS_64BIT) || \
620 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
621 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
622 test_cap = p_size;
623#else
624 test_cap = gd->ram_size;
625#endif
626 p_addr = (*vstart) + (*size) + (*phys_offset);
627 if (p_addr < test_cap - 1) {
628 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
629 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
630 return -1;
631 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
632 *size = (u32) p_size;
633 printf("Testing 0x%08llx - 0x%08llx\n",
634 (u64)(*vstart) + (*phys_offset),
635 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
636 } else
637 return 1;
638
639 return 0;
640}
641
642/* initialization for testing area */
643int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
644{
645 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
646
647 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
648 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
649 *phys_offset = 0;
650
651#if !defined(CONFIG_PHYS_64BIT) || \
652 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
653 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
654 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
655 puts("Cannot test more than ");
656 print_size(CONFIG_MAX_MEM_MAPPED,
657 " without proper 36BIT support.\n");
658 }
659#endif
660 printf("Testing 0x%08llx - 0x%08llx\n",
661 (u64)(*vstart) + (*phys_offset),
662 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
663
664 return 0;
665}
666
667/* invalid TLBs for DDR and remap as normal after testing */
668int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
669{
670 unsigned long epn;
671 u32 tsize, valid, ptr;
672 phys_addr_t rpn = 0;
673 int ddr_esel;
674
675 /* disable the TLBs for this testing */
676 ptr = *vstart;
677
678 while (ptr < (*vstart) + (*size)) {
679 ddr_esel = find_tlb_idx((void *)ptr, 1);
680 if (ddr_esel != -1) {
681 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
682 disable_tlb(ddr_esel);
683 }
684 ptr += TSIZE_TO_BYTES(tsize);
685 }
686
687 puts("Remap DDR ");
688 setup_ddr_tlbs(gd->ram_size>>20);
689 puts("\n");
690
691 return 0;
692}
693
694void arch_memory_failure_handle(void)
695{
696 dump_spd_ddr_reg();
697}
698#endif