blob: 6126b73442f9c4722e62e942fcd025d083e89f69 [file] [log] [blame]
wdenk16f21702002-08-26 21:58:50 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk16f21702002-08-26 21:58:50 +00006 */
7
8#include <common.h>
9#include <commproc.h>
10#include <mpc8xx.h>
11
12#ifdef CONFIG_SHOW_BOOT_PROGRESS
13# include <status_led.h>
Simon Glass770605e2012-02-13 13:51:18 +000014# define SHOW_BOOT_PROGRESS(arg) bootstage_mark(arg)
wdenk16f21702002-08-26 21:58:50 +000015#else
16# define SHOW_BOOT_PROGRESS(arg)
17#endif
18
Wolfgang Denkd87080b2006-03-31 18:32:53 +020019DECLARE_GLOBAL_DATA_PTR;
20
wdenk16f21702002-08-26 21:58:50 +000021/* ------------------------------------------------------------------------- */
22
23static long int dram_size (long int, long int *, long int);
24static ulong board_init (void);
25static void send_smi_frame (volatile scc_t * sp, volatile cbd_t * bd,
26 uchar * msg);
27
28/* ------------------------------------------------------------------------- */
29
30#define _NOT_USED_ 0xFFFFFFFF
31
32const uint sdram_table[] = {
33 /*
34 * Single Read. (Offset 0 in UPMA RAM)
35 */
36 0x1f07fc04, 0xeeaefc04, 0x11adfc04, 0xefbbbc00,
37 0x1ff77c47, /* last */
38 /*
39 * SDRAM Initialization (offset 5 in UPMA RAM)
40 *
41 * This is no UPM entry point. The following definition uses
42 * the remaining space to establish an initialization
43 * sequence, which is executed by a RUN command.
44 *
45 */
46 0x1fe77c35, 0xffaffc34, 0x1fa57c35, /* last */
47 /*
48 * Burst Read. (Offset 8 in UPMA RAM)
49 */
50 0x1f07fc04, 0xeeaefc04, 0x10adfc04, 0xf0affc00,
51 0xf0affc00, 0xf1affc00, 0xefbbbc00, 0x1ff77c47, /* last */
52 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
53 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
54 /*
55 * Single Write. (Offset 18 in UPMA RAM)
56 */
57 0x1f27fc04, 0xeeaebc00, 0x01b93c04, 0x1ff77c47, /* last */
58 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
59 /*
60 * Burst Write. (Offset 20 in UPMA RAM)
61 */
62 0x1f07fc04, 0xeeaebc00, 0x10ad4c00, 0xf0afcc00,
63 0xf0afcc00, 0xe1bb8c06, 0x1ff77c47, /* last */
64 _NOT_USED_,
65 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
66 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
67 /*
68 * Refresh (Offset 30 in UPMA RAM)
69 */
70 0x1ff5fc84, 0xfffffc04, 0xfffffc04, 0xfffffc04,
71 0xfffffc84, 0xfffffc07, /* last */
72 _NOT_USED_, _NOT_USED_,
73 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
74 /*
75 * Exception. (Offset 3c in UPMA RAM)
76 */
77 0x7ffffc07, /* last */
78 _NOT_USED_, _NOT_USED_, _NOT_USED_,
79};
80
81/* ------------------------------------------------------------------------- */
82
83
84/*
85 * Check Board Identity:
86 *
87 * Test ID string (HERMES...)
88 *
89 * Return code for board revision and network speed
90 */
91
92int checkboard (void)
93{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000094 char buf[64];
95 int i;
96 int l = getenv_f("serial#", buf, sizeof(buf));
wdenk16f21702002-08-26 21:58:50 +000097
98 puts ("Board: ");
99
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000100 if (l < 0 || strncmp(buf, "HERMES", 6)) {
wdenk16f21702002-08-26 21:58:50 +0000101 puts ("### No HW ID - assuming HERMES-PRO");
102 } else {
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000103 for (i = 0; i < l; i++) {
104 if (buf[i] == ' ')
wdenk16f21702002-08-26 21:58:50 +0000105 break;
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000106 putc (buf[i]);
wdenk16f21702002-08-26 21:58:50 +0000107 }
108 }
109
110 gd->board_type = board_init ();
111
112 printf (" Rev. %ld.x\n", (gd->board_type >> 16));
113
114 return (0);
115}
116
117/* ------------------------------------------------------------------------- */
118
Becky Bruce9973e3c2008-06-09 16:03:40 -0500119phys_size_t initdram (int board_type)
wdenk16f21702002-08-26 21:58:50 +0000120{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenk16f21702002-08-26 21:58:50 +0000122 volatile memctl8xx_t *memctl = &immap->im_memctl;
123 long int size, size8, size9;
124
125 upmconfig (UPMA, (uint *) sdram_table,
126 sizeof (sdram_table) / sizeof (uint));
127
128 /*
129 * Preliminary prescaler for refresh
130 */
131 memctl->memc_mptpr = 0x0400;
132
133 memctl->memc_mar = 0x00000088;
134
135 /*
136 * Map controller banks 1 to the SDRAM banks at preliminary address
137 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138 memctl->memc_or1 = CONFIG_SYS_OR1_PRELIM;
139 memctl->memc_br1 = CONFIG_SYS_BR1_PRELIM;
wdenk16f21702002-08-26 21:58:50 +0000140
141 /* HERMES-PRO boards have only one bank SDRAM */
142
143
144 udelay (200);
145
146 /* perform SDRAM initializsation sequence */
147
148 memctl->memc_mamr = 0xD0802114;
149 memctl->memc_mcr = 0x80002105;
150 udelay (1);
151 memctl->memc_mamr = 0xD0802118;
152 memctl->memc_mcr = 0x80002130;
153 udelay (1);
154 memctl->memc_mamr = 0xD0802114;
155 memctl->memc_mcr = 0x80002106;
156
157 udelay (1000);
158
159 /*
160 * Check Bank 0 Memory Size for re-configuration
161 *
162 * try 8 column mode
163 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200164 size8 = dram_size (CONFIG_SYS_MAMR_8COL, (long *) SDRAM_BASE_PRELIM,
wdenk16f21702002-08-26 21:58:50 +0000165 SDRAM_MAX_SIZE);
166
167 udelay (1000);
168
169 /*
170 * try 9 column mode
171 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 size9 = dram_size (CONFIG_SYS_MAMR_9COL, (long *) SDRAM_BASE_PRELIM,
wdenk16f21702002-08-26 21:58:50 +0000173 SDRAM_MAX_SIZE);
174
175 if (size8 < size9) { /* leave configuration at 9 columns */
176 size = size9;
177/* debug ("SDRAM Bank 0 in 9 column mode: %ld MB\n", size >> 20); */
178 } else { /* back to 8 columns */
179 size = size8;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200180 memctl->memc_mamr = CONFIG_SYS_MAMR_8COL;
wdenk16f21702002-08-26 21:58:50 +0000181 udelay (500);
182/* debug ("SDRAM Bank 0 in 8 column mode: %ld MB\n", size >> 20); */
183 }
184
185 udelay (1000);
186
187 memctl->memc_or1 = ((-size) & 0xFFFF0000) | SDRAM_TIMING;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200188 memctl->memc_br1 = (CONFIG_SYS_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
wdenk16f21702002-08-26 21:58:50 +0000189
190 udelay (10000);
191
192 return (size);
193}
194
195/* ------------------------------------------------------------------------- */
196
197/*
198 * Check memory range for valid RAM. A simple memory test determines
199 * the actually available RAM size between addresses `base' and
200 * `base + maxsize'. Some (not all) hardware errors are detected:
201 * - short between address lines
202 * - short between data lines
203 */
204
205static long int dram_size (long int mamr_value, long int *base,
206 long int maxsize)
207{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200208 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
wdenk16f21702002-08-26 21:58:50 +0000209 volatile memctl8xx_t *memctl = &immap->im_memctl;
wdenk16f21702002-08-26 21:58:50 +0000210
211 memctl->memc_mamr = mamr_value;
212
wdenkc83bf6a2004-01-06 22:38:14 +0000213 return (get_ram_size(base, maxsize));
wdenk16f21702002-08-26 21:58:50 +0000214}
215
216/* ------------------------------------------------------------------------- */
217
218#define PB_LED_3 0x00020000 /* Status LED's */
219#define PB_LED_2 0x00010000
220#define PB_LED_1 0x00008000
221#define PB_LED_0 0x00004000
222
223#define PB_LED_ALL (PB_LED_0 | PB_LED_1 | PB_LED_2 | PB_LED_3)
224
225#define PC_REP_SPD1 0x00000800
226#define PC_REP_SPD0 0x00000400
227
228#define PB_RESET_2081 0x00000020 /* Reset PEB2081 */
229
230#define PB_MAI_4 0x00000010 /* Configuration */
231#define PB_MAI_3 0x00000008
232#define PB_MAI_2 0x00000004
233#define PB_MAI_1 0x00000002
234#define PB_MAI_0 0x00000001
235
236#define PB_MAI_ALL (PB_MAI_0 | PB_MAI_1 | PB_MAI_2 | PB_MAI_3 | PB_MAI_4)
237
238
239#define PC_REP_MGRPRS 0x0200
240#define PC_REP_SPD 0x0040 /* Select 100 Mbps */
241#define PC_REP_RES 0x0004
242#define PC_BIT14 0x0002 /* ??? */
243#define PC_BIT15 0x0001 /* ??? ENDSL ?? */
244
245/* ------------------------------------------------------------------------- */
246
247static ulong board_init (void)
248{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200249 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk16f21702002-08-26 21:58:50 +0000250 ulong reg, revision, speed = 100;
251 int ethspeed;
252 char *s;
253
254 if ((s = getenv ("ethspeed")) != NULL) {
255 if (strcmp (s, "100") == 0) {
256 ethspeed = 100;
257 } else if (strcmp (s, "10") == 0) {
258 ethspeed = 10;
259 } else {
260 ethspeed = 0;
261 }
262 } else {
263 ethspeed = 0;
264 }
265
266 /* Configure Port B Output Pins => 0x0003cc3F */
267 reg = PB_LED_ALL | PC_REP_SPD1 | PC_REP_SPD0 | PB_RESET_2081 |
268 PB_MAI_ALL;
269 immr->im_cpm.cp_pbpar &= ~reg;
270 immr->im_cpm.cp_pbodr &= ~reg;
271 immr->im_cpm.cp_pbdat &= ~reg; /* all 0 */
272 immr->im_cpm.cp_pbdir |= reg;
273
274 /* Check hardware revision */
275 if ((immr->im_ioport.iop_pcdat & 0x0003) == 0x0003) {
276 /*
277 * Revision 3.x hardware
278 */
279 revision = 3;
280
281 immr->im_ioport.iop_pcdat = 0x0240;
282 immr->im_ioport.iop_pcdir = (PC_REP_MGRPRS | PC_REP_SPD | PC_REP_RES | PC_BIT14); /* = 0x0246 */
283 immr->im_ioport.iop_pcdat |= PC_REP_RES;
284 } else {
285 immr->im_ioport.iop_pcdat = 0x0002;
286 immr->im_ioport.iop_pcdir = (PC_REP_MGRPRS | PC_REP_RES | PC_BIT14 | PC_BIT15); /* = 0x0207 */
287
288 if ((immr->im_ioport.iop_pcdat & PC_REP_SPD) == 0) {
289 /*
290 * Revision 2.x hardware: PC9 connected to PB21
291 */
292 revision = 2;
293
294 if (ethspeed == 0) {
295 /* both 10 and 100 Mbps allowed:
296 * select 10 Mbps and autonegotiation
297 */
298 puts (" [10+100]");
299 immr->im_cpm.cp_pbdat = 0; /* SPD1:SPD0 = 0:0 - autonegot. */
300 speed = 10;
301 } else if (ethspeed == 10) {
302 /* we are asked for 10 Mbps,
303 * so select 10 Mbps
304 */
305 puts (" [10]");
306 immr->im_cpm.cp_pbdat = 0; /* ??? */
307 speed = 10;
308 } else {
309 /* anything else:
310 * select 100 Mbps
311 */
312 puts (" [100]");
313 immr->im_cpm.cp_pbdat = PC_REP_SPD0 | PC_REP_SPD1;
314 /* SPD1:SPD0 = 1:1 - 100 Mbps */
315 speed = 100;
316 }
317 immr->im_ioport.iop_pcdat |= (PC_REP_RES | PC_BIT14);
318
319 /* must be run from RAM */
320 /* start_lxt980 (speed); */
321 /*************************/
322 } else {
323 /*
324 * Revision 1.x hardware
325 */
326 revision = 1;
327
328 immr->im_ioport.iop_pcdat = PC_REP_MGRPRS | PC_BIT14; /* = 0x0202 */
329 immr->im_ioport.iop_pcdir = (PC_REP_MGRPRS | PC_REP_SPD | PC_REP_RES | PC_BIT14 | PC_BIT15); /* = 0x0247 */
330
331 if (ethspeed == 0) {
332 /* both 10 and 100 Mbps allowed:
333 * select 100 Mbps and autonegotiation
334 */
335 puts (" [10+100]");
336 immr->im_cpm.cp_pbdat = 0; /* SPD1:SPD0 = 0:0 - autonegot. */
337 immr->im_ioport.iop_pcdat |= PC_REP_SPD;
338 } else if (ethspeed == 10) {
339 /* we are asked for 10 Mbps,
340 * so select 10 Mbps
341 */
342 puts (" [10]");
343 immr->im_cpm.cp_pbdat = PC_REP_SPD0; /* SPD1:SPD0 = 0:1 - 10 Mbps */
344 } else {
345 /* anything else:
346 * select 100 Mbps
347 */
348 puts (" [100]");
349 immr->im_cpm.cp_pbdat = PC_REP_SPD0 | PC_REP_SPD1;
350 /* SPD1:SPD0 = 1:1 - 100 Mbps */
351 immr->im_ioport.iop_pcdat |= PC_REP_SPD;
352 }
353
354 immr->im_ioport.iop_pcdat |= PC_REP_RES;
355 }
356 }
Simon Glass5dc88712012-01-14 15:24:47 +0000357 SHOW_BOOT_PROGRESS(BOOTSTAGE_ID_CHECK_MAGIC);
wdenk16f21702002-08-26 21:58:50 +0000358
359 return ((revision << 16) | (speed & 0xFFFF));
360}
361
362/* ------------------------------------------------------------------------- */
363
364#define SCC_SM 1 /* Index => SCC2 */
365#define PROFF PROFF_SCC2
366
367#define SMI_MSGLEN 8 /* Length of SMI Messages */
368
369#define PHYGPCR_ADDR 0x109 /* Port Enable */
370#define PHYPCR_ADDR 0x132 /* PHY Port Control Reg. (port 1) */
371#define LEDPCR_ADDR 0x141 /* LED Port Control Reg. */
372#define RPRESET_ADDR 0x144 /* Repeater Reset */
373
374#define PHYPCR_SPEED 0x2000 /* on for 100 Mbps, off for 10 Mbps */
375#define PHYPCR_AN 0x1000 /* on to enable Auto-Negotiation */
376#define PHYPCR_REST_AN 0x0200 /* on to restart Auto-Negotiation */
377#define PHYPCR_FDX 0x0100 /* on for Full Duplex, off for HDX */
378#define PHYPCR_COLT 0x0080 /* on to enable COL signal test */
379
380/* ------------------------------------------------------------------------- */
381
382/*
383 * Must run from RAM:
384 * uses parameter RAM area which is used for stack while running from ROM
385 */
386void hermes_start_lxt980 (int speed)
387{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200388 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk16f21702002-08-26 21:58:50 +0000389 volatile cpm8xx_t *cp = (cpm8xx_t *) & (immr->im_cpm);
390 volatile scc_t *sp = (scc_t *) & (cp->cp_scc[SCC_SM]);
391 volatile cbd_t *bd;
392 volatile hdlc_pram_t *hp;
393 uchar smimsg[SMI_MSGLEN];
394 ushort phypcrval;
395 uint bd_off;
396 int pnr;
397
398 printf ("LXT9880: %3d Mbps\n", speed);
399
400 immr->im_ioport.iop_paodr |= 0x0008; /* init PAODR: PA12 (TXD2) open drain */
401 immr->im_ioport.iop_papar |= 0x400c; /* init PAPAR: TXD2, RXD2, BRGO4 */
402 immr->im_ioport.iop_padir &= 0xbff3; /* init PADIR: BRGO4 */
403 immr->im_ioport.iop_padir |= 0x4000;
404
405 /* get temporary BD; no need for permanent alloc */
406 bd_off = dpram_base_align (8);
407
408 bd = (cbd_t *) (immr->im_cpm.cp_dpmem + bd_off);
409
410 bd->cbd_bufaddr = 0;
411 bd->cbd_datlen = 0;
412 bd->cbd_sc = BD_SC_WRAP | BD_SC_LAST | BD_SC_INTRPT | BD_SC_TC;
413
414 /* init. baudrate generator BRG4 */
415 cp->cp_brgc4 = (0x00010000 | (50 << 1)); /* output 1 MHz */
416
417 cp->cp_sicr &= 0xFFFF00FF; /* SICR: mask SCC2 */
418 cp->cp_sicr |= 0x00001B00; /* SICR: SCC2 clk BRG4 */
419
420 /* init SCC_SM register */
421 sp->scc_psmr = 0x0000; /* init PSMR: no additional flags */
422 sp->scc_todr = 0x0000;
423 sp->scc_dsr = 0x7e7e;
424
425 /* init. SCC_SM parameter area */
426 hp = (hdlc_pram_t *) & cp->cp_dparam[PROFF];
427
428 hp->tbase = bd_off; /* offset from beginning of DPRAM */
429
430 hp->rfcr = 0x18;
431 hp->tfcr = 0x18;
432 hp->mrblr = 10;
433
434 hp->c_mask = 0x0000f0b8;
435 hp->c_pres = 0x0000ffff;
436
437 hp->disfc = 0;
438 hp->crcec = 0;
439 hp->abtsc = 0;
440 hp->nmarc = 0;
441 hp->retrc = 0;
442
443 hp->mflr = 10;
444
445 hp->rfthr = 1;
446
447 hp->hmask = 0;
448 hp->haddr1 = 0;
449 hp->haddr2 = 0;
450 hp->haddr3 = 0;
451 hp->haddr4 = 0;
452
453 cp->cp_cpcr = SCC_SM << 6 | 0x0001; /* SCC_SM: init TX/RX params */
454 while (cp->cp_cpcr & CPM_CR_FLG);
455
456 /* clear all outstanding SCC events */
457 sp->scc_scce = ~0;
458
459 /* enable transmitter: GSMR_L: TPL=2(16bits), TPP=3(all ones), ENT */
460 sp->scc_gsmrh = 0;
461 sp->scc_gsmrl |= SCC_GSMRL_TPL_16 | SCC_GSMRL_TPP_ALL1 |
462 SCC_GSMRL_ENT | SCC_GSMRL_MODE_HDLC;
463
464#if 0
465 smimsg[0] = 0x00; /* CHIP/HUB ID */
466 smimsg[1] = 0x38; /* WRITE CMD */
467 smimsg[2] = (RPRESET_ADDR << 4) & 0xf0;
468 smimsg[3] = RPRESET_ADDR >> 4;
469 smimsg[4] = 0x01;
470 smimsg[5] = 0x00;
471 smimsg[6] = 0x00;
472 smimsg[7] = 0x00;
473
474 send_smi_frame (sp, bd, smimsg);
475#endif
476
477 smimsg[0] = 0x7f; /* BROADCAST */
478 smimsg[1] = 0x34; /* ASSIGN HUB ID */
479 smimsg[2] = 0x00;
480 smimsg[3] = 0x00;
481 smimsg[4] = 0x00; /* HUB ID = 0 */
482 smimsg[5] = 0x00;
483 smimsg[6] = 0x00;
484 smimsg[7] = 0x00;
485
486 send_smi_frame (sp, bd, smimsg);
487
488 smimsg[0] = 0x7f; /* BROADCAST */
489 smimsg[1] = 0x3c; /* SET ARBOUT TO 0 */
490 smimsg[2] = 0x00; /* ADDRESS = 0 */
491 smimsg[3] = 0x00;
492 smimsg[4] = 0x00; /* DATA = 0 */
493 smimsg[5] = 0x00;
494 smimsg[6] = 0x00;
495 smimsg[7] = 0x00;
496
497 send_smi_frame (sp, bd, smimsg);
498
499 if (speed == 100) {
500 phypcrval = PHYPCR_SPEED; /* 100 MBIT, disable autoneg. */
501 } else {
502 phypcrval = 0; /* 10 MBIT, disable autoneg. */
503 }
504
505 /* send MSGs */
506 for (pnr = 0; pnr < 8; pnr++) {
507 smimsg[0] = 0x00; /* CHIP/HUB ID */
508 smimsg[1] = 0x38; /* WRITE CMD */
509 smimsg[2] = ((PHYPCR_ADDR + pnr) << 4) & 0xf0;
510 smimsg[3] = (PHYPCR_ADDR + pnr) >> 4;
511 smimsg[4] = (unsigned char) (phypcrval & 0xff);
512 smimsg[5] = (unsigned char) (phypcrval >> 8);
513 smimsg[6] = 0x00;
514 smimsg[7] = 0x00;
515
516 send_smi_frame (sp, bd, smimsg);
517 }
518
519 smimsg[0] = 0x00; /* CHIP/HUB ID */
520 smimsg[1] = 0x38; /* WRITE CMD */
521 smimsg[2] = (PHYGPCR_ADDR << 4) & 0xf0;
522 smimsg[3] = PHYGPCR_ADDR >> 4;
523 smimsg[4] = 0xff; /* enable port 1-8 */
524 smimsg[5] = 0x01; /* enable MII1 (0x01) */
525 smimsg[6] = 0x00;
526 smimsg[7] = 0x00;
527
528 send_smi_frame (sp, bd, smimsg);
529
530 smimsg[0] = 0x00; /* CHIP/HUB ID */
531 smimsg[1] = 0x38; /* WRITE CMD */
532 smimsg[2] = (LEDPCR_ADDR << 4) & 0xf0;
533 smimsg[3] = LEDPCR_ADDR >> 4;
534 smimsg[4] = 0xaa; /* Port 1-8 Conf.bits = 10 (Hardware control) */
535 smimsg[5] = 0xaa;
536 smimsg[6] = 0x00;
537 smimsg[7] = 0x00;
538
539 send_smi_frame (sp, bd, smimsg);
540
541 /*
542 * Disable Transmitter (so that we can free the BD, too)
543 */
544 sp->scc_gsmrl &= ~SCC_GSMRL_ENT;
545}
546
547/* ------------------------------------------------------------------------- */
548
549static void send_smi_frame (volatile scc_t * sp, volatile cbd_t * bd,
550 uchar * msg)
551{
552#ifdef DEBUG
553 unsigned hub, chip, cmd, length, addr;
554
555 hub = msg[0] & 0x1F;
556 chip = msg[0] >> 5;
557 cmd = msg[1] & 0x1F;
558 length = (msg[1] >> 5) | ((msg[2] & 0x0F) << 3);
559 addr = (msg[2] >> 4) | (msg[3] << 4);
560
561 printf ("SMI send: Hub %02x Chip %x Cmd %02x Len %d Addr %03x: "
562 "%02x %02x %02x %02x\n",
563 hub, chip, cmd, length, addr, msg[4], msg[5], msg[6], msg[7]);
564#endif /* DEBUG */
565
566 bd->cbd_bufaddr = (uint) msg;
567 bd->cbd_datlen = SMI_MSGLEN;
568 bd->cbd_sc |= BD_SC_READY;
569
570 /* wait for msg transmitted */
571 while ((sp->scc_scce & 0x0002) == 0);
572 /* clear all events */
573 sp->scc_scce = ~0;
574}
575
576/* ------------------------------------------------------------------------- */
577
578void show_boot_progress (int status)
579{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200580 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenk16f21702002-08-26 21:58:50 +0000581
Simon Glass8ade9502011-12-10 11:07:58 +0000582 /* let things compatible */
583 if (status < -BOOTSTAGE_ID_POST_FAIL_R)
584 status = -1;
wdenk16f21702002-08-26 21:58:50 +0000585 status ^= 0x0F;
586 status = (status & 0x0F) << 14;
587 immr->im_cpm.cp_pbdat = (immr->im_cpm.cp_pbdat & ~PB_LED_ALL) | status;
588}
589
590/* ------------------------------------------------------------------------- */