blob: 18556629c3d6cf925ecbe6ff62324e25b217eec8 [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 Glass8f3f7612019-11-14 12:57:42 -070014#include <irq_func.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070015#include <vsprintf.h>
wdenk9c53f402003-10-15 23:53:47 +000016#include <watchdog.h>
17#include <command.h>
Andy Fleming6843a6e2008-10-30 16:51:33 -050018#include <fsl_esdhc.h>
wdenk9c53f402003-10-15 23:53:47 +000019#include <asm/cache.h>
Sergei Poselenovddc1a472008-06-06 15:42:40 +020020#include <asm/io.h>
Becky Bruceee888da2010-06-17 11:37:25 -050021#include <asm/mmu.h>
York Sun37562f62013-10-22 12:39:02 -070022#include <fsl_ifc.h>
Becky Bruceee888da2010-06-17 11:37:25 -050023#include <asm/fsl_law.h>
Becky Bruce5e35d8a2010-12-17 17:17:56 -060024#include <asm/fsl_lbc.h>
York Sunc41b7442010-09-28 15:20:33 -070025#include <post.h>
26#include <asm/processor.h>
York Sunf0626592013-09-30 09:22:09 -070027#include <fsl_ddr_sdram.h>
Christophe Leroy31f6e932017-07-13 15:09:54 +020028#include <asm/ppc.h>
wdenk9c53f402003-10-15 23:53:47 +000029
James Yang957b1912008-02-08 16:44:53 -060030DECLARE_GLOBAL_DATA_PTR;
31
Ira W. Snydera85994c2011-11-21 13:20:32 -080032/*
33 * Default board reset function
34 */
35static void
36__board_reset(void)
37{
38 /* Do nothing */
39}
40void board_reset(void) __attribute__((weak, alias("__board_reset")));
41
wdenk9c53f402003-10-15 23:53:47 +000042int checkcpu (void)
43{
wdenka445ddf2004-06-09 00:34:46 +000044 sys_info_t sysinfo;
wdenka445ddf2004-06-09 00:34:46 +000045 uint pvr, svr;
46 uint ver;
47 uint major, minor;
Kumar Gala8ddf00c2008-06-10 16:53:46 -050048 struct cpu_type *cpu;
Wolfgang Denk20591042008-10-19 02:35:49 +020049 char buf1[32], buf2[32];
York Sunc87e81e2013-06-25 11:37:43 -070050#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
51 ccsr_gur_t __iomem *gur =
52 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
53#endif
York Sun3b5179f2012-10-08 07:44:31 +000054
55 /*
56 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
57 * mode. Previous platform use ddr ratio to do the same. This
58 * information is only for display here.
59 */
Kumar Galadccd9e32009-03-19 02:46:19 -050060#ifdef CONFIG_FSL_CORENET
York Sun383f6f62012-10-08 07:44:16 +000061#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
York Sun3b5179f2012-10-08 07:44:31 +000062 u32 ddr_sync = 0; /* only async mode is supported */
York Sun383f6f62012-10-08 07:44:16 +000063#else
York Sun3b5179f2012-10-08 07:44:31 +000064 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080065 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
York Sun383f6f62012-10-08 07:44:16 +000066#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
York Sun3b5179f2012-10-08 07:44:31 +000067#else /* CONFIG_FSL_CORENET */
68#ifdef CONFIG_DDR_CLK_FREQ
69 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
70 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala54b68102008-05-29 01:21:24 -050071#else
72 u32 ddr_ratio = 0;
Kumar Galadccd9e32009-03-19 02:46:19 -050073#endif /* CONFIG_DDR_CLK_FREQ */
York Sun3b5179f2012-10-08 07:44:31 +000074#endif /* CONFIG_FSL_CORENET */
75
Timur Tabi47289422011-08-05 16:15:24 -050076 unsigned int i, core, nr_cores = cpu_numcores();
77 u32 mask = cpu_mask();
wdenk9c53f402003-10-15 23:53:47 +000078
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +053079#ifdef CONFIG_HETROGENOUS_CLUSTERS
80 unsigned int j, dsp_core, dsp_numcores = cpu_num_dspcores();
81 u32 dsp_mask = cpu_dsp_mask();
82#endif
83
wdenka445ddf2004-06-09 00:34:46 +000084 svr = get_svr();
wdenka445ddf2004-06-09 00:34:46 +000085 major = SVR_MAJ(svr);
86 minor = SVR_MIN(svr);
87
Shengzhou Liu26ed2d02014-04-25 16:31:22 +080088#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
89 if (SVR_SOC_VER(svr) == SVR_T4080) {
90 ccsr_rcpm_t *rcpm =
91 (void __iomem *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
92
93 setbits_be32(&gur->devdisr2, FSL_CORENET_DEVDISR2_DTSEC1_6 ||
94 FSL_CORENET_DEVDISR2_DTSEC1_9);
95 setbits_be32(&gur->devdisr3, FSL_CORENET_DEVDISR3_PCIE3);
96 setbits_be32(&gur->devdisr5, FSL_CORENET_DEVDISR5_DDR3);
97
98 /* It needs SW to disable core4~7 as HW design sake on T4080 */
99 for (i = 4; i < 8; i++)
100 cpu_disable(i);
101
102 /* request core4~7 into PH20 state, prior to entering PCL10
103 * state, all cores in cluster should be placed in PH20 state.
104 */
105 setbits_be32(&rcpm->pcph20setr, 0xf0);
106
107 /* put the 2nd cluster into PCL10 state */
108 setbits_be32(&rcpm->clpcl10setr, 1 << 1);
109 }
110#endif
111
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530112 if (cpu_numcores() > 1) {
Poonam Aggrwal36a68432009-09-03 19:42:40 +0530113#ifndef CONFIG_MP
114 puts("Unicore software on multiprocessor system!!\n"
115 "To enable mutlticore build define CONFIG_MP\n");
116#endif
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500117 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530118 printf("CPU%d: ", pic->whoami);
119 } else {
120 puts("CPU: ");
121 }
Andy Flemingf5740972008-02-06 01:19:40 -0600122
Simon Glassa8b57392012-12-13 20:48:48 +0000123 cpu = gd->arch.cpu;
Andy Flemingf5740972008-02-06 01:19:40 -0600124
Poonam Aggrwalda6e1ca2009-09-02 13:35:21 +0530125 puts(cpu->name);
126 if (IS_E_PROCESSOR(svr))
127 puts("E");
Andy Flemingf5740972008-02-06 01:19:40 -0600128
wdenka445ddf2004-06-09 00:34:46 +0000129 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +0000130
wdenk3f3262b2005-03-15 22:56:53 +0000131 pvr = get_pvr();
132 ver = PVR_VER(pvr);
133 major = PVR_MAJ(pvr);
134 minor = PVR_MIN(pvr);
135
136 printf("Core: ");
Kumar Galae222ed32011-07-25 09:28:39 -0500137 switch(ver) {
138 case PVR_VER_E500_V1:
139 case PVR_VER_E500_V2:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300140 puts("e500");
Kumar Galae222ed32011-07-25 09:28:39 -0500141 break;
142 case PVR_VER_E500MC:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300143 puts("e500mc");
Kumar Galae222ed32011-07-25 09:28:39 -0500144 break;
145 case PVR_VER_E5500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300146 puts("e5500");
Kumar Galae222ed32011-07-25 09:28:39 -0500147 break;
Kumar Galac1abf4a2012-08-17 08:20:23 +0000148 case PVR_VER_E6500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300149 puts("e6500");
Kumar Galac1abf4a2012-08-17 08:20:23 +0000150 break;
Kumar Galae222ed32011-07-25 09:28:39 -0500151 default:
Kumar Galabd2985c2009-10-21 13:23:54 -0500152 puts("Unknown");
Kumar Galae222ed32011-07-25 09:28:39 -0500153 break;
wdenk3f3262b2005-03-15 22:56:53 +0000154 }
Kumar Gala9f4a6892008-10-23 01:47:38 -0500155
wdenk3f3262b2005-03-15 22:56:53 +0000156 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
157
York Sun908412d2012-10-08 07:44:10 +0000158 if (nr_cores > CONFIG_MAX_CPUS) {
159 panic("\nUnexpected number of cores: %d, max is %d\n",
160 nr_cores, CONFIG_MAX_CPUS);
161 }
162
wdenka445ddf2004-06-09 00:34:46 +0000163 get_sys_info(&sysinfo);
164
vijay raid84fd502014-04-15 11:34:12 +0530165#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
166 if (sysinfo.diff_sysclk == 1)
167 puts("Single Source Clock Configuration\n");
168#endif
169
Kumar Galaf92794c2009-02-04 09:35:57 -0600170 puts("Clock Configuration:");
Timur Tabi47289422011-08-05 16:15:24 -0500171 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1f79d142009-02-19 00:41:08 +0100172 if (!(i & 3))
173 printf ("\n ");
Timur Tabi47289422011-08-05 16:15:24 -0500174 printf("CPU%d:%-4s MHz, ", core,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530175 strmhz(buf1, sysinfo.freq_processor[core]));
Kumar Galaf92794c2009-02-04 09:35:57 -0600176 }
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530177
178#ifdef CONFIG_HETROGENOUS_CLUSTERS
179 for_each_cpu(j, dsp_core, dsp_numcores, dsp_mask) {
180 if (!(j & 3))
181 printf("\n ");
182 printf("DSP CPU%d:%-4s MHz, ", j,
183 strmhz(buf1, sysinfo.freq_processor_dsp[dsp_core]));
184 }
185#endif
186
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530187 printf("\n CCB:%-4s MHz,", strmhz(buf1, sysinfo.freq_systembus));
188 printf("\n");
Kumar Gala54b68102008-05-29 01:21:24 -0500189
Kumar Galadccd9e32009-03-19 02:46:19 -0500190#ifdef CONFIG_FSL_CORENET
191 if (ddr_sync == 1) {
192 printf(" DDR:%-4s MHz (%s MT/s data rate) "
193 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530194 strmhz(buf1, sysinfo.freq_ddrbus/2),
195 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500196 } else {
197 printf(" DDR:%-4s MHz (%s MT/s data rate) "
198 "(Asynchronous), ",
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 }
202#else
Kumar Gala07db1702007-12-07 04:59:26 -0600203 switch (ddr_ratio) {
204 case 0x0:
Wolfgang Denk20591042008-10-19 02:35:49 +0200205 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530206 strmhz(buf1, sysinfo.freq_ddrbus/2),
207 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600208 break;
209 case 0x7:
Kumar Galadccd9e32009-03-19 02:46:19 -0500210 printf(" DDR:%-4s MHz (%s MT/s data rate) "
211 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530212 strmhz(buf1, sysinfo.freq_ddrbus/2),
213 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600214 break;
215 default:
Kumar Galadccd9e32009-03-19 02:46:19 -0500216 printf(" DDR:%-4s MHz (%s MT/s data rate) "
217 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530218 strmhz(buf1, sysinfo.freq_ddrbus/2),
219 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600220 break;
221 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500222#endif
wdenka445ddf2004-06-09 00:34:46 +0000223
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530224#if defined(CONFIG_FSL_LBC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530225 if (sysinfo.freq_localbus > LCRR_CLKDIV) {
226 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500227 } else {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800228 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530229 sysinfo.freq_localbus);
Kumar Galadccd9e32009-03-19 02:46:19 -0500230 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530231#endif
wdenka445ddf2004-06-09 00:34:46 +0000232
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000233#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530234 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000235#endif
236
Andy Flemingf5740972008-02-06 01:19:40 -0600237#ifdef CONFIG_CPM2
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530238 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freq_systembus));
Andy Flemingf5740972008-02-06 01:19:40 -0600239#endif
wdenka445ddf2004-06-09 00:34:46 +0000240
Haiying Wang61414682009-05-20 12:30:29 -0400241#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530242 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freq_qe));
Haiying Wang61414682009-05-20 12:30:29 -0400243#endif
244
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530245#if defined(CONFIG_SYS_CPRI)
246 printf(" ");
247 printf("CPRI:%-4s MHz", strmhz(buf1, sysinfo.freq_cpri));
248#endif
249
250#if defined(CONFIG_SYS_MAPLE)
251 printf("\n ");
252 printf("MAPLE:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple));
253 printf("MAPLE-ULB:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple_ulb));
254 printf("MAPLE-eTVPE:%-4s MHz\n",
255 strmhz(buf1, sysinfo.freq_maple_etvpe));
256#endif
257
Kumar Galadccd9e32009-03-19 02:46:19 -0500258#ifdef CONFIG_SYS_DPAA_FMAN
259 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve3a9ed2f2010-06-17 00:08:29 -0500260 printf(" FMAN%d: %s MHz\n", i + 1,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530261 strmhz(buf1, sysinfo.freq_fman[i]));
Kumar Galadccd9e32009-03-19 02:46:19 -0500262 }
263#endif
264
Haiying Wang09d0aa92012-10-11 07:13:39 +0000265#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530266 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freq_qman));
Haiying Wang09d0aa92012-10-11 07:13:39 +0000267#endif
268
Kumar Galadccd9e32009-03-19 02:46:19 -0500269#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530270 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freq_pme));
Kumar Galadccd9e32009-03-19 02:46:19 -0500271#endif
272
Shruti Kanetkar81159362013-08-15 11:25:38 -0500273 puts("L1: D-cache 32 KiB enabled\n I-cache 32 KiB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000274
York Sunc87e81e2013-06-25 11:37:43 -0700275#ifdef CONFIG_FSL_CORENET
276 /* Display the RCW, so that no one gets confused as to what RCW
277 * we're actually using for this boot.
278 */
279 puts("Reset Configuration Word (RCW):");
280 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
281 u32 rcw = in_be32(&gur->rcwsr[i]);
282
283 if ((i % 4) == 0)
284 printf("\n %08x:", i * 4);
285 printf(" %08x", rcw);
286 }
287 puts("\n");
288#endif
289
wdenk9c53f402003-10-15 23:53:47 +0000290 return 0;
291}
292
293
294/* ------------------------------------------------------------------------- */
295
Mike Frysinger6d1f6982010-10-20 03:41:17 -0400296int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000297{
Kumar Galaaff01532009-09-08 13:46:46 -0500298/* Everything after the first generation of PQ3 parts has RSTCR */
York Sunbf820c02016-11-16 11:18:31 -0800299#if defined(CONFIG_ARCH_MPC8540) || defined(CONFIG_ARCH_MPC8541) || \
York Sunb4046f42016-11-16 11:26:45 -0800300 defined(CONFIG_ARCH_MPC8555) || defined(CONFIG_ARCH_MPC8560)
Sergei Poselenov25147422008-05-08 14:17:08 +0200301 unsigned long val, msr;
302
wdenk9c53f402003-10-15 23:53:47 +0000303 /*
304 * Initiate hard reset in debug control register DBCR0
Kumar Galaaff01532009-09-08 13:46:46 -0500305 * Make sure MSR[DE] = 1. This only resets the core.
wdenk9c53f402003-10-15 23:53:47 +0000306 */
Sergei Poselenov25147422008-05-08 14:17:08 +0200307 msr = mfmsr ();
308 msr |= MSR_DE;
309 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400310
Sergei Poselenov25147422008-05-08 14:17:08 +0200311 val = mfspr(DBCR0);
312 val |= 0x70000000;
313 mtspr(DBCR0,val);
Kumar Galaaff01532009-09-08 13:46:46 -0500314#else
315 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snydera85994c2011-11-21 13:20:32 -0800316
317 /* Attempt board-specific reset */
318 board_reset();
319
320 /* Next try asserting HRESET_REQ */
321 out_be32(&gur->rstcr, 0x2);
Kumar Galaaff01532009-09-08 13:46:46 -0500322 udelay(100);
323#endif
Sergei Poselenov25147422008-05-08 14:17:08 +0200324
wdenk9c53f402003-10-15 23:53:47 +0000325 return 1;
326}
327
328
329/*
330 * Get timebase clock frequency
331 */
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600332#ifndef CONFIG_SYS_FSL_TBCLK_DIV
333#define CONFIG_SYS_FSL_TBCLK_DIV 8
334#endif
Alexander Grafc3468482014-04-11 17:09:45 +0200335__weak unsigned long get_tbclk (void)
wdenk9c53f402003-10-15 23:53:47 +0000336{
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600337 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
338
339 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk9c53f402003-10-15 23:53:47 +0000340}
341
342
343#if defined(CONFIG_WATCHDOG)
Boschung, Rainerf63c0dc12014-06-03 09:05:14 +0200344#define WATCHDOG_MASK (TCR_WP(63) | TCR_WRC(3) | TCR_WIE)
345void
346init_85xx_watchdog(void)
347{
348 mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WATCHDOG_MASK) |
349 TCR_WP(CONFIG_WATCHDOG_PRESC) | TCR_WRC(CONFIG_WATCHDOG_RC));
350}
351
wdenk9c53f402003-10-15 23:53:47 +0000352void
wdenk9c53f402003-10-15 23:53:47 +0000353reset_85xx_watchdog(void)
354{
355 /*
356 * Clear TSR(WIS) bit by writing 1
357 */
Mark Marshall10b13c92012-09-09 23:06:03 +0000358 mtspr(SPRN_TSR, TSR_WIS);
wdenk9c53f402003-10-15 23:53:47 +0000359}
Horst Kronstorferf70831e2013-03-13 10:14:05 +0000360
361void
362watchdog_reset(void)
363{
364 int re_enable = disable_interrupts();
365
366 reset_85xx_watchdog();
367 if (re_enable)
368 enable_interrupts();
369}
wdenk9c53f402003-10-15 23:53:47 +0000370#endif /* CONFIG_WATCHDOG */
371
Sergei Poselenovddc1a472008-06-06 15:42:40 +0200372/*
Andy Fleming6843a6e2008-10-30 16:51:33 -0500373 * Initializes on-chip MMC controllers.
374 * to override, implement board_mmc_init()
375 */
376int cpu_mmc_init(bd_t *bis)
377{
378#ifdef CONFIG_FSL_ESDHC
379 return fsl_esdhc_mmc_init(bis);
380#else
381 return 0;
382#endif
383}
Becky Bruceee888da2010-06-17 11:37:25 -0500384
385/*
386 * Print out the state of various machine registers.
Dipen Dudhat00c42942011-01-20 16:29:35 +0530387 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
388 * parameters for IFC and TLBs
Becky Bruceee888da2010-06-17 11:37:25 -0500389 */
Christophe Leroy31f6e932017-07-13 15:09:54 +0200390void print_reginfo(void)
Becky Bruceee888da2010-06-17 11:37:25 -0500391{
392 print_tlbcam();
393 print_laws();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530394#if defined(CONFIG_FSL_LBC)
Becky Bruceee888da2010-06-17 11:37:25 -0500395 print_lbc_regs();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530396#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +0530397#ifdef CONFIG_FSL_IFC
398 print_ifc_regs();
399#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530400
Becky Bruceee888da2010-06-17 11:37:25 -0500401}
York Sunc41b7442010-09-28 15:20:33 -0700402
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600403/* Common ddr init for non-corenet fsl 85xx platforms */
404#ifndef CONFIG_FSL_CORENET
Scott Wood095b7122012-09-20 19:02:18 -0500405#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
406 !defined(CONFIG_SYS_INIT_L2_ADDR)
Simon Glassd35f3382017-04-06 12:47:05 -0600407int dram_init(void)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600408{
Alexander Grafc3468482014-04-11 17:09:45 +0200409#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD) || \
York Sun51e91e82016-11-18 12:29:51 -0800410 defined(CONFIG_ARCH_QEMU_E500)
Simon Glass39f90ba2017-03-31 08:40:25 -0600411 gd->ram_size = fsl_ddr_sdram_size();
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800412#else
Simon Glass39f90ba2017-03-31 08:40:25 -0600413 gd->ram_size = (phys_size_t)CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800414#endif
Simon Glass39f90ba2017-03-31 08:40:25 -0600415
416 return 0;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800417}
418#else /* CONFIG_SYS_RAMBOOT */
Simon Glassd35f3382017-04-06 12:47:05 -0600419int dram_init(void)
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800420{
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600421 phys_size_t dram_size = 0;
422
Becky Bruce4212f232010-12-17 17:17:58 -0600423#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600424 {
425 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
426 unsigned int x = 10;
427 unsigned int i;
428
429 /*
430 * Work around to stabilize DDR DLL
431 */
432 out_be32(&gur->ddrdllcr, 0x81000000);
433 asm("sync;isync;msync");
434 udelay(200);
435 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
436 setbits_be32(&gur->devdisr, 0x00010000);
437 for (i = 0; i < x; i++)
438 ;
439 clrbits_be32(&gur->devdisr, 0x00010000);
440 x++;
441 }
442 }
443#endif
444
York Sune73cc042011-06-07 09:42:16 +0800445#if defined(CONFIG_SPD_EEPROM) || \
446 defined(CONFIG_DDR_SPD) || \
447 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600448 dram_size = fsl_ddr_sdram();
449#else
450 dram_size = fixed_sdram();
451#endif
452 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
453 dram_size *= 0x100000;
454
455#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
456 /*
457 * Initialize and enable DDR ECC.
458 */
459 ddr_enable_ecc(dram_size);
460#endif
461
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530462#if defined(CONFIG_FSL_LBC)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600463 /* Some boards also have sdram on the lbc */
Becky Bruceb88d3d02010-12-17 17:17:57 -0600464 lbc_sdram_init();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530465#endif
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600466
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200467 debug("DDR: ");
Simon Glass39f90ba2017-03-31 08:40:25 -0600468 gd->ram_size = dram_size;
469
470 return 0;
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600471}
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800472#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600473#endif
474
York Sunc41b7442010-09-28 15:20:33 -0700475#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
476
477/* Board-specific functions defined in each board's ddr.c */
478void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
York Sun79a779b2014-08-01 15:51:00 -0700479 unsigned int ctrl_num, unsigned int dimm_slots_per_ctrl);
York Sunc41b7442010-09-28 15:20:33 -0700480void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
481 phys_addr_t *rpn);
482unsigned int
483 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
484
Becky Bruce69694472011-07-18 18:49:15 -0500485void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
486
York Sunc41b7442010-09-28 15:20:33 -0700487static void dump_spd_ddr_reg(void)
488{
489 int i, j, k, m;
490 u8 *p_8;
491 u32 *p_32;
York Sunfe845072016-12-28 08:43:45 -0800492 struct ccsr_ddr __iomem *ddr[CONFIG_SYS_NUM_DDR_CTLRS];
York Sunc41b7442010-09-28 15:20:33 -0700493 generic_spd_eeprom_t
York Sunfe845072016-12-28 08:43:45 -0800494 spd[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_DIMM_SLOTS_PER_CTLR];
York Sunc41b7442010-09-28 15:20:33 -0700495
York Sunfe845072016-12-28 08:43:45 -0800496 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sun79a779b2014-08-01 15:51:00 -0700497 fsl_ddr_get_spd(spd[i], i, CONFIG_DIMM_SLOTS_PER_CTLR);
York Sunc41b7442010-09-28 15:20:33 -0700498
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400499 puts("SPD data of all dimms (zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700500 puts("Byte (hex) ");
501 k = 1;
York Sunfe845072016-12-28 08:43:45 -0800502 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700503 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
504 printf("Dimm%d ", k++);
505 }
506 puts("\n");
507 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
508 m = 0;
509 printf("%3d (0x%02x) ", k, k);
York Sunfe845072016-12-28 08:43:45 -0800510 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700511 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
512 p_8 = (u8 *) &spd[i][j];
513 if (p_8[k]) {
514 printf("0x%02x ", p_8[k]);
515 m++;
516 } else
517 puts(" ");
518 }
519 }
520 if (m)
521 puts("\n");
522 else
523 puts("\r");
524 }
525
York Sunfe845072016-12-28 08:43:45 -0800526 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700527 switch (i) {
528 case 0:
York Sunf0626592013-09-30 09:22:09 -0700529 ddr[i] = (void *)CONFIG_SYS_FSL_DDR_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700530 break;
York Sunfe845072016-12-28 08:43:45 -0800531#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sunc41b7442010-09-28 15:20:33 -0700532 case 1:
York Sunf0626592013-09-30 09:22:09 -0700533 ddr[i] = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700534 break;
535#endif
York Sunfe845072016-12-28 08:43:45 -0800536#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sune8dc17b2012-08-17 08:22:39 +0000537 case 2:
York Sunf0626592013-09-30 09:22:09 -0700538 ddr[i] = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000539 break;
540#endif
York Sunfe845072016-12-28 08:43:45 -0800541#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sune8dc17b2012-08-17 08:22:39 +0000542 case 3:
York Sunf0626592013-09-30 09:22:09 -0700543 ddr[i] = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000544 break;
545#endif
York Sunc41b7442010-09-28 15:20:33 -0700546 default:
547 printf("%s unexpected controller number = %u\n",
548 __func__, i);
549 return;
550 }
551 }
552 printf("DDR registers dump for all controllers "
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400553 "(zero value is omitted)...\n");
York Sunc41b7442010-09-28 15:20:33 -0700554 puts("Offset (hex) ");
York Sunfe845072016-12-28 08:43:45 -0800555 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sunc41b7442010-09-28 15:20:33 -0700556 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
557 puts("\n");
York Suna21803d2013-11-18 10:29:32 -0800558 for (k = 0; k < sizeof(struct ccsr_ddr)/4; k++) {
York Sunc41b7442010-09-28 15:20:33 -0700559 m = 0;
560 printf("%6d (0x%04x)", k * 4, k * 4);
York Sunfe845072016-12-28 08:43:45 -0800561 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunc41b7442010-09-28 15:20:33 -0700562 p_32 = (u32 *) ddr[i];
563 if (p_32[k]) {
564 printf(" 0x%08x", p_32[k]);
565 m++;
566 } else
567 puts(" ");
568 }
569 if (m)
570 puts("\n");
571 else
572 puts("\r");
573 }
574 puts("\n");
575}
576
577/* invalid the TLBs for DDR and setup new ones to cover p_addr */
578static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
579{
580 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
581 unsigned long epn;
582 u32 tsize, valid, ptr;
York Sunc41b7442010-09-28 15:20:33 -0700583 int ddr_esel;
584
Becky Bruce69694472011-07-18 18:49:15 -0500585 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunc41b7442010-09-28 15:20:33 -0700586
587 /* Setup new tlb to cover the physical address */
588 setup_ddr_tlbs_phys(p_addr, size>>20);
589
590 ptr = vstart;
591 ddr_esel = find_tlb_idx((void *)ptr, 1);
592 if (ddr_esel != -1) {
593 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
594 } else {
595 printf("TLB error in function %s\n", __func__);
596 return -1;
597 }
598
599 return 0;
600}
601
602/*
603 * slide the testing window up to test another area
604 * for 32_bit system, the maximum testable memory is limited to
605 * CONFIG_MAX_MEM_MAPPED
606 */
607int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
608{
609 phys_addr_t test_cap, p_addr;
610 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
611
612#if !defined(CONFIG_PHYS_64BIT) || \
613 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
614 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
615 test_cap = p_size;
616#else
617 test_cap = gd->ram_size;
618#endif
619 p_addr = (*vstart) + (*size) + (*phys_offset);
620 if (p_addr < test_cap - 1) {
621 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
622 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
623 return -1;
624 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
625 *size = (u32) p_size;
626 printf("Testing 0x%08llx - 0x%08llx\n",
627 (u64)(*vstart) + (*phys_offset),
628 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
629 } else
630 return 1;
631
632 return 0;
633}
634
635/* initialization for testing area */
636int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
637{
638 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
639
640 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
641 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
642 *phys_offset = 0;
643
644#if !defined(CONFIG_PHYS_64BIT) || \
645 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
646 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
647 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
648 puts("Cannot test more than ");
649 print_size(CONFIG_MAX_MEM_MAPPED,
650 " without proper 36BIT support.\n");
651 }
652#endif
653 printf("Testing 0x%08llx - 0x%08llx\n",
654 (u64)(*vstart) + (*phys_offset),
655 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
656
657 return 0;
658}
659
660/* invalid TLBs for DDR and remap as normal after testing */
661int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
662{
663 unsigned long epn;
664 u32 tsize, valid, ptr;
665 phys_addr_t rpn = 0;
666 int ddr_esel;
667
668 /* disable the TLBs for this testing */
669 ptr = *vstart;
670
671 while (ptr < (*vstart) + (*size)) {
672 ddr_esel = find_tlb_idx((void *)ptr, 1);
673 if (ddr_esel != -1) {
674 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
675 disable_tlb(ddr_esel);
676 }
677 ptr += TSIZE_TO_BYTES(tsize);
678 }
679
680 puts("Remap DDR ");
681 setup_ddr_tlbs(gd->ram_size>>20);
682 puts("\n");
683
684 return 0;
685}
686
687void arch_memory_failure_handle(void)
688{
689 dump_spd_ddr_reg();
690}
691#endif