blob: 9bd573dbd6f298fdc103c682bef05accf514b659 [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>
Simon Glassdbd79542020-05-10 11:40:11 -060032#include <linux/delay.h>
wdenk9c53f402003-10-15 23:53:47 +000033
James Yang957b1912008-02-08 16:44:53 -060034DECLARE_GLOBAL_DATA_PTR;
35
Ira W. Snydera85994c2011-11-21 13:20:32 -080036/*
37 * Default board reset function
38 */
39static void
40__board_reset(void)
41{
42 /* Do nothing */
43}
44void board_reset(void) __attribute__((weak, alias("__board_reset")));
45
wdenk9c53f402003-10-15 23:53:47 +000046int checkcpu (void)
47{
wdenka445ddf2004-06-09 00:34:46 +000048 sys_info_t sysinfo;
wdenka445ddf2004-06-09 00:34:46 +000049 uint pvr, svr;
50 uint ver;
51 uint major, minor;
Kumar Gala8ddf00c2008-06-10 16:53:46 -050052 struct cpu_type *cpu;
Wolfgang Denk20591042008-10-19 02:35:49 +020053 char buf1[32], buf2[32];
York Sunc87e81e2013-06-25 11:37:43 -070054#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
55 ccsr_gur_t __iomem *gur =
56 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
57#endif
York Sun3b5179f2012-10-08 07:44:31 +000058
59 /*
60 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
61 * mode. Previous platform use ddr ratio to do the same. This
62 * information is only for display here.
63 */
Kumar Galadccd9e32009-03-19 02:46:19 -050064#ifdef CONFIG_FSL_CORENET
York Sun383f6f62012-10-08 07:44:16 +000065#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
York Sun3b5179f2012-10-08 07:44:31 +000066 u32 ddr_sync = 0; /* only async mode is supported */
York Sun383f6f62012-10-08 07:44:16 +000067#else
York Sun3b5179f2012-10-08 07:44:31 +000068 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080069 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
York Sun383f6f62012-10-08 07:44:16 +000070#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
York Sun3b5179f2012-10-08 07:44:31 +000071#else /* CONFIG_FSL_CORENET */
72#ifdef CONFIG_DDR_CLK_FREQ
73 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
74 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala54b68102008-05-29 01:21:24 -050075#else
76 u32 ddr_ratio = 0;
Kumar Galadccd9e32009-03-19 02:46:19 -050077#endif /* CONFIG_DDR_CLK_FREQ */
York Sun3b5179f2012-10-08 07:44:31 +000078#endif /* CONFIG_FSL_CORENET */
79
Timur Tabi47289422011-08-05 16:15:24 -050080 unsigned int i, core, nr_cores = cpu_numcores();
81 u32 mask = cpu_mask();
wdenk9c53f402003-10-15 23:53:47 +000082
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +053083#ifdef CONFIG_HETROGENOUS_CLUSTERS
84 unsigned int j, dsp_core, dsp_numcores = cpu_num_dspcores();
85 u32 dsp_mask = cpu_dsp_mask();
86#endif
87
wdenka445ddf2004-06-09 00:34:46 +000088 svr = get_svr();
wdenka445ddf2004-06-09 00:34:46 +000089 major = SVR_MAJ(svr);
90 minor = SVR_MIN(svr);
91
Shengzhou Liu26ed2d02014-04-25 16:31:22 +080092#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
93 if (SVR_SOC_VER(svr) == SVR_T4080) {
94 ccsr_rcpm_t *rcpm =
95 (void __iomem *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
96
97 setbits_be32(&gur->devdisr2, FSL_CORENET_DEVDISR2_DTSEC1_6 ||
98 FSL_CORENET_DEVDISR2_DTSEC1_9);
99 setbits_be32(&gur->devdisr3, FSL_CORENET_DEVDISR3_PCIE3);
100 setbits_be32(&gur->devdisr5, FSL_CORENET_DEVDISR5_DDR3);
101
102 /* It needs SW to disable core4~7 as HW design sake on T4080 */
103 for (i = 4; i < 8; i++)
104 cpu_disable(i);
105
106 /* request core4~7 into PH20 state, prior to entering PCL10
107 * state, all cores in cluster should be placed in PH20 state.
108 */
109 setbits_be32(&rcpm->pcph20setr, 0xf0);
110
111 /* put the 2nd cluster into PCL10 state */
112 setbits_be32(&rcpm->clpcl10setr, 1 << 1);
113 }
114#endif
115
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530116 if (cpu_numcores() > 1) {
Poonam Aggrwal36a68432009-09-03 19:42:40 +0530117#ifndef CONFIG_MP
118 puts("Unicore software on multiprocessor system!!\n"
119 "To enable mutlticore build define CONFIG_MP\n");
120#endif
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500121 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530122 printf("CPU%d: ", pic->whoami);
123 } else {
124 puts("CPU: ");
125 }
Andy Flemingf5740972008-02-06 01:19:40 -0600126
Simon Glassa8b57392012-12-13 20:48:48 +0000127 cpu = gd->arch.cpu;
Andy Flemingf5740972008-02-06 01:19:40 -0600128
Poonam Aggrwalda6e1ca2009-09-02 13:35:21 +0530129 puts(cpu->name);
130 if (IS_E_PROCESSOR(svr))
131 puts("E");
Andy Flemingf5740972008-02-06 01:19:40 -0600132
wdenka445ddf2004-06-09 00:34:46 +0000133 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +0000134
wdenk3f3262b2005-03-15 22:56:53 +0000135 pvr = get_pvr();
136 ver = PVR_VER(pvr);
137 major = PVR_MAJ(pvr);
138 minor = PVR_MIN(pvr);
139
140 printf("Core: ");
Kumar Galae222ed32011-07-25 09:28:39 -0500141 switch(ver) {
142 case PVR_VER_E500_V1:
143 case PVR_VER_E500_V2:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300144 puts("e500");
Kumar Galae222ed32011-07-25 09:28:39 -0500145 break;
146 case PVR_VER_E500MC:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300147 puts("e500mc");
Kumar Galae222ed32011-07-25 09:28:39 -0500148 break;
149 case PVR_VER_E5500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300150 puts("e5500");
Kumar Galae222ed32011-07-25 09:28:39 -0500151 break;
Kumar Galac1abf4a2012-08-17 08:20:23 +0000152 case PVR_VER_E6500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300153 puts("e6500");
Kumar Galac1abf4a2012-08-17 08:20:23 +0000154 break;
Kumar Galae222ed32011-07-25 09:28:39 -0500155 default:
Kumar Galabd2985c2009-10-21 13:23:54 -0500156 puts("Unknown");
Kumar Galae222ed32011-07-25 09:28:39 -0500157 break;
wdenk3f3262b2005-03-15 22:56:53 +0000158 }
Kumar Gala9f4a6892008-10-23 01:47:38 -0500159
wdenk3f3262b2005-03-15 22:56:53 +0000160 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
161
York Sun908412d2012-10-08 07:44:10 +0000162 if (nr_cores > CONFIG_MAX_CPUS) {
163 panic("\nUnexpected number of cores: %d, max is %d\n",
164 nr_cores, CONFIG_MAX_CPUS);
165 }
166
wdenka445ddf2004-06-09 00:34:46 +0000167 get_sys_info(&sysinfo);
168
vijay raid84fd502014-04-15 11:34:12 +0530169#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
170 if (sysinfo.diff_sysclk == 1)
171 puts("Single Source Clock Configuration\n");
172#endif
173
Kumar Galaf92794c2009-02-04 09:35:57 -0600174 puts("Clock Configuration:");
Timur Tabi47289422011-08-05 16:15:24 -0500175 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1f79d142009-02-19 00:41:08 +0100176 if (!(i & 3))
177 printf ("\n ");
Timur Tabi47289422011-08-05 16:15:24 -0500178 printf("CPU%d:%-4s MHz, ", core,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530179 strmhz(buf1, sysinfo.freq_processor[core]));
Kumar Galaf92794c2009-02-04 09:35:57 -0600180 }
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530181
182#ifdef CONFIG_HETROGENOUS_CLUSTERS
183 for_each_cpu(j, dsp_core, dsp_numcores, dsp_mask) {
184 if (!(j & 3))
185 printf("\n ");
186 printf("DSP CPU%d:%-4s MHz, ", j,
187 strmhz(buf1, sysinfo.freq_processor_dsp[dsp_core]));
188 }
189#endif
190
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530191 printf("\n CCB:%-4s MHz,", strmhz(buf1, sysinfo.freq_systembus));
192 printf("\n");
Kumar Gala54b68102008-05-29 01:21:24 -0500193
Kumar Galadccd9e32009-03-19 02:46:19 -0500194#ifdef CONFIG_FSL_CORENET
195 if (ddr_sync == 1) {
196 printf(" DDR:%-4s MHz (%s MT/s data rate) "
197 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530198 strmhz(buf1, sysinfo.freq_ddrbus/2),
199 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500200 } else {
201 printf(" DDR:%-4s MHz (%s MT/s data rate) "
202 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530203 strmhz(buf1, sysinfo.freq_ddrbus/2),
204 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500205 }
206#else
Kumar Gala07db1702007-12-07 04:59:26 -0600207 switch (ddr_ratio) {
208 case 0x0:
Wolfgang Denk20591042008-10-19 02:35:49 +0200209 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530210 strmhz(buf1, sysinfo.freq_ddrbus/2),
211 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600212 break;
213 case 0x7:
Kumar Galadccd9e32009-03-19 02:46:19 -0500214 printf(" DDR:%-4s MHz (%s MT/s data rate) "
215 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530216 strmhz(buf1, sysinfo.freq_ddrbus/2),
217 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600218 break;
219 default:
Kumar Galadccd9e32009-03-19 02:46:19 -0500220 printf(" DDR:%-4s MHz (%s MT/s data rate) "
221 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530222 strmhz(buf1, sysinfo.freq_ddrbus/2),
223 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600224 break;
225 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500226#endif
wdenka445ddf2004-06-09 00:34:46 +0000227
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530228#if defined(CONFIG_FSL_LBC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530229 if (sysinfo.freq_localbus > LCRR_CLKDIV) {
230 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500231 } else {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800232 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530233 sysinfo.freq_localbus);
Kumar Galadccd9e32009-03-19 02:46:19 -0500234 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530235#endif
wdenka445ddf2004-06-09 00:34:46 +0000236
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000237#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530238 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000239#endif
240
Andy Flemingf5740972008-02-06 01:19:40 -0600241#ifdef CONFIG_CPM2
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530242 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freq_systembus));
Andy Flemingf5740972008-02-06 01:19:40 -0600243#endif
wdenka445ddf2004-06-09 00:34:46 +0000244
Haiying Wang61414682009-05-20 12:30:29 -0400245#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530246 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freq_qe));
Haiying Wang61414682009-05-20 12:30:29 -0400247#endif
248
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530249#if defined(CONFIG_SYS_CPRI)
250 printf(" ");
251 printf("CPRI:%-4s MHz", strmhz(buf1, sysinfo.freq_cpri));
252#endif
253
254#if defined(CONFIG_SYS_MAPLE)
255 printf("\n ");
256 printf("MAPLE:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple));
257 printf("MAPLE-ULB:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple_ulb));
258 printf("MAPLE-eTVPE:%-4s MHz\n",
259 strmhz(buf1, sysinfo.freq_maple_etvpe));
260#endif
261
Kumar Galadccd9e32009-03-19 02:46:19 -0500262#ifdef CONFIG_SYS_DPAA_FMAN
263 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve3a9ed2f2010-06-17 00:08:29 -0500264 printf(" FMAN%d: %s MHz\n", i + 1,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530265 strmhz(buf1, sysinfo.freq_fman[i]));
Kumar Galadccd9e32009-03-19 02:46:19 -0500266 }
267#endif
268
Haiying Wang09d0aa92012-10-11 07:13:39 +0000269#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530270 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freq_qman));
Haiying Wang09d0aa92012-10-11 07:13:39 +0000271#endif
272
Kumar Galadccd9e32009-03-19 02:46:19 -0500273#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530274 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freq_pme));
Kumar Galadccd9e32009-03-19 02:46:19 -0500275#endif
276
Shruti Kanetkar81159362013-08-15 11:25:38 -0500277 puts("L1: D-cache 32 KiB enabled\n I-cache 32 KiB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000278
York Sunc87e81e2013-06-25 11:37:43 -0700279#ifdef CONFIG_FSL_CORENET
280 /* Display the RCW, so that no one gets confused as to what RCW
281 * we're actually using for this boot.
282 */
283 puts("Reset Configuration Word (RCW):");
284 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
285 u32 rcw = in_be32(&gur->rcwsr[i]);
286
287 if ((i % 4) == 0)
288 printf("\n %08x:", i * 4);
289 printf(" %08x", rcw);
290 }
291 puts("\n");
292#endif
293
wdenk9c53f402003-10-15 23:53:47 +0000294 return 0;
295}
296
297
298/* ------------------------------------------------------------------------- */
299
Simon Glassed38aef2020-05-10 11:40:03 -0600300int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000301{
Kumar Galaaff01532009-09-08 13:46:46 -0500302/* Everything after the first generation of PQ3 parts has RSTCR */
York Sunbf820c02016-11-16 11:18:31 -0800303#if defined(CONFIG_ARCH_MPC8540) || defined(CONFIG_ARCH_MPC8541) || \
York Sunb4046f42016-11-16 11:26:45 -0800304 defined(CONFIG_ARCH_MPC8555) || defined(CONFIG_ARCH_MPC8560)
Sergei Poselenov25147422008-05-08 14:17:08 +0200305 unsigned long val, msr;
306
wdenk9c53f402003-10-15 23:53:47 +0000307 /*
308 * Initiate hard reset in debug control register DBCR0
Kumar Galaaff01532009-09-08 13:46:46 -0500309 * Make sure MSR[DE] = 1. This only resets the core.
wdenk9c53f402003-10-15 23:53:47 +0000310 */
Sergei Poselenov25147422008-05-08 14:17:08 +0200311 msr = mfmsr ();
312 msr |= MSR_DE;
313 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400314
Sergei Poselenov25147422008-05-08 14:17:08 +0200315 val = mfspr(DBCR0);
316 val |= 0x70000000;
317 mtspr(DBCR0,val);
Kumar Galaaff01532009-09-08 13:46:46 -0500318#else
319 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snydera85994c2011-11-21 13:20:32 -0800320
321 /* Attempt board-specific reset */
322 board_reset();
323
324 /* Next try asserting HRESET_REQ */
325 out_be32(&gur->rstcr, 0x2);
Kumar Galaaff01532009-09-08 13:46:46 -0500326 udelay(100);
327#endif
Sergei Poselenov25147422008-05-08 14:17:08 +0200328
wdenk9c53f402003-10-15 23:53:47 +0000329 return 1;
330}
331
332
333/*
334 * Get timebase clock frequency
335 */
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600336#ifndef CONFIG_SYS_FSL_TBCLK_DIV
337#define CONFIG_SYS_FSL_TBCLK_DIV 8
338#endif
Simon Glassa9dc0682019-12-28 10:44:59 -0700339__weak unsigned long get_tbclk(void)
wdenk9c53f402003-10-15 23:53:47 +0000340{
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600341 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
342
343 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk9c53f402003-10-15 23:53:47 +0000344}
345
346
347#if defined(CONFIG_WATCHDOG)
Boschung, Rainerf63c0dc12014-06-03 09:05:14 +0200348#define WATCHDOG_MASK (TCR_WP(63) | TCR_WRC(3) | TCR_WIE)
349void
350init_85xx_watchdog(void)
351{
352 mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WATCHDOG_MASK) |
353 TCR_WP(CONFIG_WATCHDOG_PRESC) | TCR_WRC(CONFIG_WATCHDOG_RC));
354}
355
wdenk9c53f402003-10-15 23:53:47 +0000356void
wdenk9c53f402003-10-15 23:53:47 +0000357reset_85xx_watchdog(void)
358{
359 /*
360 * Clear TSR(WIS) bit by writing 1
361 */
Mark Marshall10b13c92012-09-09 23:06:03 +0000362 mtspr(SPRN_TSR, TSR_WIS);
wdenk9c53f402003-10-15 23:53:47 +0000363}
Horst Kronstorferf70831e2013-03-13 10:14:05 +0000364
365void
366watchdog_reset(void)
367{
368 int re_enable = disable_interrupts();
369
370 reset_85xx_watchdog();
371 if (re_enable)
372 enable_interrupts();
373}
wdenk9c53f402003-10-15 23:53:47 +0000374#endif /* CONFIG_WATCHDOG */
375
Sergei Poselenovddc1a472008-06-06 15:42:40 +0200376/*
Andy Fleming6843a6e2008-10-30 16:51:33 -0500377 * Initializes on-chip MMC controllers.
378 * to override, implement board_mmc_init()
379 */
380int cpu_mmc_init(bd_t *bis)
381{
382#ifdef CONFIG_FSL_ESDHC
383 return fsl_esdhc_mmc_init(bis);
384#else
385 return 0;
386#endif
387}
Becky Bruceee888da2010-06-17 11:37:25 -0500388
389/*
390 * Print out the state of various machine registers.
Dipen Dudhat00c42942011-01-20 16:29:35 +0530391 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
392 * parameters for IFC and TLBs
Becky Bruceee888da2010-06-17 11:37:25 -0500393 */
Christophe Leroy31f6e932017-07-13 15:09:54 +0200394void print_reginfo(void)
Becky Bruceee888da2010-06-17 11:37:25 -0500395{
396 print_tlbcam();
397 print_laws();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530398#if defined(CONFIG_FSL_LBC)
Becky Bruceee888da2010-06-17 11:37:25 -0500399 print_lbc_regs();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530400#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +0530401#ifdef CONFIG_FSL_IFC
402 print_ifc_regs();
403#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530404
Becky Bruceee888da2010-06-17 11:37:25 -0500405}
York Sunc41b7442010-09-28 15:20:33 -0700406
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600407/* Common ddr init for non-corenet fsl 85xx platforms */
408#ifndef CONFIG_FSL_CORENET
Scott Wood095b7122012-09-20 19:02:18 -0500409#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
410 !defined(CONFIG_SYS_INIT_L2_ADDR)
Simon Glassd35f3382017-04-06 12:47:05 -0600411int dram_init(void)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600412{
Alexander Grafc3468482014-04-11 17:09:45 +0200413#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD) || \
York Sun51e91e82016-11-18 12:29:51 -0800414 defined(CONFIG_ARCH_QEMU_E500)
Simon Glass39f90ba2017-03-31 08:40:25 -0600415 gd->ram_size = fsl_ddr_sdram_size();
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800416#else
Simon Glass39f90ba2017-03-31 08:40:25 -0600417 gd->ram_size = (phys_size_t)CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800418#endif
Simon Glass39f90ba2017-03-31 08:40:25 -0600419
420 return 0;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800421}
422#else /* CONFIG_SYS_RAMBOOT */
Simon Glassd35f3382017-04-06 12:47:05 -0600423int dram_init(void)
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800424{
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600425 phys_size_t dram_size = 0;
426
Becky Bruce4212f232010-12-17 17:17:58 -0600427#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600428 {
429 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
430 unsigned int x = 10;
431 unsigned int i;
432
433 /*
434 * Work around to stabilize DDR DLL
435 */
436 out_be32(&gur->ddrdllcr, 0x81000000);
437 asm("sync;isync;msync");
438 udelay(200);
439 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
440 setbits_be32(&gur->devdisr, 0x00010000);
441 for (i = 0; i < x; i++)
442 ;
443 clrbits_be32(&gur->devdisr, 0x00010000);
444 x++;
445 }
446 }
447#endif
448
York Sune73cc042011-06-07 09:42:16 +0800449#if defined(CONFIG_SPD_EEPROM) || \
450 defined(CONFIG_DDR_SPD) || \
451 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600452 dram_size = fsl_ddr_sdram();
453#else
454 dram_size = fixed_sdram();
455#endif
456 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
457 dram_size *= 0x100000;
458
459#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
460 /*
461 * Initialize and enable DDR ECC.
462 */
463 ddr_enable_ecc(dram_size);
464#endif
465
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530466#if defined(CONFIG_FSL_LBC)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600467 /* Some boards also have sdram on the lbc */
Becky Bruceb88d3d02010-12-17 17:17:57 -0600468 lbc_sdram_init();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530469#endif
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600470
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200471 debug("DDR: ");
Simon Glass39f90ba2017-03-31 08:40:25 -0600472 gd->ram_size = dram_size;
473
474 return 0;
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600475}
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800476#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600477#endif
478
York Sunc41b7442010-09-28 15:20:33 -0700479#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
480
481/* Board-specific functions defined in each board's ddr.c */
482void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
York Sun79a779b2014-08-01 15:51:00 -0700483 unsigned int ctrl_num, unsigned int dimm_slots_per_ctrl);
York Sunc41b7442010-09-28 15:20:33 -0700484void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
485 phys_addr_t *rpn);
486unsigned int
487 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
488
Becky Bruce69694472011-07-18 18:49:15 -0500489void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
490
York Sunc41b7442010-09-28 15:20:33 -0700491static void dump_spd_ddr_reg(void)
492{
493 int i, j, k, m;
494 u8 *p_8;
495 u32 *p_32;
York Sunfe845072016-12-28 08:43:45 -0800496 struct ccsr_ddr __iomem *ddr[CONFIG_SYS_NUM_DDR_CTLRS];
York Sunc41b7442010-09-28 15:20:33 -0700497 generic_spd_eeprom_t
York Sunfe845072016-12-28 08:43:45 -0800498 spd[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_DIMM_SLOTS_PER_CTLR];
York Sunc41b7442010-09-28 15:20:33 -0700499
York Sunfe845072016-12-28 08:43:45 -0800500 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sun79a779b2014-08-01 15:51:00 -0700501 fsl_ddr_get_spd(spd[i], i, CONFIG_DIMM_SLOTS_PER_CTLR);
York Sunc41b7442010-09-28 15:20:33 -0700502
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400503 puts("SPD data of all dimms (zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700504 puts("Byte (hex) ");
505 k = 1;
York Sunfe845072016-12-28 08:43:45 -0800506 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700507 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
508 printf("Dimm%d ", k++);
509 }
510 puts("\n");
511 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
512 m = 0;
513 printf("%3d (0x%02x) ", k, k);
York Sunfe845072016-12-28 08:43:45 -0800514 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700515 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
516 p_8 = (u8 *) &spd[i][j];
517 if (p_8[k]) {
518 printf("0x%02x ", p_8[k]);
519 m++;
520 } else
521 puts(" ");
522 }
523 }
524 if (m)
525 puts("\n");
526 else
527 puts("\r");
528 }
529
York Sunfe845072016-12-28 08:43:45 -0800530 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700531 switch (i) {
532 case 0:
York Sunf0626592013-09-30 09:22:09 -0700533 ddr[i] = (void *)CONFIG_SYS_FSL_DDR_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700534 break;
York Sunfe845072016-12-28 08:43:45 -0800535#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sunc41b7442010-09-28 15:20:33 -0700536 case 1:
York Sunf0626592013-09-30 09:22:09 -0700537 ddr[i] = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700538 break;
539#endif
York Sunfe845072016-12-28 08:43:45 -0800540#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sune8dc17b2012-08-17 08:22:39 +0000541 case 2:
York Sunf0626592013-09-30 09:22:09 -0700542 ddr[i] = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000543 break;
544#endif
York Sunfe845072016-12-28 08:43:45 -0800545#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sune8dc17b2012-08-17 08:22:39 +0000546 case 3:
York Sunf0626592013-09-30 09:22:09 -0700547 ddr[i] = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000548 break;
549#endif
York Sunc41b7442010-09-28 15:20:33 -0700550 default:
551 printf("%s unexpected controller number = %u\n",
552 __func__, i);
553 return;
554 }
555 }
556 printf("DDR registers dump for all controllers "
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400557 "(zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700558 puts("Offset (hex) ");
York Sunfe845072016-12-28 08:43:45 -0800559 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sunc41b7442010-09-28 15:20:33 -0700560 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
561 puts("\n");
York Suna21803d2013-11-18 10:29:32 -0800562 for (k = 0; k < sizeof(struct ccsr_ddr)/4; k++) {
York Sunc41b7442010-09-28 15:20:33 -0700563 m = 0;
564 printf("%6d (0x%04x)", k * 4, k * 4);
York Sunfe845072016-12-28 08:43:45 -0800565 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700566 p_32 = (u32 *) ddr[i];
567 if (p_32[k]) {
568 printf(" 0x%08x", p_32[k]);
569 m++;
570 } else
571 puts(" ");
572 }
573 if (m)
574 puts("\n");
575 else
576 puts("\r");
577 }
578 puts("\n");
579}
580
581/* invalid the TLBs for DDR and setup new ones to cover p_addr */
582static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
583{
584 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
585 unsigned long epn;
586 u32 tsize, valid, ptr;
York Sunc41b7442010-09-28 15:20:33 -0700587 int ddr_esel;
588
Becky Bruce69694472011-07-18 18:49:15 -0500589 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunc41b7442010-09-28 15:20:33 -0700590
591 /* Setup new tlb to cover the physical address */
592 setup_ddr_tlbs_phys(p_addr, size>>20);
593
594 ptr = vstart;
595 ddr_esel = find_tlb_idx((void *)ptr, 1);
596 if (ddr_esel != -1) {
597 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
598 } else {
599 printf("TLB error in function %s\n", __func__);
600 return -1;
601 }
602
603 return 0;
604}
605
606/*
607 * slide the testing window up to test another area
608 * for 32_bit system, the maximum testable memory is limited to
609 * CONFIG_MAX_MEM_MAPPED
610 */
611int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
612{
613 phys_addr_t test_cap, p_addr;
614 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
615
616#if !defined(CONFIG_PHYS_64BIT) || \
617 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
618 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
619 test_cap = p_size;
620#else
621 test_cap = gd->ram_size;
622#endif
623 p_addr = (*vstart) + (*size) + (*phys_offset);
624 if (p_addr < test_cap - 1) {
625 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
626 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
627 return -1;
628 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
629 *size = (u32) p_size;
630 printf("Testing 0x%08llx - 0x%08llx\n",
631 (u64)(*vstart) + (*phys_offset),
632 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
633 } else
634 return 1;
635
636 return 0;
637}
638
639/* initialization for testing area */
640int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
641{
642 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
643
644 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
645 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
646 *phys_offset = 0;
647
648#if !defined(CONFIG_PHYS_64BIT) || \
649 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
650 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
651 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
652 puts("Cannot test more than ");
653 print_size(CONFIG_MAX_MEM_MAPPED,
654 " without proper 36BIT support.\n");
655 }
656#endif
657 printf("Testing 0x%08llx - 0x%08llx\n",
658 (u64)(*vstart) + (*phys_offset),
659 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
660
661 return 0;
662}
663
664/* invalid TLBs for DDR and remap as normal after testing */
665int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
666{
667 unsigned long epn;
668 u32 tsize, valid, ptr;
669 phys_addr_t rpn = 0;
670 int ddr_esel;
671
672 /* disable the TLBs for this testing */
673 ptr = *vstart;
674
675 while (ptr < (*vstart) + (*size)) {
676 ddr_esel = find_tlb_idx((void *)ptr, 1);
677 if (ddr_esel != -1) {
678 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
679 disable_tlb(ddr_esel);
680 }
681 ptr += TSIZE_TO_BYTES(tsize);
682 }
683
684 puts("Remap DDR ");
685 setup_ddr_tlbs(gd->ram_size>>20);
686 puts("\n");
687
688 return 0;
689}
690
691void arch_memory_failure_handle(void)
692{
693 dump_spd_ddr_reg();
694}
695#endif