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) show_boot_progress(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)
110 char *s
= getenv ("serial#");
115 if (!s
|| strncmp (s
, "HERMES", 6)) {
116 puts ("### No HW ID - assuming HERMES-PRO");
118 for (e
= s
; *e
; ++e
) {
128 gd
->board_type
= board_init ();
130 printf (" Rev. %ld.x\n", (gd
->board_type
>> 16));
135 /* ------------------------------------------------------------------------- */
137 phys_size_t
initdram (int board_type
)
139 volatile immap_t
*immap
= (immap_t
*) CFG_IMMR
;
140 volatile memctl8xx_t
*memctl
= &immap
->im_memctl
;
141 long int size
, size8
, size9
;
143 upmconfig (UPMA
, (uint
*) sdram_table
,
144 sizeof (sdram_table
) / sizeof (uint
));
147 * Preliminary prescaler for refresh
149 memctl
->memc_mptpr
= 0x0400;
151 memctl
->memc_mar
= 0x00000088;
154 * Map controller banks 1 to the SDRAM banks at preliminary address
156 memctl
->memc_or1
= CFG_OR1_PRELIM
;
157 memctl
->memc_br1
= CFG_BR1_PRELIM
;
159 /* HERMES-PRO boards have only one bank SDRAM */
164 /* perform SDRAM initializsation sequence */
166 memctl
->memc_mamr
= 0xD0802114;
167 memctl
->memc_mcr
= 0x80002105;
169 memctl
->memc_mamr
= 0xD0802118;
170 memctl
->memc_mcr
= 0x80002130;
172 memctl
->memc_mamr
= 0xD0802114;
173 memctl
->memc_mcr
= 0x80002106;
178 * Check Bank 0 Memory Size for re-configuration
182 size8
= dram_size (CFG_MAMR_8COL
, (long *) SDRAM_BASE_PRELIM
,
190 size9
= dram_size (CFG_MAMR_9COL
, (long *) SDRAM_BASE_PRELIM
,
193 if (size8
< size9
) { /* leave configuration at 9 columns */
195 /* debug ("SDRAM Bank 0 in 9 column mode: %ld MB\n", size >> 20); */
196 } else { /* back to 8 columns */
198 memctl
->memc_mamr
= CFG_MAMR_8COL
;
200 /* debug ("SDRAM Bank 0 in 8 column mode: %ld MB\n", size >> 20); */
205 memctl
->memc_or1
= ((-size
) & 0xFFFF0000) | SDRAM_TIMING
;
206 memctl
->memc_br1
= (CFG_SDRAM_BASE
& BR_BA_MSK
) | BR_MS_UPMA
| BR_V
;
213 /* ------------------------------------------------------------------------- */
216 * Check memory range for valid RAM. A simple memory test determines
217 * the actually available RAM size between addresses `base' and
218 * `base + maxsize'. Some (not all) hardware errors are detected:
219 * - short between address lines
220 * - short between data lines
223 static long int dram_size (long int mamr_value
, long int *base
,
226 volatile immap_t
*immap
= (immap_t
*) CFG_IMMR
;
227 volatile memctl8xx_t
*memctl
= &immap
->im_memctl
;
229 memctl
->memc_mamr
= mamr_value
;
231 return (get_ram_size(base
, maxsize
));
234 /* ------------------------------------------------------------------------- */
236 #define PB_LED_3 0x00020000 /* Status LED's */
237 #define PB_LED_2 0x00010000
238 #define PB_LED_1 0x00008000
239 #define PB_LED_0 0x00004000
241 #define PB_LED_ALL (PB_LED_0 | PB_LED_1 | PB_LED_2 | PB_LED_3)
243 #define PC_REP_SPD1 0x00000800
244 #define PC_REP_SPD0 0x00000400
246 #define PB_RESET_2081 0x00000020 /* Reset PEB2081 */
248 #define PB_MAI_4 0x00000010 /* Configuration */
249 #define PB_MAI_3 0x00000008
250 #define PB_MAI_2 0x00000004
251 #define PB_MAI_1 0x00000002
252 #define PB_MAI_0 0x00000001
254 #define PB_MAI_ALL (PB_MAI_0 | PB_MAI_1 | PB_MAI_2 | PB_MAI_3 | PB_MAI_4)
257 #define PC_REP_MGRPRS 0x0200
258 #define PC_REP_SPD 0x0040 /* Select 100 Mbps */
259 #define PC_REP_RES 0x0004
260 #define PC_BIT14 0x0002 /* ??? */
261 #define PC_BIT15 0x0001 /* ??? ENDSL ?? */
263 /* ------------------------------------------------------------------------- */
265 static ulong
board_init (void)
267 volatile immap_t
*immr
= (immap_t
*) CFG_IMMR
;
268 ulong reg
, revision
, speed
= 100;
272 if ((s
= getenv ("ethspeed")) != NULL
) {
273 if (strcmp (s
, "100") == 0) {
275 } else if (strcmp (s
, "10") == 0) {
284 /* Configure Port B Output Pins => 0x0003cc3F */
285 reg
= PB_LED_ALL
| PC_REP_SPD1
| PC_REP_SPD0
| PB_RESET_2081
|
287 immr
->im_cpm
.cp_pbpar
&= ~reg
;
288 immr
->im_cpm
.cp_pbodr
&= ~reg
;
289 immr
->im_cpm
.cp_pbdat
&= ~reg
; /* all 0 */
290 immr
->im_cpm
.cp_pbdir
|= reg
;
292 /* Check hardware revision */
293 if ((immr
->im_ioport
.iop_pcdat
& 0x0003) == 0x0003) {
295 * Revision 3.x hardware
299 immr
->im_ioport
.iop_pcdat
= 0x0240;
300 immr
->im_ioport
.iop_pcdir
= (PC_REP_MGRPRS
| PC_REP_SPD
| PC_REP_RES
| PC_BIT14
); /* = 0x0246 */
301 immr
->im_ioport
.iop_pcdat
|= PC_REP_RES
;
303 immr
->im_ioport
.iop_pcdat
= 0x0002;
304 immr
->im_ioport
.iop_pcdir
= (PC_REP_MGRPRS
| PC_REP_RES
| PC_BIT14
| PC_BIT15
); /* = 0x0207 */
306 if ((immr
->im_ioport
.iop_pcdat
& PC_REP_SPD
) == 0) {
308 * Revision 2.x hardware: PC9 connected to PB21
313 /* both 10 and 100 Mbps allowed:
314 * select 10 Mbps and autonegotiation
317 immr
->im_cpm
.cp_pbdat
= 0; /* SPD1:SPD0 = 0:0 - autonegot. */
319 } else if (ethspeed
== 10) {
320 /* we are asked for 10 Mbps,
324 immr
->im_cpm
.cp_pbdat
= 0; /* ??? */
331 immr
->im_cpm
.cp_pbdat
= PC_REP_SPD0
| PC_REP_SPD1
;
332 /* SPD1:SPD0 = 1:1 - 100 Mbps */
335 immr
->im_ioport
.iop_pcdat
|= (PC_REP_RES
| PC_BIT14
);
337 /* must be run from RAM */
338 /* start_lxt980 (speed); */
339 /*************************/
342 * Revision 1.x hardware
346 immr
->im_ioport
.iop_pcdat
= PC_REP_MGRPRS
| PC_BIT14
; /* = 0x0202 */
347 immr
->im_ioport
.iop_pcdir
= (PC_REP_MGRPRS
| PC_REP_SPD
| PC_REP_RES
| PC_BIT14
| PC_BIT15
); /* = 0x0247 */
350 /* both 10 and 100 Mbps allowed:
351 * select 100 Mbps and autonegotiation
354 immr
->im_cpm
.cp_pbdat
= 0; /* SPD1:SPD0 = 0:0 - autonegot. */
355 immr
->im_ioport
.iop_pcdat
|= PC_REP_SPD
;
356 } else if (ethspeed
== 10) {
357 /* we are asked for 10 Mbps,
361 immr
->im_cpm
.cp_pbdat
= PC_REP_SPD0
; /* SPD1:SPD0 = 0:1 - 10 Mbps */
367 immr
->im_cpm
.cp_pbdat
= PC_REP_SPD0
| PC_REP_SPD1
;
368 /* SPD1:SPD0 = 1:1 - 100 Mbps */
369 immr
->im_ioport
.iop_pcdat
|= PC_REP_SPD
;
372 immr
->im_ioport
.iop_pcdat
|= PC_REP_RES
;
375 SHOW_BOOT_PROGRESS (0x00);
377 return ((revision
<< 16) | (speed
& 0xFFFF));
380 /* ------------------------------------------------------------------------- */
382 #define SCC_SM 1 /* Index => SCC2 */
383 #define PROFF PROFF_SCC2
385 #define SMI_MSGLEN 8 /* Length of SMI Messages */
387 #define PHYGPCR_ADDR 0x109 /* Port Enable */
388 #define PHYPCR_ADDR 0x132 /* PHY Port Control Reg. (port 1) */
389 #define LEDPCR_ADDR 0x141 /* LED Port Control Reg. */
390 #define RPRESET_ADDR 0x144 /* Repeater Reset */
392 #define PHYPCR_SPEED 0x2000 /* on for 100 Mbps, off for 10 Mbps */
393 #define PHYPCR_AN 0x1000 /* on to enable Auto-Negotiation */
394 #define PHYPCR_REST_AN 0x0200 /* on to restart Auto-Negotiation */
395 #define PHYPCR_FDX 0x0100 /* on for Full Duplex, off for HDX */
396 #define PHYPCR_COLT 0x0080 /* on to enable COL signal test */
398 /* ------------------------------------------------------------------------- */
402 * uses parameter RAM area which is used for stack while running from ROM
404 void hermes_start_lxt980 (int speed
)
406 volatile immap_t
*immr
= (immap_t
*) CFG_IMMR
;
407 volatile cpm8xx_t
*cp
= (cpm8xx_t
*) & (immr
->im_cpm
);
408 volatile scc_t
*sp
= (scc_t
*) & (cp
->cp_scc
[SCC_SM
]);
410 volatile hdlc_pram_t
*hp
;
411 uchar smimsg
[SMI_MSGLEN
];
416 printf ("LXT9880: %3d Mbps\n", speed
);
418 immr
->im_ioport
.iop_paodr
|= 0x0008; /* init PAODR: PA12 (TXD2) open drain */
419 immr
->im_ioport
.iop_papar
|= 0x400c; /* init PAPAR: TXD2, RXD2, BRGO4 */
420 immr
->im_ioport
.iop_padir
&= 0xbff3; /* init PADIR: BRGO4 */
421 immr
->im_ioport
.iop_padir
|= 0x4000;
423 /* get temporary BD; no need for permanent alloc */
424 bd_off
= dpram_base_align (8);
426 bd
= (cbd_t
*) (immr
->im_cpm
.cp_dpmem
+ bd_off
);
430 bd
->cbd_sc
= BD_SC_WRAP
| BD_SC_LAST
| BD_SC_INTRPT
| BD_SC_TC
;
432 /* init. baudrate generator BRG4 */
433 cp
->cp_brgc4
= (0x00010000 | (50 << 1)); /* output 1 MHz */
435 cp
->cp_sicr
&= 0xFFFF00FF; /* SICR: mask SCC2 */
436 cp
->cp_sicr
|= 0x00001B00; /* SICR: SCC2 clk BRG4 */
438 /* init SCC_SM register */
439 sp
->scc_psmr
= 0x0000; /* init PSMR: no additional flags */
440 sp
->scc_todr
= 0x0000;
441 sp
->scc_dsr
= 0x7e7e;
443 /* init. SCC_SM parameter area */
444 hp
= (hdlc_pram_t
*) & cp
->cp_dparam
[PROFF
];
446 hp
->tbase
= bd_off
; /* offset from beginning of DPRAM */
452 hp
->c_mask
= 0x0000f0b8;
453 hp
->c_pres
= 0x0000ffff;
471 cp
->cp_cpcr
= SCC_SM
<< 6 | 0x0001; /* SCC_SM: init TX/RX params */
472 while (cp
->cp_cpcr
& CPM_CR_FLG
);
474 /* clear all outstanding SCC events */
477 /* enable transmitter: GSMR_L: TPL=2(16bits), TPP=3(all ones), ENT */
479 sp
->scc_gsmrl
|= SCC_GSMRL_TPL_16
| SCC_GSMRL_TPP_ALL1
|
480 SCC_GSMRL_ENT
| SCC_GSMRL_MODE_HDLC
;
483 smimsg
[0] = 0x00; /* CHIP/HUB ID */
484 smimsg
[1] = 0x38; /* WRITE CMD */
485 smimsg
[2] = (RPRESET_ADDR
<< 4) & 0xf0;
486 smimsg
[3] = RPRESET_ADDR
>> 4;
492 send_smi_frame (sp
, bd
, smimsg
);
495 smimsg
[0] = 0x7f; /* BROADCAST */
496 smimsg
[1] = 0x34; /* ASSIGN HUB ID */
499 smimsg
[4] = 0x00; /* HUB ID = 0 */
504 send_smi_frame (sp
, bd
, smimsg
);
506 smimsg
[0] = 0x7f; /* BROADCAST */
507 smimsg
[1] = 0x3c; /* SET ARBOUT TO 0 */
508 smimsg
[2] = 0x00; /* ADDRESS = 0 */
510 smimsg
[4] = 0x00; /* DATA = 0 */
515 send_smi_frame (sp
, bd
, smimsg
);
518 phypcrval
= PHYPCR_SPEED
; /* 100 MBIT, disable autoneg. */
520 phypcrval
= 0; /* 10 MBIT, disable autoneg. */
524 for (pnr
= 0; pnr
< 8; pnr
++) {
525 smimsg
[0] = 0x00; /* CHIP/HUB ID */
526 smimsg
[1] = 0x38; /* WRITE CMD */
527 smimsg
[2] = ((PHYPCR_ADDR
+ pnr
) << 4) & 0xf0;
528 smimsg
[3] = (PHYPCR_ADDR
+ pnr
) >> 4;
529 smimsg
[4] = (unsigned char) (phypcrval
& 0xff);
530 smimsg
[5] = (unsigned char) (phypcrval
>> 8);
534 send_smi_frame (sp
, bd
, smimsg
);
537 smimsg
[0] = 0x00; /* CHIP/HUB ID */
538 smimsg
[1] = 0x38; /* WRITE CMD */
539 smimsg
[2] = (PHYGPCR_ADDR
<< 4) & 0xf0;
540 smimsg
[3] = PHYGPCR_ADDR
>> 4;
541 smimsg
[4] = 0xff; /* enable port 1-8 */
542 smimsg
[5] = 0x01; /* enable MII1 (0x01) */
546 send_smi_frame (sp
, bd
, smimsg
);
548 smimsg
[0] = 0x00; /* CHIP/HUB ID */
549 smimsg
[1] = 0x38; /* WRITE CMD */
550 smimsg
[2] = (LEDPCR_ADDR
<< 4) & 0xf0;
551 smimsg
[3] = LEDPCR_ADDR
>> 4;
552 smimsg
[4] = 0xaa; /* Port 1-8 Conf.bits = 10 (Hardware control) */
557 send_smi_frame (sp
, bd
, smimsg
);
560 * Disable Transmitter (so that we can free the BD, too)
562 sp
->scc_gsmrl
&= ~SCC_GSMRL_ENT
;
565 /* ------------------------------------------------------------------------- */
567 static void send_smi_frame (volatile scc_t
* sp
, volatile cbd_t
* bd
,
571 unsigned hub
, chip
, cmd
, length
, addr
;
576 length
= (msg
[1] >> 5) | ((msg
[2] & 0x0F) << 3);
577 addr
= (msg
[2] >> 4) | (msg
[3] << 4);
579 printf ("SMI send: Hub %02x Chip %x Cmd %02x Len %d Addr %03x: "
580 "%02x %02x %02x %02x\n",
581 hub
, chip
, cmd
, length
, addr
, msg
[4], msg
[5], msg
[6], msg
[7]);
584 bd
->cbd_bufaddr
= (uint
) msg
;
585 bd
->cbd_datlen
= SMI_MSGLEN
;
586 bd
->cbd_sc
|= BD_SC_READY
;
588 /* wait for msg transmitted */
589 while ((sp
->scc_scce
& 0x0002) == 0);
590 /* clear all events */
594 /* ------------------------------------------------------------------------- */
596 void show_boot_progress (int status
)
598 volatile immap_t
*immr
= (immap_t
*) CFG_IMMR
;
600 if (status
< -32) status
= -1; /* let things compatible */
602 status
= (status
& 0x0F) << 14;
603 immr
->im_cpm
.cp_pbdat
= (immr
->im_cpm
.cp_pbdat
& ~PB_LED_ALL
) | status
;
606 /* ------------------------------------------------------------------------- */