cpu.c 6.2 KB
Newer Older
W
wdenk 已提交
1
/*
2
 * Copyright 2004,2007,2008 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 28 29 30 31 32
 * (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
 */

#include <common.h>
#include <watchdog.h>
#include <command.h>
#include <asm/cache.h>

33 34
DECLARE_GLOBAL_DATA_PTR;

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
struct cpu_type {
	char name[15];
	u32 soc_ver;
};

#define CPU_TYPE_ENTRY(x) {#x, SVR_##x}

struct cpu_type cpu_type_list [] = {
	CPU_TYPE_ENTRY(8533),
	CPU_TYPE_ENTRY(8533_E),
	CPU_TYPE_ENTRY(8540),
	CPU_TYPE_ENTRY(8541),
	CPU_TYPE_ENTRY(8541_E),
	CPU_TYPE_ENTRY(8543),
	CPU_TYPE_ENTRY(8543_E),
	CPU_TYPE_ENTRY(8544),
	CPU_TYPE_ENTRY(8544_E),
	CPU_TYPE_ENTRY(8545),
	CPU_TYPE_ENTRY(8545_E),
	CPU_TYPE_ENTRY(8547_E),
	CPU_TYPE_ENTRY(8548),
	CPU_TYPE_ENTRY(8548_E),
	CPU_TYPE_ENTRY(8555),
	CPU_TYPE_ENTRY(8555_E),
	CPU_TYPE_ENTRY(8560),
	CPU_TYPE_ENTRY(8567),
	CPU_TYPE_ENTRY(8567_E),
	CPU_TYPE_ENTRY(8568),
	CPU_TYPE_ENTRY(8568_E),
	CPU_TYPE_ENTRY(8572),
	CPU_TYPE_ENTRY(8572_E),
};

W
wdenk 已提交
68 69
int checkcpu (void)
{
70 71 72 73
	sys_info_t sysinfo;
	uint lcrr;		/* local bus clock ratio register */
	uint clkdiv;		/* clock divider portion of lcrr */
	uint pvr, svr;
74
	uint fam;
75 76
	uint ver;
	uint major, minor;
77
	int i;
K
Kumar Gala 已提交
78 79
	u32 ddr_ratio;
	volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR);
80 81

	svr = get_svr();
82
	ver = SVR_SOC_VER(svr);
83 84
	major = SVR_MAJ(svr);
	minor = SVR_MIN(svr);
W
wdenk 已提交
85

86
	puts("CPU:   ");
87 88 89 90 91 92 93 94

	for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
		if (cpu_type_list[i].soc_ver == ver) {
			puts(cpu_type_list[i].name);
			break;
		}

	if (i == ARRAY_SIZE(cpu_type_list))
95
		puts("Unknown");
96

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

99
	pvr = get_pvr();
100
	fam = PVR_FAM(pvr);
101 102 103 104 105
	ver = PVR_VER(pvr);
	major = PVR_MAJ(pvr);
	minor = PVR_MIN(pvr);

	printf("Core:  ");
106 107
	switch (fam) {
	case PVR_FAM(PVR_85xx):
108 109 110 111 112 113 114 115
	    puts("E500");
	    break;
	default:
	    puts("Unknown");
	    break;
	}
	printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);

116 117
	get_sys_info(&sysinfo);

118
	puts("Clock Configuration:\n");
119 120
	printf("       CPU:%4lu MHz, ", sysinfo.freqProcessor / 1000000);
	printf("CCB:%4lu MHz,\n", sysinfo.freqSystemBus / 1000000);
K
Kumar Gala 已提交
121 122 123 124

	ddr_ratio = ((gur->porpllsr) & 0x00003e00) >> 9;
	switch (ddr_ratio) {
	case 0x0:
125 126
		printf("       DDR:%4lu MHz (%lu MT/s data rate), ",
		sysinfo.freqDDRBus / 2000000, sysinfo.freqDDRBus / 1000000);
K
Kumar Gala 已提交
127 128
		break;
	case 0x7:
129 130
		printf("       DDR:%4lu MHz (%lu MT/s data rate) (Synchronous), ",
		sysinfo.freqDDRBus / 2000000, sysinfo.freqDDRBus / 1000000);
K
Kumar Gala 已提交
131 132
		break;
	default:
133 134
		printf("       DDR:%4lu MHz (%lu MT/s data rate) (Asynchronous), ",
		sysinfo.freqDDRBus / 2000000, sysinfo.freqDDRBus / 1000000);
K
Kumar Gala 已提交
135 136
		break;
	}
137 138 139 140 141

#if defined(CFG_LBC_LCRR)
	lcrr = CFG_LBC_LCRR;
