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