blob: 3f18b00d10bf238065a970cbe4d9a7c43c7dc53f [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25/*
26 * IDE support
27 */
28#include <common.h>
29#include <config.h>
30#include <watchdog.h>
31#include <command.h>
32#include <image.h>
33#include <asm/byteorder.h>
34#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
35# include <pcmcia.h>
36#endif
37#ifdef CONFIG_8xx
38# include <mpc8xx.h>
39#endif
40#include <ide.h>
41#include <ata.h>
wdenkc6097192002-11-03 00:24:07 +000042#ifdef CONFIG_STATUS_LED
43# include <status_led.h>
44#endif
wdenk15647dc2003-10-09 19:00:25 +000045#ifndef __PPC__
wdenk2262cfe2002-11-18 00:14:45 +000046#include <asm/io.h>
wdenk15647dc2003-10-09 19:00:25 +000047#ifdef __MIPS__
48/* Macros depend on this variable */
49static unsigned long mips_io_port_base = 0;
50#endif
wdenk2262cfe2002-11-18 00:14:45 +000051#endif
wdenkc6097192002-11-03 00:24:07 +000052
53#ifdef CONFIG_SHOW_BOOT_PROGRESS
54# include <status_led.h>
55# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
56#else
57# define SHOW_BOOT_PROGRESS(arg)
58#endif
59
60
61#undef IDE_DEBUG
62
wdenkc7de8292002-11-19 11:04:11 +000063
wdenkc6097192002-11-03 00:24:07 +000064#ifdef IDE_DEBUG
65#define PRINTF(fmt,args...) printf (fmt ,##args)
66#else
67#define PRINTF(fmt,args...)
68#endif
69
70#if (CONFIG_COMMANDS & CFG_CMD_IDE)
71
wdenk15647dc2003-10-09 19:00:25 +000072#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +000073/* Timings for IDE Interface
74 *
75 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
76 * 70 165 30 PIO-Mode 0, [ns]
77 * 4 9 2 [Cycles]
78 * 50 125 20 PIO-Mode 1, [ns]
79 * 3 7 2 [Cycles]
80 * 30 100 15 PIO-Mode 2, [ns]
81 * 2 6 1 [Cycles]
82 * 30 80 10 PIO-Mode 3, [ns]
83 * 2 5 1 [Cycles]
84 * 25 70 10 PIO-Mode 4, [ns]
85 * 2 4 1 [Cycles]
86 */
87
88const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
89{
90 /* Setup Length Hold */
91 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
92 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
93 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
94 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
95 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
96};
97
98static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
99
100#ifndef CFG_PIO_MODE
101#define CFG_PIO_MODE 0 /* use a relaxed default */
102#endif
103static int pio_mode = CFG_PIO_MODE;
104
105/* Make clock cycles and always round up */
106
107#define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
108
wdenk15647dc2003-10-09 19:00:25 +0000109#endif /* CONFIG_IDE_8xx_DIRECT */
110
wdenkc6097192002-11-03 00:24:07 +0000111/* ------------------------------------------------------------------------- */
112
113/* Current I/O Device */
114static int curr_device = -1;
115
116/* Current offset for IDE0 / IDE1 bus access */
117ulong ide_bus_offset[CFG_IDE_MAXBUS] = {
118#if defined(CFG_ATA_IDE0_OFFSET)
119 CFG_ATA_IDE0_OFFSET,
120#endif
121#if defined(CFG_ATA_IDE1_OFFSET) && (CFG_IDE_MAXBUS > 1)
122 CFG_ATA_IDE1_OFFSET,
123#endif
124};
125
wdenk15647dc2003-10-09 19:00:25 +0000126
wdenkc6097192002-11-03 00:24:07 +0000127#define ATA_CURR_BASE(dev) (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
128
wdenkc7de8292002-11-19 11:04:11 +0000129#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000130static int ide_bus_ok[CFG_IDE_MAXBUS];
wdenkc7de8292002-11-19 11:04:11 +0000131#else
132static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
133#endif
wdenkc6097192002-11-03 00:24:07 +0000134
135static block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
136/* ------------------------------------------------------------------------- */
137
138#ifdef CONFIG_IDE_LED
wdenk1f53a412002-12-04 23:39:58 +0000139#ifndef CONFIG_KUP4K
wdenkc6097192002-11-03 00:24:07 +0000140static void ide_led (uchar led, uchar status);
141#else
wdenk1f53a412002-12-04 23:39:58 +0000142extern void ide_led (uchar led, uchar status);
143#endif
144#else
wdenkc7de8292002-11-19 11:04:11 +0000145#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000146#define ide_led(a,b) /* dummy */
wdenkc7de8292002-11-19 11:04:11 +0000147#else
148extern void ide_led(uchar led, uchar status);
149#define LED_IDE1 1
150#define LED_IDE2 2
151#define CONFIG_IDE_LED 1
152#define DEVICE_LED(x) 1
153#endif
wdenkc6097192002-11-03 00:24:07 +0000154#endif
155
156#ifdef CONFIG_IDE_RESET
157static void ide_reset (void);
158#else
159#define ide_reset() /* dummy */
160#endif
161
162static void ide_ident (block_dev_desc_t *dev_desc);
163static uchar ide_wait (int dev, ulong t);
164
165#define IDE_TIME_OUT 2000 /* 2 sec timeout */
166
167#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
168
169#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
170
wdenk2262cfe2002-11-18 00:14:45 +0000171static void __inline__ ide_outb(int dev, int port, unsigned char val);
172static unsigned char __inline__ ide_inb(int dev, int port);
wdenkc6097192002-11-03 00:24:07 +0000173static void input_data(int dev, ulong *sect_buf, int words);
174static void output_data(int dev, ulong *sect_buf, int words);
175static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
176
177
178#ifdef CONFIG_ATAPI
179static void atapi_inquiry(block_dev_desc_t *dev_desc);
180ulong atapi_read (int device, ulong blknr, ulong blkcnt, ulong *buffer);
181#endif
182
183
184#ifdef CONFIG_IDE_8xx_DIRECT
185static void set_pcmcia_timing (int pmode);
wdenkc6097192002-11-03 00:24:07 +0000186#endif
187
188/* ------------------------------------------------------------------------- */
189
190int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
191{
192 int rcode = 0;
193
194 switch (argc) {
195 case 0:
196 case 1:
197 printf ("Usage:\n%s\n", cmdtp->usage);
198 return 1;
199 case 2:
200 if (strncmp(argv[1],"res",3) == 0) {
201 puts ("\nReset IDE"
202#ifdef CONFIG_IDE_8xx_DIRECT
203 " on PCMCIA " PCMCIA_SLOT_MSG
204#endif
205 ": ");
206
207 ide_init ();
208 return 0;
209 } else if (strncmp(argv[1],"inf",3) == 0) {
210 int i;
211
212 putc ('\n');
213
214 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
215 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
216 continue; /* list only known devices */
217 printf ("IDE device %d: ", i);
218 dev_print(&ide_dev_desc[i]);
219 }
220 return 0;
221
222 } else if (strncmp(argv[1],"dev",3) == 0) {
223 if ((curr_device < 0) || (curr_device >= CFG_IDE_MAXDEVICE)) {
224 puts ("\nno IDE devices available\n");
225 return 1;
226 }
227 printf ("\nIDE device %d: ", curr_device);
228 dev_print(&ide_dev_desc[curr_device]);
229 return 0;
230 } else if (strncmp(argv[1],"part",4) == 0) {
231 int dev, ok;
232
233 for (ok=0, dev=0; dev<CFG_IDE_MAXDEVICE; ++dev) {
234 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
235 ++ok;
236 if (dev)
237 putc ('\n');
238 print_part(&ide_dev_desc[dev]);
239 }
240 }
241 if (!ok) {
242 puts ("\nno IDE devices available\n");
243 rcode ++;
244 }
245 return rcode;
246 }
247 printf ("Usage:\n%s\n", cmdtp->usage);
248 return 1;
249 case 3:
250 if (strncmp(argv[1],"dev",3) == 0) {
251 int dev = (int)simple_strtoul(argv[2], NULL, 10);
252
253 printf ("\nIDE device %d: ", dev);
254 if (dev >= CFG_IDE_MAXDEVICE) {
255 puts ("unknown device\n");
256 return 1;
257 }
258 dev_print(&ide_dev_desc[dev]);
259 /*ide_print (dev);*/
260
261 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
262 return 1;
263 }
264
265 curr_device = dev;
266
267 puts ("... is now current device\n");
268
269 return 0;
270 } else if (strncmp(argv[1],"part",4) == 0) {
271 int dev = (int)simple_strtoul(argv[2], NULL, 10);
272
273 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
274 print_part(&ide_dev_desc[dev]);
275 } else {
276 printf ("\nIDE device %d not available\n", dev);
277 rcode = 1;
278 }
279 return rcode;
280#if 0
281 } else if (strncmp(argv[1],"pio",4) == 0) {
282 int mode = (int)simple_strtoul(argv[2], NULL, 10);
283
284 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
285 puts ("\nSetting ");
286 pio_mode = mode;
287 ide_init ();
288 } else {
289 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
290 mode, IDE_MAX_PIO_MODE);
291 }
292 return;
293#endif
294 }
295
296 printf ("Usage:\n%s\n", cmdtp->usage);
297 return 1;
298 default:
299 /* at least 4 args */
300
301 if (strcmp(argv[1],"read") == 0) {
302 ulong addr = simple_strtoul(argv[2], NULL, 16);
303 ulong blk = simple_strtoul(argv[3], NULL, 16);
304 ulong cnt = simple_strtoul(argv[4], NULL, 16);
305 ulong n;
306
307 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
308 curr_device, blk, cnt);
309
310 n = ide_dev_desc[curr_device].block_read (curr_device,
311 blk, cnt,
312 (ulong *)addr);
313 /* flush cache after read */
314 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
315
316 printf ("%ld blocks read: %s\n",
317 n, (n==cnt) ? "OK" : "ERROR");
318 if (n==cnt) {
319 return 0;
320 } else {
321 return 1;
322 }
323 } else if (strcmp(argv[1],"write") == 0) {
324 ulong addr = simple_strtoul(argv[2], NULL, 16);
325 ulong blk = simple_strtoul(argv[3], NULL, 16);
326 ulong cnt = simple_strtoul(argv[4], NULL, 16);
327 ulong n;
328
329 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
330 curr_device, blk, cnt);
331
332 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
333
334 printf ("%ld blocks written: %s\n",
335 n, (n==cnt) ? "OK" : "ERROR");
336 if (n==cnt) {
337 return 0;
338 } else {
339 return 1;
340 }
341 } else {
342 printf ("Usage:\n%s\n", cmdtp->usage);
343 rcode = 1;
344 }
345
346 return rcode;
347 }
348}
349
350int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
351{
352 char *boot_device = NULL;
353 char *ep;
354 int dev, part = 0;
355 ulong cnt;
356 ulong addr;
357 disk_partition_t info;
358 image_header_t *hdr;
359 int rcode = 0;
360
361 switch (argc) {
362 case 1:
363 addr = CFG_LOAD_ADDR;
364 boot_device = getenv ("bootdevice");
365 break;
366 case 2:
367 addr = simple_strtoul(argv[1], NULL, 16);
368 boot_device = getenv ("bootdevice");
369 break;
370 case 3:
371 addr = simple_strtoul(argv[1], NULL, 16);
372 boot_device = argv[2];
373 break;
374 default:
375 printf ("Usage:\n%s\n", cmdtp->usage);
376 SHOW_BOOT_PROGRESS (-1);
377 return 1;
378 }
379
380 if (!boot_device) {
381 puts ("\n** No boot device **\n");
382 SHOW_BOOT_PROGRESS (-1);
383 return 1;
384 }
385
386 dev = simple_strtoul(boot_device, &ep, 16);
387
388 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
389 printf ("\n** Device %d not available\n", dev);
390 SHOW_BOOT_PROGRESS (-1);
391 return 1;
392 }
393
394 if (*ep) {
395 if (*ep != ':') {
396 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
397 SHOW_BOOT_PROGRESS (-1);
398 return 1;
399 }
400 part = simple_strtoul(++ep, NULL, 16);
401 }
402 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
403 SHOW_BOOT_PROGRESS (-1);
404 return 1;
405 }
wdenk4532cb62003-04-27 22:52:51 +0000406 if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
407 (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
wdenkc6097192002-11-03 00:24:07 +0000408 printf ("\n** Invalid partition type \"%.32s\""
409 " (expect \"" BOOT_PART_TYPE "\")\n",
410 info.type);
411 SHOW_BOOT_PROGRESS (-1);
412 return 1;
413 }
414
415 printf ("\nLoading from IDE device %d, partition %d: "
416 "Name: %.32s Type: %.32s\n",
417 dev, part, info.name, info.type);
418
419 PRINTF ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
420 info.start, info.size, info.blksz);
421
422 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
423 printf ("** Read error on %d:%d\n", dev, part);
424 SHOW_BOOT_PROGRESS (-1);
425 return 1;
426 }
427
428 hdr = (image_header_t *)addr;
429
430 if (ntohl(hdr->ih_magic) == IH_MAGIC) {
431
432 print_image_hdr (hdr);
433
434 cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t));
435 cnt += info.blksz - 1;
436 cnt /= info.blksz;
437 cnt -= 1;
438 } else {
439 printf("\n** Bad Magic Number **\n");
440 SHOW_BOOT_PROGRESS (-1);
441 return 1;
442 }
443
444 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
445 (ulong *)(addr+info.blksz)) != cnt) {
446 printf ("** Read error on %d:%d\n", dev, part);
447 SHOW_BOOT_PROGRESS (-1);
448 return 1;
449 }
450
451
452 /* Loading ok, update default load address */
453
454 load_addr = addr;
455
456 /* Check if we should attempt an auto-start */
457 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
458 char *local_args[2];
459 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
460
461 local_args[0] = argv[0];
462 local_args[1] = NULL;
463
464 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
465
466 do_bootm (cmdtp, 0, 1, local_args);
467 rcode = 1;
468 }
469 return rcode;
470}
471
472/* ------------------------------------------------------------------------- */
473
474void ide_init (void)
475{
wdenkc6097192002-11-03 00:24:07 +0000476
477#ifdef CONFIG_IDE_8xx_DIRECT
wdenk15647dc2003-10-09 19:00:25 +0000478 DECLARE_GLOBAL_DATA_PTR;
wdenkc6097192002-11-03 00:24:07 +0000479 volatile immap_t *immr = (immap_t *)CFG_IMMR;
480 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
481#endif
482 unsigned char c;
483 int i, bus;
wdenkc7de8292002-11-19 11:04:11 +0000484#ifdef CONFIG_AMIGAONEG3SE
485 unsigned int max_bus_scan;
486 unsigned int ata_reset_time;
487 char *s;
488#endif
wdenk9fd5e312003-12-07 23:55:12 +0000489#ifdef CONFIG_IDE_8xx_PCCARD
490 extern int pcmcia_on (void);
491 extern int ide_devices_found; /* Initialized in check_ide_device() */
492#endif /* CONFIG_IDE_8xx_PCCARD */
493
494#ifdef CONFIG_IDE_PREINIT
495 WATCHDOG_RESET();
496
497 if (ide_preinit ()) {
498 puts ("ide_preinit failed\n");
499 return;
500 }
501#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000502
503#ifdef CONFIG_IDE_8xx_PCCARD
504 extern int pcmcia_on (void);
wdenk6069ff22003-02-28 00:49:47 +0000505 extern int ide_devices_found; /* Initialized in check_ide_device() */
wdenkc6097192002-11-03 00:24:07 +0000506
507 WATCHDOG_RESET();
508
wdenk6069ff22003-02-28 00:49:47 +0000509 ide_devices_found = 0;
wdenkc6097192002-11-03 00:24:07 +0000510 /* initialize the PCMCIA IDE adapter card */
wdenk6069ff22003-02-28 00:49:47 +0000511 pcmcia_on();
512 if (!ide_devices_found)
wdenkc6097192002-11-03 00:24:07 +0000513 return;
514 udelay (1000000); /* 1 s */
515#endif /* CONFIG_IDE_8xx_PCCARD */
516
517 WATCHDOG_RESET();
518
wdenk15647dc2003-10-09 19:00:25 +0000519#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +0000520 /* Initialize PIO timing tables */
521 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
522 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
523 gd->bus_clk);
524 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
525 gd->bus_clk);
526 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
527 gd->bus_clk);
528 PRINTF ("PIO Mode %d: setup=%2d ns/%d clk"
529 " len=%3d ns/%d clk"
530 " hold=%2d ns/%d clk\n",
531 i,
532 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
533 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
534 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
535 }
wdenk15647dc2003-10-09 19:00:25 +0000536#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000537
538 /* Reset the IDE just to be sure.
539 * Light LED's to show
540 */
541 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
542 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
543
544#ifdef CONFIG_IDE_8xx_DIRECT
545 /* PCMCIA / IDE initialization for common mem space */
546 pcmp->pcmc_pgcrb = 0;
wdenkc6097192002-11-03 00:24:07 +0000547
548 /* start in PIO mode 0 - most relaxed timings */
549 pio_mode = 0;
550 set_pcmcia_timing (pio_mode);
wdenk15647dc2003-10-09 19:00:25 +0000551#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000552
553 /*
554 * Wait for IDE to get ready.
555 * According to spec, this can take up to 31 seconds!
556 */
wdenkc7de8292002-11-19 11:04:11 +0000557#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000558 for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
559 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
wdenkc7de8292002-11-19 11:04:11 +0000560#else
561 s = getenv("ide_maxbus");
562 if (s)
563 max_bus_scan = simple_strtol(s, NULL, 10);
564 else
565 max_bus_scan = CFG_IDE_MAXBUS;
566
567 for (bus=0; bus<max_bus_scan; ++bus) {
568 int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
569#endif
wdenkc6097192002-11-03 00:24:07 +0000570
wdenk6069ff22003-02-28 00:49:47 +0000571#ifdef CONFIG_IDE_8xx_PCCARD
572 /* Skip non-ide devices from probing */
573 if ((ide_devices_found & (1 << bus)) == 0) {
574 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
575 continue;
576 }
577#endif
wdenkc6097192002-11-03 00:24:07 +0000578 printf ("Bus %d: ", bus);
579
580 ide_bus_ok[bus] = 0;
581
582 /* Select device
583 */
584 udelay (100000); /* 100 ms */
wdenk2262cfe2002-11-18 00:14:45 +0000585 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
wdenkc6097192002-11-03 00:24:07 +0000586 udelay (100000); /* 100 ms */
wdenkc7de8292002-11-19 11:04:11 +0000587#ifdef CONFIG_AMIGAONEG3SE
588 ata_reset_time = ATA_RESET_TIME;
589 s = getenv("ide_reset_timeout");
590 if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10);
591#endif
wdenkc6097192002-11-03 00:24:07 +0000592 i = 0;
593 do {
594 udelay (10000); /* 10 ms */
595
wdenk2262cfe2002-11-18 00:14:45 +0000596 c = ide_inb (dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000597 i++;
wdenkc7de8292002-11-19 11:04:11 +0000598#ifdef CONFIG_AMIGAONEG3SE
599 if (i > (ata_reset_time * 100)) {
600#else
wdenkc6097192002-11-03 00:24:07 +0000601 if (i > (ATA_RESET_TIME * 100)) {
wdenkc7de8292002-11-19 11:04:11 +0000602#endif
wdenkc6097192002-11-03 00:24:07 +0000603 puts ("** Timeout **\n");
604 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc7de8292002-11-19 11:04:11 +0000605#ifdef CONFIG_AMIGAONEG3SE
606 /* If this is the second bus, the first one was OK */
607 if (bus != 0)
608 {
609 ide_bus_ok[bus] = 0;
610 goto skip_bus;
611 }
612#endif
wdenkc6097192002-11-03 00:24:07 +0000613 return;
614 }
615 if ((i >= 100) && ((i%100)==0)) {
616 putc ('.');
617 }
618 } while (c & ATA_STAT_BUSY);
619
620 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
621 puts ("not available ");
622 PRINTF ("Status = 0x%02X ", c);
623#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
624 } else if ((c & ATA_STAT_READY) == 0) {
625 puts ("not available ");
626 PRINTF ("Status = 0x%02X ", c);
627#endif
628 } else {
629 puts ("OK ");
630 ide_bus_ok[bus] = 1;
631 }
632 WATCHDOG_RESET();
633 }
wdenkc7de8292002-11-19 11:04:11 +0000634
635#ifdef CONFIG_AMIGAONEG3SE
636 skip_bus:
637#endif
wdenkc6097192002-11-03 00:24:07 +0000638 putc ('\n');
639
640 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
641
642 curr_device = -1;
643 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
644#ifdef CONFIG_IDE_LED
645 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
646#endif
wdenk5cf9da42003-11-07 13:42:26 +0000647 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
wdenkc6097192002-11-03 00:24:07 +0000648 ide_dev_desc[i].if_type=IF_TYPE_IDE;
649 ide_dev_desc[i].dev=i;
650 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
651 ide_dev_desc[i].blksz=0;
652 ide_dev_desc[i].lba=0;
653 ide_dev_desc[i].block_read=ide_read;
654 if (!ide_bus_ok[IDE_BUS(i)])
655 continue;
656 ide_led (led, 1); /* LED on */
657 ide_ident(&ide_dev_desc[i]);
658 ide_led (led, 0); /* LED off */
659 dev_print(&ide_dev_desc[i]);
660/* ide_print (i); */
661 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
662 init_part (&ide_dev_desc[i]); /* initialize partition type */
663 if (curr_device < 0)
664 curr_device = i;
665 }
666 }
667 WATCHDOG_RESET();
668}
669
670/* ------------------------------------------------------------------------- */
671
672block_dev_desc_t * ide_get_dev(int dev)
673{
674 return ((block_dev_desc_t *)&ide_dev_desc[dev]);
675}
676
677
678#ifdef CONFIG_IDE_8xx_DIRECT
679
680static void
681set_pcmcia_timing (int pmode)
682{
683 volatile immap_t *immr = (immap_t *)CFG_IMMR;
684 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
685 ulong timings;
686
687 PRINTF ("Set timing for PIO Mode %d\n", pmode);
688
689 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
690 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
691 | PCMCIA_SL (pio_config_clk[pmode].t_length)
692 ;
693
694 /* IDE 0
695 */
696 pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0;
697 pcmp->pcmc_por0 = CFG_PCMCIA_POR0
698#if (CFG_PCMCIA_POR0 != 0)
699 | timings
700#endif
701 ;
702 PRINTF ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
703
704 pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1;
705 pcmp->pcmc_por1 = CFG_PCMCIA_POR1
706#if (CFG_PCMCIA_POR1 != 0)
707 | timings
708#endif
709 ;
710 PRINTF ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
711
712 pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2;
713 pcmp->pcmc_por2 = CFG_PCMCIA_POR2
714#if (CFG_PCMCIA_POR2 != 0)
715 | timings
716#endif
717 ;
718 PRINTF ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
719
720 pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3;
721 pcmp->pcmc_por3 = CFG_PCMCIA_POR3
722#if (CFG_PCMCIA_POR3 != 0)
723 | timings
724#endif
725 ;
726 PRINTF ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
727
728 /* IDE 1
729 */
730 pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4;
731 pcmp->pcmc_por4 = CFG_PCMCIA_POR4
732#if (CFG_PCMCIA_POR4 != 0)
733 | timings
734#endif
735 ;
736 PRINTF ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
737
738 pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5;
739 pcmp->pcmc_por5 = CFG_PCMCIA_POR5
740#if (CFG_PCMCIA_POR5 != 0)
741 | timings
742#endif
743 ;
744 PRINTF ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
745
746 pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6;
747 pcmp->pcmc_por6 = CFG_PCMCIA_POR6
748#if (CFG_PCMCIA_POR6 != 0)
749 | timings
750#endif
751 ;
752 PRINTF ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
753
754 pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7;
755 pcmp->pcmc_por7 = CFG_PCMCIA_POR7
756#if (CFG_PCMCIA_POR7 != 0)
757 | timings
758#endif
759 ;
760 PRINTF ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
761
762}
763
764#endif /* CONFIG_IDE_8xx_DIRECT */
765
766/* ------------------------------------------------------------------------- */
767
wdenk2262cfe2002-11-18 00:14:45 +0000768#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000769static void __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000770ide_outb(int dev, int port, unsigned char val)
wdenkc6097192002-11-03 00:24:07 +0000771{
wdenk9fd5e312003-12-07 23:55:12 +0000772 PRINTF ("ide_outb (dev= %d, port= %d, val= 0x%02x) : @ 0x%08lx\n",
773 dev, port, val, (ATA_CURR_BASE(dev)+port));
774
wdenkc6097192002-11-03 00:24:07 +0000775 /* Ensure I/O operations complete */
776 __asm__ volatile("eieio");
777 *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
wdenkc6097192002-11-03 00:24:07 +0000778}
wdenk2262cfe2002-11-18 00:14:45 +0000779#else /* ! __PPC__ */
780static void __inline__
781ide_outb(int dev, int port, unsigned char val)
782{
wdenk15647dc2003-10-09 19:00:25 +0000783 outb(val, ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000784}
785#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000786
wdenk2262cfe2002-11-18 00:14:45 +0000787
788#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000789static unsigned char __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000790ide_inb(int dev, int port)
wdenkc6097192002-11-03 00:24:07 +0000791{
792 uchar val;
793 /* Ensure I/O operations complete */
794 __asm__ volatile("eieio");
795 val = *((uchar *)(ATA_CURR_BASE(dev)+port));
wdenk9fd5e312003-12-07 23:55:12 +0000796 PRINTF ("ide_inb (dev= %d, port= %d) : @ 0x%08lx -> 0x%02x\n",
797 dev, port, (ATA_CURR_BASE(dev)+port), val);
wdenkc6097192002-11-03 00:24:07 +0000798 return (val);
799}
wdenk2262cfe2002-11-18 00:14:45 +0000800#else /* ! __PPC__ */
801static unsigned char __inline__
802ide_inb(int dev, int port)
803{
wdenk15647dc2003-10-09 19:00:25 +0000804 return inb(ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000805}
806#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000807
wdenk2262cfe2002-11-18 00:14:45 +0000808#ifdef __PPC__
wdenkcceb8712003-06-23 18:12:28 +0000809# ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000810static void
811output_data_short(int dev, ulong *sect_buf, int words)
812{
813 ushort *dbuf;
814 volatile ushort *pbuf;
wdenk8bde7f72003-06-27 21:31:46 +0000815
wdenkc7de8292002-11-19 11:04:11 +0000816 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
817 dbuf = (ushort *)sect_buf;
818 while (words--) {
819 __asm__ volatile ("eieio");
820 *pbuf = *dbuf++;
821 __asm__ volatile ("eieio");
822 }
823
824 if (words&1)
825 *pbuf = 0;
826}
wdenkcceb8712003-06-23 18:12:28 +0000827# endif /* CONFIG_AMIGAONEG3SE */
wdenk5da627a2003-10-09 20:09:04 +0000828#endif /* __PPC_ */
wdenkc7de8292002-11-19 11:04:11 +0000829
wdenk5da627a2003-10-09 20:09:04 +0000830/* We only need to swap data if we are running on a big endian cpu. */
831/* But Au1x00 cpu:s already swaps data in big endian mode! */
832#if defined(__LITTLE_ENDIAN) || defined(CONFIG_AU1X00)
833#define input_swap_data(x,y,z) input_data(x,y,z)
834#else
wdenkc6097192002-11-03 00:24:07 +0000835static void
836input_swap_data(int dev, ulong *sect_buf, int words)
837{
838 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
839 ushort *dbuf = (ushort *)sect_buf;
840
841 while (words--) {
842 *dbuf++ = ld_le16(pbuf);
843 *dbuf++ = ld_le16(pbuf);
844 }
845}
wdenk5da627a2003-10-09 20:09:04 +0000846#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000847
wdenk2262cfe2002-11-18 00:14:45 +0000848
wdenk2262cfe2002-11-18 00:14:45 +0000849#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000850static void
851output_data(int dev, ulong *sect_buf, int words)
852{
853 ushort *dbuf;
854 volatile ushort *pbuf;
855
856 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
857 dbuf = (ushort *)sect_buf;
858 while (words--) {
859 __asm__ volatile ("eieio");
860 *pbuf = *dbuf++;
861 __asm__ volatile ("eieio");
862 *pbuf = *dbuf++;
863 }
864}
wdenk2262cfe2002-11-18 00:14:45 +0000865#else /* ! __PPC__ */
866static void
867output_data(int dev, ulong *sect_buf, int words)
868{
wdenk15647dc2003-10-09 19:00:25 +0000869 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
wdenk2262cfe2002-11-18 00:14:45 +0000870}
871#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000872
wdenk2262cfe2002-11-18 00:14:45 +0000873#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000874static void
875input_data(int dev, ulong *sect_buf, int words)
876{
877 ushort *dbuf;
878 volatile ushort *pbuf;
879
880 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
881 dbuf = (ushort *)sect_buf;
882 while (words--) {
883 __asm__ volatile ("eieio");
884 *dbuf++ = *pbuf;
885 __asm__ volatile ("eieio");
886 *dbuf++ = *pbuf;
887 }
888}
wdenk2262cfe2002-11-18 00:14:45 +0000889#else /* ! __PPC__ */
890static void
891input_data(int dev, ulong *sect_buf, int words)
892{
wdenk15647dc2003-10-09 19:00:25 +0000893 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
wdenk2262cfe2002-11-18 00:14:45 +0000894}
895
896#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000897
wdenkc7de8292002-11-19 11:04:11 +0000898#ifdef CONFIG_AMIGAONEG3SE
899static void
900input_data_short(int dev, ulong *sect_buf, int words)
901{
902 ushort *dbuf;
903 volatile ushort *pbuf;
904
905 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
906 dbuf = (ushort *)sect_buf;
907 while (words--) {
908 __asm__ volatile ("eieio");
909 *dbuf++ = *pbuf;
910 __asm__ volatile ("eieio");
911 }
912
913 if (words&1)
914 {
915 ushort dummy;
916 dummy = *pbuf;
917 }
918}
919#endif
920
wdenkc6097192002-11-03 00:24:07 +0000921/* -------------------------------------------------------------------------
922 */
923static void ide_ident (block_dev_desc_t *dev_desc)
924{
925 ulong iobuf[ATA_SECTORWORDS];
926 unsigned char c;
927 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
928
wdenkc7de8292002-11-19 11:04:11 +0000929#ifdef CONFIG_AMIGAONEG3SE
930 int max_bus_scan;
931 int retries = 0;
932 char *s;
933 int do_retry = 0;
934#endif
935
wdenkc6097192002-11-03 00:24:07 +0000936#if 0
937 int mode, cycle_time;
938#endif
939 int device;
940 device=dev_desc->dev;
941 printf (" Device %d: ", device);
942
wdenkc7de8292002-11-19 11:04:11 +0000943#ifdef CONFIG_AMIGAONEG3SE
944 s = getenv("ide_maxbus");
945 if (s) {
946 max_bus_scan = simple_strtol(s, NULL, 10);
947 } else {
948 max_bus_scan = CFG_IDE_MAXBUS;
949 }
950 if (device >= max_bus_scan*2) {
951 dev_desc->type=DEV_TYPE_UNKNOWN;
952 return;
953 }
954#endif
955
wdenkc6097192002-11-03 00:24:07 +0000956 ide_led (DEVICE_LED(device), 1); /* LED on */
957 /* Select device
958 */
wdenk2262cfe2002-11-18 00:14:45 +0000959 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +0000960 dev_desc->if_type=IF_TYPE_IDE;
961#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +0000962
963#ifdef CONFIG_AMIGAONEG3SE
964 do_retry = 0;
965 retries = 0;
966
967 /* Warning: This will be tricky to read */
968 while (retries <= 1)
969 {
970#endif /* CONFIG_AMIGAONEG3SE */
971
wdenkc6097192002-11-03 00:24:07 +0000972 /* check signature */
wdenk2262cfe2002-11-18 00:14:45 +0000973 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
974 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
975 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
976 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
wdenkc6097192002-11-03 00:24:07 +0000977 /* ATAPI Signature found */
978 dev_desc->if_type=IF_TYPE_ATAPI;
979 /* Start Ident Command
980 */
wdenk2262cfe2002-11-18 00:14:45 +0000981 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +0000982 /*
983 * Wait for completion - ATAPI devices need more time
984 * to become ready
985 */
986 c = ide_wait (device, ATAPI_TIME_OUT);
987 }
988 else
989#endif
990 {
991 /* Start Ident Command
992 */
wdenk2262cfe2002-11-18 00:14:45 +0000993 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +0000994
995 /* Wait for completion
996 */
997 c = ide_wait (device, IDE_TIME_OUT);
998 }
999 ide_led (DEVICE_LED(device), 0); /* LED off */
1000
1001 if (((c & ATA_STAT_DRQ) == 0) ||
1002 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
wdenkc7de8292002-11-19 11:04:11 +00001003#ifdef CONFIG_AMIGAONEG3SE
1004 if (retries == 0) {
1005 do_retry = 1;
1006 } else {
wdenkc7de8292002-11-19 11:04:11 +00001007 return;
1008 }
1009#else
wdenkc6097192002-11-03 00:24:07 +00001010 return;
wdenkc7de8292002-11-19 11:04:11 +00001011#endif /* CONFIG_AMIGAONEG3SE */
wdenkc6097192002-11-03 00:24:07 +00001012 }
1013
wdenkc7de8292002-11-19 11:04:11 +00001014#ifdef CONFIG_AMIGAONEG3SE
1015 s = getenv("ide_doreset");
1016 if (s && strcmp(s, "on") == 0 && 1 == do_retry) {
1017 /* Need to soft reset the device in case it's an ATAPI... */
1018 PRINTF("Retrying...\n");
1019 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1020 udelay(100000);
1021 ide_outb (device, ATA_COMMAND, 0x08);
1022 udelay (100000); /* 100 ms */
1023 retries++;
1024 } else {
1025 retries = 100;
1026 }
1027 } /* see above - ugly to read */
1028#endif /* CONFIG_AMIGAONEG3SE */
1029
wdenkc6097192002-11-03 00:24:07 +00001030 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1031
1032 ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1033 ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1034 ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1035
1036 if ((iop->config & 0x0080)==0x0080)
1037 dev_desc->removable = 1;
1038 else
1039 dev_desc->removable = 0;
1040
1041#if 0
1042 /*
1043 * Drive PIO mode autoselection
1044 */
1045 mode = iop->tPIO;
1046
1047 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1048 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1049 mode = 2;
1050 PRINTF ("Override tPIO -> 2\n");
1051 }
1052 if (iop->field_valid & 2) { /* drive implements ATA2? */
1053 PRINTF ("Drive implements ATA2\n");
1054 if (iop->capability & 8) { /* drive supports use_iordy? */
1055 cycle_time = iop->eide_pio_iordy;
1056 } else {
1057 cycle_time = iop->eide_pio;
1058 }
1059 PRINTF ("cycle time = %d\n", cycle_time);
1060 mode = 4;
1061 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1062 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1063 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1064 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1065 }
1066 printf ("PIO mode to use: PIO %d\n", mode);
1067#endif /* 0 */
1068
1069#ifdef CONFIG_ATAPI
1070 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1071 atapi_inquiry(dev_desc);
1072 return;
1073 }
1074#endif /* CONFIG_ATAPI */
1075
1076 /* swap shorts */
1077 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1078 /* assuming HD */
1079 dev_desc->type=DEV_TYPE_HARDDISK;
1080 dev_desc->blksz=ATA_BLOCKSIZE;
1081 dev_desc->lun=0; /* just to fill something in... */
1082
1083#if 0 /* only used to test the powersaving mode,
1084 * if enabled, the drive goes after 5 sec
1085 * in standby mode */
wdenk2262cfe2002-11-18 00:14:45 +00001086 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001087 c = ide_wait (device, IDE_TIME_OUT);
wdenk2262cfe2002-11-18 00:14:45 +00001088 ide_outb (device, ATA_SECT_CNT, 1);
1089 ide_outb (device, ATA_LBA_LOW, 0);
1090 ide_outb (device, ATA_LBA_MID, 0);
1091 ide_outb (device, ATA_LBA_HIGH, 0);
1092 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001093 ATA_DEVICE(device));
wdenk2262cfe2002-11-18 00:14:45 +00001094 ide_outb (device, ATA_COMMAND, 0xe3);
wdenkc6097192002-11-03 00:24:07 +00001095 udelay (50);
1096 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1097#endif
1098}
1099
1100
1101/* ------------------------------------------------------------------------- */
1102
1103ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1104{
1105 ulong n = 0;
1106 unsigned char c;
1107 unsigned char pwrsave=0; /* power save */
1108
1109 PRINTF ("ide_read dev %d start %lX, blocks %lX buffer at %lX\n",
1110 device, blknr, blkcnt, (ulong)buffer);
1111
1112 ide_led (DEVICE_LED(device), 1); /* LED on */
1113
1114 /* Select device
1115 */
wdenk2262cfe2002-11-18 00:14:45 +00001116 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001117 c = ide_wait (device, IDE_TIME_OUT);
1118
1119 if (c & ATA_STAT_BUSY) {
1120 printf ("IDE read: device %d not ready\n", device);
1121 goto IDE_READ_E;
1122 }
1123
1124 /* first check if the drive is in Powersaving mode, if yes,
1125 * increase the timeout value */
wdenk2262cfe2002-11-18 00:14:45 +00001126 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
wdenkc6097192002-11-03 00:24:07 +00001127 udelay (50);
1128
1129 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1130
1131 if (c & ATA_STAT_BUSY) {
1132 printf ("IDE read: device %d not ready\n", device);
1133 goto IDE_READ_E;
1134 }
1135 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1136 printf ("No Powersaving mode %X\n", c);
1137 } else {
wdenk2262cfe2002-11-18 00:14:45 +00001138 c = ide_inb(device,ATA_SECT_CNT);
wdenkc6097192002-11-03 00:24:07 +00001139 PRINTF("Powersaving %02X\n",c);
1140 if(c==0)
1141 pwrsave=1;
1142 }
1143
1144
1145 while (blkcnt-- > 0) {
1146
1147 c = ide_wait (device, IDE_TIME_OUT);
1148
1149 if (c & ATA_STAT_BUSY) {
1150 printf ("IDE read: device %d not ready\n", device);
1151 break;
1152 }
1153
wdenk2262cfe2002-11-18 00:14:45 +00001154 ide_outb (device, ATA_SECT_CNT, 1);
1155 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1156 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1157 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1158 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001159 ATA_DEVICE(device) |
1160 ((blknr >> 24) & 0xF) );
wdenk2262cfe2002-11-18 00:14:45 +00001161 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
wdenkc6097192002-11-03 00:24:07 +00001162
1163 udelay (50);
1164
1165 if(pwrsave) {
1166 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1167 pwrsave=0;
1168 } else {
1169 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1170 }
1171
1172 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1173 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1174 device, blknr, c);
1175 break;
1176 }
1177
1178 input_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001179 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001180
1181 ++n;
1182 ++blknr;
1183 buffer += ATA_SECTORWORDS;
1184 }
1185IDE_READ_E:
1186 ide_led (DEVICE_LED(device), 0); /* LED off */
1187 return (n);
1188}
1189
1190/* ------------------------------------------------------------------------- */
1191
1192
1193ulong ide_write (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1194{
1195 ulong n = 0;
1196 unsigned char c;
1197
1198 ide_led (DEVICE_LED(device), 1); /* LED on */
1199
1200 /* Select device
1201 */
wdenk2262cfe2002-11-18 00:14:45 +00001202 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001203
1204 while (blkcnt-- > 0) {
1205
1206 c = ide_wait (device, IDE_TIME_OUT);
1207
1208 if (c & ATA_STAT_BUSY) {
1209 printf ("IDE read: device %d not ready\n", device);
1210 goto WR_OUT;
1211 }
1212
wdenk2262cfe2002-11-18 00:14:45 +00001213 ide_outb (device, ATA_SECT_CNT, 1);
1214 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1215 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1216 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1217 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001218 ATA_DEVICE(device) |
1219 ((blknr >> 24) & 0xF) );
wdenk2262cfe2002-11-18 00:14:45 +00001220 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
wdenkc6097192002-11-03 00:24:07 +00001221
1222 udelay (50);
1223
1224 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1225
1226 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1227 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1228 device, blknr, c);
1229 goto WR_OUT;
1230 }
1231
1232 output_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001233 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001234 ++n;
1235 ++blknr;
1236 buffer += ATA_SECTORWORDS;
1237 }
1238WR_OUT:
1239 ide_led (DEVICE_LED(device), 0); /* LED off */
1240 return (n);
1241}
1242
1243/* ------------------------------------------------------------------------- */
1244
1245/*
1246 * copy src to dest, skipping leading and trailing blanks and null
1247 * terminate the string
1248 */
1249static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len)
1250{
1251 int start,end;
1252
1253 start=0;
1254 while (start<len) {
1255 if (src[start]!=' ')
1256 break;
1257 start++;
1258 }
1259 end=len-1;
1260 while (end>start) {
1261 if (src[end]!=' ')
1262 break;
1263 end--;
1264 }
1265 for ( ; start<=end; start++) {
1266 *dest++=src[start];
1267 }
1268 *dest='\0';
1269}
1270
1271/* ------------------------------------------------------------------------- */
1272
1273/*
1274 * Wait until Busy bit is off, or timeout (in ms)
1275 * Return last status
1276 */
1277static uchar ide_wait (int dev, ulong t)
1278{
1279 ulong delay = 10 * t; /* poll every 100 us */
1280 uchar c;
1281
wdenk2262cfe2002-11-18 00:14:45 +00001282 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
wdenkc6097192002-11-03 00:24:07 +00001283 udelay (100);
1284 if (delay-- == 0) {
1285 break;
1286 }
1287 }
1288 return (c);
1289}
1290
1291/* ------------------------------------------------------------------------- */
1292
1293#ifdef CONFIG_IDE_RESET
1294extern void ide_set_reset(int idereset);
1295
1296static void ide_reset (void)
1297{
1298#if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1299 volatile immap_t *immr = (immap_t *)CFG_IMMR;
1300#endif
1301 int i;
1302
1303 curr_device = -1;
1304 for (i=0; i<CFG_IDE_MAXBUS; ++i)
1305 ide_bus_ok[i] = 0;
1306 for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1307 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1308
1309 ide_set_reset (1); /* assert reset */
1310
1311 WATCHDOG_RESET();
1312
1313#ifdef CFG_PB_12V_ENABLE
1314 immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */
1315 immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1316 immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1317 immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE;
1318
1319 /* wait 500 ms for the voltage to stabilize
1320 */
1321 for (i=0; i<500; ++i) {
1322 udelay (1000);
1323 }
1324
1325 immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */
1326#endif /* CFG_PB_12V_ENABLE */
1327
1328#ifdef CFG_PB_IDE_MOTOR
1329 /* configure IDE Motor voltage monitor pin as input */
1330 immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1331 immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1332 immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1333
1334 /* wait up to 1 s for the motor voltage to stabilize
1335 */
1336 for (i=0; i<1000; ++i) {
1337 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1338 break;
1339 }
1340 udelay (1000);
1341 }
1342
1343 if (i == 1000) { /* Timeout */
1344 printf ("\nWarning: 5V for IDE Motor missing\n");
1345# ifdef CONFIG_STATUS_LED
1346# ifdef STATUS_LED_YELLOW
1347 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1348# endif
1349# ifdef STATUS_LED_GREEN
1350 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1351# endif
1352# endif /* CONFIG_STATUS_LED */
1353 }
1354#endif /* CFG_PB_IDE_MOTOR */
1355
1356 WATCHDOG_RESET();
1357
1358 /* de-assert RESET signal */
1359 ide_set_reset(0);
1360
1361 /* wait 250 ms */
1362 for (i=0; i<250; ++i) {
1363 udelay (1000);
1364 }
1365}
1366
1367#endif /* CONFIG_IDE_RESET */
1368
1369/* ------------------------------------------------------------------------- */
1370
wdenk1f53a412002-12-04 23:39:58 +00001371#if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K)
wdenkc6097192002-11-03 00:24:07 +00001372
1373static uchar led_buffer = 0; /* Buffer for current LED status */
1374
1375static void ide_led (uchar led, uchar status)
1376{
1377 uchar *led_port = LED_PORT;
1378
1379 if (status) { /* switch LED on */
1380 led_buffer |= led;
1381 } else { /* switch LED off */
1382 led_buffer &= ~led;
1383 }
1384
1385 *led_port = led_buffer;
1386}
1387
1388#endif /* CONFIG_IDE_LED */
1389
1390/* ------------------------------------------------------------------------- */
1391
1392#ifdef CONFIG_ATAPI
1393/****************************************************************************
1394 * ATAPI Support
1395 */
1396
1397
wdenkc6097192002-11-03 00:24:07 +00001398#undef ATAPI_DEBUG
1399
1400#ifdef ATAPI_DEBUG
1401#define AT_PRINTF(fmt,args...) printf (fmt ,##args)
1402#else
1403#define AT_PRINTF(fmt,args...)
1404#endif
1405
wdenk2262cfe2002-11-18 00:14:45 +00001406#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +00001407/* since ATAPI may use commands with not 4 bytes alligned length
1408 * we have our own transfer functions, 2 bytes alligned */
1409static void
1410output_data_shorts(int dev, ushort *sect_buf, int shorts)
1411{
1412 ushort *dbuf;
1413 volatile ushort *pbuf;
1414
1415 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1416 dbuf = (ushort *)sect_buf;
1417 while (shorts--) {
1418 __asm__ volatile ("eieio");
1419 *pbuf = *dbuf++;
1420 }
1421}
1422
1423static void
1424input_data_shorts(int dev, ushort *sect_buf, int shorts)
1425{
1426 ushort *dbuf;
1427 volatile ushort *pbuf;
1428
1429 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1430 dbuf = (ushort *)sect_buf;
1431 while (shorts--) {
1432 __asm__ volatile ("eieio");
1433 *dbuf++ = *pbuf;
1434 }
1435}
1436
wdenk2262cfe2002-11-18 00:14:45 +00001437#else /* ! __PPC__ */
1438static void
1439output_data_shorts(int dev, ushort *sect_buf, int shorts)
1440{
wdenk15647dc2003-10-09 19:00:25 +00001441 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001442}
1443
1444
1445static void
1446input_data_shorts(int dev, ushort *sect_buf, int shorts)
1447{
wdenk15647dc2003-10-09 19:00:25 +00001448 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001449}
1450
1451#endif /* __PPC__ */
1452
wdenkc6097192002-11-03 00:24:07 +00001453/*
1454 * Wait until (Status & mask) == res, or timeout (in ms)
1455 * Return last status
1456 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1457 * and then they set their DRQ Bit
1458 */
1459static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1460{
1461 ulong delay = 10 * t; /* poll every 100 us */
1462 uchar c;
1463
wdenk2262cfe2002-11-18 00:14:45 +00001464 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1465 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001466 /* break if error occurs (doesn't make sense to wait more) */
1467 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1468 break;
1469 udelay (100);
1470 if (delay-- == 0) {
1471 break;
1472 }
1473 }
1474 return (c);
1475}
1476
1477/*
1478 * issue an atapi command
1479 */
1480unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1481{
1482 unsigned char c,err,mask,res;
1483 int n;
1484 ide_led (DEVICE_LED(device), 1); /* LED on */
1485
1486 /* Select device
1487 */
1488 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1489 res = 0;
wdenkc7de8292002-11-19 11:04:11 +00001490#ifdef CONFIG_AMIGAONEG3SE
1491# warning THF: Removed LBA mode ???
1492#endif
wdenk2262cfe2002-11-18 00:14:45 +00001493 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001494 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1495 if ((c & mask) != res) {
1496 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1497 err=0xFF;
1498 goto AI_OUT;
1499 }
1500 /* write taskfile */
wdenk2262cfe2002-11-18 00:14:45 +00001501 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
wdenkc7de8292002-11-19 11:04:11 +00001502 ide_outb (device, ATA_SECT_CNT, 0);
1503 ide_outb (device, ATA_SECT_NUM, 0);
wdenk2262cfe2002-11-18 00:14:45 +00001504 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
wdenkc7de8292002-11-19 11:04:11 +00001505 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1506#ifdef CONFIG_AMIGAONEG3SE
1507# warning THF: Removed LBA mode ???
1508#endif
wdenk2262cfe2002-11-18 00:14:45 +00001509 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001510
wdenk2262cfe2002-11-18 00:14:45 +00001511 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
wdenkc6097192002-11-03 00:24:07 +00001512 udelay (50);
1513
1514 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1515 res = ATA_STAT_DRQ;
1516 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1517
1518 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1519 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1520 err=0xFF;
1521 goto AI_OUT;
1522 }
1523
1524 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1525 /* ATAPI Command written wait for completition */
1526 udelay (5000); /* device must set bsy */
1527
1528 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1529 /* if no data wait for DRQ = 0 BSY = 0
1530 * if data wait for DRQ = 1 BSY = 0 */
1531 res=0;
1532 if(buflen)
1533 res = ATA_STAT_DRQ;
1534 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1535 if ((c & mask) != res ) {
1536 if (c & ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001537 err=(ide_inb(device,ATA_ERROR_REG))>>4;
wdenkc6097192002-11-03 00:24:07 +00001538 AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1539 } else {
1540 printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1541 err=0xFF;
1542 }
1543 goto AI_OUT;
1544 }
wdenk2262cfe2002-11-18 00:14:45 +00001545 n=ide_inb(device, ATA_CYL_HIGH);
wdenkc6097192002-11-03 00:24:07 +00001546 n<<=8;
wdenk2262cfe2002-11-18 00:14:45 +00001547 n+=ide_inb(device, ATA_CYL_LOW);
wdenkc6097192002-11-03 00:24:07 +00001548 if(n>buflen) {
1549 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1550 err=0xff;
1551 goto AI_OUT;
1552 }
1553 if((n==0)&&(buflen<0)) {
1554 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1555 err=0xff;
1556 goto AI_OUT;
1557 }
1558 if(n!=buflen) {
1559 AT_PRINTF("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1560 }
1561 if(n!=0) { /* data transfer */
1562 AT_PRINTF("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1563 /* we transfer shorts */
1564 n>>=1;
1565 /* ok now decide if it is an in or output */
wdenk2262cfe2002-11-18 00:14:45 +00001566 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
wdenkc6097192002-11-03 00:24:07 +00001567 AT_PRINTF("Write to device\n");
1568 output_data_shorts(device,(unsigned short *)buffer,n);
1569 } else {
1570 AT_PRINTF("Read from device @ %p shorts %d\n",buffer,n);
1571 input_data_shorts(device,(unsigned short *)buffer,n);
1572 }
1573 }
1574 udelay(5000); /* seems that some CD ROMs need this... */
1575 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1576 res=0;
1577 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1578 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001579 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
wdenkc6097192002-11-03 00:24:07 +00001580 AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c);
1581 } else {
1582 err = 0;
1583 }
1584AI_OUT:
1585 ide_led (DEVICE_LED(device), 0); /* LED off */
1586 return (err);
1587}
1588
1589/*
1590 * sending the command to atapi_issue. If an status other than good
1591 * returns, an request_sense will be issued
1592 */
1593
1594#define ATAPI_DRIVE_NOT_READY 100
1595#define ATAPI_UNIT_ATTN 10
1596
1597unsigned char atapi_issue_autoreq (int device,
1598 unsigned char* ccb,
1599 int ccblen,
1600 unsigned char *buffer,
1601 int buflen)
1602{
1603 unsigned char sense_data[18],sense_ccb[12];
1604 unsigned char res,key,asc,ascq;
1605 int notready,unitattn;
1606
wdenkc7de8292002-11-19 11:04:11 +00001607#ifdef CONFIG_AMIGAONEG3SE
1608 char *s;
1609 unsigned int timeout, retrycnt;
1610
1611 s = getenv("ide_cd_timeout");
1612 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1613
1614 retrycnt = 0;
1615#endif
1616
wdenkc6097192002-11-03 00:24:07 +00001617 unitattn=ATAPI_UNIT_ATTN;
1618 notready=ATAPI_DRIVE_NOT_READY;
1619
1620retry:
1621 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1622 if (res==0)
1623 return (0); /* Ok */
1624
1625 if (res==0xFF)
1626 return (0xFF); /* error */
1627
1628 AT_PRINTF("(auto_req)atapi_issue returned sense key %X\n",res);
1629
1630 memset(sense_ccb,0,sizeof(sense_ccb));
1631 memset(sense_data,0,sizeof(sense_data));
1632 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
wdenkc7de8292002-11-19 11:04:11 +00001633 sense_ccb[4]=18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001634
1635 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1636 key=(sense_data[2]&0xF);
1637 asc=(sense_data[12]);
1638 ascq=(sense_data[13]);
1639
1640 AT_PRINTF("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1641 AT_PRINTF(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1642 sense_data[0],
1643 key,
1644 asc,
1645 ascq);
1646
1647 if((key==0))
1648 return 0; /* ok device ready */
1649
1650 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1651 if(unitattn-->0) {
1652 udelay(200*1000);
1653 goto retry;
1654 }
1655 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1656 goto error;
1657 }
1658 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1659 if (notready-->0) {
1660 udelay(200*1000);
1661 goto retry;
1662 }
1663 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1664 goto error;
1665 }
1666 if(asc==0x3a) {
1667 AT_PRINTF("Media not present\n");
1668 goto error;
1669 }
wdenkc7de8292002-11-19 11:04:11 +00001670
1671#ifdef CONFIG_AMIGAONEG3SE
1672 if ((sense_data[2]&0xF)==0x0B) {
1673 AT_PRINTF("ABORTED COMMAND...retry\n");
1674 if (retrycnt++ < 4)
1675 goto retry;
1676 return (0xFF);
1677 }
1678
1679 if ((sense_data[2]&0xf) == 0x02 &&
1680 sense_data[12] == 0x04 &&
1681 sense_data[13] == 0x01 ) {
1682 AT_PRINTF("Waiting for unit to become active\n");
1683 udelay(timeout);
1684 if (retrycnt++ < 4)
1685 goto retry;
1686 return 0xFF;
1687 }
1688#endif /* CONFIG_AMIGAONEG3SE */
1689
wdenkc6097192002-11-03 00:24:07 +00001690 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1691error:
1692 AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1693 return (0xFF);
1694}
1695
1696
wdenkc6097192002-11-03 00:24:07 +00001697static void atapi_inquiry(block_dev_desc_t * dev_desc)
1698{
1699 unsigned char ccb[12]; /* Command descriptor block */
1700 unsigned char iobuf[64]; /* temp buf */
1701 unsigned char c;
1702 int device;
1703
1704 device=dev_desc->dev;
1705 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1706 dev_desc->block_read=atapi_read;
1707
1708 memset(ccb,0,sizeof(ccb));
1709 memset(iobuf,0,sizeof(iobuf));
1710
1711 ccb[0]=ATAPI_CMD_INQUIRY;
1712 ccb[4]=40; /* allocation Legnth */
1713 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1714
1715 AT_PRINTF("ATAPI_CMD_INQUIRY returned %x\n",c);
1716 if (c!=0)
1717 return;
1718
1719 /* copy device ident strings */
1720 ident_cpy(dev_desc->vendor,&iobuf[8],8);
1721 ident_cpy(dev_desc->product,&iobuf[16],16);
1722 ident_cpy(dev_desc->revision,&iobuf[32],5);
1723
1724 dev_desc->lun=0;
1725 dev_desc->lba=0;
1726 dev_desc->blksz=0;
1727 dev_desc->type=iobuf[0] & 0x1f;
1728
1729 if ((iobuf[1]&0x80)==0x80)
1730 dev_desc->removable = 1;
1731 else
1732 dev_desc->removable = 0;
1733
1734 memset(ccb,0,sizeof(ccb));
1735 memset(iobuf,0,sizeof(iobuf));
1736 ccb[0]=ATAPI_CMD_START_STOP;
1737 ccb[4]=0x03; /* start */
1738
1739 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1740
1741 AT_PRINTF("ATAPI_CMD_START_STOP returned %x\n",c);
1742 if (c!=0)
1743 return;
1744
1745 memset(ccb,0,sizeof(ccb));
1746 memset(iobuf,0,sizeof(iobuf));
1747 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1748
1749 AT_PRINTF("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1750 if (c!=0)
1751 return;
1752
1753 memset(ccb,0,sizeof(ccb));
1754 memset(iobuf,0,sizeof(iobuf));
1755 ccb[0]=ATAPI_CMD_READ_CAP;
1756 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1757 AT_PRINTF("ATAPI_CMD_READ_CAP returned %x\n",c);
1758 if (c!=0)
1759 return;
1760
1761 AT_PRINTF("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1762 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1763 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1764
1765 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1766 ((unsigned long)iobuf[1]<<16) +
1767 ((unsigned long)iobuf[2]<< 8) +
1768 ((unsigned long)iobuf[3]);
1769 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1770 ((unsigned long)iobuf[5]<<16) +
1771 ((unsigned long)iobuf[6]<< 8) +
1772 ((unsigned long)iobuf[7]);
1773 return;
1774}
1775
1776
1777/*
1778 * atapi_read:
1779 * we transfer only one block per command, since the multiple DRQ per
1780 * command is not yet implemented
1781 */
1782#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1783#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
1784#define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1785
1786ulong atapi_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1787{
1788 ulong n = 0;
1789 unsigned char ccb[12]; /* Command descriptor block */
1790 ulong cnt;
1791
1792 AT_PRINTF("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1793 device, blknr, blkcnt, (ulong)buffer);
1794
1795 do {
1796 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1797 cnt=ATAPI_READ_MAX_BLOCK;
1798 } else {
1799 cnt=blkcnt;
1800 }
1801 ccb[0]=ATAPI_CMD_READ_12;
1802 ccb[1]=0; /* reserved */
1803 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
1804 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
1805 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
1806 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
1807 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
1808 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
1809 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
1810 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
1811 ccb[10]=0; /* reserved */
1812 ccb[11]=0; /* reserved */
1813
1814 if (atapi_issue_autoreq(device,ccb,12,
1815 (unsigned char *)buffer,
1816 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
1817 return (n);
1818 }
1819 n+=cnt;
1820 blkcnt-=cnt;
1821 blknr+=cnt;
1822 buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
1823 } while (blkcnt > 0);
1824 return (n);
1825}
1826
1827/* ------------------------------------------------------------------------- */
1828
1829#endif /* CONFIG_ATAPI */
1830
wdenk0d498392003-07-01 21:06:45 +00001831U_BOOT_CMD(
1832 ide, 5, 1, do_ide,
wdenk8bde7f72003-06-27 21:31:46 +00001833 "ide - IDE sub-system\n",
1834 "reset - reset IDE controller\n"
1835 "ide info - show available IDE devices\n"
1836 "ide device [dev] - show or set current device\n"
1837 "ide part [dev] - print partition table of one or all IDE devices\n"
1838 "ide read addr blk# cnt\n"
1839 "ide write addr blk# cnt - read/write `cnt'"
1840 " blocks starting at block `blk#'\n"
1841 " to/from memory address `addr'\n"
1842);
1843
wdenk0d498392003-07-01 21:06:45 +00001844U_BOOT_CMD(
1845 diskboot, 3, 1, do_diskboot,
wdenk8bde7f72003-06-27 21:31:46 +00001846 "diskboot- boot from IDE device\n",
1847 "loadAddr dev:part\n"
1848);
1849
wdenkc6097192002-11-03 00:24:07 +00001850#endif /* CONFIG_COMMANDS & CFG_CMD_IDE */