stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 29 | DECLARE_GLOBAL_DATA_PTR; |
stroese | 31193c2 | 2004-12-16 18:37:08 +0000 | [diff] [blame] | 30 | |
| 31 | extern void lxt971_no_sleep(void); |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 32 | |
stroese | 47b1e3d | 2005-03-01 17:26:39 +0000 | [diff] [blame] | 33 | int board_revision(void) |
| 34 | { |
| 35 | unsigned long osrl_reg; |
| 36 | unsigned long isr1l_reg; |
| 37 | unsigned long tcr_reg; |
| 38 | unsigned long value; |
| 39 | |
| 40 | /* |
| 41 | * Get version of HUB405 board from GPIO's |
| 42 | */ |
| 43 | |
| 44 | /* |
| 45 | * Setup GPIO pin(s) (IRQ6/GPIO23) |
| 46 | */ |
| 47 | osrl_reg = in32(GPIO0_OSRH); |
| 48 | isr1l_reg = in32(GPIO0_ISR1H); |
| 49 | tcr_reg = in32(GPIO0_TCR); |
| 50 | out32(GPIO0_OSRH, osrl_reg & ~0x00030000); /* output select */ |
| 51 | out32(GPIO0_ISR1H, isr1l_reg | 0x00030000); /* input select */ |
| 52 | out32(GPIO0_TCR, tcr_reg & ~0x00000100); /* select input */ |
| 53 | |
| 54 | udelay(1000); /* wait some time before reading input */ |
| 55 | value = in32(GPIO0_IR) & 0x00000100; /* get config bits */ |
| 56 | |
| 57 | /* |
| 58 | * Restore GPIO settings |
| 59 | */ |
| 60 | out32(GPIO0_OSRH, osrl_reg); /* output select */ |
| 61 | out32(GPIO0_ISR1H, isr1l_reg); /* input select */ |
| 62 | out32(GPIO0_TCR, tcr_reg); /* enable output driver for outputs */ |
| 63 | |
| 64 | if (value & 0x00000100) { |
| 65 | /* Revision 1.1 or 1.2 detected */ |
| 66 | return 1; |
| 67 | } |
| 68 | |
| 69 | /* Revision 1.0 */ |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 74 | int board_early_init_f (void) |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 75 | { |
| 76 | /* |
| 77 | * IRQ 0-15 405GP internally generated; active high; level sensitive |
| 78 | * IRQ 16 405GP internally generated; active low; level sensitive |
| 79 | * IRQ 17-24 RESERVED |
| 80 | * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive |
| 81 | * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive |
| 82 | * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive |
| 83 | * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive |
| 84 | * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive |
| 85 | * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive |
| 86 | * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive |
| 87 | */ |
| 88 | mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ |
| 89 | mtdcr(uicer, 0x00000000); /* disable all ints */ |
| 90 | mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/ |
| 91 | mtdcr(uicpr, 0xFFFFFF9F); /* set int polarities */ |
| 92 | mtdcr(uictr, 0x10000000); /* set int trigger levels */ |
| 93 | mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/ |
| 94 | mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ |
| 95 | |
| 96 | /* |
| 97 | * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us |
| 98 | */ |
| 99 | mtebc (epcr, 0xa8400000); /* ebc always driven */ |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 105 | int misc_init_f (void) |
| 106 | { |
| 107 | return 0; /* dummy implementation */ |
| 108 | } |
| 109 | |
| 110 | |
| 111 | int misc_init_r (void) |
| 112 | { |
| 113 | volatile unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4); |
| 114 | volatile unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4); |
| 115 | volatile unsigned char *duart2_mcr = (unsigned char *)((ulong)DUART2_BA + 4); |
| 116 | volatile unsigned char *duart3_mcr = (unsigned char *)((ulong)DUART3_BA + 4); |
stroese | 31193c2 | 2004-12-16 18:37:08 +0000 | [diff] [blame] | 117 | volatile unsigned char *led_reg = (unsigned char *)((ulong)DUART0_BA + 0x20); |
| 118 | unsigned long val; |
| 119 | int delay, flashcnt; |
| 120 | char *str; |
stroese | 47b1e3d | 2005-03-01 17:26:39 +0000 | [diff] [blame] | 121 | char hw_rev[4]; |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 122 | |
| 123 | /* |
| 124 | * Enable interrupts in exar duart mcr[3] |
| 125 | */ |
| 126 | *duart0_mcr = 0x08; |
| 127 | *duart1_mcr = 0x08; |
| 128 | *duart2_mcr = 0x08; |
| 129 | *duart3_mcr = 0x08; |
| 130 | |
wdenk | efe2a4d | 2004-12-16 21:44:03 +0000 | [diff] [blame] | 131 | /* |
stroese | 31193c2 | 2004-12-16 18:37:08 +0000 | [diff] [blame] | 132 | * Set RS232/RS422 control (RS232 = high on GPIO) |
| 133 | */ |
| 134 | val = in32(GPIO0_OR); |
| 135 | val &= ~(CFG_UART2_RS232 | CFG_UART3_RS232 | CFG_UART4_RS232 | CFG_UART5_RS232); |
| 136 | |
| 137 | str = getenv("phys0"); |
| 138 | if (!str || (str && (str[0] == '0'))) |
| 139 | val |= CFG_UART2_RS232; |
| 140 | |
| 141 | str = getenv("phys1"); |
| 142 | if (!str || (str && (str[0] == '0'))) |
| 143 | val |= CFG_UART3_RS232; |
| 144 | |
| 145 | str = getenv("phys2"); |
| 146 | if (!str || (str && (str[0] == '0'))) |
| 147 | val |= CFG_UART4_RS232; |
| 148 | |
| 149 | str = getenv("phys3"); |
| 150 | if (!str || (str && (str[0] == '0'))) |
| 151 | val |= CFG_UART5_RS232; |
| 152 | |
| 153 | out32(GPIO0_OR, val); |
| 154 | |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 155 | /* |
stroese | 31193c2 | 2004-12-16 18:37:08 +0000 | [diff] [blame] | 156 | * check board type and setup AP power |
| 157 | */ |
| 158 | str = getenv("bd_type"); /* this is only set on non prototype hardware */ |
| 159 | if (str != NULL) { |
stroese | 47b1e3d | 2005-03-01 17:26:39 +0000 | [diff] [blame] | 160 | if ((strcmp(str, "swch405") == 0) || ((!strcmp(str, "hub405") && (gd->board_type >= 1)))) { |
stroese | 31193c2 | 2004-12-16 18:37:08 +0000 | [diff] [blame] | 161 | unsigned char led_reg_default = 0; |
| 162 | str = getenv("ap_pwr"); |
| 163 | if (!str || (str && (str[0] == '1'))) |
| 164 | led_reg_default = 0x04 | 0x02 ; /* U2_LED | AP_PWR */ |
| 165 | |
| 166 | /* |
stroese | 47b1e3d | 2005-03-01 17:26:39 +0000 | [diff] [blame] | 167 | * Flash LEDs |
stroese | 31193c2 | 2004-12-16 18:37:08 +0000 | [diff] [blame] | 168 | */ |
| 169 | for (flashcnt = 0; flashcnt < 3; flashcnt++) { |
| 170 | *led_reg = led_reg_default; /* LED_A..D off */ |
| 171 | for (delay = 0; delay < 100; delay++) |
| 172 | udelay(1000); |
| 173 | *led_reg = led_reg_default | 0xf0; /* LED_A..D on */ |
| 174 | for (delay = 0; delay < 50; delay++) |
| 175 | udelay(1000); |
| 176 | } |
| 177 | *led_reg = led_reg_default; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | /* |
| 182 | * Reset external DUARTs |
| 183 | */ |
| 184 | out32(GPIO0_OR, in32(GPIO0_OR) | CFG_DUART_RST); /* set reset to high */ |
| 185 | udelay(10); /* wait 10us */ |
| 186 | out32(GPIO0_OR, in32(GPIO0_OR) & ~CFG_DUART_RST); /* set reset to low */ |
| 187 | udelay(1000); /* wait 1ms */ |
| 188 | |
stroese | 47b1e3d | 2005-03-01 17:26:39 +0000 | [diff] [blame] | 189 | /* |
| 190 | * Store hardware revision in environment for further processing |
| 191 | */ |
| 192 | sprintf(hw_rev, "1.%ld", gd->board_type); |
| 193 | setenv("hw_rev", hw_rev); |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 194 | return (0); |
| 195 | } |
| 196 | |
| 197 | |
| 198 | /* |
| 199 | * Check Board Identity: |
| 200 | */ |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 201 | int checkboard (void) |
| 202 | { |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 203 | char str[64]; |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 204 | int i = getenv_r ("serial#", str, sizeof(str)); |
| 205 | |
| 206 | puts ("Board: "); |
| 207 | |
| 208 | if (i == -1) { |
| 209 | puts ("### No HW ID - assuming HUB405"); |
| 210 | } else { |
| 211 | puts(str); |
| 212 | } |
| 213 | |
stroese | 47b1e3d | 2005-03-01 17:26:39 +0000 | [diff] [blame] | 214 | if (getenv_r("bd_type", str, sizeof(str)) != -1) { |
| 215 | printf(" (%s", str); |
| 216 | } else { |
| 217 | puts(" (Missing bd_type!"); |
| 218 | } |
| 219 | |
| 220 | gd->board_type = board_revision(); |
| 221 | printf(", Rev 1.%ld)\n", gd->board_type); |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 222 | |
stroese | 31193c2 | 2004-12-16 18:37:08 +0000 | [diff] [blame] | 223 | /* |
| 224 | * Disable sleep mode in LXT971 |
| 225 | */ |
| 226 | lxt971_no_sleep(); |
| 227 | |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 228 | return 0; |
| 229 | } |
| 230 | |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 231 | |
| 232 | long int initdram (int board_type) |
| 233 | { |
| 234 | unsigned long val; |
| 235 | |
| 236 | mtdcr(memcfga, mem_mb0cf); |
| 237 | val = mfdcr(memcfgd); |
| 238 | |
stroese | a65cb68 | 2003-09-12 08:41:39 +0000 | [diff] [blame] | 239 | return (4*1024*1024 << ((val & 0x000e0000) >> 17)); |
| 240 | } |