blob: 74e6c6d02c0b07724693b48f7bab10d15d92e977 [file] [log] [blame]
Christophe Leroy069fa832017-07-06 10:23:22 +02001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8/*
9 * m8xx.c
10 *
11 * CPU specific code
12 *
13 * written or collected and sometimes rewritten by
14 * Magnus Damm <damm@bitsmart.com>
15 *
16 * minor modifications by
17 * Wolfgang Denk <wd@denx.de>
18 */
19
20#include <common.h>
21#include <watchdog.h>
22#include <command.h>
23#include <mpc8xx.h>
24#include <commproc.h>
25#include <netdev.h>
26#include <asm/cache.h>
27#include <linux/compiler.h>
28#include <asm/io.h>
29
30#if defined(CONFIG_OF_LIBFDT)
31#include <libfdt.h>
32#include <fdt_support.h>
33#endif
34
35DECLARE_GLOBAL_DATA_PTR;
36
37static char *cpu_warning = "\n " \
38 "*** Warning: CPU Core has Silicon Bugs -- Check the Errata ***";
39
Christophe Leroy48f896d2017-07-06 10:33:17 +020040static int check_CPU(long clock, uint pvr, uint immr)
Christophe Leroy069fa832017-07-06 10:23:22 +020041{
42 char *id_str =
43 NULL;
Christophe Leroy394f9b32017-07-06 10:33:13 +020044 immap_t __iomem *immap = (immap_t __iomem *)(immr & 0xFFFF0000);
Christophe Leroy069fa832017-07-06 10:23:22 +020045 uint k, m;
46 char buf[32];
47 char pre = 'X';
48 char *mid = "xx";
49 char *suf;
50
51 /* the highest 16 bits should be 0x0050 for a 860 */
52
53 if ((pvr >> 16) != 0x0050)
54 return -1;
55
56 k = (immr << 16) |
Christophe Leroy394f9b32017-07-06 10:33:13 +020057 in_be16(&immap->im_cpm.cp_dparam16[PROFF_REVNUM / sizeof(u16)]);
Christophe Leroy069fa832017-07-06 10:23:22 +020058 m = 0;
59 suf = "";
60
61 /*
62 * Some boards use sockets so different CPUs can be used.
63 * We have to check chip version in run time.
64 */
65 switch (k) {
66 /* MPC866P/MPC866T/MPC859T/MPC859DSL/MPC852T */
67 case 0x08010004: /* Rev. A.0 */
68 suf = "A";
69 /* fall through */
70 case 0x08000003: /* Rev. 0.3 */
71 pre = 'M'; m = 1;
72 if (id_str == NULL)
73 id_str =
74 "PC866x"; /* Unknown chip from MPC866 family */
75 break;
Christophe Leroy48f896d2017-07-06 10:33:17 +020076 case 0x09000000:
77 pre = 'M'; mid = suf = ""; m = 1;
Christophe Leroy069fa832017-07-06 10:23:22 +020078 if (id_str == NULL)
79 id_str = "PC885"; /* 870/875/880/885 */
80 break;
81
Christophe Leroy48f896d2017-07-06 10:33:17 +020082 default:
83 suf = NULL;
84 break;
Christophe Leroy069fa832017-07-06 10:23:22 +020085 }
86
87 if (id_str == NULL)
88 id_str = "PC86x"; /* Unknown 86x chip */
89 if (suf)
Christophe Leroy48f896d2017-07-06 10:33:17 +020090 printf("%c%s%sZPnn%s", pre, id_str, mid, suf);
Christophe Leroy069fa832017-07-06 10:23:22 +020091 else
Christophe Leroy48f896d2017-07-06 10:33:17 +020092 printf("unknown M%s (0x%08x)", id_str, k);
Christophe Leroy069fa832017-07-06 10:23:22 +020093
Christophe Leroy48f896d2017-07-06 10:33:17 +020094 printf(" at %s MHz: ", strmhz(buf, clock));
Christophe Leroy069fa832017-07-06 10:23:22 +020095
96 print_size(checkicache(), " I-Cache ");
97 print_size(checkdcache(), " D-Cache");
98
99 /* do we have a FEC (860T/P or 852/859/866/885)? */
100
Christophe Leroy394f9b32017-07-06 10:33:13 +0200101 out_be32(&immap->im_cpm.cp_fec.fec_addr_low, 0x12345678);
102 if (in_be32(&immap->im_cpm.cp_fec.fec_addr_low) == 0x12345678)
Christophe Leroy48f896d2017-07-06 10:33:17 +0200103 printf(" FEC present");
Christophe Leroy069fa832017-07-06 10:23:22 +0200104
Christophe Leroy48f896d2017-07-06 10:33:17 +0200105 if (!m)
106 puts(cpu_warning);
Christophe Leroy069fa832017-07-06 10:23:22 +0200107
Christophe Leroy48f896d2017-07-06 10:33:17 +0200108 putc('\n');
Christophe Leroy069fa832017-07-06 10:23:22 +0200109
110 return 0;
111}
112
113/* ------------------------------------------------------------------------- */
114
Christophe Leroy48f896d2017-07-06 10:33:17 +0200115int checkcpu(void)
Christophe Leroy069fa832017-07-06 10:23:22 +0200116{
117 ulong clock = gd->cpu_clk;
Christophe Leroy48f896d2017-07-06 10:33:17 +0200118 uint immr = get_immr(0); /* Return full IMMR contents */
119 uint pvr = get_pvr();
Christophe Leroy069fa832017-07-06 10:23:22 +0200120
Christophe Leroy48f896d2017-07-06 10:33:17 +0200121 puts("CPU: ");
Christophe Leroy069fa832017-07-06 10:23:22 +0200122
Christophe Leroy48f896d2017-07-06 10:33:17 +0200123 return check_CPU(clock, pvr, immr);
Christophe Leroy069fa832017-07-06 10:23:22 +0200124}
125
126/* ------------------------------------------------------------------------- */
127/* L1 i-cache */
128
Christophe Leroy48f896d2017-07-06 10:33:17 +0200129int checkicache(void)
Christophe Leroy069fa832017-07-06 10:23:22 +0200130{
Christophe Leroy394f9b32017-07-06 10:33:13 +0200131 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
132 memctl8xx_t __iomem *memctl = &immap->im_memctl;
Christophe Leroy48f896d2017-07-06 10:33:17 +0200133 u32 cacheon = rd_ic_cst() & IDC_ENABLED;
Christophe Leroy394f9b32017-07-06 10:33:13 +0200134 /* probe in flash memoryarea */
135 u32 k = in_be32(&memctl->memc_br0) & ~0x00007fff;
Christophe Leroy069fa832017-07-06 10:23:22 +0200136 u32 m;
137 u32 lines = -1;
138
Christophe Leroy48f896d2017-07-06 10:33:17 +0200139 wr_ic_cst(IDC_UNALL);
140 wr_ic_cst(IDC_INVALL);
141 wr_ic_cst(IDC_DISABLE);
Christophe Leroy069fa832017-07-06 10:23:22 +0200142 __asm__ volatile ("isync");
143
Christophe Leroy48f896d2017-07-06 10:33:17 +0200144 while (!((m = rd_ic_cst()) & IDC_CERR2)) {
145 wr_ic_adr(k);
146 wr_ic_cst(IDC_LDLCK);
Christophe Leroy069fa832017-07-06 10:23:22 +0200147 __asm__ volatile ("isync");
148
149 lines++;
Christophe Leroy48f896d2017-07-06 10:33:17 +0200150 k += 0x10; /* the number of bytes in a cacheline */
Christophe Leroy069fa832017-07-06 10:23:22 +0200151 }
152
Christophe Leroy48f896d2017-07-06 10:33:17 +0200153 wr_ic_cst(IDC_UNALL);
154 wr_ic_cst(IDC_INVALL);
Christophe Leroy069fa832017-07-06 10:23:22 +0200155
156 if (cacheon)
Christophe Leroy48f896d2017-07-06 10:33:17 +0200157 wr_ic_cst(IDC_ENABLE);
Christophe Leroy069fa832017-07-06 10:23:22 +0200158 else
Christophe Leroy48f896d2017-07-06 10:33:17 +0200159 wr_ic_cst(IDC_DISABLE);
Christophe Leroy069fa832017-07-06 10:23:22 +0200160
161 __asm__ volatile ("isync");
162
163 return lines << 4;
164};
165
166/* ------------------------------------------------------------------------- */
167/* L1 d-cache */
168/* call with cache disabled */
169
Christophe Leroy48f896d2017-07-06 10:33:17 +0200170int checkdcache(void)
Christophe Leroy069fa832017-07-06 10:23:22 +0200171{
Christophe Leroy394f9b32017-07-06 10:33:13 +0200172 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
173 memctl8xx_t __iomem *memctl = &immap->im_memctl;
Christophe Leroy48f896d2017-07-06 10:33:17 +0200174 u32 cacheon = rd_dc_cst() & IDC_ENABLED;
Christophe Leroy394f9b32017-07-06 10:33:13 +0200175 /* probe in flash memoryarea */
176 u32 k = in_be32(&memctl->memc_br0) & ~0x00007fff;
Christophe Leroy069fa832017-07-06 10:23:22 +0200177 u32 m;
178 u32 lines = -1;
179
Christophe Leroy48f896d2017-07-06 10:33:17 +0200180 wr_dc_cst(IDC_UNALL);
181 wr_dc_cst(IDC_INVALL);
182 wr_dc_cst(IDC_DISABLE);
Christophe Leroy069fa832017-07-06 10:23:22 +0200183
Christophe Leroy48f896d2017-07-06 10:33:17 +0200184 while (!((m = rd_dc_cst()) & IDC_CERR2)) {
185 wr_dc_adr(k);
186 wr_dc_cst(IDC_LDLCK);
Christophe Leroy069fa832017-07-06 10:23:22 +0200187 lines++;
188 k += 0x10; /* the number of bytes in a cacheline */
189 }
190
Christophe Leroy48f896d2017-07-06 10:33:17 +0200191 wr_dc_cst(IDC_UNALL);
192 wr_dc_cst(IDC_INVALL);
Christophe Leroy069fa832017-07-06 10:23:22 +0200193
194 if (cacheon)
Christophe Leroy48f896d2017-07-06 10:33:17 +0200195 wr_dc_cst(IDC_ENABLE);
Christophe Leroy069fa832017-07-06 10:23:22 +0200196 else
Christophe Leroy48f896d2017-07-06 10:33:17 +0200197 wr_dc_cst(IDC_DISABLE);
Christophe Leroy069fa832017-07-06 10:23:22 +0200198
199 return lines << 4;
200};
201
202/* ------------------------------------------------------------------------- */
203
Christophe Leroy48f896d2017-07-06 10:33:17 +0200204void upmconfig(uint upm, uint *table, uint size)
Christophe Leroy069fa832017-07-06 10:23:22 +0200205{
206 uint i;
207 uint addr = 0;
Christophe Leroy394f9b32017-07-06 10:33:13 +0200208 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
209 memctl8xx_t __iomem *memctl = &immap->im_memctl;
Christophe Leroy069fa832017-07-06 10:23:22 +0200210
211 for (i = 0; i < size; i++) {
Christophe Leroy394f9b32017-07-06 10:33:13 +0200212 out_be32(&memctl->memc_mdr, table[i]); /* (16-15) */
213 out_be32(&memctl->memc_mcr, addr | upm); /* (16-16) */
Christophe Leroy069fa832017-07-06 10:23:22 +0200214 addr++;
215 }
216}
217
218/* ------------------------------------------------------------------------- */
219
Christophe Leroy48f896d2017-07-06 10:33:17 +0200220int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Christophe Leroy069fa832017-07-06 10:23:22 +0200221{
222 ulong msr, addr;
223
Christophe Leroy394f9b32017-07-06 10:33:13 +0200224 immap_t __iomem *immap = (immap_t __iomem *)CONFIG_SYS_IMMR;
Christophe Leroy069fa832017-07-06 10:23:22 +0200225
Christophe Leroy394f9b32017-07-06 10:33:13 +0200226 /* Checkstop Reset enable */
227 setbits_be32(&immap->im_clkrst.car_plprcr, PLPRCR_CSR);
Christophe Leroy069fa832017-07-06 10:23:22 +0200228
229 /* Interrupts and MMU off */
230 __asm__ volatile ("mtspr 81, 0");
Christophe Leroy48f896d2017-07-06 10:33:17 +0200231 __asm__ volatile ("mfmsr %0" : "=r" (msr));
Christophe Leroy069fa832017-07-06 10:23:22 +0200232
233 msr &= ~0x1030;
Christophe Leroy48f896d2017-07-06 10:33:17 +0200234 __asm__ volatile ("mtmsr %0" : : "r" (msr));
Christophe Leroy069fa832017-07-06 10:23:22 +0200235
236 /*
237 * Trying to execute the next instruction at a non-existing address
238 * should cause a machine check, resulting in reset
239 */
240#ifdef CONFIG_SYS_RESET_ADDRESS
241 addr = CONFIG_SYS_RESET_ADDRESS;
242#else
243 /*
Christophe Leroy48f896d2017-07-06 10:33:17 +0200244 * note: when CONFIG_SYS_MONITOR_BASE points to a RAM address,
245 * CONFIG_SYS_MONITOR_BASE - sizeof (ulong) is usually a valid address.
246 * Better pick an address known to be invalid on your system and assign
247 * it to CONFIG_SYS_RESET_ADDRESS.
Christophe Leroy069fa832017-07-06 10:23:22 +0200248 * "(ulong)-1" used to be a good choice for many systems...
249 */
Christophe Leroy48f896d2017-07-06 10:33:17 +0200250 addr = CONFIG_SYS_MONITOR_BASE - sizeof(ulong);
Christophe Leroy069fa832017-07-06 10:23:22 +0200251#endif
Christophe Leroy48f896d2017-07-06 10:33:17 +0200252 ((void (*)(void)) addr)();
Christophe Leroy069fa832017-07-06 10:23:22 +0200253 return 1;
254}
255
256/* ------------------------------------------------------------------------- */
257
258/*
259 * Get timebase clock frequency (like cpu_clk in Hz)
260 *
261 * See sections 14.2 and 14.6 of the User's Manual
262 */
Christophe Leroy48f896d2017-07-06 10:33:17 +0200263unsigned long get_tbclk(void)
Christophe Leroy069fa832017-07-06 10:23:22 +0200264{
Christophe Leroy48f896d2017-07-06 10:33:17 +0200265 uint immr = get_immr(0); /* Return full IMMR contents */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200266 immap_t __iomem *immap = (immap_t __iomem *)(immr & 0xFFFF0000);
Christophe Leroy069fa832017-07-06 10:23:22 +0200267 ulong oscclk, factor, pll;
268
Christophe Leroy394f9b32017-07-06 10:33:13 +0200269 if (in_be32(&immap->im_clkrst.car_sccr) & SCCR_TBS)
Christophe Leroy48f896d2017-07-06 10:33:17 +0200270 return gd->cpu_clk / 16;
Christophe Leroy069fa832017-07-06 10:23:22 +0200271
Christophe Leroy394f9b32017-07-06 10:33:13 +0200272 pll = in_be32(&immap->im_clkrst.car_plprcr);
Christophe Leroy069fa832017-07-06 10:23:22 +0200273
274#define PLPRCR_val(a) ((pll & PLPRCR_ ## a ## _MSK) >> PLPRCR_ ## a ## _SHIFT)
275
276 /*
277 * For newer PQ1 chips (MPC866/87x/88x families), PLL multiplication
278 * factor is calculated as follows:
279 *
280 * MFN
281 * MFI + -------
282 * MFD + 1
283 * factor = -----------------
284 * (PDF + 1) * 2^S
285 *
286 */
Christophe Leroy48f896d2017-07-06 10:33:17 +0200287 factor = (PLPRCR_val(MFI) + PLPRCR_val(MFN) / (PLPRCR_val(MFD) + 1)) /
288 (PLPRCR_val(PDF) + 1) / (1 << PLPRCR_val(S));
Christophe Leroy069fa832017-07-06 10:23:22 +0200289
290 oscclk = gd->cpu_clk / factor;
291
Christophe Leroy394f9b32017-07-06 10:33:13 +0200292 if ((in_be32(&immap->im_clkrst.car_sccr) & SCCR_RTSEL) == 0 ||
293 factor > 2)
Christophe Leroy48f896d2017-07-06 10:33:17 +0200294 return oscclk / 4;
Christophe Leroy394f9b32017-07-06 10:33:13 +0200295
Christophe Leroy48f896d2017-07-06 10:33:17 +0200296 return oscclk / 16;
Christophe Leroy069fa832017-07-06 10:23:22 +0200297}
298
299/* ------------------------------------------------------------------------- */
300
301#if defined(CONFIG_WATCHDOG)
Christophe Leroy48f896d2017-07-06 10:33:17 +0200302void watchdog_reset(void)
Christophe Leroy069fa832017-07-06 10:23:22 +0200303{
Christophe Leroy48f896d2017-07-06 10:33:17 +0200304 int re_enable = disable_interrupts();
Christophe Leroy069fa832017-07-06 10:23:22 +0200305
Christophe Leroy394f9b32017-07-06 10:33:13 +0200306 reset_8xx_watchdog((immap_t __iomem *)CONFIG_SYS_IMMR);
Christophe Leroy069fa832017-07-06 10:23:22 +0200307 if (re_enable)
Christophe Leroy48f896d2017-07-06 10:33:17 +0200308 enable_interrupts();
Christophe Leroy069fa832017-07-06 10:23:22 +0200309}
310#endif /* CONFIG_WATCHDOG */
311
312#if defined(CONFIG_WATCHDOG)
313
Christophe Leroy394f9b32017-07-06 10:33:13 +0200314void reset_8xx_watchdog(immap_t __iomem *immr)
Christophe Leroy069fa832017-07-06 10:23:22 +0200315{
316 /*
317 * All other boards use the MPC8xx Internal Watchdog
318 */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200319 out_be16(&immr->im_siu_conf.sc_swsr, 0x556c); /* write magic1 */
320 out_be16(&immr->im_siu_conf.sc_swsr, 0xaa39); /* write magic2 */
Christophe Leroy069fa832017-07-06 10:23:22 +0200321}
322#endif /* CONFIG_WATCHDOG */
323
324/*
325 * Initializes on-chip ethernet controllers.
326 * to override, implement board_eth_init()
327 */
328int cpu_eth_init(bd_t *bis)
329{
Christophe Leroy56ef30a2017-07-06 10:33:23 +0200330#if defined(CONFIG_MPC8XX_FEC)
Christophe Leroy069fa832017-07-06 10:23:22 +0200331 fec_initialize(bis);
332#endif
333 return 0;
334}