stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001-2003 |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
| 5 | * (C) Copyright 2005 |
| 6 | * Matthias Fuchs, esd gmbh germany, matthias.fuchs@esd-electronics.com |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 7 | * |
| 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> |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 30 | #include <malloc.h> |
| 31 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 32 | DECLARE_GLOBAL_DATA_PTR; |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 33 | |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 34 | extern void lxt971_no_sleep(void); |
| 35 | |
stroese | ef9e868 | 2003-09-12 08:46:58 +0000 | [diff] [blame] | 36 | /* fpga configuration data - not compressed, generated by bin2c */ |
| 37 | const unsigned char fpgadata[] = |
| 38 | { |
| 39 | #include "fpgadata.c" |
| 40 | }; |
| 41 | int filesize = sizeof(fpgadata); |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 42 | |
| 43 | |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 44 | int board_early_init_f (void) |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 45 | { |
| 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 | |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 71 | /* |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 72 | * Setup GPIO pins |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 73 | */ |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 74 | |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 75 | mtdcr(cntrl0, mfdcr(cntrl0) | ((CFG_FPGA_INIT | \ |
| 76 | CFG_FPGA_DONE | \ |
| 77 | CFG_XEREADY | \ |
| 78 | CFG_NONMONARCH | \ |
| 79 | CFG_REV1_2) << 5)); |
| 80 | |
| 81 | if (!(in32(GPIO0_IR) & CFG_REV1_2)) { |
| 82 | /* rev 1.2 boards */ |
| 83 | mtdcr(cntrl0, mfdcr(cntrl0) | ((CFG_INTA_FAKE | \ |
| 84 | CFG_SELF_RST) << 5)); |
| 85 | } |
| 86 | |
| 87 | out32(GPIO0_OR, 0); |
| 88 | out32(GPIO0_TCR, CFG_FPGA_PRG | CFG_FPGA_CLK | CFG_FPGA_DATA | CFG_XEREADY); /* setup for output */ |
| 89 | |
| 90 | /* - check if rev1_2 is low, then: |
| 91 | * - set/reset CFG_INTA_FAKE/CFG_SELF_RST in TCR to assert INTA# or SELFRST# |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 92 | */ |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 93 | |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | |
| 98 | /* ------------------------------------------------------------------------- */ |
| 99 | |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 100 | |
| 101 | int misc_init_r (void) |
| 102 | { |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 103 | /* adjust flash start and offset */ |
| 104 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; |
| 105 | gd->bd->bi_flashoffset = 0; |
| 106 | |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 107 | out32(GPIO0_OR, in32(GPIO0_OR) | CFG_XEREADY); /* deassert EREADY# */ |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 108 | return (0); |
| 109 | } |
| 110 | |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 111 | ushort pmc405_pci_subsys_deviceid(void) |
| 112 | { |
| 113 | ulong val; |
| 114 | val = in32(GPIO0_IR); |
| 115 | if (!(val & CFG_REV1_2)) { /* low=rev1.2 */ |
| 116 | if (val & CFG_NONMONARCH) { /* monarch# signal */ |
| 117 | return CFG_PCI_SUBSYS_DEVICEID_NONMONARCH; |
| 118 | } |
| 119 | return CFG_PCI_SUBSYS_DEVICEID_MONARCH; |
| 120 | } |
| 121 | return CFG_PCI_SUBSYS_DEVICEID_NONMONARCH; |
| 122 | } |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 123 | |
| 124 | /* |
| 125 | * Check Board Identity: |
| 126 | */ |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 127 | int checkboard (void) |
| 128 | { |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 129 | ulong val; |
| 130 | |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 131 | char str[64]; |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 132 | int i = getenv_r ("serial#", str, sizeof(str)); |
| 133 | |
| 134 | puts ("Board: "); |
| 135 | |
| 136 | if (i == -1) { |
stroese | ef9e868 | 2003-09-12 08:46:58 +0000 | [diff] [blame] | 137 | puts ("### No HW ID - assuming PMC405"); |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 138 | } else { |
| 139 | puts(str); |
| 140 | } |
| 141 | |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 142 | val = in32(GPIO0_IR); |
| 143 | if (!(val & CFG_REV1_2)) { /* low=rev1.2 */ |
| 144 | puts(" rev1.2 ("); |
| 145 | if (val & CFG_NONMONARCH) { /* monarch# signal */ |
| 146 | puts("non-"); |
| 147 | } |
| 148 | puts("monarch)"); |
| 149 | } else { |
| 150 | puts(" <=rev1.1"); |
| 151 | } |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 152 | |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 153 | putc ('\n'); |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 154 | |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | /* ------------------------------------------------------------------------- */ |
| 159 | |
| 160 | long int initdram (int board_type) |
| 161 | { |
| 162 | unsigned long val; |
| 163 | |
| 164 | mtdcr(memcfga, mem_mb0cf); |
| 165 | val = mfdcr(memcfgd); |
| 166 | |
| 167 | #if 0 |
| 168 | printf("\nmb0cf=%x\n", val); /* test-only */ |
| 169 | printf("strap=%x\n", mfdcr(strap)); /* test-only */ |
| 170 | #endif |
| 171 | |
| 172 | return (4*1024*1024 << ((val & 0x000e0000) >> 17)); |
| 173 | } |
| 174 | |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 175 | |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 176 | /* ------------------------------------------------------------------------- */ |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 177 | void reset_phy(void) |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 178 | { |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 179 | #ifdef CONFIG_LXT971_NO_SLEEP |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 180 | |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 181 | /* |
| 182 | * Disable sleep mode in LXT971 |
| 183 | */ |
| 184 | lxt971_no_sleep(); |
| 185 | #endif |
stroese | 071d897 | 2003-05-23 11:35:47 +0000 | [diff] [blame] | 186 | } |
| 187 | |
stroese | 4510a7b | 2004-12-16 18:40:02 +0000 | [diff] [blame] | 188 | |
| 189 | int do_cantest(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 190 | { |
| 191 | ulong addr; |
| 192 | volatile uchar *ptr; |
| 193 | volatile uchar val; |
| 194 | int i; |
| 195 | |
| 196 | addr = simple_strtol (argv[1], NULL, 16) + 0x16; |
| 197 | |
| 198 | i = 0; |
| 199 | for (;;) { |
| 200 | ptr = (uchar *)addr; |
| 201 | for (i=0; i<8; i++) { |
| 202 | *ptr = i; |
| 203 | val = *ptr; |
| 204 | |
| 205 | if (val != i) { |
| 206 | printf("ERROR: addr=%p write=0x%02X, read=0x%02X\n", ptr, i, val); |
| 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | /* Abort if ctrl-c was pressed */ |
| 211 | if (ctrlc()) { |
| 212 | puts("\nAbort\n"); |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | ptr++; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | return 0; |
| 221 | } |
| 222 | U_BOOT_CMD( |
| 223 | cantest, 3, 1, do_cantest, |
| 224 | "cantest - Test CAN controller", |
| 225 | NULL |
| 226 | ); |