cpu.c 7.5 KB
Newer Older
W
wdenk 已提交
1
/*
2
 * Copyright 2004,2007-2010 Freescale Semiconductor, Inc.
W
wdenk 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * (C) Copyright 2002, 2003 Motorola Inc.
 * Xianghua Xiao (X.Xiao@motorola.com)
 *
 * (C) Copyright 2000
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

28
#include <config.h>
W
wdenk 已提交
29 30 31
#include <common.h>
#include <watchdog.h>
#include <command.h>
32
#include <fsl_esdhc.h>
W
wdenk 已提交
33
#include <asm/cache.h>
34
#include <asm/io.h>
W
wdenk 已提交
35

36 37
DECLARE_GLOBAL_DATA_PTR;

W
wdenk 已提交
38 39
int checkcpu (void)
{
40 41
	sys_info_t sysinfo;
	uint pvr, svr;
42
	uint fam;
43 44
	uint ver;
	uint major, minor;
K
Kumar Gala 已提交
45
	struct cpu_type *cpu;
46
	char buf1[32], buf2[32];
K
Kumar Gala 已提交
47
#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
48
	volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
K
Kumar Gala 已提交
49
#endif /* CONFIG_FSL_CORENET */
50
#ifdef CONFIG_DDR_CLK_FREQ
51 52
	u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
		>> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
53 54
#else
#ifdef CONFIG_FSL_CORENET
55 56
	u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
		>> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
57 58
#else
	u32 ddr_ratio = 0;
59
#endif /* CONFIG_FSL_CORENET */
60
#endif /* CONFIG_DDR_CLK_FREQ */
61
	int i;
62 63 64

	svr = get_svr();
	major = SVR_MAJ(svr);
65 66 67
#ifdef CONFIG_MPC8536
	major &= 0x7; /* the msb of this nibble is a mfg code */
#endif
68
	minor = SVR_MIN(svr);
W
wdenk 已提交
69

70
	if (cpu_numcores() > 1) {
71 72 73 74
#ifndef CONFIG_MP
		puts("Unicore software on multiprocessor system!!\n"
		     "To enable mutlticore build define CONFIG_MP\n");
#endif
75 76 77 78 79
		volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC85xx_PIC_ADDR);
		printf("CPU%d:  ", pic->whoami);
	} else {
		puts("CPU:   ");
	}
80

81
	cpu = gd->cpu;
82

83 84 85
	puts(cpu->name);
	if (IS_E_PROCESSOR(svr))
		puts("E");
86

87 88
	printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);

89
	pvr = get_pvr();
90
	fam = PVR_FAM(pvr);
91 92 93 94 95
	ver = PVR_VER(pvr);
	major = PVR_MAJ(pvr);
	minor = PVR_MIN(pvr);

	printf("Core:  ");
96 97
	switch (fam) {
	case PVR_FAM(PVR_85xx):
98 99 100 101 102 103
	    puts("E500");
	    break;
	default:
	    puts("Unknown");
	    break;
	}
K
Kumar Gala 已提交
104 105 106 107

	if (PVR_MEM(pvr) == 0x03)
		puts("MC");

108 109
	printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);

110 111
	get_sys_info(&sysinfo);

112
	puts("Clock Configuration:");
113
	for (i = 0; i < cpu_numcores(); i++) {
114 115
		if (!(i & 3))
			printf ("\n       ");
116 117
		printf("CPU%d:%-4s MHz, ",
				i,strmhz(buf1, sysinfo.freqProcessor[i]));
118 119
	}
	printf("\n       CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
120

121 122 123 124 125 126 127 128 129 130 131 132 133
#ifdef CONFIG_FSL_CORENET
	if (ddr_sync == 1) {
		printf("       DDR:%-4s MHz (%s MT/s data rate) "
			"(Synchronous), ",
			strmhz(buf1, sysinfo.freqDDRBus/2),
			strmhz(buf2, sysinfo.freqDDRBus));
	} else {
		printf("       DDR:%-4s MHz (%s MT/s data rate) "
			"(Asynchronous), ",
			strmhz(buf1, sysinfo.freqDDRBus/2),
			strmhz(buf2, sysinfo.freqDDRBus));
	}
#else
K
Kumar Gala 已提交
134 135
	switch (ddr_ratio) {
	case 0x0:
136 137 138
		printf("       DDR:%-4s MHz (%s MT/s data rate), ",
			strmhz(buf1, sysinfo.freqDDRBus/2),
			strmhz(buf2, sysinfo.freqDDRBus));
K
Kumar Gala 已提交
139 140
		break;
	case 0x7:
141 142
		printf("       DDR:%-4s MHz (%s MT/s data rate) "
			"(Synchronous), ",
143 144
			strmhz(buf1, sysinfo.freqDDRBus/2),
			strmhz(buf2, sysinfo.freqDDRBus));
K
Kumar Gala 已提交
145 146
		break;
	default:
147 148
		printf("       DDR:%-4s MHz (%s MT/s data rate) "
			"(Asynchronous), ",
149 150
			strmhz(buf1, sysinfo.freqDDRBus/2),
			strmhz(buf2, sysinfo.freqDDRBus));
K
Kumar Gala 已提交
151 152
		break;
	}
153
#endif
154

155
	if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
156
		printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
157
	} else {
158 159
		printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
		       sysinfo.freqLocalBus);
160
	}
W
wdenk 已提交
161

