blob: 6d99b60130ebd9a08e0183707df5f464f44ad7cb [file] [log] [blame]
stroesede46bb62003-09-12 08:41:24 +00001/*
2 * (C) Copyright 2001-2003
3 * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
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 */
23
24#include <common.h>
25#include <asm/processor.h>
26#include <command.h>
27#include <malloc.h>
28
29
30/* fpga configuration data - not compressed, generated by bin2c */
31const unsigned char fpgadata[] =
32{
33#include "fpgadata.c"
34};
35int filesize = sizeof(fpgadata);
36
37
38int board_pre_init (void)
39{
40 /*
41 * IRQ 0-15 405GP internally generated; active high; level sensitive
42 * IRQ 16 405GP internally generated; active low; level sensitive
43 * IRQ 17-24 RESERVED
44 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
45 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
46 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
47 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
48 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
49 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
50 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
51 */
52 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
53 mtdcr(uicer, 0x00000000); /* disable all ints */
54 mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/
55 mtdcr(uicpr, 0xFFFFFF80); /* set int polarities */
56 mtdcr(uictr, 0x10000000); /* set int trigger levels */
57 mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/
58 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
59
60 /*
61 * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
62 */
63 mtebc (epcr, 0xa8400000); /* ebc always driven */
64
65 return 0;
66}
67
68
69/* ------------------------------------------------------------------------- */
70
71int misc_init_f (void)
72{
73 return 0; /* dummy implementation */
74}
75
76
77int misc_init_r (void)
78{
79 /*
80 * Reset CPLD via GPIO13 (CS4) pin
81 */
82 out32(GPIO0_OR, in32(GPIO0_OR) & ~(0x80000000 >> 13));
83 udelay(1000); /* wait 1ms */
84 out32(GPIO0_OR, in32(GPIO0_OR) | (0x80000000 >> 13));
85 udelay(1000); /* wait 1ms */
86
87 return (0);
88}
89
90
91/*
92 * Check Board Identity:
93 */
94
95int checkboard (void)
96{
97 unsigned char str[64];
98 int i = getenv_r ("serial#", str, sizeof(str));
99 unsigned char trans[16] = {0x0,0x8,0x4,0xc,0x2,0xa,0x6,0xe,
wdenk9c53f402003-10-15 23:53:47 +0000100 0x1,0x9,0x5,0xd,0x3,0xb,0x7,0xf};
stroesede46bb62003-09-12 08:41:24 +0000101 unsigned char id1, id2;
102
103 puts ("Board: ");
104
105 if (i == -1) {
106 puts ("### No HW ID - assuming DP405");
107 } else {
108 puts(str);
109 }
110
111 id1 = trans[(~(in32(GPIO0_IR) >> 5)) & 0x0000000f];
112 id2 = trans[(~(in32(GPIO0_IR) >> 9)) & 0x0000000f];
113 printf(" (ID=0x%1X%1X)\n", id1, id2);
114
115 return 0;
116}
117
118/* ------------------------------------------------------------------------- */
119
120long int initdram (int board_type)
121{
122 unsigned long val;
123
124 mtdcr(memcfga, mem_mb0cf);
125 val = mfdcr(memcfgd);
126
127#if 0
128 printf("\nmb0cf=%x\n", val); /* test-only */
129 printf("strap=%x\n", mfdcr(strap)); /* test-only */
130#endif
131
132 return (4*1024*1024 << ((val & 0x000e0000) >> 17));
133}
134
135/* ------------------------------------------------------------------------- */
136
137int testdram (void)
138{
139 /* TODO: XXX XXX XXX */
140 printf ("test: 16 MB - ok\n");
141
142 return (0);
143}