#else
	{
K
Kumar Gala 已提交
142
	    volatile ccsr_lbc_t *lbc = (void *)(CFG_MPC85xx_LBC_ADDR);
143 144 145 146 147 148

	    lcrr = lbc->lcrr;
	}
#endif
	clkdiv = lcrr & 0x0f;
	if (clkdiv == 2 || clkdiv == 4 || clkdiv == 8) {
A
Andy Fleming 已提交
149
#if defined(CONFIG_MPC8548) || defined(CONFIG_MPC8544)
150 151 152 153 154 155
		/*
		 * Yes, the entire PQ38 family use the same
		 * bit-representation for twice the clock divider values.
		 */
		 clkdiv *= 2;
#endif
156 157 158
		printf("LBC:%4lu MHz\n",
		       sysinfo.freqSystemBus / 1000000 / clkdiv);
	} else {
159
		printf("LBC: unknown (lcrr: 0x%08x)\n", lcrr);
160
	}
W
wdenk 已提交
161

162 163 164
#ifdef CONFIG_CPM2
	printf("CPM:  %lu Mhz\n", sysinfo.freqSystemBus / 1000000);
#endif
165

166
	puts("L1:    D-cache 32 kB enabled\n       I-cache 32 kB enabled\n");
W
wdenk 已提交
167 168 169 170 171 172 173 174 175

	return 0;
}


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

int do_reset (cmd_tbl_t *cmdtp, bd_t *bd, int flag, int argc, char *argv[])
{
176 177 178 179 180 181 182 183
	uint pvr;
	uint ver;
	pvr = get_pvr();
	ver = PVR_VER(pvr);
	if (ver & 1){
	/* e500 v2 core has reset control register */
		volatile unsigned int * rstcr;
		rstcr = (volatile unsigned int *)(CFG_IMMR + 0xE00B0);
184
		*rstcr = 0x2;		/* HRESET_REQ */
185
	}else{
W
wdenk 已提交
186 187 188 189
	/*
	 * Initiate hard reset in debug control register DBCR0
	 * Make sure MSR[DE] = 1
	 */
190 191 192 193 194 195
		unsigned long val, msr;

		msr = mfmsr ();
		msr |= MSR_DE;
		mtmsr (msr);

196 197 198 199
		val = mfspr(DBCR0);
		val |= 0x70000000;
		mtspr(DBCR0,val);
	}
W
wdenk 已提交
200 201 202 203 204 205 206 207 208
	return 1;
}


/*
 * Get timebase clock frequency
 */
unsigned long get_tbclk (void)
{
209
	return (gd->bus_clk + 4UL)/8UL;
W
wdenk 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
}


#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 已提交
229 230 231
	val = mfspr(SPRN_TSR);
	val |= TSR_WIS;
	mtspr(SPRN_TSR, val);
W
wdenk 已提交
232 233 234 235 236
}
#endif	/* CONFIG_WATCHDOG */

#if defined(CONFIG_DDR_ECC)
void dma_init(void) {
K
Kumar Gala 已提交
237
	volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
W
wdenk 已提交
238 239 240

	dma->satr0 = 0x02c40000;
	dma->datr0 = 0x02c40000;
A
Andy Fleming 已提交
241
	dma->sr0 = 0xfffffff; /* clear any errors */
W
wdenk 已提交
242 243 244 245 246
	asm("sync; isync; msync");
	return;
}

uint dma_check(void) {
K
Kumar Gala 已提交
247
	volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
W
wdenk 已提交
248 249 250 251 252 253 254
	volatile uint status = dma->sr0;

	/* While the channel is busy, spin */
	while((status & 4) == 4) {
		status = dma->sr0;
	}

A
Andy Fleming 已提交
255 256 257 258
	/* clear MR0[CS] channel start bit */
	dma->mr0 &= 0x00000001;
	asm("sync;isync;msync");

W
wdenk 已提交
259 260 261 262 263 264 265
	if (status != 0) {
		printf ("DMA Error: status = %x\n", status);
	}
	return status;
}

int dma_xfer(void *dest, uint count, void *src) {
K
Kumar Gala 已提交
266
	volatile ccsr_dma_t *dma = (void *)(CFG_MPC85xx_DMA_ADDR);
W
wdenk 已提交
267 268 269 270 271 272 273 274 275 276 277

	dma->dar0 = (uint) dest;
	dma->sar0 = (uint) src;
	dma->bcr0 = count;
	dma->mr0 = 0xf000004;
	asm("sync;isync;msync");
	dma->mr0 = 0xf000005;
	asm("sync;isync;msync");
	return dma_check();
}
#endif