Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 1 | /* |
| 2 | * U-boot - stamp.c STAMP board specific routines |
| 3 | * |
Aubrey Li | 155fd76 | 2007-04-05 18:31:18 +0800 | [diff] [blame] | 4 | * Copyright (c) 2005-2007 Analog Devices Inc. |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 5 | * |
| 6 | * (C) Copyright 2000-2004 |
| 7 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 8 | * |
| 9 | * See file CREDITS for list of people who contributed to this |
| 10 | * project. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License as |
| 14 | * published by the Free Software Foundation; either version 2 of |
| 15 | * the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
Aubrey Li | 155fd76 | 2007-04-05 18:31:18 +0800 | [diff] [blame] | 24 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, |
| 25 | * MA 02110-1301 USA |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #include <common.h> |
| 29 | #include <asm/mem_init.h> |
Aubrey Li | 8440bb1 | 2007-03-12 00:25:14 +0800 | [diff] [blame] | 30 | #include <asm/io.h> |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 31 | #include "bf533-stamp.h" |
| 32 | |
Wolfgang Denk | 1218abf | 2007-09-15 20:48:41 +0200 | [diff] [blame] | 33 | DECLARE_GLOBAL_DATA_PTR; |
| 34 | |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 35 | #define STATUS_LED_OFF 0 |
| 36 | #define STATUS_LED_ON 1 |
| 37 | |
| 38 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 39 | # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg) |
| 40 | #else |
| 41 | # define SHOW_BOOT_PROGRESS(arg) |
| 42 | #endif |
| 43 | |
| 44 | int checkboard(void) |
| 45 | { |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 46 | printf("Board: ADI BF533 Stamp board\n"); |
| 47 | printf(" Support: http://blackfin.uclinux.org/\n"); |
| 48 | return 0; |
| 49 | } |
| 50 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 51 | phys_size_t initdram(int board_type) |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 52 | { |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 53 | #ifdef DEBUG |
| 54 | printf("SDRAM attributes:\n"); |
| 55 | printf |
| 56 | (" tRCD:%d Cycles; tRP:%d Cycles; tRAS:%d Cycles; tWR:%d Cycles; " |
| 57 | "CAS Latency:%d cycles\n", (SDRAM_tRCD >> 15), (SDRAM_tRP >> 11), |
| 58 | (SDRAM_tRAS >> 6), (SDRAM_tWR >> 19), (SDRAM_CL >> 2)); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 59 | printf("SDRAM Begin: 0x%x\n", CONFIG_SYS_SDRAM_BASE); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 60 | printf("Bank size = %d MB\n", 128); |
| 61 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 62 | gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; |
| 63 | gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE; |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 64 | return (gd->bd->bi_memsize); |
| 65 | } |
| 66 | |
| 67 | void swap_to(int device_id) |
| 68 | { |
| 69 | |
| 70 | if (device_id == ETHERNET) { |
| 71 | *pFIO_DIR = PF0; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 72 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 73 | *pFIO_FLAG_S = PF0; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 74 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 75 | } else if (device_id == FLASH) { |
| 76 | *pFIO_DIR = (PF4 | PF3 | PF2 | PF1 | PF0); |
| 77 | *pFIO_FLAG_S = (PF4 | PF3 | PF2); |
| 78 | *pFIO_MASKA_D = (PF8 | PF6 | PF5); |
| 79 | *pFIO_MASKB_D = (PF7); |
| 80 | *pFIO_POLAR = (PF8 | PF6 | PF5); |
| 81 | *pFIO_EDGE = (PF8 | PF7 | PF6 | PF5); |
| 82 | *pFIO_INEN = (PF8 | PF7 | PF6 | PF5); |
| 83 | *pFIO_FLAG_D = (PF4 | PF3 | PF2); |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 84 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 85 | } else { |
| 86 | printf("Unknown bank to switch\n"); |
| 87 | } |
| 88 | |
| 89 | return; |
| 90 | } |
| 91 | |
| 92 | #if defined(CONFIG_MISC_INIT_R) |
| 93 | /* miscellaneous platform dependent initialisations */ |
| 94 | int misc_init_r(void) |
| 95 | { |
| 96 | int i; |
| 97 | int cf_stat = 0; |
| 98 | |
| 99 | /* Check whether CF card is inserted */ |
| 100 | *pFIO_EDGE = FIO_EDGE_CF_BITS; |
| 101 | *pFIO_POLAR = FIO_POLAR_CF_BITS; |
| 102 | for (i = 0; i < 0x300; i++) |
| 103 | asm("nop;"); |
| 104 | |
| 105 | if ((*pFIO_FLAG_S) & CF_STAT_BITS) { |
| 106 | cf_stat = 0; |
| 107 | } else { |
| 108 | cf_stat = 1; |
| 109 | } |
| 110 | |
| 111 | *pFIO_EDGE = FIO_EDGE_BITS; |
| 112 | *pFIO_POLAR = FIO_POLAR_BITS; |
| 113 | |
| 114 | if (cf_stat) { |
| 115 | printf("Booting from COMPACT flash\n"); |
| 116 | |
| 117 | /* Set cycle time for CF */ |
| 118 | *(volatile unsigned long *)ambctl1 = CF_AMBCTL1VAL; |
| 119 | |
| 120 | for (i = 0; i < 0x1000; i++) |
| 121 | asm("nop;"); |
| 122 | for (i = 0; i < 0x1000; i++) |
| 123 | asm("nop;"); |
| 124 | for (i = 0; i < 0x1000; i++) |
| 125 | asm("nop;"); |
| 126 | |
| 127 | serial_setbrg(); |
| 128 | ide_init(); |
| 129 | |
| 130 | setenv("bootargs", ""); |
| 131 | setenv("bootcmd", |
| 132 | "fatload ide 0:1 0x1000000 uImage-stamp;bootm 0x1000000;bootm 0x20100000"); |
| 133 | } else { |
| 134 | printf("Booting from FLASH\n"); |
| 135 | } |
| 136 | |
| 137 | return 0; |
| 138 | } |
| 139 | #endif |
| 140 | |
| 141 | #ifdef CONFIG_STAMP_CF |
| 142 | |
| 143 | void cf_outb(unsigned char val, volatile unsigned char *addr) |
| 144 | { |
| 145 | /* |
| 146 | * Set PF1 PF0 respectively to 0 1 to divert address |
| 147 | * to the expansion memory banks |
| 148 | */ |
| 149 | *pFIO_FLAG_S = CF_PF0; |
| 150 | *pFIO_FLAG_C = CF_PF1; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 151 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 152 | |
| 153 | *(addr) = val; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 154 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 155 | |
| 156 | /* Setback PF1 PF0 to 0 0 to address external |
| 157 | * memory banks */ |
| 158 | *(volatile unsigned short *)pFIO_FLAG_C = CF_PF1_PF0; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 159 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | unsigned char cf_inb(volatile unsigned char *addr) |
| 163 | { |
| 164 | volatile unsigned char c; |
| 165 | |
| 166 | *pFIO_FLAG_S = CF_PF0; |
| 167 | *pFIO_FLAG_C = CF_PF1; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 168 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 169 | |
| 170 | c = *(addr); |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 171 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 172 | |
| 173 | *pFIO_FLAG_C = CF_PF1_PF0; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 174 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 175 | |
| 176 | return c; |
| 177 | } |
| 178 | |
| 179 | void cf_insw(unsigned short *sect_buf, unsigned short *addr, int words) |
| 180 | { |
| 181 | int i; |
| 182 | |
| 183 | *pFIO_FLAG_S = CF_PF0; |
| 184 | *pFIO_FLAG_C = CF_PF1; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 185 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 186 | |
| 187 | for (i = 0; i < words; i++) { |
| 188 | *(sect_buf + i) = *(addr); |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 189 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | *pFIO_FLAG_C = CF_PF1_PF0; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 193 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | void cf_outsw(unsigned short *addr, unsigned short *sect_buf, int words) |
| 197 | { |
| 198 | int i; |
| 199 | |
| 200 | *pFIO_FLAG_S = CF_PF0; |
| 201 | *pFIO_FLAG_C = CF_PF1; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 202 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 203 | |
| 204 | for (i = 0; i < words; i++) { |
| 205 | *(addr) = *(sect_buf + i); |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 206 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | *pFIO_FLAG_C = CF_PF1_PF0; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 210 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 211 | } |
| 212 | #endif |
| 213 | |
| 214 | void stamp_led_set(int LED1, int LED2, int LED3) |
| 215 | { |
| 216 | *pFIO_INEN &= ~(PF2 | PF3 | PF4); |
| 217 | *pFIO_DIR |= (PF2 | PF3 | PF4); |
| 218 | |
| 219 | if (LED1 == STATUS_LED_OFF) |
| 220 | *pFIO_FLAG_S = PF2; |
| 221 | else |
| 222 | *pFIO_FLAG_C = PF2; |
| 223 | if (LED2 == STATUS_LED_OFF) |
| 224 | *pFIO_FLAG_S = PF3; |
| 225 | else |
| 226 | *pFIO_FLAG_C = PF3; |
| 227 | if (LED3 == STATUS_LED_OFF) |
| 228 | *pFIO_FLAG_S = PF4; |
| 229 | else |
| 230 | *pFIO_FLAG_C = PF4; |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 231 | SSYNC(); |
Aubrey.Li | 3f0606a | 2007-03-09 13:38:44 +0800 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | void show_boot_progress(int status) |
| 235 | { |
| 236 | switch (status) { |
| 237 | case 1: |
| 238 | stamp_led_set(STATUS_LED_OFF, STATUS_LED_OFF, STATUS_LED_ON); |
| 239 | break; |
| 240 | case 2: |
| 241 | stamp_led_set(STATUS_LED_OFF, STATUS_LED_ON, STATUS_LED_OFF); |
| 242 | break; |
| 243 | case 3: |
| 244 | stamp_led_set(STATUS_LED_OFF, STATUS_LED_ON, STATUS_LED_ON); |
| 245 | break; |
| 246 | case 4: |
| 247 | stamp_led_set(STATUS_LED_ON, STATUS_LED_OFF, STATUS_LED_OFF); |
| 248 | break; |
| 249 | case 5: |
| 250 | case 6: |
| 251 | stamp_led_set(STATUS_LED_ON, STATUS_LED_OFF, STATUS_LED_ON); |
| 252 | break; |
| 253 | case 7: |
| 254 | case 8: |
| 255 | stamp_led_set(STATUS_LED_ON, STATUS_LED_ON, STATUS_LED_OFF); |
| 256 | break; |
| 257 | case 9: |
| 258 | case 10: |
| 259 | case 11: |
| 260 | case 12: |
| 261 | case 13: |
| 262 | case 14: |
| 263 | case 15: |
| 264 | stamp_led_set(STATUS_LED_OFF, STATUS_LED_OFF, STATUS_LED_OFF); |
| 265 | break; |
| 266 | default: |
| 267 | stamp_led_set(STATUS_LED_ON, STATUS_LED_ON, STATUS_LED_ON); |
| 268 | break; |
| 269 | } |
| 270 | } |