162
#ifdef CONFIG_CPM2
163
	printf("CPM:   %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
164
#endif
165

H
Haiying Wang 已提交
166 167 168 169
#ifdef CONFIG_QE
	printf("       QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
#endif

170 171 172 173 174 175 176 177 178 179 180
#ifdef CONFIG_SYS_DPAA_FMAN
	for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
		printf("       FMAN%d: %s MHz\n", i,
			strmhz(buf1, sysinfo.freqFMan[i]));
	}
#endif

#ifdef CONFIG_SYS_DPAA_PME
	printf("       PME:   %s MHz\n", strmhz(buf1, sysinfo.freqPME));
#endif

181
	puts("L1:    D-cache 32 kB enabled\n       I-cache 32 kB enabled\n");
W
wdenk 已提交
182 183 184 185 186 187 188

	return 0;
}


/* ------------------------------------------------------------------------- */

189
int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char * const argv[])
W
wdenk 已提交
190
{
K
Kumar Gala 已提交
191 192 193
/* Everything after the first generation of PQ3 parts has RSTCR */
#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
    defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
S
Sergei Poselenov 已提交
194 195
	unsigned long val, msr;

W
wdenk 已提交
196 197
	/*
	 * Initiate hard reset in debug control register DBCR0
K
Kumar Gala 已提交
198
	 * Make sure MSR[DE] = 1.  This only resets the core.
W
wdenk 已提交
199
	 */
S
Sergei Poselenov 已提交
200 201 202 203 204 205 206
	msr = mfmsr ();
	msr |= MSR_DE;
	mtmsr (msr);

	val = mfspr(DBCR0);
	val |= 0x70000000;
	mtspr(DBCR0,val);
K
Kumar Gala 已提交
207 208 209 210 211
#else
	volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
	out_be32(&gur->rstcr, 0x2);	/* HRESET_REQ */
	udelay(100);
#endif
212

W
wdenk 已提交
213 214 215 216 217 218 219 220 221
	return 1;
}


/*
 * Get timebase clock frequency
 */
unsigned long get_tbclk (void)
{
222 223 224
#ifdef CONFIG_FSL_CORENET
	return (gd->bus_clk + 8) / 16;
#else
225
	return (gd->bus_clk + 4UL)/8UL;
226
#endif
W
wdenk 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
}


#if defined(CONFIG_WATCHDOG)
void
watchdog_reset(void)
{
	int re_enable = disable_interrupts();
	reset_85xx_watchdog();
	if (re_enable) enable_interrupts();
}

void
reset_85xx_watchdog(void)
{
	/*
	 * Clear TSR(WIS) bit by writing 1
	 */
	unsigned long val;
A
Andy Fleming 已提交
246 247 248
	val = mfspr(SPRN_TSR);
	val |= TSR_WIS;
	mtspr(SPRN_TSR, val);
W
wdenk 已提交
249 250 251
}
#endif	/* CONFIG_WATCHDOG */

252
/*
253 254
 * Configures a UPM. The function requires the respective MxMR to be set
 * before calling this function. "size" is the number or entries, not a sizeof.
255 256 257 258 259
 */
void upmconfig (uint upm, uint * table, uint size)
{
	int i, mdr, mad, old_mad = 0;
	volatile u32 *mxmr;
260
	volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
	volatile u8* dummy = NULL;
	int upmmask;

	switch (upm) {
	case UPMA:
		mxmr = &lbc->mamr;
		upmmask = BR_MS_UPMA;
		break;
	case UPMB:
		mxmr = &lbc->mbmr;
		upmmask = BR_MS_UPMB;
		break;
	case UPMC:
		mxmr = &lbc->mcmr;
		upmmask = BR_MS_UPMC;
		break;
	default:
		printf("%s: Bad UPM index %d to configure\n", __FUNCTION__, upm);
		hang();
	}

	/* Find the address for the dummy write transaction */
283 284 285
	for (i = 0; i < 8; i++) {
		if ((get_lbc_br(i) & (BR_V | BR_MSEL)) == (BR_V | upmmask)) {
			dummy = (volatile u8 *)(get_lbc_br(i) & BR_BA);
286 287 288 289 290 291 292 293 294 295 296
			break;
		}
	}

	if (i == 8) {
		printf("Error: %s() could not find matching BR\n", __FUNCTION__);
		hang();
	}

	for (i = 0; i < size; i++) {
		/* 1 */
297
		out_be32(mxmr,  (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_WARR | i);
298 299 300 301 302 303 304 305
		/* 2 */
		out_be32(&lbc->mdr, table[i]);
		/* 3 */
		mdr = in_be32(&lbc->mdr);
		/* 4 */
		*(volatile u8 *)dummy = 0;
		/* 5 */
		do {
306
			mad = in_be32(mxmr) & MxMR_MAD_MSK;
307 308 309
		} while (mad <= old_mad && !(!mad && i == (size-1)));
		old_mad = mad;
	}
310
	out_be32(mxmr, (in_be32(mxmr) & 0x4fffffc0) | MxMR_OP_NORM);
311
}
312

313 314 315 316 317 318 319 320 321 322 323 324
/*
 * Initializes on-chip MMC controllers.
 * to override, implement board_mmc_init()
 */
int cpu_mmc_init(bd_t *bis)
{
#ifdef CONFIG_FSL_ESDHC
	return fsl_esdhc_mmc_init(bis);
#else
	return 0;
#endif
}