blob: 8de218666b59a32779b3e45f5717b541eed02684 [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>
Sergei Poselenovddc1a472008-06-06 15:42:40 +020023#include <asm/io.h>
Becky Bruceee888da2010-06-17 11:37:25 -050024#include <asm/mmu.h>
York Sun37562f62013-10-22 12:39:02 -070025#include <fsl_ifc.h>
Becky Bruceee888da2010-06-17 11:37:25 -050026#include <asm/fsl_law.h>
Becky Bruce5e35d8a2010-12-17 17:17:56 -060027#include <asm/fsl_lbc.h>
York Sunc41b7442010-09-28 15:20:33 -070028#include <post.h>
29#include <asm/processor.h>
York Sunf0626592013-09-30 09:22:09 -070030#include <fsl_ddr_sdram.h>
Christophe Leroy31f6e932017-07-13 15:09:54 +020031#include <asm/ppc.h>
wdenk9c53f402003-10-15 23:53:47 +000032
James Yang957b1912008-02-08 16:44:53 -060033DECLARE_GLOBAL_DATA_PTR;
34
Ira W. Snydera85994c2011-11-21 13:20:32 -080035/*
36 * Default board reset function
37 */
38static void
39__board_reset(void)
40{
41 /* Do nothing */
42}
43void board_reset(void) __attribute__((weak, alias("__board_reset")));
44
wdenk9c53f402003-10-15 23:53:47 +000045int checkcpu (void)
46{
wdenka445ddf2004-06-09 00:34:46 +000047 sys_info_t sysinfo;
wdenka445ddf2004-06-09 00:34:46 +000048 uint pvr, svr;
49 uint ver;
50 uint major, minor;
Kumar Gala8ddf00c2008-06-10 16:53:46 -050051 struct cpu_type *cpu;
Wolfgang Denk20591042008-10-19 02:35:49 +020052 char buf1[32], buf2[32];
York Sunc87e81e2013-06-25 11:37:43 -070053#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
54 ccsr_gur_t __iomem *gur =
55 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
56#endif
York Sun3b5179f2012-10-08 07:44:31 +000057
58 /*
59 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
60 * mode. Previous platform use ddr ratio to do the same. This
61 * information is only for display here.
62 */
Kumar Galadccd9e32009-03-19 02:46:19 -050063#ifdef CONFIG_FSL_CORENET
York Sun383f6f62012-10-08 07:44:16 +000064#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
York Sun3b5179f2012-10-08 07:44:31 +000065 u32 ddr_sync = 0; /* only async mode is supported */
York Sun383f6f62012-10-08 07:44:16 +000066#else
York Sun3b5179f2012-10-08 07:44:31 +000067 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080068 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
York Sun383f6f62012-10-08 07:44:16 +000069#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
York Sun3b5179f2012-10-08 07:44:31 +000070#else /* CONFIG_FSL_CORENET */
71#ifdef CONFIG_DDR_CLK_FREQ
72 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
73 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala54b68102008-05-29 01:21:24 -050074#else
75 u32 ddr_ratio = 0;
Kumar Galadccd9e32009-03-19 02:46:19 -050076#endif /* CONFIG_DDR_CLK_FREQ */
York Sun3b5179f2012-10-08 07:44:31 +000077#endif /* CONFIG_FSL_CORENET */
78
Timur Tabi47289422011-08-05 16:15:24 -050079 unsigned int i, core, nr_cores = cpu_numcores();
80 u32 mask = cpu_mask();
wdenk9c53f402003-10-15 23:53:47 +000081
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +053082#ifdef CONFIG_HETROGENOUS_CLUSTERS
83 unsigned int j, dsp_core, dsp_numcores = cpu_num_dspcores();
84 u32 dsp_mask = cpu_dsp_mask();
85#endif
86
wdenka445ddf2004-06-09 00:34:46 +000087 svr = get_svr();
wdenka445ddf2004-06-09 00:34:46 +000088 major = SVR_MAJ(svr);
89 minor = SVR_MIN(svr);
90
Shengzhou Liu26ed2d02014-04-25 16:31:22 +080091#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
92 if (SVR_SOC_VER(svr) == SVR_T4080) {
93 ccsr_rcpm_t *rcpm =
94 (void __iomem *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
95
96 setbits_be32(&gur->devdisr2, FSL_CORENET_DEVDISR2_DTSEC1_6 ||
97 FSL_CORENET_DEVDISR2_DTSEC1_9);
98 setbits_be32(&gur->devdisr3, FSL_CORENET_DEVDISR3_PCIE3);
99 setbits_be32(&gur->devdisr5, FSL_CORENET_DEVDISR5_DDR3);
100
101 /* It needs SW to disable core4~7 as HW design sake on T4080 */
102 for (i = 4; i < 8; i++)
103 cpu_disable(i);
104
105 /* request core4~7 into PH20 state, prior to entering PCL10
106 * state, all cores in cluster should be placed in PH20 state.
107 */
108 setbits_be32(&rcpm->pcph20setr, 0xf0);
109
110 /* put the 2nd cluster into PCL10 state */
111 setbits_be32(&rcpm->clpcl10setr, 1 << 1);
112 }
113#endif
114
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530115 if (cpu_numcores() > 1) {
Poonam Aggrwal36a68432009-09-03 19:42:40 +0530116#ifndef CONFIG_MP
117 puts("Unicore software on multiprocessor system!!\n"
118 "To enable mutlticore build define CONFIG_MP\n");
119#endif
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500120 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530121 printf("CPU%d: ", pic->whoami);
122 } else {
123 puts("CPU: ");
124 }
Andy Flemingf5740972008-02-06 01:19:40 -0600125
Simon Glassa8b57392012-12-13 20:48:48 +0000126 cpu = gd->arch.cpu;
Andy Flemingf5740972008-02-06 01:19:40 -0600127
Poonam Aggrwalda6e1ca2009-09-02 13:35:21 +0530128 puts(cpu->name);
129 if (IS_E_PROCESSOR(svr))
130 puts("E");
Andy Flemingf5740972008-02-06 01:19:40 -0600131
wdenka445ddf2004-06-09 00:34:46 +0000132 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +0000133
wdenk3f3262b2005-03-15 22:56:53 +0000134 pvr = get_pvr();
135 ver = PVR_VER(pvr);
136 major = PVR_MAJ(pvr);
137 minor = PVR_MIN(pvr);
138
139 printf("Core: ");
Kumar Galae222ed32011-07-25 09:28:39 -0500140 switch(ver) {
141 case PVR_VER_E500_V1:
142 case PVR_VER_E500_V2:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300143 puts("e500");
Kumar Galae222ed32011-07-25 09:28:39 -0500144 break;
145 case PVR_VER_E500MC:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300146 puts("e500mc");
Kumar Galae222ed32011-07-25 09:28:39 -0500147 break;
148 case PVR_VER_E5500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300149 puts("e5500");
Kumar Galae222ed32011-07-25 09:28:39 -0500150 break;
Kumar Galac1abf4a2012-08-17 08:20:23 +0000151 case PVR_VER_E6500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300152 puts("e6500");
Kumar Galac1abf4a2012-08-17 08:20:23 +0000153 break;
Kumar Galae222ed32011-07-25 09:28:39 -0500154 default:
Kumar Galabd2985c2009-10-21 13:23:54 -0500155 puts("Unknown");
Kumar Galae222ed32011-07-25 09:28:39 -0500156 break;
wdenk3f3262b2005-03-15 22:56:53 +0000157 }
Kumar Gala9f4a6892008-10-23 01:47:38 -0500158
wdenk3f3262b2005-03-15 22:56:53 +0000159 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
160
York Sun908412d2012-10-08 07:44:10 +0000161 if (nr_cores > CONFIG_MAX_CPUS) {
162 panic("\nUnexpected number of cores: %d, max is %d\n",
163 nr_cores, CONFIG_MAX_CPUS);
164 }
165
wdenka445ddf2004-06-09 00:34:46 +0000166 get_sys_info(&sysinfo);
167
vijay raid84fd502014-04-15 11:34:12 +0530168#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
169 if (sysinfo.diff_sysclk == 1)
170 puts("Single Source Clock Configuration\n");
171#endif
172
Kumar Galaf92794c2009-02-04 09:35:57 -0600173 puts("Clock Configuration:");
Timur Tabi47289422011-08-05 16:15:24 -0500174 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1f79d142009-02-19 00:41:08 +0100175 if (!(i & 3))
176 printf ("\n ");
Timur Tabi47289422011-08-05 16:15:24 -0500177 printf("CPU%d:%-4s MHz, ", core,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530178 strmhz(buf1, sysinfo.freq_processor[core]));
Kumar Galaf92794c2009-02-04 09:35:57 -0600179 }
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530180
181#ifdef CONFIG_HETROGENOUS_CLUSTERS
182 for_each_cpu(j, dsp_core, dsp_numcores, dsp_mask) {
183 if (!(j & 3))
184 printf("\n ");
185 printf("DSP CPU%d:%-4s MHz, ", j,
186 strmhz(buf1, sysinfo.freq_processor_dsp[dsp_core]));
187 }
188#endif
189
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530190 printf("\n CCB:%-4s MHz,", strmhz(buf1, sysinfo.freq_systembus));
191 printf("\n");
Kumar Gala54b68102008-05-29 01:21:24 -0500192
Kumar Galadccd9e32009-03-19 02:46:19 -0500193#ifdef CONFIG_FSL_CORENET
194 if (ddr_sync == 1) {
195 printf(" DDR:%-4s MHz (%s MT/s data rate) "
196 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530197 strmhz(buf1, sysinfo.freq_ddrbus/2),
198 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500199 } else {
200 printf(" DDR:%-4s MHz (%s MT/s data rate) "
201 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530202 strmhz(buf1, sysinfo.freq_ddrbus/2),
203 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500204 }
205#else
Kumar Gala07db1702007-12-07 04:59:26 -0600206 switch (ddr_ratio) {
207 case 0x0:
Wolfgang Denk20591042008-10-19 02:35:49 +0200208 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530209 strmhz(buf1, sysinfo.freq_ddrbus/2),
210 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600211 break;
212 case 0x7:
Kumar Galadccd9e32009-03-19 02:46:19 -0500213 printf(" DDR:%-4s MHz (%s MT/s data rate) "
214 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530215 strmhz(buf1, sysinfo.freq_ddrbus/2),
216 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600217 break;
218 default:
Kumar Galadccd9e32009-03-19 02:46:19 -0500219 printf(" DDR:%-4s MHz (%s MT/s data rate) "
220 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530221 strmhz(buf1, sysinfo.freq_ddrbus/2),
222 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600223 break;
224 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500225#endif
wdenka445ddf2004-06-09 00:34:46 +0000226
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530227#if defined(CONFIG_FSL_LBC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530228 if (sysinfo.freq_localbus > LCRR_CLKDIV) {
229 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500230 } else {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800231 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530232 sysinfo.freq_localbus);
Kumar Galadccd9e32009-03-19 02:46:19 -0500233 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530234#endif
wdenka445ddf2004-06-09 00:34:46 +0000235
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000236#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530237 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000238#endif
239
Andy Flemingf5740972008-02-06 01:19:40 -0600240#ifdef CONFIG_CPM2
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530241 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freq_systembus));
Andy Flemingf5740972008-02-06 01:19:40 -0600242#endif
wdenka445ddf2004-06-09 00:34:46 +0000243
Haiying Wang61414682009-05-20 12:30:29 -0400244#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530245 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freq_qe));
Haiying Wang61414682009-05-20 12:30:29 -0400246#endif
247
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530248#if defined(CONFIG_SYS_CPRI)
249 printf(" ");
250 printf("CPRI:%-4s MHz", strmhz(buf1, sysinfo.freq_cpri));
251#endif
252
253#if defined(CONFIG_SYS_MAPLE)
254 printf("\n ");
255 printf("MAPLE:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple));
256 printf("MAPLE-ULB:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple_ulb));
257 printf("MAPLE-eTVPE:%-4s MHz\n",
258 strmhz(buf1, sysinfo.freq_maple_etvpe));
259#endif
260
Kumar Galadccd9e32009-03-19 02:46:19 -0500261#ifdef CONFIG_SYS_DPAA_FMAN
262 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve3a9ed2f2010-06-17 00:08:29 -0500263 printf(" FMAN%d: %s MHz\n", i + 1,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530264 strmhz(buf1, sysinfo.freq_fman[i]));
Kumar Galadccd9e32009-03-19 02:46:19 -0500265 }
266#endif
267
Haiying Wang09d0aa92012-10-11 07:13:39 +0000268#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530269 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freq_qman));
Haiying Wang09d0aa92012-10-11 07:13:39 +0000270#endif
271
Kumar Galadccd9e32009-03-19 02:46:19 -0500272#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530273 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freq_pme));
Kumar Galadccd9e32009-03-19 02:46:19 -0500274#endif
275
Shruti Kanetkar81159362013-08-15 11:25:38 -0500276 puts("L1: D-cache 32 KiB enabled\n I-cache 32 KiB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000277
York Sunc87e81e2013-06-25 11:37:43 -0700278#ifdef CONFIG_FSL_CORENET
279 /* Display the RCW, so that no one gets confused as to what RCW
280 * we're actually using for this boot.
281 */
282 puts("Reset Configuration Word (RCW):");
283 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
284 u32 rcw = in_be32(&gur->rcwsr[i]);
285
286 if ((i % 4) == 0)
287 printf("\n %08x:", i * 4);
288 printf(" %08x", rcw);
289 }
290 puts("\n");
291#endif
292
wdenk9c53f402003-10-15 23:53:47 +0000293 return 0;
294}
295
296
297/* ------------------------------------------------------------------------- */
298
Simon Glassed38aef2020-05-10 11:40:03 -0600299int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000300{
Kumar Galaaff01532009-09-08 13:46:46 -0500301/* Everything after the first generation of PQ3 parts has RSTCR */
York Sunbf820c02016-11-16 11:18:31 -0800302#if defined(CONFIG_ARCH_MPC8540) || defined(CONFIG_ARCH_MPC8541) || \
York Sunb4046f42016-11-16 11:26:45 -0800303 defined(CONFIG_ARCH_MPC8555) || defined(CONFIG_ARCH_MPC8560)
Sergei Poselenov25147422008-05-08 14:17:08 +0200304 unsigned long val, msr;
305
wdenk9c53f402003-10-15 23:53:47 +0000306 /*
307 * Initiate hard reset in debug control register DBCR0
Kumar Galaaff01532009-09-08 13:46:46 -0500308 * Make sure MSR[DE] = 1. This only resets the core.
wdenk9c53f402003-10-15 23:53:47 +0000309 */
Sergei Poselenov25147422008-05-08 14:17:08 +0200310 msr = mfmsr ();
311 msr |= MSR_DE;
312 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400313
Sergei Poselenov25147422008-05-08 14:17:08 +0200314 val = mfspr(DBCR0);
315 val |= 0x70000000;
316 mtspr(DBCR0,val);
Kumar Galaaff01532009-09-08 13:46:46 -0500317#else
318 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snydera85994c2011-11-21 13:20:32 -0800319
320 /* Attempt board-specific reset */
321 board_reset();
322
323 /* Next try asserting HRESET_REQ */
324 out_be32(&gur->rstcr, 0x2);
Kumar Galaaff01532009-09-08 13:46:46 -0500325 udelay(100);
326#endif
Sergei Poselenov25147422008-05-08 14:17:08 +0200327
wdenk9c53f402003-10-15 23:53:47 +0000328 return 1;
329}
330
331
332/*
333 * Get timebase clock frequency
334 */
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600335#ifndef CONFIG_SYS_FSL_TBCLK_DIV
336#define CONFIG_SYS_FSL_TBCLK_DIV 8
337#endif
Simon Glassa9dc0682019-12-28 10:44:59 -0700338__weak unsigned long get_tbclk(void)
wdenk9c53f402003-10-15 23:53:47 +0000339{
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600340 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
341
342 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk9c53f402003-10-15 23:53:47 +0000343}
344
345
346#if defined(CONFIG_WATCHDOG)
Boschung, Rainerf63c0dc12014-06-03 09:05:14 +0200347#define WATCHDOG_MASK (TCR_WP(63) | TCR_WRC(3) | TCR_WIE)
348void
349init_85xx_watchdog(void)
350{
351 mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WATCHDOG_MASK) |
352 TCR_WP(CONFIG_WATCHDOG_PRESC) | TCR_WRC(CONFIG_WATCHDOG_RC));
353}
354
wdenk9c53f402003-10-15 23:53:47 +0000355void
wdenk9c53f402003-10-15 23:53:47 +0000356reset_85xx_watchdog(void)
357{
358 /*
359 * Clear TSR(WIS) bit by writing 1
360 */
Mark Marshall10b13c92012-09-09 23:06:03 +0000361 mtspr(SPRN_TSR, TSR_WIS);
wdenk9c53f402003-10-15 23:53:47 +0000362}
Horst Kronstorferf70831e2013-03-13 10:14:05 +0000363
364void
365watchdog_reset(void)
366{
367 int re_enable = disable_interrupts();
368
369 reset_85xx_watchdog();
370 if (re_enable)
371 enable_interrupts();
372}
wdenk9c53f402003-10-15 23:53:47 +0000373#endif /* CONFIG_WATCHDOG */
374
Sergei Poselenovddc1a472008-06-06 15:42:40 +0200375/*
Andy Fleming6843a6e2008-10-30 16:51:33 -0500376 * Initializes on-chip MMC controllers.
377 * to override, implement board_mmc_init()
378 */
379int cpu_mmc_init(bd_t *bis)
380{
381#ifdef CONFIG_FSL_ESDHC
382 return fsl_esdhc_mmc_init(bis);
383#else
384 return 0;
385#endif
386}
Becky Bruceee888da2010-06-17 11:37:25 -0500387
388/*
389 * Print out the state of various machine registers.
Dipen Dudhat00c42942011-01-20 16:29:35 +0530390 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
391 * parameters for IFC and TLBs
Becky Bruceee888da2010-06-17 11:37:25 -0500392 */
Christophe Leroy31f6e932017-07-13 15:09:54 +0200393void print_reginfo(void)
Becky Bruceee888da2010-06-17 11:37:25 -0500394{
395 print_tlbcam();
396 print_laws();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530397#if defined(CONFIG_FSL_LBC)
Becky Bruceee888da2010-06-17 11:37:25 -0500398 print_lbc_regs();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530399#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +0530400#ifdef CONFIG_FSL_IFC
401 print_ifc_regs();
402#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530403
Becky Bruceee888da2010-06-17 11:37:25 -0500404}
York Sunc41b7442010-09-28 15:20:33 -0700405
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600406/* Common ddr init for non-corenet fsl 85xx platforms */
407#ifndef CONFIG_FSL_CORENET
Scott Wood095b7122012-09-20 19:02:18 -0500408#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
409 !defined(CONFIG_SYS_INIT_L2_ADDR)
Simon Glassd35f3382017-04-06 12:47:05 -0600410int dram_init(void)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600411{
Alexander Grafc3468482014-04-11 17:09:45 +0200412#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD) || \
York Sun51e91e82016-11-18 12:29:51 -0800413 defined(CONFIG_ARCH_QEMU_E500)
Simon Glass39f90ba2017-03-31 08:40:25 -0600414 gd->ram_size = fsl_ddr_sdram_size();
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800415#else
Simon Glass39f90ba2017-03-31 08:40:25 -0600416 gd->ram_size = (phys_size_t)CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800417#endif
Simon Glass39f90ba2017-03-31 08:40:25 -0600418
419 return 0;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800420}
421#else /* CONFIG_SYS_RAMBOOT */
Simon Glassd35f3382017-04-06 12:47:05 -0600422int dram_init(void)
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800423{
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600424 phys_size_t dram_size = 0;
425
Becky Bruce4212f232010-12-17 17:17:58 -0600426#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600427 {
428 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
429 unsigned int x = 10;
430 unsigned int i;
431
432 /*
433 * Work around to stabilize DDR DLL
434 */
435 out_be32(&gur->ddrdllcr, 0x81000000);
436 asm("sync;isync;msync");
437 udelay(200);
438 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
439 setbits_be32(&gur->devdisr, 0x00010000);
440 for (i = 0; i < x; i++)
441 ;
442 clrbits_be32(&gur->devdisr, 0x00010000);
443 x++;
444 }
445 }
446#endif
447
York Sune73cc042011-06-07 09:42:16 +0800448#if defined(CONFIG_SPD_EEPROM) || \
449 defined(CONFIG_DDR_SPD) || \
450 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600451 dram_size = fsl_ddr_sdram();
452#else
453 dram_size = fixed_sdram();
454#endif
455 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
456 dram_size *= 0x100000;
457
458#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
459 /*
460 * Initialize and enable DDR ECC.
461 */
462 ddr_enable_ecc(dram_size);
463#endif
464
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530465#if defined(CONFIG_FSL_LBC)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600466 /* Some boards also have sdram on the lbc */
Becky Bruceb88d3d02010-12-17 17:17:57 -0600467 lbc_sdram_init();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530468#endif
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600469
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200470 debug("DDR: ");
Simon Glass39f90ba2017-03-31 08:40:25 -0600471 gd->ram_size = dram_size;
472
473 return 0;
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600474}
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800475#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600476#endif
477
York Sunc41b7442010-09-28 15:20:33 -0700478#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
479
480/* Board-specific functions defined in each board's ddr.c */
481void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
York Sun79a779b2014-08-01 15:51:00 -0700482 unsigned int ctrl_num, unsigned int dimm_slots_per_ctrl);
York Sunc41b7442010-09-28 15:20:33 -0700483void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
484 phys_addr_t *rpn);
485unsigned int
486 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
487
Becky Bruce69694472011-07-18 18:49:15 -0500488void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
489
York Sunc41b7442010-09-28 15:20:33 -0700490static void dump_spd_ddr_reg(void)
491{
492 int i, j, k, m;
493 u8 *p_8;
494 u32 *p_32;
York Sunfe845072016-12-28 08:43:45 -0800495 struct ccsr_ddr __iomem *ddr[CONFIG_SYS_NUM_DDR_CTLRS];
York Sunc41b7442010-09-28 15:20:33 -0700496 generic_spd_eeprom_t
York Sunfe845072016-12-28 08:43:45 -0800497 spd[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_DIMM_SLOTS_PER_CTLR];
York Sunc41b7442010-09-28 15:20:33 -0700498
York Sunfe845072016-12-28 08:43:45 -0800499 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sun79a779b2014-08-01 15:51:00 -0700500 fsl_ddr_get_spd(spd[i], i, CONFIG_DIMM_SLOTS_PER_CTLR);
York Sunc41b7442010-09-28 15:20:33 -0700501
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400502 puts("SPD data of all dimms (zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700503 puts("Byte (hex) ");
504 k = 1;
York Sunfe845072016-12-28 08:43:45 -0800505 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700506 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
507 printf("Dimm%d ", k++);
508 }
509 puts("\n");
510 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
511 m = 0;
512 printf("%3d (0x%02x) ", k, k);
York Sunfe845072016-12-28 08:43:45 -0800513 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700514 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
515 p_8 = (u8 *) &spd[i][j];
516 if (p_8[k]) {
517 printf("0x%02x ", p_8[k]);
518 m++;
519 } else
520 puts(" ");
521 }
522 }
523 if (m)
524 puts("\n");
525 else
526 puts("\r");
527 }
528
York Sunfe845072016-12-28 08:43:45 -0800529 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700530 switch (i) {
531 case 0:
York Sunf0626592013-09-30 09:22:09 -0700532 ddr[i] = (void *)CONFIG_SYS_FSL_DDR_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700533 break;
York Sunfe845072016-12-28 08:43:45 -0800534#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sunc41b7442010-09-28 15:20:33 -0700535 case 1:
York Sunf0626592013-09-30 09:22:09 -0700536 ddr[i] = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700537 break;
538#endif
York Sunfe845072016-12-28 08:43:45 -0800539#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sune8dc17b2012-08-17 08:22:39 +0000540 case 2:
York Sunf0626592013-09-30 09:22:09 -0700541 ddr[i] = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000542 break;
543#endif
York Sunfe845072016-12-28 08:43:45 -0800544#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sune8dc17b2012-08-17 08:22:39 +0000545 case 3:
York Sunf0626592013-09-30 09:22:09 -0700546 ddr[i] = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000547 break;
548#endif
York Sunc41b7442010-09-28 15:20:33 -0700549 default:
550 printf("%s unexpected controller number = %u\n",
551 __func__, i);
552 return;
553 }
554 }
555 printf("DDR registers dump for all controllers "
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400556 "(zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700557 puts("Offset (hex) ");
York Sunfe845072016-12-28 08:43:45 -0800558 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sunc41b7442010-09-28 15:20:33 -0700559 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
560 puts("\n");
York Suna21803d2013-11-18 10:29:32 -0800561 for (k = 0; k < sizeof(struct ccsr_ddr)/4; k++) {
York Sunc41b7442010-09-28 15:20:33 -0700562 m = 0;
563 printf("%6d (0x%04x)", k * 4, k * 4);
York Sunfe845072016-12-28 08:43:45 -0800564 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700565 p_32 = (u32 *) ddr[i];
566 if (p_32[k]) {
567 printf(" 0x%08x", p_32[k]);
568 m++;
569 } else
570 puts(" ");
571 }
572 if (m)
573 puts("\n");
574 else
575 puts("\r");
576 }
577 puts("\n");
578}
579
580/* invalid the TLBs for DDR and setup new ones to cover p_addr */
581static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
582{
583 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
584 unsigned long epn;
585 u32 tsize, valid, ptr;
York Sunc41b7442010-09-28 15:20:33 -0700586 int ddr_esel;
587
Becky Bruce69694472011-07-18 18:49:15 -0500588 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunc41b7442010-09-28 15:20:33 -0700589
590 /* Setup new tlb to cover the physical address */
591 setup_ddr_tlbs_phys(p_addr, size>>20);
592
593 ptr = vstart;
594 ddr_esel = find_tlb_idx((void *)ptr, 1);
595 if (ddr_esel != -1) {
596 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
597 } else {
598 printf("TLB error in function %s\n", __func__);
599 return -1;
600 }
601
602 return 0;
603}
604
605/*
606 * slide the testing window up to test another area
607 * for 32_bit system, the maximum testable memory is limited to
608 * CONFIG_MAX_MEM_MAPPED
609 */
610int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
611{
612 phys_addr_t test_cap, p_addr;
613 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
614
615#if !defined(CONFIG_PHYS_64BIT) || \
616 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
617 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
618 test_cap = p_size;
619#else
620 test_cap = gd->ram_size;
621#endif
622 p_addr = (*vstart) + (*size) + (*phys_offset);
623 if (p_addr < test_cap - 1) {
624 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
625 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
626 return -1;
627 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
628 *size = (u32) p_size;
629 printf("Testing 0x%08llx - 0x%08llx\n",
630 (u64)(*vstart) + (*phys_offset),
631 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
632 } else
633 return 1;
634
635 return 0;
636}
637
638/* initialization for testing area */
639int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
640{
641 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
642
643 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
644 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
645 *phys_offset = 0;
646
647#if !defined(CONFIG_PHYS_64BIT) || \
648 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
649 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
650 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
651 puts("Cannot test more than ");
652 print_size(CONFIG_MAX_MEM_MAPPED,
653 " without proper 36BIT support.\n");
654 }
655#endif
656 printf("Testing 0x%08llx - 0x%08llx\n",
657 (u64)(*vstart) + (*phys_offset),
658 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
659
660 return 0;
661}
662
663/* invalid TLBs for DDR and remap as normal after testing */
664int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
665{
666 unsigned long epn;
667 u32 tsize, valid, ptr;
668 phys_addr_t rpn = 0;
669 int ddr_esel;
670
671 /* disable the TLBs for this testing */
672 ptr = *vstart;
673
674 while (ptr < (*vstart) + (*size)) {
675 ddr_esel = find_tlb_idx((void *)ptr, 1);
676 if (ddr_esel != -1) {
677 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
678 disable_tlb(ddr_esel);
679 }
680 ptr += TSIZE_TO_BYTES(tsize);
681 }
682
683 puts("Remap DDR ");
684 setup_ddr_tlbs(gd->ram_size>>20);
685 puts("\n");
686
687 return 0;
688}
689
690void arch_memory_failure_handle(void)
691{
692 dump_spd_ddr_reg();
693}
694#endif