wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 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 | |
| 25 | /* |
| 26 | * IDE support |
| 27 | */ |
| 28 | #include <common.h> |
| 29 | #include <config.h> |
| 30 | #include <watchdog.h> |
| 31 | #include <command.h> |
| 32 | #include <image.h> |
| 33 | #include <asm/byteorder.h> |
| 34 | #if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA) |
| 35 | # include <pcmcia.h> |
| 36 | #endif |
| 37 | #ifdef CONFIG_8xx |
| 38 | # include <mpc8xx.h> |
| 39 | #endif |
wdenk | 132ba5f | 2004-02-27 08:20:54 +0000 | [diff] [blame] | 40 | #ifdef CONFIG_MPC5xxx |
| 41 | #include <mpc5xxx.h> |
| 42 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 43 | #include <ide.h> |
| 44 | #include <ata.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 45 | #ifdef CONFIG_STATUS_LED |
| 46 | # include <status_led.h> |
| 47 | #endif |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 48 | #ifndef __PPC__ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 49 | #include <asm/io.h> |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 50 | #ifdef __MIPS__ |
| 51 | /* Macros depend on this variable */ |
| 52 | static unsigned long mips_io_port_base = 0; |
| 53 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 54 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 55 | |
| 56 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 57 | # include <status_led.h> |
| 58 | # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg) |
| 59 | #else |
| 60 | # define SHOW_BOOT_PROGRESS(arg) |
| 61 | #endif |
| 62 | |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 63 | #ifdef __PPC__ |
| 64 | # define EIEIO __asm__ volatile ("eieio") |
| 65 | #else |
| 66 | # define EIEIO /* nothing */ |
| 67 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 68 | |
| 69 | #undef IDE_DEBUG |
| 70 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 71 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 72 | #ifdef IDE_DEBUG |
| 73 | #define PRINTF(fmt,args...) printf (fmt ,##args) |
| 74 | #else |
| 75 | #define PRINTF(fmt,args...) |
| 76 | #endif |
| 77 | |
| 78 | #if (CONFIG_COMMANDS & CFG_CMD_IDE) |
| 79 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 80 | #ifdef CONFIG_IDE_8xx_DIRECT |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 81 | /* Timings for IDE Interface |
| 82 | * |
| 83 | * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk |
| 84 | * 70 165 30 PIO-Mode 0, [ns] |
| 85 | * 4 9 2 [Cycles] |
| 86 | * 50 125 20 PIO-Mode 1, [ns] |
| 87 | * 3 7 2 [Cycles] |
| 88 | * 30 100 15 PIO-Mode 2, [ns] |
| 89 | * 2 6 1 [Cycles] |
| 90 | * 30 80 10 PIO-Mode 3, [ns] |
| 91 | * 2 5 1 [Cycles] |
| 92 | * 25 70 10 PIO-Mode 4, [ns] |
| 93 | * 2 4 1 [Cycles] |
| 94 | */ |
| 95 | |
| 96 | const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] = |
| 97 | { |
| 98 | /* Setup Length Hold */ |
| 99 | { 70, 165, 30 }, /* PIO-Mode 0, [ns] */ |
| 100 | { 50, 125, 20 }, /* PIO-Mode 1, [ns] */ |
| 101 | { 30, 101, 15 }, /* PIO-Mode 2, [ns] */ |
| 102 | { 30, 80, 10 }, /* PIO-Mode 3, [ns] */ |
| 103 | { 25, 70, 10 }, /* PIO-Mode 4, [ns] */ |
| 104 | }; |
| 105 | |
| 106 | static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1]; |
| 107 | |
| 108 | #ifndef CFG_PIO_MODE |
| 109 | #define CFG_PIO_MODE 0 /* use a relaxed default */ |
| 110 | #endif |
| 111 | static int pio_mode = CFG_PIO_MODE; |
| 112 | |
| 113 | /* Make clock cycles and always round up */ |
| 114 | |
| 115 | #define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U ) |
| 116 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 117 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
| 118 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 119 | /* ------------------------------------------------------------------------- */ |
| 120 | |
| 121 | /* Current I/O Device */ |
| 122 | static int curr_device = -1; |
| 123 | |
| 124 | /* Current offset for IDE0 / IDE1 bus access */ |
| 125 | ulong ide_bus_offset[CFG_IDE_MAXBUS] = { |
| 126 | #if defined(CFG_ATA_IDE0_OFFSET) |
| 127 | CFG_ATA_IDE0_OFFSET, |
| 128 | #endif |
| 129 | #if defined(CFG_ATA_IDE1_OFFSET) && (CFG_IDE_MAXBUS > 1) |
| 130 | CFG_ATA_IDE1_OFFSET, |
| 131 | #endif |
| 132 | }; |
| 133 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 134 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 135 | #define ATA_CURR_BASE(dev) (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)]) |
| 136 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 137 | #ifndef CONFIG_AMIGAONEG3SE |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 138 | static int ide_bus_ok[CFG_IDE_MAXBUS]; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 139 | #else |
| 140 | static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,}; |
| 141 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 142 | |
| 143 | static block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE]; |
| 144 | /* ------------------------------------------------------------------------- */ |
| 145 | |
| 146 | #ifdef CONFIG_IDE_LED |
wdenk | 0608e04 | 2004-03-25 19:29:38 +0000 | [diff] [blame] | 147 | #if !defined(CONFIG_KUP4K) && !defined(CONFIG_KUP4X) &&!defined(CONFIG_BMS2003) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 148 | static void ide_led (uchar led, uchar status); |
| 149 | #else |
wdenk | 1f53a41 | 2002-12-04 23:39:58 +0000 | [diff] [blame] | 150 | extern void ide_led (uchar led, uchar status); |
| 151 | #endif |
| 152 | #else |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 153 | #ifndef CONFIG_AMIGAONEG3SE |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 154 | #define ide_led(a,b) /* dummy */ |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 155 | #else |
| 156 | extern void ide_led(uchar led, uchar status); |
| 157 | #define LED_IDE1 1 |
| 158 | #define LED_IDE2 2 |
| 159 | #define CONFIG_IDE_LED 1 |
| 160 | #define DEVICE_LED(x) 1 |
| 161 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 162 | #endif |
| 163 | |
| 164 | #ifdef CONFIG_IDE_RESET |
| 165 | static void ide_reset (void); |
| 166 | #else |
| 167 | #define ide_reset() /* dummy */ |
| 168 | #endif |
| 169 | |
| 170 | static void ide_ident (block_dev_desc_t *dev_desc); |
| 171 | static uchar ide_wait (int dev, ulong t); |
| 172 | |
| 173 | #define IDE_TIME_OUT 2000 /* 2 sec timeout */ |
| 174 | |
| 175 | #define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */ |
| 176 | |
| 177 | #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */ |
| 178 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 179 | static void __inline__ ide_outb(int dev, int port, unsigned char val); |
| 180 | static unsigned char __inline__ ide_inb(int dev, int port); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 181 | static void input_data(int dev, ulong *sect_buf, int words); |
| 182 | static void output_data(int dev, ulong *sect_buf, int words); |
| 183 | static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len); |
| 184 | |
| 185 | |
| 186 | #ifdef CONFIG_ATAPI |
| 187 | static void atapi_inquiry(block_dev_desc_t *dev_desc); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 188 | ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 189 | #endif |
| 190 | |
| 191 | |
| 192 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 193 | static void set_pcmcia_timing (int pmode); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 194 | #endif |
| 195 | |
| 196 | /* ------------------------------------------------------------------------- */ |
| 197 | |
| 198 | int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 199 | { |
| 200 | int rcode = 0; |
| 201 | |
| 202 | switch (argc) { |
| 203 | case 0: |
| 204 | case 1: |
| 205 | printf ("Usage:\n%s\n", cmdtp->usage); |
| 206 | return 1; |
| 207 | case 2: |
| 208 | if (strncmp(argv[1],"res",3) == 0) { |
| 209 | puts ("\nReset IDE" |
| 210 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 211 | " on PCMCIA " PCMCIA_SLOT_MSG |
| 212 | #endif |
| 213 | ": "); |
| 214 | |
| 215 | ide_init (); |
| 216 | return 0; |
| 217 | } else if (strncmp(argv[1],"inf",3) == 0) { |
| 218 | int i; |
| 219 | |
| 220 | putc ('\n'); |
| 221 | |
| 222 | for (i=0; i<CFG_IDE_MAXDEVICE; ++i) { |
| 223 | if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN) |
| 224 | continue; /* list only known devices */ |
| 225 | printf ("IDE device %d: ", i); |
| 226 | dev_print(&ide_dev_desc[i]); |
| 227 | } |
| 228 | return 0; |
| 229 | |
| 230 | } else if (strncmp(argv[1],"dev",3) == 0) { |
| 231 | if ((curr_device < 0) || (curr_device >= CFG_IDE_MAXDEVICE)) { |
| 232 | puts ("\nno IDE devices available\n"); |
| 233 | return 1; |
| 234 | } |
| 235 | printf ("\nIDE device %d: ", curr_device); |
| 236 | dev_print(&ide_dev_desc[curr_device]); |
| 237 | return 0; |
| 238 | } else if (strncmp(argv[1],"part",4) == 0) { |
| 239 | int dev, ok; |
| 240 | |
| 241 | for (ok=0, dev=0; dev<CFG_IDE_MAXDEVICE; ++dev) { |
| 242 | if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) { |
| 243 | ++ok; |
| 244 | if (dev) |
| 245 | putc ('\n'); |
| 246 | print_part(&ide_dev_desc[dev]); |
| 247 | } |
| 248 | } |
| 249 | if (!ok) { |
| 250 | puts ("\nno IDE devices available\n"); |
| 251 | rcode ++; |
| 252 | } |
| 253 | return rcode; |
| 254 | } |
| 255 | printf ("Usage:\n%s\n", cmdtp->usage); |
| 256 | return 1; |
| 257 | case 3: |
| 258 | if (strncmp(argv[1],"dev",3) == 0) { |
| 259 | int dev = (int)simple_strtoul(argv[2], NULL, 10); |
| 260 | |
| 261 | printf ("\nIDE device %d: ", dev); |
| 262 | if (dev >= CFG_IDE_MAXDEVICE) { |
| 263 | puts ("unknown device\n"); |
| 264 | return 1; |
| 265 | } |
| 266 | dev_print(&ide_dev_desc[dev]); |
| 267 | /*ide_print (dev);*/ |
| 268 | |
| 269 | if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) { |
| 270 | return 1; |
| 271 | } |
| 272 | |
| 273 | curr_device = dev; |
| 274 | |
| 275 | puts ("... is now current device\n"); |
| 276 | |
| 277 | return 0; |
| 278 | } else if (strncmp(argv[1],"part",4) == 0) { |
| 279 | int dev = (int)simple_strtoul(argv[2], NULL, 10); |
| 280 | |
| 281 | if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) { |
| 282 | print_part(&ide_dev_desc[dev]); |
| 283 | } else { |
| 284 | printf ("\nIDE device %d not available\n", dev); |
| 285 | rcode = 1; |
| 286 | } |
| 287 | return rcode; |
| 288 | #if 0 |
| 289 | } else if (strncmp(argv[1],"pio",4) == 0) { |
| 290 | int mode = (int)simple_strtoul(argv[2], NULL, 10); |
| 291 | |
| 292 | if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) { |
| 293 | puts ("\nSetting "); |
| 294 | pio_mode = mode; |
| 295 | ide_init (); |
| 296 | } else { |
| 297 | printf ("\nInvalid PIO mode %d (0 ... %d only)\n", |
| 298 | mode, IDE_MAX_PIO_MODE); |
| 299 | } |
| 300 | return; |
| 301 | #endif |
| 302 | } |
| 303 | |
| 304 | printf ("Usage:\n%s\n", cmdtp->usage); |
| 305 | return 1; |
| 306 | default: |
| 307 | /* at least 4 args */ |
| 308 | |
| 309 | if (strcmp(argv[1],"read") == 0) { |
| 310 | ulong addr = simple_strtoul(argv[2], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 311 | ulong cnt = simple_strtoul(argv[4], NULL, 16); |
| 312 | ulong n; |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 313 | #ifdef CFG_64BIT_STRTOUL |
| 314 | lbaint_t blk = simple_strtoull(argv[3], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 315 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 316 | printf ("\nIDE read: device %d block # %qd, count %ld ... ", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 317 | curr_device, blk, cnt); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 318 | #else |
| 319 | lbaint_t blk = simple_strtoul(argv[3], NULL, 16); |
| 320 | |
| 321 | printf ("\nIDE read: device %d block # %ld, count %ld ... ", |
| 322 | curr_device, blk, cnt); |
| 323 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 324 | |
| 325 | n = ide_dev_desc[curr_device].block_read (curr_device, |
| 326 | blk, cnt, |
| 327 | (ulong *)addr); |
| 328 | /* flush cache after read */ |
| 329 | flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz); |
| 330 | |
| 331 | printf ("%ld blocks read: %s\n", |
| 332 | n, (n==cnt) ? "OK" : "ERROR"); |
| 333 | if (n==cnt) { |
| 334 | return 0; |
| 335 | } else { |
| 336 | return 1; |
| 337 | } |
| 338 | } else if (strcmp(argv[1],"write") == 0) { |
| 339 | ulong addr = simple_strtoul(argv[2], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 340 | ulong cnt = simple_strtoul(argv[4], NULL, 16); |
| 341 | ulong n; |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 342 | #ifdef CFG_64BIT_STRTOUL |
| 343 | lbaint_t blk = simple_strtoull(argv[3], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 344 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 345 | printf ("\nIDE write: device %d block # %qd, count %ld ... ", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 346 | curr_device, blk, cnt); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 347 | #else |
| 348 | lbaint_t blk = simple_strtoul(argv[3], NULL, 16); |
| 349 | |
| 350 | printf ("\nIDE write: device %d block # %ld, count %ld ... ", |
| 351 | curr_device, blk, cnt); |
| 352 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 353 | |
| 354 | n = ide_write (curr_device, blk, cnt, (ulong *)addr); |
| 355 | |
| 356 | printf ("%ld blocks written: %s\n", |
| 357 | n, (n==cnt) ? "OK" : "ERROR"); |
| 358 | if (n==cnt) { |
| 359 | return 0; |
| 360 | } else { |
| 361 | return 1; |
| 362 | } |
| 363 | } else { |
| 364 | printf ("Usage:\n%s\n", cmdtp->usage); |
| 365 | rcode = 1; |
| 366 | } |
| 367 | |
| 368 | return rcode; |
| 369 | } |
| 370 | } |
| 371 | |
| 372 | int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 373 | { |
| 374 | char *boot_device = NULL; |
| 375 | char *ep; |
| 376 | int dev, part = 0; |
| 377 | ulong cnt; |
| 378 | ulong addr; |
| 379 | disk_partition_t info; |
| 380 | image_header_t *hdr; |
| 381 | int rcode = 0; |
| 382 | |
| 383 | switch (argc) { |
| 384 | case 1: |
| 385 | addr = CFG_LOAD_ADDR; |
| 386 | boot_device = getenv ("bootdevice"); |
| 387 | break; |
| 388 | case 2: |
| 389 | addr = simple_strtoul(argv[1], NULL, 16); |
| 390 | boot_device = getenv ("bootdevice"); |
| 391 | break; |
| 392 | case 3: |
| 393 | addr = simple_strtoul(argv[1], NULL, 16); |
| 394 | boot_device = argv[2]; |
| 395 | break; |
| 396 | default: |
| 397 | printf ("Usage:\n%s\n", cmdtp->usage); |
| 398 | SHOW_BOOT_PROGRESS (-1); |
| 399 | return 1; |
| 400 | } |
| 401 | |
| 402 | if (!boot_device) { |
| 403 | puts ("\n** No boot device **\n"); |
| 404 | SHOW_BOOT_PROGRESS (-1); |
| 405 | return 1; |
| 406 | } |
| 407 | |
| 408 | dev = simple_strtoul(boot_device, &ep, 16); |
| 409 | |
| 410 | if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) { |
| 411 | printf ("\n** Device %d not available\n", dev); |
| 412 | SHOW_BOOT_PROGRESS (-1); |
| 413 | return 1; |
| 414 | } |
| 415 | |
| 416 | if (*ep) { |
| 417 | if (*ep != ':') { |
| 418 | puts ("\n** Invalid boot device, use `dev[:part]' **\n"); |
| 419 | SHOW_BOOT_PROGRESS (-1); |
| 420 | return 1; |
| 421 | } |
| 422 | part = simple_strtoul(++ep, NULL, 16); |
| 423 | } |
| 424 | if (get_partition_info (&ide_dev_desc[dev], part, &info)) { |
| 425 | SHOW_BOOT_PROGRESS (-1); |
| 426 | return 1; |
| 427 | } |
wdenk | 4532cb6 | 2003-04-27 22:52:51 +0000 | [diff] [blame] | 428 | if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) && |
| 429 | (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 430 | printf ("\n** Invalid partition type \"%.32s\"" |
| 431 | " (expect \"" BOOT_PART_TYPE "\")\n", |
| 432 | info.type); |
| 433 | SHOW_BOOT_PROGRESS (-1); |
| 434 | return 1; |
| 435 | } |
| 436 | |
| 437 | printf ("\nLoading from IDE device %d, partition %d: " |
| 438 | "Name: %.32s Type: %.32s\n", |
| 439 | dev, part, info.name, info.type); |
| 440 | |
| 441 | PRINTF ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n", |
| 442 | info.start, info.size, info.blksz); |
| 443 | |
| 444 | if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) { |
| 445 | printf ("** Read error on %d:%d\n", dev, part); |
| 446 | SHOW_BOOT_PROGRESS (-1); |
| 447 | return 1; |
| 448 | } |
| 449 | |
| 450 | hdr = (image_header_t *)addr; |
| 451 | |
| 452 | if (ntohl(hdr->ih_magic) == IH_MAGIC) { |
| 453 | |
| 454 | print_image_hdr (hdr); |
| 455 | |
| 456 | cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t)); |
| 457 | cnt += info.blksz - 1; |
| 458 | cnt /= info.blksz; |
| 459 | cnt -= 1; |
| 460 | } else { |
| 461 | printf("\n** Bad Magic Number **\n"); |
| 462 | SHOW_BOOT_PROGRESS (-1); |
| 463 | return 1; |
| 464 | } |
| 465 | |
| 466 | if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt, |
| 467 | (ulong *)(addr+info.blksz)) != cnt) { |
| 468 | printf ("** Read error on %d:%d\n", dev, part); |
| 469 | SHOW_BOOT_PROGRESS (-1); |
| 470 | return 1; |
| 471 | } |
| 472 | |
| 473 | |
| 474 | /* Loading ok, update default load address */ |
| 475 | |
| 476 | load_addr = addr; |
| 477 | |
| 478 | /* Check if we should attempt an auto-start */ |
| 479 | if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) { |
| 480 | char *local_args[2]; |
| 481 | extern int do_bootm (cmd_tbl_t *, int, int, char *[]); |
| 482 | |
| 483 | local_args[0] = argv[0]; |
| 484 | local_args[1] = NULL; |
| 485 | |
| 486 | printf ("Automatic boot of image at addr 0x%08lX ...\n", addr); |
| 487 | |
| 488 | do_bootm (cmdtp, 0, 1, local_args); |
| 489 | rcode = 1; |
| 490 | } |
| 491 | return rcode; |
| 492 | } |
| 493 | |
| 494 | /* ------------------------------------------------------------------------- */ |
| 495 | |
| 496 | void ide_init (void) |
| 497 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 498 | |
| 499 | #ifdef CONFIG_IDE_8xx_DIRECT |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 500 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 501 | volatile immap_t *immr = (immap_t *)CFG_IMMR; |
| 502 | volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia); |
| 503 | #endif |
| 504 | unsigned char c; |
| 505 | int i, bus; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 506 | #ifdef CONFIG_AMIGAONEG3SE |
| 507 | unsigned int max_bus_scan; |
| 508 | unsigned int ata_reset_time; |
| 509 | char *s; |
| 510 | #endif |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 511 | #ifdef CONFIG_IDE_8xx_PCCARD |
| 512 | extern int pcmcia_on (void); |
| 513 | extern int ide_devices_found; /* Initialized in check_ide_device() */ |
| 514 | #endif /* CONFIG_IDE_8xx_PCCARD */ |
| 515 | |
| 516 | #ifdef CONFIG_IDE_PREINIT |
wdenk | 4d13cba | 2004-03-14 14:09:05 +0000 | [diff] [blame] | 517 | extern int ide_preinit (void); |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 518 | WATCHDOG_RESET(); |
| 519 | |
| 520 | if (ide_preinit ()) { |
| 521 | puts ("ide_preinit failed\n"); |
| 522 | return; |
| 523 | } |
| 524 | #endif /* CONFIG_IDE_PREINIT */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 525 | |
| 526 | #ifdef CONFIG_IDE_8xx_PCCARD |
| 527 | extern int pcmcia_on (void); |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 528 | extern int ide_devices_found; /* Initialized in check_ide_device() */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 529 | |
| 530 | WATCHDOG_RESET(); |
| 531 | |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 532 | ide_devices_found = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 533 | /* initialize the PCMCIA IDE adapter card */ |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 534 | pcmcia_on(); |
| 535 | if (!ide_devices_found) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 536 | return; |
| 537 | udelay (1000000); /* 1 s */ |
| 538 | #endif /* CONFIG_IDE_8xx_PCCARD */ |
| 539 | |
| 540 | WATCHDOG_RESET(); |
| 541 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 542 | #ifdef CONFIG_IDE_8xx_DIRECT |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 543 | /* Initialize PIO timing tables */ |
| 544 | for (i=0; i <= IDE_MAX_PIO_MODE; ++i) { |
| 545 | pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup, |
| 546 | gd->bus_clk); |
| 547 | pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length, |
| 548 | gd->bus_clk); |
| 549 | pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold, |
| 550 | gd->bus_clk); |
| 551 | PRINTF ("PIO Mode %d: setup=%2d ns/%d clk" |
| 552 | " len=%3d ns/%d clk" |
| 553 | " hold=%2d ns/%d clk\n", |
| 554 | i, |
| 555 | pio_config_ns[i].t_setup, pio_config_clk[i].t_setup, |
| 556 | pio_config_ns[i].t_length, pio_config_clk[i].t_length, |
| 557 | pio_config_ns[i].t_hold, pio_config_clk[i].t_hold); |
| 558 | } |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 559 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 560 | |
| 561 | /* Reset the IDE just to be sure. |
| 562 | * Light LED's to show |
| 563 | */ |
| 564 | ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */ |
| 565 | ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */ |
| 566 | |
| 567 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 568 | /* PCMCIA / IDE initialization for common mem space */ |
| 569 | pcmp->pcmc_pgcrb = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 570 | |
| 571 | /* start in PIO mode 0 - most relaxed timings */ |
| 572 | pio_mode = 0; |
| 573 | set_pcmcia_timing (pio_mode); |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 574 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 575 | |
| 576 | /* |
| 577 | * Wait for IDE to get ready. |
| 578 | * According to spec, this can take up to 31 seconds! |
| 579 | */ |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 580 | #ifndef CONFIG_AMIGAONEG3SE |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 581 | for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) { |
| 582 | int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS); |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 583 | #else |
| 584 | s = getenv("ide_maxbus"); |
| 585 | if (s) |
| 586 | max_bus_scan = simple_strtol(s, NULL, 10); |
| 587 | else |
| 588 | max_bus_scan = CFG_IDE_MAXBUS; |
| 589 | |
| 590 | for (bus=0; bus<max_bus_scan; ++bus) { |
| 591 | int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan); |
| 592 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 593 | |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 594 | #ifdef CONFIG_IDE_8xx_PCCARD |
| 595 | /* Skip non-ide devices from probing */ |
| 596 | if ((ide_devices_found & (1 << bus)) == 0) { |
| 597 | ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */ |
| 598 | continue; |
| 599 | } |
| 600 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 601 | printf ("Bus %d: ", bus); |
| 602 | |
| 603 | ide_bus_ok[bus] = 0; |
| 604 | |
| 605 | /* Select device |
| 606 | */ |
| 607 | udelay (100000); /* 100 ms */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 608 | ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 609 | udelay (100000); /* 100 ms */ |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 610 | #ifdef CONFIG_AMIGAONEG3SE |
| 611 | ata_reset_time = ATA_RESET_TIME; |
| 612 | s = getenv("ide_reset_timeout"); |
| 613 | if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10); |
| 614 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 615 | i = 0; |
| 616 | do { |
| 617 | udelay (10000); /* 10 ms */ |
| 618 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 619 | c = ide_inb (dev, ATA_STATUS); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 620 | i++; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 621 | #ifdef CONFIG_AMIGAONEG3SE |
| 622 | if (i > (ata_reset_time * 100)) { |
| 623 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 624 | if (i > (ATA_RESET_TIME * 100)) { |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 625 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 626 | puts ("** Timeout **\n"); |
| 627 | ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */ |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 628 | #ifdef CONFIG_AMIGAONEG3SE |
| 629 | /* If this is the second bus, the first one was OK */ |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 630 | if (bus != 0) { |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 631 | ide_bus_ok[bus] = 0; |
| 632 | goto skip_bus; |
| 633 | } |
| 634 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 635 | return; |
| 636 | } |
| 637 | if ((i >= 100) && ((i%100)==0)) { |
| 638 | putc ('.'); |
| 639 | } |
| 640 | } while (c & ATA_STAT_BUSY); |
| 641 | |
| 642 | if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) { |
| 643 | puts ("not available "); |
| 644 | PRINTF ("Status = 0x%02X ", c); |
| 645 | #ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */ |
| 646 | } else if ((c & ATA_STAT_READY) == 0) { |
| 647 | puts ("not available "); |
| 648 | PRINTF ("Status = 0x%02X ", c); |
| 649 | #endif |
| 650 | } else { |
| 651 | puts ("OK "); |
| 652 | ide_bus_ok[bus] = 1; |
| 653 | } |
| 654 | WATCHDOG_RESET(); |
| 655 | } |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 656 | |
| 657 | #ifdef CONFIG_AMIGAONEG3SE |
| 658 | skip_bus: |
| 659 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 660 | putc ('\n'); |
| 661 | |
| 662 | ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */ |
| 663 | |
| 664 | curr_device = -1; |
| 665 | for (i=0; i<CFG_IDE_MAXDEVICE; ++i) { |
| 666 | #ifdef CONFIG_IDE_LED |
| 667 | int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2; |
| 668 | #endif |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 669 | ide_dev_desc[i].type=DEV_TYPE_UNKNOWN; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 670 | ide_dev_desc[i].if_type=IF_TYPE_IDE; |
| 671 | ide_dev_desc[i].dev=i; |
| 672 | ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN; |
| 673 | ide_dev_desc[i].blksz=0; |
| 674 | ide_dev_desc[i].lba=0; |
| 675 | ide_dev_desc[i].block_read=ide_read; |
| 676 | if (!ide_bus_ok[IDE_BUS(i)]) |
| 677 | continue; |
| 678 | ide_led (led, 1); /* LED on */ |
| 679 | ide_ident(&ide_dev_desc[i]); |
| 680 | ide_led (led, 0); /* LED off */ |
| 681 | dev_print(&ide_dev_desc[i]); |
| 682 | /* ide_print (i); */ |
| 683 | if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) { |
| 684 | init_part (&ide_dev_desc[i]); /* initialize partition type */ |
| 685 | if (curr_device < 0) |
| 686 | curr_device = i; |
| 687 | } |
| 688 | } |
| 689 | WATCHDOG_RESET(); |
| 690 | } |
| 691 | |
| 692 | /* ------------------------------------------------------------------------- */ |
| 693 | |
| 694 | block_dev_desc_t * ide_get_dev(int dev) |
| 695 | { |
| 696 | return ((block_dev_desc_t *)&ide_dev_desc[dev]); |
| 697 | } |
| 698 | |
| 699 | |
| 700 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 701 | |
| 702 | static void |
| 703 | set_pcmcia_timing (int pmode) |
| 704 | { |
| 705 | volatile immap_t *immr = (immap_t *)CFG_IMMR; |
| 706 | volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia); |
| 707 | ulong timings; |
| 708 | |
| 709 | PRINTF ("Set timing for PIO Mode %d\n", pmode); |
| 710 | |
| 711 | timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold) |
| 712 | | PCMCIA_SST(pio_config_clk[pmode].t_setup) |
| 713 | | PCMCIA_SL (pio_config_clk[pmode].t_length) |
| 714 | ; |
| 715 | |
| 716 | /* IDE 0 |
| 717 | */ |
| 718 | pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0; |
| 719 | pcmp->pcmc_por0 = CFG_PCMCIA_POR0 |
| 720 | #if (CFG_PCMCIA_POR0 != 0) |
| 721 | | timings |
| 722 | #endif |
| 723 | ; |
| 724 | PRINTF ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0); |
| 725 | |
| 726 | pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1; |
| 727 | pcmp->pcmc_por1 = CFG_PCMCIA_POR1 |
| 728 | #if (CFG_PCMCIA_POR1 != 0) |
| 729 | | timings |
| 730 | #endif |
| 731 | ; |
| 732 | PRINTF ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1); |
| 733 | |
| 734 | pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2; |
| 735 | pcmp->pcmc_por2 = CFG_PCMCIA_POR2 |
| 736 | #if (CFG_PCMCIA_POR2 != 0) |
| 737 | | timings |
| 738 | #endif |
| 739 | ; |
| 740 | PRINTF ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2); |
| 741 | |
| 742 | pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3; |
| 743 | pcmp->pcmc_por3 = CFG_PCMCIA_POR3 |
| 744 | #if (CFG_PCMCIA_POR3 != 0) |
| 745 | | timings |
| 746 | #endif |
| 747 | ; |
| 748 | PRINTF ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3); |
| 749 | |
| 750 | /* IDE 1 |
| 751 | */ |
| 752 | pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4; |
| 753 | pcmp->pcmc_por4 = CFG_PCMCIA_POR4 |
| 754 | #if (CFG_PCMCIA_POR4 != 0) |
| 755 | | timings |
| 756 | #endif |
| 757 | ; |
| 758 | PRINTF ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4); |
| 759 | |
| 760 | pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5; |
| 761 | pcmp->pcmc_por5 = CFG_PCMCIA_POR5 |
| 762 | #if (CFG_PCMCIA_POR5 != 0) |
| 763 | | timings |
| 764 | #endif |
| 765 | ; |
| 766 | PRINTF ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5); |
| 767 | |
| 768 | pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6; |
| 769 | pcmp->pcmc_por6 = CFG_PCMCIA_POR6 |
| 770 | #if (CFG_PCMCIA_POR6 != 0) |
| 771 | | timings |
| 772 | #endif |
| 773 | ; |
| 774 | PRINTF ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6); |
| 775 | |
| 776 | pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7; |
| 777 | pcmp->pcmc_por7 = CFG_PCMCIA_POR7 |
| 778 | #if (CFG_PCMCIA_POR7 != 0) |
| 779 | | timings |
| 780 | #endif |
| 781 | ; |
| 782 | PRINTF ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7); |
| 783 | |
| 784 | } |
| 785 | |
| 786 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
| 787 | |
| 788 | /* ------------------------------------------------------------------------- */ |
| 789 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 790 | #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 791 | static void __inline__ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 792 | ide_outb(int dev, int port, unsigned char val) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 793 | { |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 794 | PRINTF ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n", |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 795 | dev, port, val, (ATA_CURR_BASE(dev)+port)); |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 796 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 797 | /* Ensure I/O operations complete */ |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 798 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 799 | *((uchar *)(ATA_CURR_BASE(dev)+port)) = val; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 800 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 801 | #else /* ! __PPC__ */ |
| 802 | static void __inline__ |
| 803 | ide_outb(int dev, int port, unsigned char val) |
| 804 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 805 | outb(val, ATA_CURR_BASE(dev)+port); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 806 | } |
| 807 | #endif /* __PPC__ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 808 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 809 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 810 | #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 811 | static unsigned char __inline__ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 812 | ide_inb(int dev, int port) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 813 | { |
| 814 | uchar val; |
| 815 | /* Ensure I/O operations complete */ |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 816 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 817 | val = *((uchar *)(ATA_CURR_BASE(dev)+port)); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 818 | PRINTF ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n", |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 819 | dev, port, (ATA_CURR_BASE(dev)+port), val); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 820 | return (val); |
| 821 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 822 | #else /* ! __PPC__ */ |
| 823 | static unsigned char __inline__ |
| 824 | ide_inb(int dev, int port) |
| 825 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 826 | return inb(ATA_CURR_BASE(dev)+port); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 827 | } |
| 828 | #endif /* __PPC__ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 829 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 830 | #ifdef __PPC__ |
wdenk | cceb871 | 2003-06-23 18:12:28 +0000 | [diff] [blame] | 831 | # ifdef CONFIG_AMIGAONEG3SE |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 832 | static void |
| 833 | output_data_short(int dev, ulong *sect_buf, int words) |
| 834 | { |
| 835 | ushort *dbuf; |
| 836 | volatile ushort *pbuf; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 837 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 838 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 839 | dbuf = (ushort *)sect_buf; |
| 840 | while (words--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 841 | EIEIO; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 842 | *pbuf = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 843 | EIEIO; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 844 | } |
| 845 | |
| 846 | if (words&1) |
| 847 | *pbuf = 0; |
| 848 | } |
wdenk | cceb871 | 2003-06-23 18:12:28 +0000 | [diff] [blame] | 849 | # endif /* CONFIG_AMIGAONEG3SE */ |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 850 | #endif /* __PPC_ */ |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 851 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 852 | /* We only need to swap data if we are running on a big endian cpu. */ |
| 853 | /* But Au1x00 cpu:s already swaps data in big endian mode! */ |
| 854 | #if defined(__LITTLE_ENDIAN) || defined(CONFIG_AU1X00) |
| 855 | #define input_swap_data(x,y,z) input_data(x,y,z) |
| 856 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 857 | static void |
| 858 | input_swap_data(int dev, ulong *sect_buf, int words) |
| 859 | { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 860 | #ifndef CONFIG_HMI10 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 861 | volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 862 | ushort *dbuf = (ushort *)sect_buf; |
| 863 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 864 | PRINTF("in input swap data base for read is %lx\n", (unsigned long) pbuf); |
| 865 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 866 | while (words--) { |
| 867 | *dbuf++ = ld_le16(pbuf); |
| 868 | *dbuf++ = ld_le16(pbuf); |
| 869 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 870 | #else /* CONFIG_HMI10 */ |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 871 | uchar i; |
| 872 | volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 873 | volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 874 | ushort *dbuf = (ushort *)sect_buf; |
| 875 | |
| 876 | while (words--) { |
| 877 | for (i=0; i<2; i++) { |
| 878 | *(((uchar *)(dbuf)) + 1) = *pbuf_even; |
| 879 | *(uchar *)dbuf = *pbuf_odd; |
| 880 | dbuf+=1; |
| 881 | } |
| 882 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 883 | #endif /* CONFIG_HMI10 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 884 | } |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 885 | #endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 886 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 887 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 888 | #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 889 | static void |
| 890 | output_data(int dev, ulong *sect_buf, int words) |
| 891 | { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 892 | #ifndef CONFIG_HMI10 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 893 | ushort *dbuf; |
| 894 | volatile ushort *pbuf; |
| 895 | |
| 896 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 897 | dbuf = (ushort *)sect_buf; |
| 898 | while (words--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 899 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 900 | *pbuf = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 901 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 902 | *pbuf = *dbuf++; |
| 903 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 904 | #else /* CONFIG_HMI10 */ |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 905 | uchar *dbuf; |
| 906 | volatile uchar *pbuf_even; |
| 907 | volatile uchar *pbuf_odd; |
| 908 | |
| 909 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 910 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 911 | dbuf = (uchar *)sect_buf; |
| 912 | while (words--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 913 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 914 | *pbuf_even = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 915 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 916 | *pbuf_odd = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 917 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 918 | *pbuf_even = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 919 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 920 | *pbuf_odd = *dbuf++; |
| 921 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 922 | #endif /* CONFIG_HMI10 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 923 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 924 | #else /* ! __PPC__ */ |
| 925 | static void |
| 926 | output_data(int dev, ulong *sect_buf, int words) |
| 927 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 928 | outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 929 | } |
| 930 | #endif /* __PPC__ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 931 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 932 | #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 933 | static void |
| 934 | input_data(int dev, ulong *sect_buf, int words) |
| 935 | { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 936 | #ifndef CONFIG_HMI10 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 937 | ushort *dbuf; |
| 938 | volatile ushort *pbuf; |
| 939 | |
| 940 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 941 | dbuf = (ushort *)sect_buf; |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 942 | |
| 943 | PRINTF("in input data base for read is %lx\n", (unsigned long) pbuf); |
| 944 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 945 | while (words--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 946 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 947 | *dbuf++ = *pbuf; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 948 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 949 | *dbuf++ = *pbuf; |
| 950 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 951 | #else /* CONFIG_HMI10 */ |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 952 | uchar *dbuf; |
| 953 | volatile uchar *pbuf_even; |
| 954 | volatile uchar *pbuf_odd; |
| 955 | |
| 956 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 957 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 958 | dbuf = (uchar *)sect_buf; |
| 959 | while (words--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 960 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 961 | *dbuf++ = *pbuf_even; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 962 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 963 | *dbuf++ = *pbuf_odd; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 964 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 965 | *dbuf++ = *pbuf_even; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 966 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 967 | *dbuf++ = *pbuf_odd; |
| 968 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 969 | #endif /* CONFIG_HMI10 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 970 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 971 | #else /* ! __PPC__ */ |
| 972 | static void |
| 973 | input_data(int dev, ulong *sect_buf, int words) |
| 974 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 975 | insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | #endif /* __PPC__ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 979 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 980 | #ifdef CONFIG_AMIGAONEG3SE |
| 981 | static void |
| 982 | input_data_short(int dev, ulong *sect_buf, int words) |
| 983 | { |
| 984 | ushort *dbuf; |
| 985 | volatile ushort *pbuf; |
| 986 | |
| 987 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 988 | dbuf = (ushort *)sect_buf; |
| 989 | while (words--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 990 | EIEIO; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 991 | *dbuf++ = *pbuf; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 992 | EIEIO; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 993 | } |
| 994 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 995 | if (words&1) { |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 996 | ushort dummy; |
| 997 | dummy = *pbuf; |
| 998 | } |
| 999 | } |
| 1000 | #endif |
| 1001 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1002 | /* ------------------------------------------------------------------------- |
| 1003 | */ |
| 1004 | static void ide_ident (block_dev_desc_t *dev_desc) |
| 1005 | { |
| 1006 | ulong iobuf[ATA_SECTORWORDS]; |
| 1007 | unsigned char c; |
| 1008 | hd_driveid_t *iop = (hd_driveid_t *)iobuf; |
| 1009 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1010 | #ifdef CONFIG_AMIGAONEG3SE |
| 1011 | int max_bus_scan; |
| 1012 | int retries = 0; |
| 1013 | char *s; |
| 1014 | int do_retry = 0; |
| 1015 | #endif |
| 1016 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1017 | #if 0 |
| 1018 | int mode, cycle_time; |
| 1019 | #endif |
| 1020 | int device; |
| 1021 | device=dev_desc->dev; |
| 1022 | printf (" Device %d: ", device); |
| 1023 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1024 | #ifdef CONFIG_AMIGAONEG3SE |
| 1025 | s = getenv("ide_maxbus"); |
| 1026 | if (s) { |
| 1027 | max_bus_scan = simple_strtol(s, NULL, 10); |
| 1028 | } else { |
| 1029 | max_bus_scan = CFG_IDE_MAXBUS; |
| 1030 | } |
| 1031 | if (device >= max_bus_scan*2) { |
| 1032 | dev_desc->type=DEV_TYPE_UNKNOWN; |
| 1033 | return; |
| 1034 | } |
| 1035 | #endif |
| 1036 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1037 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1038 | /* Select device |
| 1039 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1040 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1041 | dev_desc->if_type=IF_TYPE_IDE; |
| 1042 | #ifdef CONFIG_ATAPI |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1043 | |
| 1044 | #ifdef CONFIG_AMIGAONEG3SE |
| 1045 | do_retry = 0; |
| 1046 | retries = 0; |
| 1047 | |
| 1048 | /* Warning: This will be tricky to read */ |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1049 | while (retries <= 1) { |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1050 | #endif /* CONFIG_AMIGAONEG3SE */ |
| 1051 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1052 | /* check signature */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1053 | if ((ide_inb(device,ATA_SECT_CNT) == 0x01) && |
| 1054 | (ide_inb(device,ATA_SECT_NUM) == 0x01) && |
| 1055 | (ide_inb(device,ATA_CYL_LOW) == 0x14) && |
| 1056 | (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1057 | /* ATAPI Signature found */ |
| 1058 | dev_desc->if_type=IF_TYPE_ATAPI; |
| 1059 | /* Start Ident Command |
| 1060 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1061 | ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1062 | /* |
| 1063 | * Wait for completion - ATAPI devices need more time |
| 1064 | * to become ready |
| 1065 | */ |
| 1066 | c = ide_wait (device, ATAPI_TIME_OUT); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1067 | } else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1068 | #endif |
| 1069 | { |
| 1070 | /* Start Ident Command |
| 1071 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1072 | ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1073 | |
| 1074 | /* Wait for completion |
| 1075 | */ |
| 1076 | c = ide_wait (device, IDE_TIME_OUT); |
| 1077 | } |
| 1078 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1079 | |
| 1080 | if (((c & ATA_STAT_DRQ) == 0) || |
| 1081 | ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) { |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1082 | #ifdef CONFIG_AMIGAONEG3SE |
| 1083 | if (retries == 0) { |
| 1084 | do_retry = 1; |
| 1085 | } else { |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1086 | return; |
| 1087 | } |
| 1088 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1089 | return; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1090 | #endif /* CONFIG_AMIGAONEG3SE */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1091 | } |
| 1092 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1093 | #ifdef CONFIG_AMIGAONEG3SE |
| 1094 | s = getenv("ide_doreset"); |
| 1095 | if (s && strcmp(s, "on") == 0 && 1 == do_retry) { |
| 1096 | /* Need to soft reset the device in case it's an ATAPI... */ |
| 1097 | PRINTF("Retrying...\n"); |
| 1098 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 1099 | udelay(100000); |
| 1100 | ide_outb (device, ATA_COMMAND, 0x08); |
| 1101 | udelay (100000); /* 100 ms */ |
| 1102 | retries++; |
| 1103 | } else { |
| 1104 | retries = 100; |
| 1105 | } |
| 1106 | } /* see above - ugly to read */ |
| 1107 | #endif /* CONFIG_AMIGAONEG3SE */ |
| 1108 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1109 | input_swap_data (device, iobuf, ATA_SECTORWORDS); |
| 1110 | |
| 1111 | ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision)); |
| 1112 | ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor)); |
| 1113 | ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product)); |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1114 | #ifdef __LITTLE_ENDIAN |
| 1115 | /* |
| 1116 | * firmware revision and model number have Big Endian Byte |
| 1117 | * order in Word. Convert both to little endian. |
| 1118 | * |
| 1119 | * See CF+ and CompactFlash Specification Revision 2.0: |
| 1120 | * 6.2.1.6: Identfy Drive, Table 39 for more details |
| 1121 | */ |
| 1122 | |
| 1123 | strswab (dev_desc->revision); |
| 1124 | strswab (dev_desc->vendor); |
| 1125 | #endif /* __LITTLE_ENDIAN */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1126 | |
| 1127 | if ((iop->config & 0x0080)==0x0080) |
| 1128 | dev_desc->removable = 1; |
| 1129 | else |
| 1130 | dev_desc->removable = 0; |
| 1131 | |
| 1132 | #if 0 |
| 1133 | /* |
| 1134 | * Drive PIO mode autoselection |
| 1135 | */ |
| 1136 | mode = iop->tPIO; |
| 1137 | |
| 1138 | printf ("tPIO = 0x%02x = %d\n",mode, mode); |
| 1139 | if (mode > 2) { /* 2 is maximum allowed tPIO value */ |
| 1140 | mode = 2; |
| 1141 | PRINTF ("Override tPIO -> 2\n"); |
| 1142 | } |
| 1143 | if (iop->field_valid & 2) { /* drive implements ATA2? */ |
| 1144 | PRINTF ("Drive implements ATA2\n"); |
| 1145 | if (iop->capability & 8) { /* drive supports use_iordy? */ |
| 1146 | cycle_time = iop->eide_pio_iordy; |
| 1147 | } else { |
| 1148 | cycle_time = iop->eide_pio; |
| 1149 | } |
| 1150 | PRINTF ("cycle time = %d\n", cycle_time); |
| 1151 | mode = 4; |
| 1152 | if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */ |
| 1153 | if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */ |
| 1154 | if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */ |
| 1155 | if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */ |
| 1156 | } |
| 1157 | printf ("PIO mode to use: PIO %d\n", mode); |
| 1158 | #endif /* 0 */ |
| 1159 | |
| 1160 | #ifdef CONFIG_ATAPI |
| 1161 | if (dev_desc->if_type==IF_TYPE_ATAPI) { |
| 1162 | atapi_inquiry(dev_desc); |
| 1163 | return; |
| 1164 | } |
| 1165 | #endif /* CONFIG_ATAPI */ |
| 1166 | |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1167 | #ifdef __BIG_ENDIAN |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1168 | /* swap shorts */ |
| 1169 | dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16); |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1170 | #else /* ! __BIG_ENDIAN */ |
| 1171 | /* |
| 1172 | * do not swap shorts on little endian |
| 1173 | * |
| 1174 | * See CF+ and CompactFlash Specification Revision 2.0: |
| 1175 | * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details. |
| 1176 | */ |
| 1177 | dev_desc->lba = iop->lba_capacity; |
| 1178 | #endif /* __BIG_ENDIAN */ |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1179 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1180 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1181 | if (iop->command_set_2 & 0x0400) { /* LBA 48 support */ |
wdenk | 6e59238 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 1182 | dev_desc->lba48 = 1; |
| 1183 | dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1184 | ((unsigned long long)iop->lba48_capacity[1] << 16) | |
| 1185 | ((unsigned long long)iop->lba48_capacity[2] << 32) | |
| 1186 | ((unsigned long long)iop->lba48_capacity[3] << 48); |
| 1187 | } else { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1188 | dev_desc->lba48 = 0; |
| 1189 | } |
| 1190 | #endif /* CONFIG_LBA48 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1191 | /* assuming HD */ |
| 1192 | dev_desc->type=DEV_TYPE_HARDDISK; |
| 1193 | dev_desc->blksz=ATA_BLOCKSIZE; |
| 1194 | dev_desc->lun=0; /* just to fill something in... */ |
| 1195 | |
| 1196 | #if 0 /* only used to test the powersaving mode, |
| 1197 | * if enabled, the drive goes after 5 sec |
| 1198 | * in standby mode */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1199 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1200 | c = ide_wait (device, IDE_TIME_OUT); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1201 | ide_outb (device, ATA_SECT_CNT, 1); |
| 1202 | ide_outb (device, ATA_LBA_LOW, 0); |
| 1203 | ide_outb (device, ATA_LBA_MID, 0); |
| 1204 | ide_outb (device, ATA_LBA_HIGH, 0); |
| 1205 | ide_outb (device, ATA_DEV_HD, ATA_LBA | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1206 | ATA_DEVICE(device)); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1207 | ide_outb (device, ATA_COMMAND, 0xe3); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1208 | udelay (50); |
| 1209 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1210 | #endif |
| 1211 | } |
| 1212 | |
| 1213 | |
| 1214 | /* ------------------------------------------------------------------------- */ |
| 1215 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1216 | ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1217 | { |
| 1218 | ulong n = 0; |
| 1219 | unsigned char c; |
| 1220 | unsigned char pwrsave=0; /* power save */ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1221 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1222 | unsigned char lba48 = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1223 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1224 | if (blknr & 0x0000fffff0000000) { |
| 1225 | /* more than 28 bits used, use 48bit mode */ |
| 1226 | lba48 = 1; |
| 1227 | } |
| 1228 | #endif |
| 1229 | PRINTF ("ide_read dev %d start %qX, blocks %lX buffer at %lX\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1230 | device, blknr, blkcnt, (ulong)buffer); |
| 1231 | |
| 1232 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1233 | |
| 1234 | /* Select device |
| 1235 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1236 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1237 | c = ide_wait (device, IDE_TIME_OUT); |
| 1238 | |
| 1239 | if (c & ATA_STAT_BUSY) { |
| 1240 | printf ("IDE read: device %d not ready\n", device); |
| 1241 | goto IDE_READ_E; |
| 1242 | } |
| 1243 | |
| 1244 | /* first check if the drive is in Powersaving mode, if yes, |
| 1245 | * increase the timeout value */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1246 | ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1247 | udelay (50); |
| 1248 | |
| 1249 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1250 | |
| 1251 | if (c & ATA_STAT_BUSY) { |
| 1252 | printf ("IDE read: device %d not ready\n", device); |
| 1253 | goto IDE_READ_E; |
| 1254 | } |
| 1255 | if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) { |
| 1256 | printf ("No Powersaving mode %X\n", c); |
| 1257 | } else { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1258 | c = ide_inb(device,ATA_SECT_CNT); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1259 | PRINTF("Powersaving %02X\n",c); |
| 1260 | if(c==0) |
| 1261 | pwrsave=1; |
| 1262 | } |
| 1263 | |
| 1264 | |
| 1265 | while (blkcnt-- > 0) { |
| 1266 | |
| 1267 | c = ide_wait (device, IDE_TIME_OUT); |
| 1268 | |
| 1269 | if (c & ATA_STAT_BUSY) { |
| 1270 | printf ("IDE read: device %d not ready\n", device); |
| 1271 | break; |
| 1272 | } |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1273 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1274 | if (lba48) { |
| 1275 | /* write high bits */ |
| 1276 | ide_outb (device, ATA_SECT_CNT, 0); |
| 1277 | ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF); |
| 1278 | ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF); |
| 1279 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF); |
| 1280 | } |
| 1281 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1282 | ide_outb (device, ATA_SECT_CNT, 1); |
| 1283 | ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF); |
| 1284 | ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF); |
| 1285 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1286 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1287 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1288 | if (lba48) { |
| 1289 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) ); |
| 1290 | ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT); |
| 1291 | |
| 1292 | } else |
| 1293 | #endif |
| 1294 | { |
| 1295 | ide_outb (device, ATA_DEV_HD, ATA_LBA | |
| 1296 | ATA_DEVICE(device) | |
| 1297 | ((blknr >> 24) & 0xF) ); |
| 1298 | ide_outb (device, ATA_COMMAND, ATA_CMD_READ); |
| 1299 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1300 | |
| 1301 | udelay (50); |
| 1302 | |
| 1303 | if(pwrsave) { |
| 1304 | c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */ |
| 1305 | pwrsave=0; |
| 1306 | } else { |
| 1307 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1308 | } |
| 1309 | |
| 1310 | if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) { |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1311 | #if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF) |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1312 | printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1313 | device, blknr, c); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1314 | #else |
| 1315 | printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n", |
| 1316 | device, (ulong)blknr, c); |
| 1317 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1318 | break; |
| 1319 | } |
| 1320 | |
| 1321 | input_data (device, buffer, ATA_SECTORWORDS); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1322 | (void) ide_inb (device, ATA_STATUS); /* clear IRQ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1323 | |
| 1324 | ++n; |
| 1325 | ++blknr; |
| 1326 | buffer += ATA_SECTORWORDS; |
| 1327 | } |
| 1328 | IDE_READ_E: |
| 1329 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1330 | return (n); |
| 1331 | } |
| 1332 | |
| 1333 | /* ------------------------------------------------------------------------- */ |
| 1334 | |
| 1335 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1336 | ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1337 | { |
| 1338 | ulong n = 0; |
| 1339 | unsigned char c; |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1340 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1341 | unsigned char lba48 = 0; |
| 1342 | |
| 1343 | if (blknr & 0x0000fffff0000000) { |
| 1344 | /* more than 28 bits used, use 48bit mode */ |
| 1345 | lba48 = 1; |
| 1346 | } |
| 1347 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1348 | |
| 1349 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1350 | |
| 1351 | /* Select device |
| 1352 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1353 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1354 | |
| 1355 | while (blkcnt-- > 0) { |
| 1356 | |
| 1357 | c = ide_wait (device, IDE_TIME_OUT); |
| 1358 | |
| 1359 | if (c & ATA_STAT_BUSY) { |
| 1360 | printf ("IDE read: device %d not ready\n", device); |
| 1361 | goto WR_OUT; |
| 1362 | } |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1363 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1364 | if (lba48) { |
| 1365 | /* write high bits */ |
| 1366 | ide_outb (device, ATA_SECT_CNT, 0); |
| 1367 | ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF); |
| 1368 | ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF); |
| 1369 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF); |
| 1370 | } |
| 1371 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1372 | ide_outb (device, ATA_SECT_CNT, 1); |
| 1373 | ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF); |
| 1374 | ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF); |
| 1375 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1376 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1377 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1378 | if (lba48) { |
| 1379 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) ); |
| 1380 | ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT); |
| 1381 | |
| 1382 | } else |
| 1383 | #endif |
| 1384 | { |
| 1385 | ide_outb (device, ATA_DEV_HD, ATA_LBA | |
| 1386 | ATA_DEVICE(device) | |
| 1387 | ((blknr >> 24) & 0xF) ); |
| 1388 | ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE); |
| 1389 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1390 | |
| 1391 | udelay (50); |
| 1392 | |
| 1393 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1394 | |
| 1395 | if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) { |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1396 | #if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF) |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1397 | printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1398 | device, blknr, c); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1399 | #else |
| 1400 | printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n", |
| 1401 | device, (ulong)blknr, c); |
| 1402 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1403 | goto WR_OUT; |
| 1404 | } |
| 1405 | |
| 1406 | output_data (device, buffer, ATA_SECTORWORDS); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1407 | c = ide_inb (device, ATA_STATUS); /* clear IRQ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1408 | ++n; |
| 1409 | ++blknr; |
| 1410 | buffer += ATA_SECTORWORDS; |
| 1411 | } |
| 1412 | WR_OUT: |
| 1413 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1414 | return (n); |
| 1415 | } |
| 1416 | |
| 1417 | /* ------------------------------------------------------------------------- */ |
| 1418 | |
| 1419 | /* |
| 1420 | * copy src to dest, skipping leading and trailing blanks and null |
| 1421 | * terminate the string |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1422 | * "len" is the size of available memory including the terminating '\0' |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1423 | */ |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1424 | static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1425 | { |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1426 | unsigned char *end, *last; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1427 | |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1428 | last = dst; |
wdenk | 6fb6af6 | 2004-03-23 23:20:24 +0000 | [diff] [blame] | 1429 | end = src + len - 1; |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1430 | |
| 1431 | /* reserve space for '\0' */ |
| 1432 | if (len < 2) |
| 1433 | goto OUT; |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1434 | |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1435 | /* skip leading white space */ |
| 1436 | while ((*src) && (src<end) && (*src==' ')) |
| 1437 | ++src; |
| 1438 | |
| 1439 | /* copy string, omitting trailing white space */ |
| 1440 | while ((*src) && (src<end)) { |
| 1441 | *dst++ = *src; |
| 1442 | if (*src++ != ' ') |
| 1443 | last = dst; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1444 | } |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1445 | OUT: |
| 1446 | *last = '\0'; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1447 | } |
| 1448 | |
| 1449 | /* ------------------------------------------------------------------------- */ |
| 1450 | |
| 1451 | /* |
| 1452 | * Wait until Busy bit is off, or timeout (in ms) |
| 1453 | * Return last status |
| 1454 | */ |
| 1455 | static uchar ide_wait (int dev, ulong t) |
| 1456 | { |
| 1457 | ulong delay = 10 * t; /* poll every 100 us */ |
| 1458 | uchar c; |
| 1459 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1460 | while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1461 | udelay (100); |
| 1462 | if (delay-- == 0) { |
| 1463 | break; |
| 1464 | } |
| 1465 | } |
| 1466 | return (c); |
| 1467 | } |
| 1468 | |
| 1469 | /* ------------------------------------------------------------------------- */ |
| 1470 | |
| 1471 | #ifdef CONFIG_IDE_RESET |
| 1472 | extern void ide_set_reset(int idereset); |
| 1473 | |
| 1474 | static void ide_reset (void) |
| 1475 | { |
| 1476 | #if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR) |
| 1477 | volatile immap_t *immr = (immap_t *)CFG_IMMR; |
| 1478 | #endif |
| 1479 | int i; |
| 1480 | |
| 1481 | curr_device = -1; |
| 1482 | for (i=0; i<CFG_IDE_MAXBUS; ++i) |
| 1483 | ide_bus_ok[i] = 0; |
| 1484 | for (i=0; i<CFG_IDE_MAXDEVICE; ++i) |
| 1485 | ide_dev_desc[i].type = DEV_TYPE_UNKNOWN; |
| 1486 | |
| 1487 | ide_set_reset (1); /* assert reset */ |
| 1488 | |
| 1489 | WATCHDOG_RESET(); |
| 1490 | |
| 1491 | #ifdef CFG_PB_12V_ENABLE |
| 1492 | immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */ |
| 1493 | immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE); |
| 1494 | immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE); |
| 1495 | immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE; |
| 1496 | |
| 1497 | /* wait 500 ms for the voltage to stabilize |
| 1498 | */ |
| 1499 | for (i=0; i<500; ++i) { |
| 1500 | udelay (1000); |
| 1501 | } |
| 1502 | |
| 1503 | immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */ |
| 1504 | #endif /* CFG_PB_12V_ENABLE */ |
| 1505 | |
| 1506 | #ifdef CFG_PB_IDE_MOTOR |
| 1507 | /* configure IDE Motor voltage monitor pin as input */ |
| 1508 | immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR); |
| 1509 | immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR); |
| 1510 | immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR); |
| 1511 | |
| 1512 | /* wait up to 1 s for the motor voltage to stabilize |
| 1513 | */ |
| 1514 | for (i=0; i<1000; ++i) { |
| 1515 | if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) { |
| 1516 | break; |
| 1517 | } |
| 1518 | udelay (1000); |
| 1519 | } |
| 1520 | |
| 1521 | if (i == 1000) { /* Timeout */ |
| 1522 | printf ("\nWarning: 5V for IDE Motor missing\n"); |
| 1523 | # ifdef CONFIG_STATUS_LED |
| 1524 | # ifdef STATUS_LED_YELLOW |
| 1525 | status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON ); |
| 1526 | # endif |
| 1527 | # ifdef STATUS_LED_GREEN |
| 1528 | status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF); |
| 1529 | # endif |
| 1530 | # endif /* CONFIG_STATUS_LED */ |
| 1531 | } |
| 1532 | #endif /* CFG_PB_IDE_MOTOR */ |
| 1533 | |
| 1534 | WATCHDOG_RESET(); |
| 1535 | |
| 1536 | /* de-assert RESET signal */ |
| 1537 | ide_set_reset(0); |
| 1538 | |
| 1539 | /* wait 250 ms */ |
| 1540 | for (i=0; i<250; ++i) { |
| 1541 | udelay (1000); |
| 1542 | } |
| 1543 | } |
| 1544 | |
| 1545 | #endif /* CONFIG_IDE_RESET */ |
| 1546 | |
| 1547 | /* ------------------------------------------------------------------------- */ |
| 1548 | |
wdenk | 0608e04 | 2004-03-25 19:29:38 +0000 | [diff] [blame] | 1549 | #if defined(CONFIG_IDE_LED) && \ |
| 1550 | !defined(CONFIG_AMIGAONEG3SE) && \ |
| 1551 | !defined(CONFIG_KUP4K) && \ |
| 1552 | !defined(CONFIG_KUP4X) && \ |
| 1553 | !defined(CONFIG_HMI10) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1554 | |
| 1555 | static uchar led_buffer = 0; /* Buffer for current LED status */ |
| 1556 | |
| 1557 | static void ide_led (uchar led, uchar status) |
| 1558 | { |
| 1559 | uchar *led_port = LED_PORT; |
| 1560 | |
| 1561 | if (status) { /* switch LED on */ |
| 1562 | led_buffer |= led; |
| 1563 | } else { /* switch LED off */ |
| 1564 | led_buffer &= ~led; |
| 1565 | } |
| 1566 | |
| 1567 | *led_port = led_buffer; |
| 1568 | } |
| 1569 | |
| 1570 | #endif /* CONFIG_IDE_LED */ |
| 1571 | |
| 1572 | /* ------------------------------------------------------------------------- */ |
| 1573 | |
| 1574 | #ifdef CONFIG_ATAPI |
| 1575 | /**************************************************************************** |
| 1576 | * ATAPI Support |
| 1577 | */ |
| 1578 | |
| 1579 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1580 | #undef ATAPI_DEBUG |
| 1581 | |
| 1582 | #ifdef ATAPI_DEBUG |
| 1583 | #define AT_PRINTF(fmt,args...) printf (fmt ,##args) |
| 1584 | #else |
| 1585 | #define AT_PRINTF(fmt,args...) |
| 1586 | #endif |
| 1587 | |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1588 | #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1589 | /* since ATAPI may use commands with not 4 bytes alligned length |
| 1590 | * we have our own transfer functions, 2 bytes alligned */ |
| 1591 | static void |
| 1592 | output_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1593 | { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1594 | #ifndef CONFIG_HMI10 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1595 | ushort *dbuf; |
| 1596 | volatile ushort *pbuf; |
| 1597 | |
| 1598 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 1599 | dbuf = (ushort *)sect_buf; |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1600 | |
| 1601 | PRINTF("in output data shorts base for read is %lx\n", (unsigned long) pbuf); |
| 1602 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1603 | while (shorts--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1604 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1605 | *pbuf = *dbuf++; |
| 1606 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1607 | #else /* CONFIG_HMI10 */ |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1608 | uchar *dbuf; |
| 1609 | volatile uchar *pbuf_even; |
| 1610 | volatile uchar *pbuf_odd; |
| 1611 | |
| 1612 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 1613 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 1614 | while (shorts--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1615 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1616 | *pbuf_even = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1617 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1618 | *pbuf_odd = *dbuf++; |
| 1619 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1620 | #endif /* CONFIG_HMI10 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1621 | } |
| 1622 | |
| 1623 | static void |
| 1624 | input_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1625 | { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1626 | #ifndef CONFIG_HMI10 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1627 | ushort *dbuf; |
| 1628 | volatile ushort *pbuf; |
| 1629 | |
| 1630 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 1631 | dbuf = (ushort *)sect_buf; |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1632 | |
| 1633 | PRINTF("in input data shorts base for read is %lx\n", (unsigned long) pbuf); |
| 1634 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1635 | while (shorts--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1636 | EIEIO; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1637 | *dbuf++ = *pbuf; |
| 1638 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1639 | #else /* CONFIG_HMI10 */ |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1640 | uchar *dbuf; |
| 1641 | volatile uchar *pbuf_even; |
| 1642 | volatile uchar *pbuf_odd; |
| 1643 | |
| 1644 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 1645 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 1646 | while (shorts--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1647 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1648 | *dbuf++ = *pbuf_even; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1649 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1650 | *dbuf++ = *pbuf_odd; |
| 1651 | } |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1652 | #endif /* CONFIG_HMI10 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1653 | } |
| 1654 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1655 | #else /* ! __PPC__ */ |
| 1656 | static void |
| 1657 | output_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1658 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1659 | outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1660 | } |
| 1661 | |
| 1662 | |
| 1663 | static void |
| 1664 | input_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1665 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1666 | insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1667 | } |
| 1668 | |
| 1669 | #endif /* __PPC__ */ |
| 1670 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1671 | /* |
| 1672 | * Wait until (Status & mask) == res, or timeout (in ms) |
| 1673 | * Return last status |
| 1674 | * This is used since some ATAPI CD ROMs clears their Busy Bit first |
| 1675 | * and then they set their DRQ Bit |
| 1676 | */ |
| 1677 | static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res) |
| 1678 | { |
| 1679 | ulong delay = 10 * t; /* poll every 100 us */ |
| 1680 | uchar c; |
| 1681 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1682 | c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */ |
| 1683 | while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1684 | /* break if error occurs (doesn't make sense to wait more) */ |
| 1685 | if((c & ATA_STAT_ERR)==ATA_STAT_ERR) |
| 1686 | break; |
| 1687 | udelay (100); |
| 1688 | if (delay-- == 0) { |
| 1689 | break; |
| 1690 | } |
| 1691 | } |
| 1692 | return (c); |
| 1693 | } |
| 1694 | |
| 1695 | /* |
| 1696 | * issue an atapi command |
| 1697 | */ |
| 1698 | unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen) |
| 1699 | { |
| 1700 | unsigned char c,err,mask,res; |
| 1701 | int n; |
| 1702 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1703 | |
| 1704 | /* Select device |
| 1705 | */ |
| 1706 | mask = ATA_STAT_BUSY|ATA_STAT_DRQ; |
| 1707 | res = 0; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1708 | #ifdef CONFIG_AMIGAONEG3SE |
| 1709 | # warning THF: Removed LBA mode ??? |
| 1710 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1711 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1712 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1713 | if ((c & mask) != res) { |
| 1714 | printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c); |
| 1715 | err=0xFF; |
| 1716 | goto AI_OUT; |
| 1717 | } |
| 1718 | /* write taskfile */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1719 | ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */ |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1720 | ide_outb (device, ATA_SECT_CNT, 0); |
| 1721 | ide_outb (device, ATA_SECT_NUM, 0); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1722 | ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF)); |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1723 | ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF)); |
| 1724 | #ifdef CONFIG_AMIGAONEG3SE |
| 1725 | # warning THF: Removed LBA mode ??? |
| 1726 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1727 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1728 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1729 | ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1730 | udelay (50); |
| 1731 | |
| 1732 | mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR; |
| 1733 | res = ATA_STAT_DRQ; |
| 1734 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1735 | |
| 1736 | if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */ |
| 1737 | printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c); |
| 1738 | err=0xFF; |
| 1739 | goto AI_OUT; |
| 1740 | } |
| 1741 | |
| 1742 | output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */ |
| 1743 | /* ATAPI Command written wait for completition */ |
| 1744 | udelay (5000); /* device must set bsy */ |
| 1745 | |
| 1746 | mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR; |
| 1747 | /* if no data wait for DRQ = 0 BSY = 0 |
| 1748 | * if data wait for DRQ = 1 BSY = 0 */ |
| 1749 | res=0; |
| 1750 | if(buflen) |
| 1751 | res = ATA_STAT_DRQ; |
| 1752 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1753 | if ((c & mask) != res ) { |
| 1754 | if (c & ATA_STAT_ERR) { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1755 | err=(ide_inb(device,ATA_ERROR_REG))>>4; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1756 | AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c); |
| 1757 | } else { |
| 1758 | printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c); |
| 1759 | err=0xFF; |
| 1760 | } |
| 1761 | goto AI_OUT; |
| 1762 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1763 | n=ide_inb(device, ATA_CYL_HIGH); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1764 | n<<=8; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1765 | n+=ide_inb(device, ATA_CYL_LOW); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1766 | if(n>buflen) { |
| 1767 | printf("ERROR, transfer bytes %d requested only %d\n",n,buflen); |
| 1768 | err=0xff; |
| 1769 | goto AI_OUT; |
| 1770 | } |
| 1771 | if((n==0)&&(buflen<0)) { |
| 1772 | printf("ERROR, transfer bytes %d requested %d\n",n,buflen); |
| 1773 | err=0xff; |
| 1774 | goto AI_OUT; |
| 1775 | } |
| 1776 | if(n!=buflen) { |
| 1777 | AT_PRINTF("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen); |
| 1778 | } |
| 1779 | if(n!=0) { /* data transfer */ |
| 1780 | AT_PRINTF("ATAPI_ISSUE: %d Bytes to transfer\n",n); |
| 1781 | /* we transfer shorts */ |
| 1782 | n>>=1; |
| 1783 | /* ok now decide if it is an in or output */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1784 | if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1785 | AT_PRINTF("Write to device\n"); |
| 1786 | output_data_shorts(device,(unsigned short *)buffer,n); |
| 1787 | } else { |
| 1788 | AT_PRINTF("Read from device @ %p shorts %d\n",buffer,n); |
| 1789 | input_data_shorts(device,(unsigned short *)buffer,n); |
| 1790 | } |
| 1791 | } |
| 1792 | udelay(5000); /* seems that some CD ROMs need this... */ |
| 1793 | mask = ATA_STAT_BUSY|ATA_STAT_ERR; |
| 1794 | res=0; |
| 1795 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1796 | if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1797 | err=(ide_inb(device,ATA_ERROR_REG) >> 4); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1798 | AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c); |
| 1799 | } else { |
| 1800 | err = 0; |
| 1801 | } |
| 1802 | AI_OUT: |
| 1803 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1804 | return (err); |
| 1805 | } |
| 1806 | |
| 1807 | /* |
| 1808 | * sending the command to atapi_issue. If an status other than good |
| 1809 | * returns, an request_sense will be issued |
| 1810 | */ |
| 1811 | |
| 1812 | #define ATAPI_DRIVE_NOT_READY 100 |
| 1813 | #define ATAPI_UNIT_ATTN 10 |
| 1814 | |
| 1815 | unsigned char atapi_issue_autoreq (int device, |
| 1816 | unsigned char* ccb, |
| 1817 | int ccblen, |
| 1818 | unsigned char *buffer, |
| 1819 | int buflen) |
| 1820 | { |
| 1821 | unsigned char sense_data[18],sense_ccb[12]; |
| 1822 | unsigned char res,key,asc,ascq; |
| 1823 | int notready,unitattn; |
| 1824 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1825 | #ifdef CONFIG_AMIGAONEG3SE |
| 1826 | char *s; |
| 1827 | unsigned int timeout, retrycnt; |
| 1828 | |
| 1829 | s = getenv("ide_cd_timeout"); |
| 1830 | timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0; |
| 1831 | |
| 1832 | retrycnt = 0; |
| 1833 | #endif |
| 1834 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1835 | unitattn=ATAPI_UNIT_ATTN; |
| 1836 | notready=ATAPI_DRIVE_NOT_READY; |
| 1837 | |
| 1838 | retry: |
| 1839 | res= atapi_issue(device,ccb,ccblen,buffer,buflen); |
| 1840 | if (res==0) |
| 1841 | return (0); /* Ok */ |
| 1842 | |
| 1843 | if (res==0xFF) |
| 1844 | return (0xFF); /* error */ |
| 1845 | |
| 1846 | AT_PRINTF("(auto_req)atapi_issue returned sense key %X\n",res); |
| 1847 | |
| 1848 | memset(sense_ccb,0,sizeof(sense_ccb)); |
| 1849 | memset(sense_data,0,sizeof(sense_data)); |
| 1850 | sense_ccb[0]=ATAPI_CMD_REQ_SENSE; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1851 | sense_ccb[4]=18; /* allocation Length */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1852 | |
| 1853 | res=atapi_issue(device,sense_ccb,12,sense_data,18); |
| 1854 | key=(sense_data[2]&0xF); |
| 1855 | asc=(sense_data[12]); |
| 1856 | ascq=(sense_data[13]); |
| 1857 | |
| 1858 | AT_PRINTF("ATAPI_CMD_REQ_SENSE returned %x\n",res); |
| 1859 | AT_PRINTF(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n", |
| 1860 | sense_data[0], |
| 1861 | key, |
| 1862 | asc, |
| 1863 | ascq); |
| 1864 | |
| 1865 | if((key==0)) |
| 1866 | return 0; /* ok device ready */ |
| 1867 | |
| 1868 | if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */ |
| 1869 | if(unitattn-->0) { |
| 1870 | udelay(200*1000); |
| 1871 | goto retry; |
| 1872 | } |
| 1873 | printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN); |
| 1874 | goto error; |
| 1875 | } |
| 1876 | if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */ |
| 1877 | if (notready-->0) { |
| 1878 | udelay(200*1000); |
| 1879 | goto retry; |
| 1880 | } |
| 1881 | printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY); |
| 1882 | goto error; |
| 1883 | } |
| 1884 | if(asc==0x3a) { |
| 1885 | AT_PRINTF("Media not present\n"); |
| 1886 | goto error; |
| 1887 | } |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1888 | |
| 1889 | #ifdef CONFIG_AMIGAONEG3SE |
| 1890 | if ((sense_data[2]&0xF)==0x0B) { |
| 1891 | AT_PRINTF("ABORTED COMMAND...retry\n"); |
| 1892 | if (retrycnt++ < 4) |
| 1893 | goto retry; |
| 1894 | return (0xFF); |
| 1895 | } |
| 1896 | |
| 1897 | if ((sense_data[2]&0xf) == 0x02 && |
| 1898 | sense_data[12] == 0x04 && |
| 1899 | sense_data[13] == 0x01 ) { |
| 1900 | AT_PRINTF("Waiting for unit to become active\n"); |
| 1901 | udelay(timeout); |
| 1902 | if (retrycnt++ < 4) |
| 1903 | goto retry; |
| 1904 | return 0xFF; |
| 1905 | } |
| 1906 | #endif /* CONFIG_AMIGAONEG3SE */ |
| 1907 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1908 | printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq); |
| 1909 | error: |
| 1910 | AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq); |
| 1911 | return (0xFF); |
| 1912 | } |
| 1913 | |
| 1914 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1915 | static void atapi_inquiry(block_dev_desc_t * dev_desc) |
| 1916 | { |
| 1917 | unsigned char ccb[12]; /* Command descriptor block */ |
| 1918 | unsigned char iobuf[64]; /* temp buf */ |
| 1919 | unsigned char c; |
| 1920 | int device; |
| 1921 | |
| 1922 | device=dev_desc->dev; |
| 1923 | dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */ |
| 1924 | dev_desc->block_read=atapi_read; |
| 1925 | |
| 1926 | memset(ccb,0,sizeof(ccb)); |
| 1927 | memset(iobuf,0,sizeof(iobuf)); |
| 1928 | |
| 1929 | ccb[0]=ATAPI_CMD_INQUIRY; |
| 1930 | ccb[4]=40; /* allocation Legnth */ |
| 1931 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40); |
| 1932 | |
| 1933 | AT_PRINTF("ATAPI_CMD_INQUIRY returned %x\n",c); |
| 1934 | if (c!=0) |
| 1935 | return; |
| 1936 | |
| 1937 | /* copy device ident strings */ |
| 1938 | ident_cpy(dev_desc->vendor,&iobuf[8],8); |
| 1939 | ident_cpy(dev_desc->product,&iobuf[16],16); |
| 1940 | ident_cpy(dev_desc->revision,&iobuf[32],5); |
| 1941 | |
| 1942 | dev_desc->lun=0; |
| 1943 | dev_desc->lba=0; |
| 1944 | dev_desc->blksz=0; |
| 1945 | dev_desc->type=iobuf[0] & 0x1f; |
| 1946 | |
| 1947 | if ((iobuf[1]&0x80)==0x80) |
| 1948 | dev_desc->removable = 1; |
| 1949 | else |
| 1950 | dev_desc->removable = 0; |
| 1951 | |
| 1952 | memset(ccb,0,sizeof(ccb)); |
| 1953 | memset(iobuf,0,sizeof(iobuf)); |
| 1954 | ccb[0]=ATAPI_CMD_START_STOP; |
| 1955 | ccb[4]=0x03; /* start */ |
| 1956 | |
| 1957 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0); |
| 1958 | |
| 1959 | AT_PRINTF("ATAPI_CMD_START_STOP returned %x\n",c); |
| 1960 | if (c!=0) |
| 1961 | return; |
| 1962 | |
| 1963 | memset(ccb,0,sizeof(ccb)); |
| 1964 | memset(iobuf,0,sizeof(iobuf)); |
| 1965 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0); |
| 1966 | |
| 1967 | AT_PRINTF("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c); |
| 1968 | if (c!=0) |
| 1969 | return; |
| 1970 | |
| 1971 | memset(ccb,0,sizeof(ccb)); |
| 1972 | memset(iobuf,0,sizeof(iobuf)); |
| 1973 | ccb[0]=ATAPI_CMD_READ_CAP; |
| 1974 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8); |
| 1975 | AT_PRINTF("ATAPI_CMD_READ_CAP returned %x\n",c); |
| 1976 | if (c!=0) |
| 1977 | return; |
| 1978 | |
| 1979 | AT_PRINTF("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n", |
| 1980 | iobuf[0],iobuf[1],iobuf[2],iobuf[3], |
| 1981 | iobuf[4],iobuf[5],iobuf[6],iobuf[7]); |
| 1982 | |
| 1983 | dev_desc->lba =((unsigned long)iobuf[0]<<24) + |
| 1984 | ((unsigned long)iobuf[1]<<16) + |
| 1985 | ((unsigned long)iobuf[2]<< 8) + |
| 1986 | ((unsigned long)iobuf[3]); |
| 1987 | dev_desc->blksz=((unsigned long)iobuf[4]<<24) + |
| 1988 | ((unsigned long)iobuf[5]<<16) + |
| 1989 | ((unsigned long)iobuf[6]<< 8) + |
| 1990 | ((unsigned long)iobuf[7]); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1991 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1992 | dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1993 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1994 | return; |
| 1995 | } |
| 1996 | |
| 1997 | |
| 1998 | /* |
| 1999 | * atapi_read: |
| 2000 | * we transfer only one block per command, since the multiple DRQ per |
| 2001 | * command is not yet implemented |
| 2002 | */ |
| 2003 | #define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */ |
| 2004 | #define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */ |
| 2005 | #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */ |
| 2006 | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 2007 | ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2008 | { |
| 2009 | ulong n = 0; |
| 2010 | unsigned char ccb[12]; /* Command descriptor block */ |
| 2011 | ulong cnt; |
| 2012 | |
| 2013 | AT_PRINTF("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n", |
| 2014 | device, blknr, blkcnt, (ulong)buffer); |
| 2015 | |
| 2016 | do { |
| 2017 | if (blkcnt>ATAPI_READ_MAX_BLOCK) { |
| 2018 | cnt=ATAPI_READ_MAX_BLOCK; |
| 2019 | } else { |
| 2020 | cnt=blkcnt; |
| 2021 | } |
| 2022 | ccb[0]=ATAPI_CMD_READ_12; |
| 2023 | ccb[1]=0; /* reserved */ |
| 2024 | ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */ |
| 2025 | ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */ |
| 2026 | ccb[4]=(unsigned char) (blknr>> 8) & 0xFF; |
| 2027 | ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */ |
| 2028 | ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */ |
| 2029 | ccb[7]=(unsigned char) (cnt >>16) & 0xFF; |
| 2030 | ccb[8]=(unsigned char) (cnt >> 8) & 0xFF; |
| 2031 | ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */ |
| 2032 | ccb[10]=0; /* reserved */ |
| 2033 | ccb[11]=0; /* reserved */ |
| 2034 | |
| 2035 | if (atapi_issue_autoreq(device,ccb,12, |
| 2036 | (unsigned char *)buffer, |
| 2037 | cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) { |
| 2038 | return (n); |
| 2039 | } |
| 2040 | n+=cnt; |
| 2041 | blkcnt-=cnt; |
| 2042 | blknr+=cnt; |
| 2043 | buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */ |
| 2044 | } while (blkcnt > 0); |
| 2045 | return (n); |
| 2046 | } |
| 2047 | |
| 2048 | /* ------------------------------------------------------------------------- */ |
| 2049 | |
| 2050 | #endif /* CONFIG_ATAPI */ |
| 2051 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 2052 | U_BOOT_CMD( |
| 2053 | ide, 5, 1, do_ide, |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2054 | "ide - IDE sub-system\n", |
| 2055 | "reset - reset IDE controller\n" |
| 2056 | "ide info - show available IDE devices\n" |
| 2057 | "ide device [dev] - show or set current device\n" |
| 2058 | "ide part [dev] - print partition table of one or all IDE devices\n" |
| 2059 | "ide read addr blk# cnt\n" |
| 2060 | "ide write addr blk# cnt - read/write `cnt'" |
| 2061 | " blocks starting at block `blk#'\n" |
| 2062 | " to/from memory address `addr'\n" |
| 2063 | ); |
| 2064 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 2065 | U_BOOT_CMD( |
| 2066 | diskboot, 3, 1, do_diskboot, |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2067 | "diskboot- boot from IDE device\n", |
| 2068 | "loadAddr dev:part\n" |
| 2069 | ); |
| 2070 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2071 | #endif /* CONFIG_COMMANDS & CFG_CMD_IDE */ |