blob: c0781dc950ef7b1815764d03660516778ece4f00 [file] [log] [blame]
stroese9f53bf32003-05-23 11:35:47 +00001/*
2 * (C) Copyright 2001-2003
Stefan Roese1c671a92006-01-18 20:03:15 +01003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * (C) Copyright 2005
6 * Matthias Fuchs, esd gmbh germany, matthias.fuchs@esd-electronics.com
stroese9f53bf32003-05-23 11:35:47 +00007 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <asm/processor.h>
29#include <command.h>
stroese9f53bf32003-05-23 11:35:47 +000030#include <malloc.h>
31
Wolfgang Denk6405a152006-03-31 18:32:53 +020032DECLARE_GLOBAL_DATA_PTR;
stroese9f53bf32003-05-23 11:35:47 +000033
stroese631ccae2004-12-16 18:40:02 +000034extern void lxt971_no_sleep(void);
35
stroese93d65082003-09-12 08:46:58 +000036/* fpga configuration data - not compressed, generated by bin2c */
37const unsigned char fpgadata[] =
38{
39#include "fpgadata.c"
40};
41int filesize = sizeof(fpgadata);
stroese9f53bf32003-05-23 11:35:47 +000042
43
wdenkda55c6e2004-01-20 23:12:12 +000044int board_early_init_f (void)
stroese9f53bf32003-05-23 11:35:47 +000045{
46 /*
47 * IRQ 0-15 405GP internally generated; active high; level sensitive
48 * IRQ 16 405GP internally generated; active low; level sensitive
49 * IRQ 17-24 RESERVED
50 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
51 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
52 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
53 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
54 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
55 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
56 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
57 */
58 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
59 mtdcr(uicer, 0x00000000); /* disable all ints */
60 mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/
61 mtdcr(uicpr, 0xFFFFFF81); /* set int polarities */
62 mtdcr(uictr, 0x10000000); /* set int trigger levels */
63 mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/
64 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
65
66 /*
67 * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
68 */
69 mtebc (epcr, 0xa8400000);
70
stroese631ccae2004-12-16 18:40:02 +000071 /*
Stefan Roese1c671a92006-01-18 20:03:15 +010072 * Setup GPIO pins
stroese631ccae2004-12-16 18:40:02 +000073 */
stroese631ccae2004-12-16 18:40:02 +000074
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020075 mtdcr(cntrl0, mfdcr(cntrl0) | ((CONFIG_SYS_FPGA_INIT | \
76 CONFIG_SYS_FPGA_DONE | \
77 CONFIG_SYS_XEREADY | \
78 CONFIG_SYS_NONMONARCH | \
79 CONFIG_SYS_REV1_2) << 5));
Stefan Roese1c671a92006-01-18 20:03:15 +010080
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020081 if (!(in32(GPIO0_IR) & CONFIG_SYS_REV1_2)) {
Stefan Roese1c671a92006-01-18 20:03:15 +010082 /* rev 1.2 boards */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020083 mtdcr(cntrl0, mfdcr(cntrl0) | ((CONFIG_SYS_INTA_FAKE | \
84 CONFIG_SYS_SELF_RST) << 5));
Stefan Roese1c671a92006-01-18 20:03:15 +010085 }
86
87 out32(GPIO0_OR, 0);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020088 out32(GPIO0_TCR, CONFIG_SYS_FPGA_PRG | CONFIG_SYS_FPGA_CLK | CONFIG_SYS_FPGA_DATA | CONFIG_SYS_XEREADY); /* setup for output */
Stefan Roese1c671a92006-01-18 20:03:15 +010089
90 /* - check if rev1_2 is low, then:
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 * - set/reset CONFIG_SYS_INTA_FAKE/CONFIG_SYS_SELF_RST in TCR to assert INTA# or SELFRST#
stroese631ccae2004-12-16 18:40:02 +000092 */
stroese631ccae2004-12-16 18:40:02 +000093
stroese9f53bf32003-05-23 11:35:47 +000094 return 0;
95}
96
97
98/* ------------------------------------------------------------------------- */
99
stroese9f53bf32003-05-23 11:35:47 +0000100
101int misc_init_r (void)
102{
stroese631ccae2004-12-16 18:40:02 +0000103 /* adjust flash start and offset */
104 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
105 gd->bd->bi_flashoffset = 0;
106
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200107 out32(GPIO0_OR, in32(GPIO0_OR) | CONFIG_SYS_XEREADY); /* deassert EREADY# */
stroese9f53bf32003-05-23 11:35:47 +0000108 return (0);
109}
110
Stefan Roese1c671a92006-01-18 20:03:15 +0100111ushort pmc405_pci_subsys_deviceid(void)
112{
113 ulong val;
114 val = in32(GPIO0_IR);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200115 if (!(val & CONFIG_SYS_REV1_2)) { /* low=rev1.2 */
116 if (val & CONFIG_SYS_NONMONARCH) { /* monarch# signal */
117 return CONFIG_SYS_PCI_SUBSYS_DEVICEID_NONMONARCH;
Stefan Roese1c671a92006-01-18 20:03:15 +0100118 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200119 return CONFIG_SYS_PCI_SUBSYS_DEVICEID_MONARCH;
Stefan Roese1c671a92006-01-18 20:03:15 +0100120 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200121 return CONFIG_SYS_PCI_SUBSYS_DEVICEID_NONMONARCH;
Stefan Roese1c671a92006-01-18 20:03:15 +0100122}
stroese9f53bf32003-05-23 11:35:47 +0000123
124/*
125 * Check Board Identity:
126 */
stroese9f53bf32003-05-23 11:35:47 +0000127int checkboard (void)
128{
Stefan Roese1c671a92006-01-18 20:03:15 +0100129 ulong val;
130
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200131 char str[64];
stroese9f53bf32003-05-23 11:35:47 +0000132 int i = getenv_r ("serial#", str, sizeof(str));
133
134 puts ("Board: ");
135
136 if (i == -1) {
stroese93d65082003-09-12 08:46:58 +0000137 puts ("### No HW ID - assuming PMC405");
stroese9f53bf32003-05-23 11:35:47 +0000138 } else {
139 puts(str);
140 }
141
Stefan Roese1c671a92006-01-18 20:03:15 +0100142 val = in32(GPIO0_IR);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200143 if (!(val & CONFIG_SYS_REV1_2)) { /* low=rev1.2 */
Stefan Roese1c671a92006-01-18 20:03:15 +0100144 puts(" rev1.2 (");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200145 if (val & CONFIG_SYS_NONMONARCH) { /* monarch# signal */
Stefan Roese1c671a92006-01-18 20:03:15 +0100146 puts("non-");
147 }
148 puts("monarch)");
149 } else {
150 puts(" <=rev1.1");
151 }
stroese9f53bf32003-05-23 11:35:47 +0000152
Stefan Roese1c671a92006-01-18 20:03:15 +0100153 putc ('\n');
stroese631ccae2004-12-16 18:40:02 +0000154
stroese9f53bf32003-05-23 11:35:47 +0000155 return 0;
156}
157
158/* ------------------------------------------------------------------------- */
Stefan Roese1c671a92006-01-18 20:03:15 +0100159void reset_phy(void)
stroese9f53bf32003-05-23 11:35:47 +0000160{
Stefan Roese1c671a92006-01-18 20:03:15 +0100161#ifdef CONFIG_LXT971_NO_SLEEP
stroese9f53bf32003-05-23 11:35:47 +0000162
Stefan Roese1c671a92006-01-18 20:03:15 +0100163 /*
164 * Disable sleep mode in LXT971
165 */
166 lxt971_no_sleep();
167#endif
stroese9f53bf32003-05-23 11:35:47 +0000168}
169
stroese631ccae2004-12-16 18:40:02 +0000170
171int do_cantest(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
172{
173 ulong addr;
174 volatile uchar *ptr;
175 volatile uchar val;
176 int i;
177
178 addr = simple_strtol (argv[1], NULL, 16) + 0x16;
179
180 i = 0;
181 for (;;) {
182 ptr = (uchar *)addr;
183 for (i=0; i<8; i++) {
184 *ptr = i;
185 val = *ptr;
186
187 if (val != i) {
188 printf("ERROR: addr=%p write=0x%02X, read=0x%02X\n", ptr, i, val);
189 return 0;
190 }
191
192 /* Abort if ctrl-c was pressed */
193 if (ctrlc()) {
194 puts("\nAbort\n");
195 return 0;
196 }
197
198 ptr++;
199 }
200 }
201
202 return 0;
203}
204U_BOOT_CMD(
205 cantest, 3, 1, do_cantest,
206 "cantest - Test CAN controller",
207 NULL
208 );