3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #ifdef CONFIG_SHOW_BOOT_PROGRESS
29 # include <status_led.h>
30 # define SHOW_BOOT_PROGRESS(arg) bootstage_mark(arg)
32 # define SHOW_BOOT_PROGRESS(arg)
35 DECLARE_GLOBAL_DATA_PTR;
37 /* ------------------------------------------------------------------------- */
39 static long int dram_size (long int, long int *, long int);
40 static ulong board_init (void);
41 static void send_smi_frame (volatile scc_t * sp, volatile cbd_t * bd,
44 /* ------------------------------------------------------------------------- */
46 #define _NOT_USED_ 0xFFFFFFFF
48 const uint sdram_table[] = {
50 * Single Read. (Offset 0 in UPMA RAM)
52 0x1f07fc04, 0xeeaefc04, 0x11adfc04, 0xefbbbc00,
53 0x1ff77c47, /* last */
55 * SDRAM Initialization (offset 5 in UPMA RAM)
57 * This is no UPM entry point. The following definition uses
58 * the remaining space to establish an initialization
59 * sequence, which is executed by a RUN command.
62 0x1fe77c35, 0xffaffc34, 0x1fa57c35, /* last */
64 * Burst Read. (Offset 8 in UPMA RAM)
66 0x1f07fc04, 0xeeaefc04, 0x10adfc04, 0xf0affc00,
67 0xf0affc00, 0xf1affc00, 0xefbbbc00, 0x1ff77c47, /* last */
68 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
69 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
71 * Single Write. (Offset 18 in UPMA RAM)
73 0x1f27fc04, 0xeeaebc00, 0x01b93c04, 0x1ff77c47, /* last */
74 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
76 * Burst Write. (Offset 20 in UPMA RAM)
78 0x1f07fc04, 0xeeaebc00, 0x10ad4c00, 0xf0afcc00,
79 0xf0afcc00, 0xe1bb8c06, 0x1ff77c47, /* last */
81 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
82 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
84 * Refresh (Offset 30 in UPMA RAM)
86 0x1ff5fc84, 0xfffffc04, 0xfffffc04, 0xfffffc04,
87 0xfffffc84, 0xfffffc07, /* last */
88 _NOT_USED_, _NOT_USED_,
89 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
91 * Exception. (Offset 3c in UPMA RAM)
93 0x7ffffc07, /* last */
94 _NOT_USED_, _NOT_USED_, _NOT_USED_,
97 /* ------------------------------------------------------------------------- */
101 * Check Board Identity:
103 * Test ID string (HERMES...)
105 * Return code for board revision and network speed
108 int checkboard (void)
112 int l = getenv_f("serial#", buf, sizeof(buf));
116 if (l < 0 || strncmp(buf, "HERMES", 6)) {
117 puts ("### No HW ID - assuming HERMES-PRO");
119 for (i = 0; i < l; i++) {
126 gd->board_type = board_init ();
128 printf (" Rev. %ld.x\n", (gd->board_type >> 16));
133 /* ------------------------------------------------------------------------- */
135 phys_size_t initdram (int board_type)
137 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
138 volatile memctl8xx_t *memctl = &immap->im_memctl;
139 long int size, size8, size9;
141 upmconfig (UPMA, (uint *) sdram_table,
142 sizeof (sdram_table) / sizeof (uint));
145 * Preliminary prescaler for refresh
147 memctl->memc_mptpr = 0x0400;
149 memctl->memc_mar = 0x00000088;
152 * Map controller banks 1 to the SDRAM banks at preliminary address
154 memctl->memc_or1 = CONFIG_SYS_OR1_PRELIM;
155 memctl->memc_br1 = CONFIG_SYS_BR1_PRELIM;
157 /* HERMES-PRO boards have only one bank SDRAM */
162 /* perform SDRAM initializsation sequence */
164 memctl->memc_mamr = 0xD0802114;
165 memctl->memc_mcr = 0x80002105;
167 memctl->memc_mamr = 0xD0802118;
168 memctl->memc_mcr = 0x80002130;
170 memctl->memc_mamr = 0xD0802114;
171 memctl->memc_mcr = 0x80002106;
176 * Check Bank 0 Memory Size for re-configuration
180 size8 = dram_size (CONFIG_SYS_MAMR_8COL, (long *) SDRAM_BASE_PRELIM,
188 size9 = dram_size (CONFIG_SYS_MAMR_9COL, (long *) SDRAM_BASE_PRELIM,
191 if (size8 < size9) { /* leave configuration at 9 columns */
193 /* debug ("SDRAM Bank 0 in 9 column mode: %ld MB\n", size >> 20); */
194 } else { /* back to 8 columns */
196 memctl->memc_mamr = CONFIG_SYS_MAMR_8COL;
198 /* debug ("SDRAM Bank 0 in 8 column mode: %ld MB\n", size >> 20); */
203 memctl->memc_or1 = ((-size) & 0xFFFF0000) | SDRAM_TIMING;
204 memctl->memc_br1 = (CONFIG_SYS_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
211 /* ------------------------------------------------------------------------- */
214 * Check memory range for valid RAM. A simple memory test determines
215 * the actually available RAM size between addresses `base' and
216 * `base + maxsize'. Some (not all) hardware errors are detected:
217 * - short between address lines
218 * - short between data lines
221 static long int dram_size (long int mamr_value, long int *base,
224 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
225 volatile memctl8xx_t *memctl = &immap->im_memctl;
227 memctl->memc_mamr = mamr_value;
229 return (get_ram_size(base, maxsize));
232 /* ------------------------------------------------------------------------- */
234 #define PB_LED_3 0x00020000 /* Status LED's */
235 #define PB_LED_2 0x00010000
236 #define PB_LED_1 0x00008000
237 #define PB_LED_0 0x00004000
239 #define PB_LED_ALL (PB_LED_0 | PB_LED_1 | PB_LED_2 | PB_LED_3)
241 #define PC_REP_SPD1 0x00000800
242 #define PC_REP_SPD0 0x00000400
244 #define PB_RESET_2081 0x00000020 /* Reset PEB2081 */
246 #define PB_MAI_4 0x00000010 /* Configuration */
247 #define PB_MAI_3 0x00000008
248 #define PB_MAI_2 0x00000004
249 #define PB_MAI_1 0x00000002
250 #define PB_MAI_0 0x00000001
252 #define PB_MAI_ALL (PB_MAI_0 | PB_MAI_1 | PB_MAI_2 | PB_MAI_3 | PB_MAI_4)
255 #define PC_REP_MGRPRS 0x0200
256 #define PC_REP_SPD 0x0040 /* Select 100 Mbps */
257 #define PC_REP_RES 0x0004
258 #define PC_BIT14 0x0002 /* ??? */
259 #define PC_BIT15 0x0001 /* ??? ENDSL ?? */
261 /* ------------------------------------------------------------------------- */
263 static ulong board_init (void)
265 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
266 ulong reg, revision, speed = 100;
270 if ((s = getenv ("ethspeed")) != NULL) {
271 if (strcmp (s, "100") == 0) {
273 } else if (strcmp (s, "10") == 0) {
282 /* Configure Port B Output Pins => 0x0003cc3F */
283 reg = PB_LED_ALL | PC_REP_SPD1 | PC_REP_SPD0 | PB_RESET_2081 |
285 immr->im_cpm.cp_pbpar &= ~reg;
286 immr->im_cpm.cp_pbodr &= ~reg;
287 immr->im_cpm.cp_pbdat &= ~reg; /* all 0 */
288 immr->im_cpm.cp_pbdir |= reg;
290 /* Check hardware revision */
291 if ((immr->im_ioport.iop_pcdat & 0x0003) == 0x0003) {
293 * Revision 3.x hardware
297 immr->im_ioport.iop_pcdat = 0x0240;
298 immr->im_ioport.iop_pcdir = (PC_REP_MGRPRS | PC_REP_SPD | PC_REP_RES | PC_BIT14); /* = 0x0246 */
299 immr->im_ioport.iop_pcdat |= PC_REP_RES;
301 immr->im_ioport.iop_pcdat = 0x0002;
302 immr->im_ioport.iop_pcdir = (PC_REP_MGRPRS | PC_REP_RES | PC_BIT14 | PC_BIT15); /* = 0x0207 */
304 if ((immr->im_ioport.iop_pcdat & PC_REP_SPD) == 0) {
306 * Revision 2.x hardware: PC9 connected to PB21
311 /* both 10 and 100 Mbps allowed:
312 * select 10 Mbps and autonegotiation
315 immr->im_cpm.cp_pbdat = 0; /* SPD1:SPD0 = 0:0 - autonegot. */
317 } else if (ethspeed == 10) {
318 /* we are asked for 10 Mbps,
322 immr->im_cpm.cp_pbdat = 0; /* ??? */
329 immr->im_cpm.cp_pbdat = PC_REP_SPD0 | PC_REP_SPD1;
330 /* SPD1:SPD0 = 1:1 - 100 Mbps */
333 immr->im_ioport.iop_pcdat |= (PC_REP_RES | PC_BIT14);
335 /* must be run from RAM */
336 /* start_lxt980 (speed); */
337 /*************************/
340 * Revision 1.x hardware
344 immr->im_ioport.iop_pcdat = PC_REP_MGRPRS | PC_BIT14; /* = 0x0202 */
345 immr->im_ioport.iop_pcdir = (PC_REP_MGRPRS | PC_REP_SPD | PC_REP_RES | PC_BIT14 | PC_BIT15); /* = 0x0247 */
348 /* both 10 and 100 Mbps allowed:
349 * select 100 Mbps and autonegotiation
352 immr->im_cpm.cp_pbdat = 0; /* SPD1:SPD0 = 0:0 - autonegot. */
353 immr->im_ioport.iop_pcdat |= PC_REP_SPD;
354 } else if (ethspeed == 10) {
355 /* we are asked for 10 Mbps,
359 immr->im_cpm.cp_pbdat = PC_REP_SPD0; /* SPD1:SPD0 = 0:1 - 10 Mbps */
365 immr->im_cpm.cp_pbdat = PC_REP_SPD0 | PC_REP_SPD1;
366 /* SPD1:SPD0 = 1:1 - 100 Mbps */
367 immr->im_ioport.iop_pcdat |= PC_REP_SPD;
370 immr->im_ioport.iop_pcdat |= PC_REP_RES;
373 SHOW_BOOT_PROGRESS(BOOTSTAGE_ID_CHECK_MAGIC);
375 return ((revision << 16) | (speed & 0xFFFF));
378 /* ------------------------------------------------------------------------- */
380 #define SCC_SM 1 /* Index => SCC2 */
381 #define PROFF PROFF_SCC2
383 #define SMI_MSGLEN 8 /* Length of SMI Messages */
385 #define PHYGPCR_ADDR 0x109 /* Port Enable */
386 #define PHYPCR_ADDR 0x132 /* PHY Port Control Reg. (port 1) */
387 #define LEDPCR_ADDR 0x141 /* LED Port Control Reg. */
388 #define RPRESET_ADDR 0x144 /* Repeater Reset */
390 #define PHYPCR_SPEED 0x2000 /* on for 100 Mbps, off for 10 Mbps */
391 #define PHYPCR_AN 0x1000 /* on to enable Auto-Negotiation */
392 #define PHYPCR_REST_AN 0x0200 /* on to restart Auto-Negotiation */
393 #define PHYPCR_FDX 0x0100 /* on for Full Duplex, off for HDX */
394 #define PHYPCR_COLT 0x0080 /* on to enable COL signal test */
396 /* ------------------------------------------------------------------------- */
400 * uses parameter RAM area which is used for stack while running from ROM
402 void hermes_start_lxt980 (int speed)
404 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
405 volatile cpm8xx_t *cp = (cpm8xx_t *) & (immr->im_cpm);
406 volatile scc_t *sp = (scc_t *) & (cp->cp_scc[SCC_SM]);
408 volatile hdlc_pram_t *hp;
409 uchar smimsg[SMI_MSGLEN];
414 printf ("LXT9880: %3d Mbps\n", speed);
416 immr->im_ioport.iop_paodr |= 0x0008; /* init PAODR: PA12 (TXD2) open drain */
417 immr->im_ioport.iop_papar |= 0x400c; /* init PAPAR: TXD2, RXD2, BRGO4 */
418 immr->im_ioport.iop_padir &= 0xbff3; /* init PADIR: BRGO4 */
419 immr->im_ioport.iop_padir |= 0x4000;
421 /* get temporary BD; no need for permanent alloc */
422 bd_off = dpram_base_align (8);
424 bd = (cbd_t *) (immr->im_cpm.cp_dpmem + bd_off);
428 bd->cbd_sc = BD_SC_WRAP | BD_SC_LAST | BD_SC_INTRPT | BD_SC_TC;
430 /* init. baudrate generator BRG4 */
431 cp->cp_brgc4 = (0x00010000 | (50 << 1)); /* output 1 MHz */
433 cp->cp_sicr &= 0xFFFF00FF; /* SICR: mask SCC2 */
434 cp->cp_sicr |= 0x00001B00; /* SICR: SCC2 clk BRG4 */
436 /* init SCC_SM register */
437 sp->scc_psmr = 0x0000; /* init PSMR: no additional flags */
438 sp->scc_todr = 0x0000;
439 sp->scc_dsr = 0x7e7e;
441 /* init. SCC_SM parameter area */
442 hp = (hdlc_pram_t *) & cp->cp_dparam[PROFF];
444 hp->tbase = bd_off; /* offset from beginning of DPRAM */
450 hp->c_mask = 0x0000f0b8;
451 hp->c_pres = 0x0000ffff;
469 cp->cp_cpcr = SCC_SM << 6 | 0x0001; /* SCC_SM: init TX/RX params */
470 while (cp->cp_cpcr & CPM_CR_FLG);
472 /* clear all outstanding SCC events */
475 /* enable transmitter: GSMR_L: TPL=2(16bits), TPP=3(all ones), ENT */
477 sp->scc_gsmrl |= SCC_GSMRL_TPL_16 | SCC_GSMRL_TPP_ALL1 |
478 SCC_GSMRL_ENT | SCC_GSMRL_MODE_HDLC;
481 smimsg[0] = 0x00; /* CHIP/HUB ID */
482 smimsg[1] = 0x38; /* WRITE CMD */
483 smimsg[2] = (RPRESET_ADDR << 4) & 0xf0;
484 smimsg[3] = RPRESET_ADDR >> 4;
490 send_smi_frame (sp, bd, smimsg);
493 smimsg[0] = 0x7f; /* BROADCAST */
494 smimsg[1] = 0x34; /* ASSIGN HUB ID */
497 smimsg[4] = 0x00; /* HUB ID = 0 */
502 send_smi_frame (sp, bd, smimsg);
504 smimsg[0] = 0x7f; /* BROADCAST */
505 smimsg[1] = 0x3c; /* SET ARBOUT TO 0 */
506 smimsg[2] = 0x00; /* ADDRESS = 0 */
508 smimsg[4] = 0x00; /* DATA = 0 */
513 send_smi_frame (sp, bd, smimsg);
516 phypcrval = PHYPCR_SPEED; /* 100 MBIT, disable autoneg. */
518 phypcrval = 0; /* 10 MBIT, disable autoneg. */
522 for (pnr = 0; pnr < 8; pnr++) {
523 smimsg[0] = 0x00; /* CHIP/HUB ID */
524 smimsg[1] = 0x38; /* WRITE CMD */
525 smimsg[2] = ((PHYPCR_ADDR + pnr) << 4) & 0xf0;
526 smimsg[3] = (PHYPCR_ADDR + pnr) >> 4;
527 smimsg[4] = (unsigned char) (phypcrval & 0xff);
528 smimsg[5] = (unsigned char) (phypcrval >> 8);
532 send_smi_frame (sp, bd, smimsg);
535 smimsg[0] = 0x00; /* CHIP/HUB ID */
536 smimsg[1] = 0x38; /* WRITE CMD */
537 smimsg[2] = (PHYGPCR_ADDR << 4) & 0xf0;
538 smimsg[3] = PHYGPCR_ADDR >> 4;
539 smimsg[4] = 0xff; /* enable port 1-8 */
540 smimsg[5] = 0x01; /* enable MII1 (0x01) */
544 send_smi_frame (sp, bd, smimsg);
546 smimsg[0] = 0x00; /* CHIP/HUB ID */
547 smimsg[1] = 0x38; /* WRITE CMD */
548 smimsg[2] = (LEDPCR_ADDR << 4) & 0xf0;
549 smimsg[3] = LEDPCR_ADDR >> 4;
550 smimsg[4] = 0xaa; /* Port 1-8 Conf.bits = 10 (Hardware control) */
555 send_smi_frame (sp, bd, smimsg);
558 * Disable Transmitter (so that we can free the BD, too)
560 sp->scc_gsmrl &= ~SCC_GSMRL_ENT;
563 /* ------------------------------------------------------------------------- */
565 static void send_smi_frame (volatile scc_t * sp, volatile cbd_t * bd,
569 unsigned hub, chip, cmd, length, addr;
574 length = (msg[1] >> 5) | ((msg[2] & 0x0F) << 3);
575 addr = (msg[2] >> 4) | (msg[3] << 4);
577 printf ("SMI send: Hub %02x Chip %x Cmd %02x Len %d Addr %03x: "
578 "%02x %02x %02x %02x\n",
579 hub, chip, cmd, length, addr, msg[4], msg[5], msg[6], msg[7]);
582 bd->cbd_bufaddr = (uint) msg;
583 bd->cbd_datlen = SMI_MSGLEN;
584 bd->cbd_sc |= BD_SC_READY;
586 /* wait for msg transmitted */
587 while ((sp->scc_scce & 0x0002) == 0);
588 /* clear all events */
592 /* ------------------------------------------------------------------------- */
594 void show_boot_progress (int status)
596 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
598 /* let things compatible */
599 if (status < -BOOTSTAGE_ID_POST_FAIL_R)
602 status = (status & 0x0F) << 14;
603 immr->im_cpm.cp_pbdat = (immr->im_cpm.cp_pbdat & ~PB_LED_ALL) | status;
606 /* ------------------------------------------------------------------------- */