blob: 36bf329f8192f8962159f3caaa22b7aea955b746 [file] [log] [blame]
Stefan Roese7644f162005-09-22 09:16:57 +02001/*
2 * (C) Copyright 2005
3 * Matthias Fuchs, esd gmbh germany, matthias.fuchs@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
Wolfgang Denkf013dac2005-12-04 00:40:34 +010015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Stefan Roese7644f162005-09-22 09:16:57 +020016 * 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
Wolfgang Denkd87080b2006-03-31 18:32:53 +020029DECLARE_GLOBAL_DATA_PTR;
30
Stefan Roese7644f162005-09-22 09:16:57 +020031int board_early_init_f (void)
32{
33 unsigned long cntrl0Reg;
34
35 /*
Stefan Roese2076d0a2006-01-18 20:03:15 +010036 * Setup GPIO pins
Stefan Roese7644f162005-09-22 09:16:57 +020037 */
38 cntrl0Reg = mfdcr(cntrl0);
Stefan Roese2076d0a2006-01-18 20:03:15 +010039 mtdcr(cntrl0, cntrl0Reg | ((CFG_EEPROM_WP | CFG_PB_LED | CFG_SELF_RST | CFG_INTA_FAKE) << 5));
Stefan Roese7644f162005-09-22 09:16:57 +020040
Wolfgang Denkbfc81252006-03-06 13:03:37 +010041 /* set output pins to high */
Stefan Roese2076d0a2006-01-18 20:03:15 +010042 out32(GPIO0_OR, CFG_EEPROM_WP);
Wolfgang Denkbfc81252006-03-06 13:03:37 +010043 /* setup for output (LED=off) */
Stefan Roese2076d0a2006-01-18 20:03:15 +010044 out32(GPIO0_TCR, CFG_EEPROM_WP | CFG_PB_LED);
Stefan Roese7644f162005-09-22 09:16:57 +020045
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) PB0; active low; level sensitive
51 * IRQ 26 (EXT IRQ 1) PB1; active low; level sensitive
52 * IRQ 27 (EXT IRQ 2) PCI SLOT 0; active low; level sensitive
53 * IRQ 28 (EXT IRQ 3) PCI SLOT 1; active low; level sensitive
54 * IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive
55 * IRQ 30 (EXT IRQ 5) PCI SLOT 3; active low; level sensitive
56 * IRQ 31 (EXT IRQ 6) unused
57 */
Wolfgang Denkf013dac2005-12-04 00:40:34 +010058 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 */
Stefan Roese7644f162005-09-22 09:16:57 +020062
Wolfgang Denkf013dac2005-12-04 00:40:34 +010063 mtdcr(uictr, 0x10000000); /* set int trigger levels */
64 mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/
65 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
Stefan Roese7644f162005-09-22 09:16:57 +020066
67 return 0;
68}
69
70
71int misc_init_f (void)
72{
73 return 0; /* dummy implementation */
74}
75
76
77int misc_init_r (void)
78{
Stefan Roese7644f162005-09-22 09:16:57 +020079 unsigned long cntrl0Reg;
80
81 /* adjust flash start and offset */
82 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
83 gd->bd->bi_flashoffset = 0;
84
85 /*
86 * Select cts (and not dsr) on uart1
87 */
88 cntrl0Reg = mfdcr(cntrl0);
89 mtdcr(cntrl0, cntrl0Reg | 0x00001000);
90
91 return (0);
92}
93
94
95/*
96 * Check Board Identity:
97 */
98int checkboard (void)
99{
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200100 char str[64];
Stefan Roese7644f162005-09-22 09:16:57 +0200101 int i = getenv_r ("serial#", str, sizeof(str));
102
103 puts ("Board: ");
104
105 if (i == -1) {
106 puts ("### No HW ID - assuming CPCI2DP");
107 } else {
108 puts(str);
109 }
110
111 printf(" (Ver 1.0)");
112
113 putc ('\n');
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 return (4*1024*1024 << ((val & 0x000e0000) >> 17));
128}
129
130/* ------------------------------------------------------------------------- */
131
Stefan Roese7644f162005-09-22 09:16:57 +0200132#if defined(CFG_EEPROM_WREN)
133/* Input: <dev_addr> I2C address of EEPROM device to enable.
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100134 * <state> -1: deliver current state
135 * 0: disable write
Stefan Roese7644f162005-09-22 09:16:57 +0200136 * 1: enable write
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100137 * Returns: -1: wrong device address
138 * 0: dis-/en- able done
Stefan Roese7644f162005-09-22 09:16:57 +0200139 * 0/1: current state if <state> was -1.
140 */
141int eeprom_write_enable (unsigned dev_addr, int state) {
142 if (CFG_I2C_EEPROM_ADDR != dev_addr) {
143 return -1;
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100144 } else {
Stefan Roese7644f162005-09-22 09:16:57 +0200145 switch (state) {
146 case 1:
147 /* Enable write access, clear bit GPIO_SINT2. */
148 out32(GPIO0_OR, in32(GPIO0_OR) & ~CFG_EEPROM_WP);
149 state = 0;
150 break;
151 case 0:
152 /* Disable write access, set bit GPIO_SINT2. */
153 out32(GPIO0_OR, in32(GPIO0_OR) | CFG_EEPROM_WP);
154 state = 0;
155 break;
156 default:
157 /* Read current status back. */
158 state = (0 == (in32(GPIO0_OR) & CFG_EEPROM_WP));
159 break;
160 }
161 }
162 return state;
163}
164#endif
165
166#if defined(CFG_EEPROM_WREN)
167int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
168{
169 int query = argc == 1;
170 int state = 0;
171
172 if (query) {
173 /* Query write access state. */
174 state = eeprom_write_enable (CFG_I2C_EEPROM_ADDR, -1);
175 if (state < 0) {
176 puts ("Query of write access state failed.\n");
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100177 } else {
Stefan Roese7644f162005-09-22 09:16:57 +0200178 printf ("Write access for device 0x%0x is %sabled.\n",
179 CFG_I2C_EEPROM_ADDR, state ? "en" : "dis");
180 state = 0;
181 }
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100182 } else {
Stefan Roese7644f162005-09-22 09:16:57 +0200183 if ('0' == argv[1][0]) {
184 /* Disable write access. */
185 state = eeprom_write_enable (CFG_I2C_EEPROM_ADDR, 0);
Wolfgang Denkf013dac2005-12-04 00:40:34 +0100186 } else {
Stefan Roese7644f162005-09-22 09:16:57 +0200187 /* Enable write access. */
188 state = eeprom_write_enable (CFG_I2C_EEPROM_ADDR, 1);
189 }
190 if (state < 0) {
191 puts ("Setup of write access state failed.\n");
192 }
193 }
194
195 return state;
196}
197
198U_BOOT_CMD(
Stefan Roese2076d0a2006-01-18 20:03:15 +0100199 eepwren, 2, 0, do_eep_wren,
200 "eepwren - Enable / disable / query EEPROM write access\n",
201 NULL
202 );
Stefan Roese7644f162005-09-22 09:16:57 +0200203#endif /* #if defined(CFG_EEPROM_WREN) */