blob: 93c2034328560d88e30f95eb126a3fa2e9dd24ab [file] [log] [blame]
wdenkf8cac652002-08-26 22:36:39 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
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.
12 *
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.
17 *
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,
21 * MA 02111-1307 USA
22 */
23long int spd_sdram (void);
24
25#include <common.h>
26#include "walnut405.h"
27#include <asm/processor.h>
28
29
30
31int board_pre_init (void)
32{
33 /*-------------------------------------------------------------------------+
34 | Interrupt controller setup for the Walnut board.
35 | Note: IRQ 0-15 405GP internally generated; active high; level sensitive
36 | IRQ 16 405GP internally generated; active low; level sensitive
37 | IRQ 17-24 RESERVED
38 | IRQ 25 (EXT IRQ 0) FPGA; active high; level sensitive
39 | IRQ 26 (EXT IRQ 1) SMI; active high; level sensitive
40 | IRQ 27 (EXT IRQ 2) Not Used
41 | IRQ 28 (EXT IRQ 3) PCI SLOT 3; active low; level sensitive
42 | IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive
43 | IRQ 30 (EXT IRQ 5) PCI SLOT 1; active low; level sensitive
44 | IRQ 31 (EXT IRQ 6) PCI SLOT 0; active low; level sensitive
45 | Note for Walnut board:
46 | An interrupt taken for the FPGA (IRQ 25) indicates that either
47 | the Mouse, Keyboard, IRDA, or External Expansion caused the
48 | interrupt. The FPGA must be read to determine which device
49 | caused the interrupt. The default setting of the FPGA clears
50 |
51 +-------------------------------------------------------------------------*/
52
53 mtdcr (uicsr, 0xFFFFFFFF); /* clear all ints */
54 mtdcr (uicer, 0x00000000); /* disable all ints */
55 mtdcr (uiccr, 0x00000020); /* set all but FPGA SMI to be non-critical */
56 mtdcr (uicpr, 0xFFFFFFE0); /* set int polarities */
57 mtdcr (uictr, 0x10000000); /* set int trigger levels */
58 mtdcr (uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority */
59 mtdcr (uicsr, 0xFFFFFFFF); /* clear all ints */
60
61#define mtebc(reg, data) mtdcr(ebccfga,reg);mtdcr(ebccfgd,data)
62 /* BAS=0xF00,BS=0x0(1MB),BU=0x3(R/W),BW=0x0( 8 bits) */
63 mtebc (pb1ap, 0x02815480);
64 mtebc (pb1cr, 0xF0018000);
65
66 /* BAS=0xF01,BS=0x0(1MB),BU=0x3(R/W),BW=0x0(8 bits) */
67 mtebc (pb2ap, 0x04815A80);
68 mtebc (pb2cr, 0xF0118000);
69
70 /* BAS=0xF02,BS=0x0(1MB),BU=0x3(R/W),BW=0x0( 8 bits) */
71 mtebc (pb3ap, 0x01815280);
72 mtebc (pb3cr, 0xF0218000);
73
74 /* BAS=0xF03,BS=0x0(1MB),BU=0x3(R/W),BW=0x0(8 bits) */
75 mtebc (pb7ap, 0x01815280);
76 mtebc (pb7cr, 0xF0318000);
77
78 /* set UART1 control to select CTS/RTS */
79#define FPGA_BRDC 0xF0300004
80 *(volatile char *) (FPGA_BRDC) |= 0x1;
81
82 return 0;
83}
84
85
86/* ------------------------------------------------------------------------- */
87
88/*
89 * Check Board Identity:
90 */
91
92int checkboard (void)
93{
94 unsigned char *s = getenv ("serial#");
95 unsigned char *e;
96
97 puts ("Board: ");
98
99 if (!s || strncmp (s, "WALNUT405", 9)) {
100 puts ("### No HW ID - assuming WALNUT405");
101 } else {
102 for (e = s; *e; ++e) {
103 if (*e == ' ')
104 break;
105 }
106 for (; s < e; ++s) {
107 putc (*s);
108 }
109 }
110 putc ('\n');
111
112 return (0);
113}
114
115
116/* -------------------------------------------------------------------------
117 initdram(int board_type) reads EEPROM via I2c. EEPROM contains all of
118 the necessary info for SDRAM controller configuration
119 ------------------------------------------------------------------------- */
120long int initdram (int board_type)
121{
122 long int ret;
123
124 ret = spd_sdram ();
125 return ret;
126}
127
128/* ------------------------------------------------------------------------- */
129
130int testdram (void)
131{
132 /* TODO: XXX XXX XXX */
133 printf ("test: xxx MB - ok\n");
134
135 return (0);
136}
137
138/* ------------------------------------------------------------------------- */