blob: 45f6368a7612489ce09dfd04de9a160baea55961 [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
wdenkc6097192002-11-03 00:24:07 +0000489
490#ifdef CONFIG_IDE_8xx_PCCARD
491 extern int pcmcia_on (void);
wdenk6069ff22003-02-28 00:49:47 +0000492 extern int ide_devices_found; /* Initialized in check_ide_device() */
wdenkc6097192002-11-03 00:24:07 +0000493
494 WATCHDOG_RESET();
495
wdenk6069ff22003-02-28 00:49:47 +0000496 ide_devices_found = 0;
wdenkc6097192002-11-03 00:24:07 +0000497 /* initialize the PCMCIA IDE adapter card */
wdenk6069ff22003-02-28 00:49:47 +0000498 pcmcia_on();
499 if (!ide_devices_found)
wdenkc6097192002-11-03 00:24:07 +0000500 return;
501 udelay (1000000); /* 1 s */
502#endif /* CONFIG_IDE_8xx_PCCARD */
503
504 WATCHDOG_RESET();
505
wdenk15647dc2003-10-09 19:00:25 +0000506#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +0000507 /* Initialize PIO timing tables */
508 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
509 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
510 gd->bus_clk);
511 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
512 gd->bus_clk);
513 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
514 gd->bus_clk);
515 PRINTF ("PIO Mode %d: setup=%2d ns/%d clk"
516 " len=%3d ns/%d clk"
517 " hold=%2d ns/%d clk\n",
518 i,
519 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
520 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
521 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
522 }
wdenk15647dc2003-10-09 19:00:25 +0000523#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000524
525 /* Reset the IDE just to be sure.
526 * Light LED's to show
527 */
528 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
529 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
530
531#ifdef CONFIG_IDE_8xx_DIRECT
532 /* PCMCIA / IDE initialization for common mem space */
533 pcmp->pcmc_pgcrb = 0;
wdenkc6097192002-11-03 00:24:07 +0000534
535 /* start in PIO mode 0 - most relaxed timings */
536 pio_mode = 0;
537 set_pcmcia_timing (pio_mode);
wdenk15647dc2003-10-09 19:00:25 +0000538#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000539
540 /*
541 * Wait for IDE to get ready.
542 * According to spec, this can take up to 31 seconds!
543 */
wdenkc7de8292002-11-19 11:04:11 +0000544#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000545 for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
546 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
wdenkc7de8292002-11-19 11:04:11 +0000547#else
548 s = getenv("ide_maxbus");
549 if (s)
550 max_bus_scan = simple_strtol(s, NULL, 10);
551 else
552 max_bus_scan = CFG_IDE_MAXBUS;
553
554 for (bus=0; bus<max_bus_scan; ++bus) {
555 int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
556#endif
wdenkc6097192002-11-03 00:24:07 +0000557
wdenk6069ff22003-02-28 00:49:47 +0000558#ifdef CONFIG_IDE_8xx_PCCARD
559 /* Skip non-ide devices from probing */
560 if ((ide_devices_found & (1 << bus)) == 0) {
561 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
562 continue;
563 }
564#endif
wdenkc6097192002-11-03 00:24:07 +0000565 printf ("Bus %d: ", bus);
566
567 ide_bus_ok[bus] = 0;
568
569 /* Select device
570 */
571 udelay (100000); /* 100 ms */
wdenk2262cfe2002-11-18 00:14:45 +0000572 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
wdenkc6097192002-11-03 00:24:07 +0000573 udelay (100000); /* 100 ms */
wdenkc7de8292002-11-19 11:04:11 +0000574#ifdef CONFIG_AMIGAONEG3SE
575 ata_reset_time = ATA_RESET_TIME;
576 s = getenv("ide_reset_timeout");
577 if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10);
578#endif
wdenkc6097192002-11-03 00:24:07 +0000579 i = 0;
580 do {
581 udelay (10000); /* 10 ms */
582
wdenk2262cfe2002-11-18 00:14:45 +0000583 c = ide_inb (dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000584 i++;
wdenkc7de8292002-11-19 11:04:11 +0000585#ifdef CONFIG_AMIGAONEG3SE
586 if (i > (ata_reset_time * 100)) {
587#else
wdenkc6097192002-11-03 00:24:07 +0000588 if (i > (ATA_RESET_TIME * 100)) {
wdenkc7de8292002-11-19 11:04:11 +0000589#endif
wdenkc6097192002-11-03 00:24:07 +0000590 puts ("** Timeout **\n");
591 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc7de8292002-11-19 11:04:11 +0000592#ifdef CONFIG_AMIGAONEG3SE
593 /* If this is the second bus, the first one was OK */
594 if (bus != 0)
595 {
596 ide_bus_ok[bus] = 0;
597 goto skip_bus;
598 }
599#endif
wdenkc6097192002-11-03 00:24:07 +0000600 return;
601 }
602 if ((i >= 100) && ((i%100)==0)) {
603 putc ('.');
604 }
605 } while (c & ATA_STAT_BUSY);
606
607 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
608 puts ("not available ");
609 PRINTF ("Status = 0x%02X ", c);
610#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
611 } else if ((c & ATA_STAT_READY) == 0) {
612 puts ("not available ");
613 PRINTF ("Status = 0x%02X ", c);
614#endif
615 } else {
616 puts ("OK ");
617 ide_bus_ok[bus] = 1;
618 }
619 WATCHDOG_RESET();
620 }
wdenkc7de8292002-11-19 11:04:11 +0000621
622#ifdef CONFIG_AMIGAONEG3SE
623 skip_bus:
624#endif
wdenkc6097192002-11-03 00:24:07 +0000625 putc ('\n');
626
627 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
628
629 curr_device = -1;
630 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
631#ifdef CONFIG_IDE_LED
632 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
633#endif
wdenk5cf9da42003-11-07 13:42:26 +0000634 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
wdenkc6097192002-11-03 00:24:07 +0000635 ide_dev_desc[i].if_type=IF_TYPE_IDE;
636 ide_dev_desc[i].dev=i;
637 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
638 ide_dev_desc[i].blksz=0;
639 ide_dev_desc[i].lba=0;
640 ide_dev_desc[i].block_read=ide_read;
641 if (!ide_bus_ok[IDE_BUS(i)])
642 continue;
643 ide_led (led, 1); /* LED on */
644 ide_ident(&ide_dev_desc[i]);
645 ide_led (led, 0); /* LED off */
646 dev_print(&ide_dev_desc[i]);
647/* ide_print (i); */
648 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
649 init_part (&ide_dev_desc[i]); /* initialize partition type */
650 if (curr_device < 0)
651 curr_device = i;
652 }
653 }
654 WATCHDOG_RESET();
655}
656
657/* ------------------------------------------------------------------------- */
658
659block_dev_desc_t * ide_get_dev(int dev)
660{
661 return ((block_dev_desc_t *)&ide_dev_desc[dev]);
662}
663
664
665#ifdef CONFIG_IDE_8xx_DIRECT
666
667static void
668set_pcmcia_timing (int pmode)
669{
670 volatile immap_t *immr = (immap_t *)CFG_IMMR;
671 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
672 ulong timings;
673
674 PRINTF ("Set timing for PIO Mode %d\n", pmode);
675
676 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
677 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
678 | PCMCIA_SL (pio_config_clk[pmode].t_length)
679 ;
680
681 /* IDE 0
682 */
683 pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0;
684 pcmp->pcmc_por0 = CFG_PCMCIA_POR0
685#if (CFG_PCMCIA_POR0 != 0)
686 | timings
687#endif
688 ;
689 PRINTF ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
690
691 pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1;
692 pcmp->pcmc_por1 = CFG_PCMCIA_POR1
693#if (CFG_PCMCIA_POR1 != 0)
694 | timings
695#endif
696 ;
697 PRINTF ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
698
699 pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2;
700 pcmp->pcmc_por2 = CFG_PCMCIA_POR2
701#if (CFG_PCMCIA_POR2 != 0)
702 | timings
703#endif
704 ;
705 PRINTF ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
706
707 pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3;
708 pcmp->pcmc_por3 = CFG_PCMCIA_POR3
709#if (CFG_PCMCIA_POR3 != 0)
710 | timings
711#endif
712 ;
713 PRINTF ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
714
715 /* IDE 1
716 */
717 pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4;
718 pcmp->pcmc_por4 = CFG_PCMCIA_POR4
719#if (CFG_PCMCIA_POR4 != 0)
720 | timings
721#endif
722 ;
723 PRINTF ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
724
725 pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5;
726 pcmp->pcmc_por5 = CFG_PCMCIA_POR5
727#if (CFG_PCMCIA_POR5 != 0)
728 | timings
729#endif
730 ;
731 PRINTF ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
732
733 pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6;
734 pcmp->pcmc_por6 = CFG_PCMCIA_POR6
735#if (CFG_PCMCIA_POR6 != 0)
736 | timings
737#endif
738 ;
739 PRINTF ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
740
741 pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7;
742 pcmp->pcmc_por7 = CFG_PCMCIA_POR7
743#if (CFG_PCMCIA_POR7 != 0)
744 | timings
745#endif
746 ;
747 PRINTF ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
748
749}
750
751#endif /* CONFIG_IDE_8xx_DIRECT */
752
753/* ------------------------------------------------------------------------- */
754
wdenk2262cfe2002-11-18 00:14:45 +0000755#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000756static void __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000757ide_outb(int dev, int port, unsigned char val)
wdenkc6097192002-11-03 00:24:07 +0000758{
759 /* Ensure I/O operations complete */
760 __asm__ volatile("eieio");
761 *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
762#if 0
wdenk2262cfe2002-11-18 00:14:45 +0000763 printf ("ide_outb: 0x%08lx <== 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
wdenkc6097192002-11-03 00:24:07 +0000764#endif
765}
wdenk2262cfe2002-11-18 00:14:45 +0000766#else /* ! __PPC__ */
767static void __inline__
768ide_outb(int dev, int port, unsigned char val)
769{
wdenk15647dc2003-10-09 19:00:25 +0000770 outb(val, ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000771}
772#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000773
wdenk2262cfe2002-11-18 00:14:45 +0000774
775#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000776static unsigned char __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000777ide_inb(int dev, int port)
wdenkc6097192002-11-03 00:24:07 +0000778{
779 uchar val;
780 /* Ensure I/O operations complete */
781 __asm__ volatile("eieio");
782 val = *((uchar *)(ATA_CURR_BASE(dev)+port));
783#if 0
wdenk2262cfe2002-11-18 00:14:45 +0000784 printf ("ide_inb: 0x%08lx ==> 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
wdenkc6097192002-11-03 00:24:07 +0000785#endif
786 return (val);
787}
wdenk2262cfe2002-11-18 00:14:45 +0000788#else /* ! __PPC__ */
789static unsigned char __inline__
790ide_inb(int dev, int port)
791{
wdenk15647dc2003-10-09 19:00:25 +0000792 return inb(ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000793}
794#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000795
wdenk2262cfe2002-11-18 00:14:45 +0000796#ifdef __PPC__
wdenkcceb8712003-06-23 18:12:28 +0000797# ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000798static void
799output_data_short(int dev, ulong *sect_buf, int words)
800{
801 ushort *dbuf;
802 volatile ushort *pbuf;
wdenk8bde7f72003-06-27 21:31:46 +0000803
wdenkc7de8292002-11-19 11:04:11 +0000804 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
805 dbuf = (ushort *)sect_buf;
806 while (words--) {
807 __asm__ volatile ("eieio");
808 *pbuf = *dbuf++;
809 __asm__ volatile ("eieio");
810 }
811
812 if (words&1)
813 *pbuf = 0;
814}
wdenkcceb8712003-06-23 18:12:28 +0000815# endif /* CONFIG_AMIGAONEG3SE */
wdenk5da627a2003-10-09 20:09:04 +0000816#endif /* __PPC_ */
wdenkc7de8292002-11-19 11:04:11 +0000817
wdenk5da627a2003-10-09 20:09:04 +0000818/* We only need to swap data if we are running on a big endian cpu. */
819/* But Au1x00 cpu:s already swaps data in big endian mode! */
820#if defined(__LITTLE_ENDIAN) || defined(CONFIG_AU1X00)
821#define input_swap_data(x,y,z) input_data(x,y,z)
822#else
wdenkc6097192002-11-03 00:24:07 +0000823static void
824input_swap_data(int dev, ulong *sect_buf, int words)
825{
826 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
827 ushort *dbuf = (ushort *)sect_buf;
828
829 while (words--) {
830 *dbuf++ = ld_le16(pbuf);
831 *dbuf++ = ld_le16(pbuf);
832 }
833}
wdenk5da627a2003-10-09 20:09:04 +0000834#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000835
wdenk2262cfe2002-11-18 00:14:45 +0000836
wdenk2262cfe2002-11-18 00:14:45 +0000837#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000838static void
839output_data(int dev, ulong *sect_buf, int words)
840{
841 ushort *dbuf;
842 volatile ushort *pbuf;
843
844 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
845 dbuf = (ushort *)sect_buf;
846 while (words--) {
847 __asm__ volatile ("eieio");
848 *pbuf = *dbuf++;
849 __asm__ volatile ("eieio");
850 *pbuf = *dbuf++;
851 }
852}
wdenk2262cfe2002-11-18 00:14:45 +0000853#else /* ! __PPC__ */
854static void
855output_data(int dev, ulong *sect_buf, int words)
856{
wdenk15647dc2003-10-09 19:00:25 +0000857 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
wdenk2262cfe2002-11-18 00:14:45 +0000858}
859#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000860
wdenk2262cfe2002-11-18 00:14:45 +0000861#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000862static void
863input_data(int dev, ulong *sect_buf, int words)
864{
865 ushort *dbuf;
866 volatile ushort *pbuf;
867
868 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
869 dbuf = (ushort *)sect_buf;
870 while (words--) {
871 __asm__ volatile ("eieio");
872 *dbuf++ = *pbuf;
873 __asm__ volatile ("eieio");
874 *dbuf++ = *pbuf;
875 }
876}
wdenk2262cfe2002-11-18 00:14:45 +0000877#else /* ! __PPC__ */
878static void
879input_data(int dev, ulong *sect_buf, int words)
880{
wdenk15647dc2003-10-09 19:00:25 +0000881 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
wdenk2262cfe2002-11-18 00:14:45 +0000882}
883
884#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000885
wdenkc7de8292002-11-19 11:04:11 +0000886#ifdef CONFIG_AMIGAONEG3SE
887static void
888input_data_short(int dev, ulong *sect_buf, int words)
889{
890 ushort *dbuf;
891 volatile ushort *pbuf;
892
893 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
894 dbuf = (ushort *)sect_buf;
895 while (words--) {
896 __asm__ volatile ("eieio");
897 *dbuf++ = *pbuf;
898 __asm__ volatile ("eieio");
899 }
900
901 if (words&1)
902 {
903 ushort dummy;
904 dummy = *pbuf;
905 }
906}
907#endif
908
wdenkc6097192002-11-03 00:24:07 +0000909/* -------------------------------------------------------------------------
910 */
911static void ide_ident (block_dev_desc_t *dev_desc)
912{
913 ulong iobuf[ATA_SECTORWORDS];
914 unsigned char c;
915 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
916
wdenkc7de8292002-11-19 11:04:11 +0000917#ifdef CONFIG_AMIGAONEG3SE
918 int max_bus_scan;
919 int retries = 0;
920 char *s;
921 int do_retry = 0;
922#endif
923
wdenkc6097192002-11-03 00:24:07 +0000924#if 0
925 int mode, cycle_time;
926#endif
927 int device;
928 device=dev_desc->dev;
929 printf (" Device %d: ", device);
930
wdenkc7de8292002-11-19 11:04:11 +0000931#ifdef CONFIG_AMIGAONEG3SE
932 s = getenv("ide_maxbus");
933 if (s) {
934 max_bus_scan = simple_strtol(s, NULL, 10);
935 } else {
936 max_bus_scan = CFG_IDE_MAXBUS;
937 }
938 if (device >= max_bus_scan*2) {
939 dev_desc->type=DEV_TYPE_UNKNOWN;
940 return;
941 }
942#endif
943
wdenkc6097192002-11-03 00:24:07 +0000944 ide_led (DEVICE_LED(device), 1); /* LED on */
945 /* Select device
946 */
wdenk2262cfe2002-11-18 00:14:45 +0000947 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +0000948 dev_desc->if_type=IF_TYPE_IDE;
949#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +0000950
951#ifdef CONFIG_AMIGAONEG3SE
952 do_retry = 0;
953 retries = 0;
954
955 /* Warning: This will be tricky to read */
956 while (retries <= 1)
957 {
958#endif /* CONFIG_AMIGAONEG3SE */
959
wdenkc6097192002-11-03 00:24:07 +0000960 /* check signature */
wdenk2262cfe2002-11-18 00:14:45 +0000961 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
962 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
963 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
964 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
wdenkc6097192002-11-03 00:24:07 +0000965 /* ATAPI Signature found */
966 dev_desc->if_type=IF_TYPE_ATAPI;
967 /* Start Ident Command
968 */
wdenk2262cfe2002-11-18 00:14:45 +0000969 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +0000970 /*
971 * Wait for completion - ATAPI devices need more time
972 * to become ready
973 */
974 c = ide_wait (device, ATAPI_TIME_OUT);
975 }
976 else
977#endif
978 {
979 /* Start Ident Command
980 */
wdenk2262cfe2002-11-18 00:14:45 +0000981 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +0000982
983 /* Wait for completion
984 */
985 c = ide_wait (device, IDE_TIME_OUT);
986 }
987 ide_led (DEVICE_LED(device), 0); /* LED off */
988
989 if (((c & ATA_STAT_DRQ) == 0) ||
990 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
wdenkc7de8292002-11-19 11:04:11 +0000991#ifdef CONFIG_AMIGAONEG3SE
992 if (retries == 0) {
993 do_retry = 1;
994 } else {
wdenkc7de8292002-11-19 11:04:11 +0000995 return;
996 }
997#else
wdenkc6097192002-11-03 00:24:07 +0000998 return;
wdenkc7de8292002-11-19 11:04:11 +0000999#endif /* CONFIG_AMIGAONEG3SE */
wdenkc6097192002-11-03 00:24:07 +00001000 }
1001
wdenkc7de8292002-11-19 11:04:11 +00001002#ifdef CONFIG_AMIGAONEG3SE
1003 s = getenv("ide_doreset");
1004 if (s && strcmp(s, "on") == 0 && 1 == do_retry) {
1005 /* Need to soft reset the device in case it's an ATAPI... */
1006 PRINTF("Retrying...\n");
1007 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1008 udelay(100000);
1009 ide_outb (device, ATA_COMMAND, 0x08);
1010 udelay (100000); /* 100 ms */
1011 retries++;
1012 } else {
1013 retries = 100;
1014 }
1015 } /* see above - ugly to read */
1016#endif /* CONFIG_AMIGAONEG3SE */
1017
wdenkc6097192002-11-03 00:24:07 +00001018 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1019
1020 ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1021 ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1022 ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1023
1024 if ((iop->config & 0x0080)==0x0080)
1025 dev_desc->removable = 1;
1026 else
1027 dev_desc->removable = 0;
1028
1029#if 0
1030 /*
1031 * Drive PIO mode autoselection
1032 */
1033 mode = iop->tPIO;
1034
1035 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1036 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1037 mode = 2;
1038 PRINTF ("Override tPIO -> 2\n");
1039 }
1040 if (iop->field_valid & 2) { /* drive implements ATA2? */
1041 PRINTF ("Drive implements ATA2\n");
1042 if (iop->capability & 8) { /* drive supports use_iordy? */
1043 cycle_time = iop->eide_pio_iordy;
1044 } else {
1045 cycle_time = iop->eide_pio;
1046 }
1047 PRINTF ("cycle time = %d\n", cycle_time);
1048 mode = 4;
1049 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1050 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1051 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1052 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1053 }
1054 printf ("PIO mode to use: PIO %d\n", mode);
1055#endif /* 0 */
1056
1057#ifdef CONFIG_ATAPI
1058 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1059 atapi_inquiry(dev_desc);
1060 return;
1061 }
1062#endif /* CONFIG_ATAPI */
1063
1064 /* swap shorts */
1065 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1066 /* assuming HD */
1067 dev_desc->type=DEV_TYPE_HARDDISK;
1068 dev_desc->blksz=ATA_BLOCKSIZE;
1069 dev_desc->lun=0; /* just to fill something in... */
1070
1071#if 0 /* only used to test the powersaving mode,
1072 * if enabled, the drive goes after 5 sec
1073 * in standby mode */
wdenk2262cfe2002-11-18 00:14:45 +00001074 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001075 c = ide_wait (device, IDE_TIME_OUT);
wdenk2262cfe2002-11-18 00:14:45 +00001076 ide_outb (device, ATA_SECT_CNT, 1);
1077 ide_outb (device, ATA_LBA_LOW, 0);
1078 ide_outb (device, ATA_LBA_MID, 0);
1079 ide_outb (device, ATA_LBA_HIGH, 0);
1080 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001081 ATA_DEVICE(device));
wdenk2262cfe2002-11-18 00:14:45 +00001082 ide_outb (device, ATA_COMMAND, 0xe3);
wdenkc6097192002-11-03 00:24:07 +00001083 udelay (50);
1084 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1085#endif
1086}
1087
1088
1089/* ------------------------------------------------------------------------- */
1090
1091ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1092{
1093 ulong n = 0;
1094 unsigned char c;
1095 unsigned char pwrsave=0; /* power save */
1096
1097 PRINTF ("ide_read dev %d start %lX, blocks %lX buffer at %lX\n",
1098 device, blknr, blkcnt, (ulong)buffer);
1099
1100 ide_led (DEVICE_LED(device), 1); /* LED on */
1101
1102 /* Select device
1103 */
wdenk2262cfe2002-11-18 00:14:45 +00001104 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001105 c = ide_wait (device, IDE_TIME_OUT);
1106
1107 if (c & ATA_STAT_BUSY) {
1108 printf ("IDE read: device %d not ready\n", device);
1109 goto IDE_READ_E;
1110 }
1111
1112 /* first check if the drive is in Powersaving mode, if yes,
1113 * increase the timeout value */
wdenk2262cfe2002-11-18 00:14:45 +00001114 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
wdenkc6097192002-11-03 00:24:07 +00001115 udelay (50);
1116
1117 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1118
1119 if (c & ATA_STAT_BUSY) {
1120 printf ("IDE read: device %d not ready\n", device);
1121 goto IDE_READ_E;
1122 }
1123 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1124 printf ("No Powersaving mode %X\n", c);
1125 } else {
wdenk2262cfe2002-11-18 00:14:45 +00001126 c = ide_inb(device,ATA_SECT_CNT);
wdenkc6097192002-11-03 00:24:07 +00001127 PRINTF("Powersaving %02X\n",c);
1128 if(c==0)
1129 pwrsave=1;
1130 }
1131
1132
1133 while (blkcnt-- > 0) {
1134
1135 c = ide_wait (device, IDE_TIME_OUT);
1136
1137 if (c & ATA_STAT_BUSY) {
1138 printf ("IDE read: device %d not ready\n", device);
1139 break;
1140 }
1141
wdenk2262cfe2002-11-18 00:14:45 +00001142 ide_outb (device, ATA_SECT_CNT, 1);
1143 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1144 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1145 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1146 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001147 ATA_DEVICE(device) |
1148 ((blknr >> 24) & 0xF) );
wdenk2262cfe2002-11-18 00:14:45 +00001149 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
wdenkc6097192002-11-03 00:24:07 +00001150
1151 udelay (50);
1152
1153 if(pwrsave) {
1154 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1155 pwrsave=0;
1156 } else {
1157 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1158 }
1159
1160 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1161 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1162 device, blknr, c);
1163 break;
1164 }
1165
1166 input_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001167 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001168
1169 ++n;
1170 ++blknr;
1171 buffer += ATA_SECTORWORDS;
1172 }
1173IDE_READ_E:
1174 ide_led (DEVICE_LED(device), 0); /* LED off */
1175 return (n);
1176}
1177
1178/* ------------------------------------------------------------------------- */
1179
1180
1181ulong ide_write (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1182{
1183 ulong n = 0;
1184 unsigned char c;
1185
1186 ide_led (DEVICE_LED(device), 1); /* LED on */
1187
1188 /* Select device
1189 */
wdenk2262cfe2002-11-18 00:14:45 +00001190 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001191
1192 while (blkcnt-- > 0) {
1193
1194 c = ide_wait (device, IDE_TIME_OUT);
1195
1196 if (c & ATA_STAT_BUSY) {
1197 printf ("IDE read: device %d not ready\n", device);
1198 goto WR_OUT;
1199 }
1200
wdenk2262cfe2002-11-18 00:14:45 +00001201 ide_outb (device, ATA_SECT_CNT, 1);
1202 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1203 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1204 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1205 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001206 ATA_DEVICE(device) |
1207 ((blknr >> 24) & 0xF) );
wdenk2262cfe2002-11-18 00:14:45 +00001208 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
wdenkc6097192002-11-03 00:24:07 +00001209
1210 udelay (50);
1211
1212 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1213
1214 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1215 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1216 device, blknr, c);
1217 goto WR_OUT;
1218 }
1219
1220 output_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001221 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001222 ++n;
1223 ++blknr;
1224 buffer += ATA_SECTORWORDS;
1225 }
1226WR_OUT:
1227 ide_led (DEVICE_LED(device), 0); /* LED off */
1228 return (n);
1229}
1230
1231/* ------------------------------------------------------------------------- */
1232
1233/*
1234 * copy src to dest, skipping leading and trailing blanks and null
1235 * terminate the string
1236 */
1237static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len)
1238{
1239 int start,end;
1240
1241 start=0;
1242 while (start<len) {
1243 if (src[start]!=' ')
1244 break;
1245 start++;
1246 }
1247 end=len-1;
1248 while (end>start) {
1249 if (src[end]!=' ')
1250 break;
1251 end--;
1252 }
1253 for ( ; start<=end; start++) {
1254 *dest++=src[start];
1255 }
1256 *dest='\0';
1257}
1258
1259/* ------------------------------------------------------------------------- */
1260
1261/*
1262 * Wait until Busy bit is off, or timeout (in ms)
1263 * Return last status
1264 */
1265static uchar ide_wait (int dev, ulong t)
1266{
1267 ulong delay = 10 * t; /* poll every 100 us */
1268 uchar c;
1269
wdenk2262cfe2002-11-18 00:14:45 +00001270 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
wdenkc6097192002-11-03 00:24:07 +00001271 udelay (100);
1272 if (delay-- == 0) {
1273 break;
1274 }
1275 }
1276 return (c);
1277}
1278
1279/* ------------------------------------------------------------------------- */
1280
1281#ifdef CONFIG_IDE_RESET
1282extern void ide_set_reset(int idereset);
1283
1284static void ide_reset (void)
1285{
1286#if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1287 volatile immap_t *immr = (immap_t *)CFG_IMMR;
1288#endif
1289 int i;
1290
1291 curr_device = -1;
1292 for (i=0; i<CFG_IDE_MAXBUS; ++i)
1293 ide_bus_ok[i] = 0;
1294 for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1295 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1296
1297 ide_set_reset (1); /* assert reset */
1298
1299 WATCHDOG_RESET();
1300
1301#ifdef CFG_PB_12V_ENABLE
1302 immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */
1303 immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1304 immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1305 immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE;
1306
1307 /* wait 500 ms for the voltage to stabilize
1308 */
1309 for (i=0; i<500; ++i) {
1310 udelay (1000);
1311 }
1312
1313 immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */
1314#endif /* CFG_PB_12V_ENABLE */
1315
1316#ifdef CFG_PB_IDE_MOTOR
1317 /* configure IDE Motor voltage monitor pin as input */
1318 immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1319 immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1320 immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1321
1322 /* wait up to 1 s for the motor voltage to stabilize
1323 */
1324 for (i=0; i<1000; ++i) {
1325 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1326 break;
1327 }
1328 udelay (1000);
1329 }
1330
1331 if (i == 1000) { /* Timeout */
1332 printf ("\nWarning: 5V for IDE Motor missing\n");
1333# ifdef CONFIG_STATUS_LED
1334# ifdef STATUS_LED_YELLOW
1335 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1336# endif
1337# ifdef STATUS_LED_GREEN
1338 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1339# endif
1340# endif /* CONFIG_STATUS_LED */
1341 }
1342#endif /* CFG_PB_IDE_MOTOR */
1343
1344 WATCHDOG_RESET();
1345
1346 /* de-assert RESET signal */
1347 ide_set_reset(0);
1348
1349 /* wait 250 ms */
1350 for (i=0; i<250; ++i) {
1351 udelay (1000);
1352 }
1353}
1354
1355#endif /* CONFIG_IDE_RESET */
1356
1357/* ------------------------------------------------------------------------- */
1358
wdenk1f53a412002-12-04 23:39:58 +00001359#if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K)
wdenkc6097192002-11-03 00:24:07 +00001360
1361static uchar led_buffer = 0; /* Buffer for current LED status */
1362
1363static void ide_led (uchar led, uchar status)
1364{
1365 uchar *led_port = LED_PORT;
1366
1367 if (status) { /* switch LED on */
1368 led_buffer |= led;
1369 } else { /* switch LED off */
1370 led_buffer &= ~led;
1371 }
1372
1373 *led_port = led_buffer;
1374}
1375
1376#endif /* CONFIG_IDE_LED */
1377
1378/* ------------------------------------------------------------------------- */
1379
1380#ifdef CONFIG_ATAPI
1381/****************************************************************************
1382 * ATAPI Support
1383 */
1384
1385
wdenkc6097192002-11-03 00:24:07 +00001386#undef ATAPI_DEBUG
1387
1388#ifdef ATAPI_DEBUG
1389#define AT_PRINTF(fmt,args...) printf (fmt ,##args)
1390#else
1391#define AT_PRINTF(fmt,args...)
1392#endif
1393
wdenk2262cfe2002-11-18 00:14:45 +00001394#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +00001395/* since ATAPI may use commands with not 4 bytes alligned length
1396 * we have our own transfer functions, 2 bytes alligned */
1397static void
1398output_data_shorts(int dev, ushort *sect_buf, int shorts)
1399{
1400 ushort *dbuf;
1401 volatile ushort *pbuf;
1402
1403 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1404 dbuf = (ushort *)sect_buf;
1405 while (shorts--) {
1406 __asm__ volatile ("eieio");
1407 *pbuf = *dbuf++;
1408 }
1409}
1410
1411static void
1412input_data_shorts(int dev, ushort *sect_buf, int shorts)
1413{
1414 ushort *dbuf;
1415 volatile ushort *pbuf;
1416
1417 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1418 dbuf = (ushort *)sect_buf;
1419 while (shorts--) {
1420 __asm__ volatile ("eieio");
1421 *dbuf++ = *pbuf;
1422 }
1423}
1424
wdenk2262cfe2002-11-18 00:14:45 +00001425#else /* ! __PPC__ */
1426static void
1427output_data_shorts(int dev, ushort *sect_buf, int shorts)
1428{
wdenk15647dc2003-10-09 19:00:25 +00001429 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001430}
1431
1432
1433static void
1434input_data_shorts(int dev, ushort *sect_buf, int shorts)
1435{
wdenk15647dc2003-10-09 19:00:25 +00001436 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001437}
1438
1439#endif /* __PPC__ */
1440
wdenkc6097192002-11-03 00:24:07 +00001441/*
1442 * Wait until (Status & mask) == res, or timeout (in ms)
1443 * Return last status
1444 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1445 * and then they set their DRQ Bit
1446 */
1447static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1448{
1449 ulong delay = 10 * t; /* poll every 100 us */
1450 uchar c;
1451
wdenk2262cfe2002-11-18 00:14:45 +00001452 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1453 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001454 /* break if error occurs (doesn't make sense to wait more) */
1455 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1456 break;
1457 udelay (100);
1458 if (delay-- == 0) {
1459 break;
1460 }
1461 }
1462 return (c);
1463}
1464
1465/*
1466 * issue an atapi command
1467 */
1468unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1469{
1470 unsigned char c,err,mask,res;
1471 int n;
1472 ide_led (DEVICE_LED(device), 1); /* LED on */
1473
1474 /* Select device
1475 */
1476 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1477 res = 0;
wdenkc7de8292002-11-19 11:04:11 +00001478#ifdef CONFIG_AMIGAONEG3SE
1479# warning THF: Removed LBA mode ???
1480#endif
wdenk2262cfe2002-11-18 00:14:45 +00001481 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001482 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1483 if ((c & mask) != res) {
1484 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1485 err=0xFF;
1486 goto AI_OUT;
1487 }
1488 /* write taskfile */
wdenk2262cfe2002-11-18 00:14:45 +00001489 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
wdenkc7de8292002-11-19 11:04:11 +00001490 ide_outb (device, ATA_SECT_CNT, 0);
1491 ide_outb (device, ATA_SECT_NUM, 0);
wdenk2262cfe2002-11-18 00:14:45 +00001492 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
wdenkc7de8292002-11-19 11:04:11 +00001493 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1494#ifdef CONFIG_AMIGAONEG3SE
1495# warning THF: Removed LBA mode ???
1496#endif
wdenk2262cfe2002-11-18 00:14:45 +00001497 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001498
wdenk2262cfe2002-11-18 00:14:45 +00001499 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
wdenkc6097192002-11-03 00:24:07 +00001500 udelay (50);
1501
1502 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1503 res = ATA_STAT_DRQ;
1504 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1505
1506 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1507 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1508 err=0xFF;
1509 goto AI_OUT;
1510 }
1511
1512 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1513 /* ATAPI Command written wait for completition */
1514 udelay (5000); /* device must set bsy */
1515
1516 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1517 /* if no data wait for DRQ = 0 BSY = 0
1518 * if data wait for DRQ = 1 BSY = 0 */
1519 res=0;
1520 if(buflen)
1521 res = ATA_STAT_DRQ;
1522 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1523 if ((c & mask) != res ) {
1524 if (c & ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001525 err=(ide_inb(device,ATA_ERROR_REG))>>4;
wdenkc6097192002-11-03 00:24:07 +00001526 AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1527 } else {
1528 printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1529 err=0xFF;
1530 }
1531 goto AI_OUT;
1532 }
wdenk2262cfe2002-11-18 00:14:45 +00001533 n=ide_inb(device, ATA_CYL_HIGH);
wdenkc6097192002-11-03 00:24:07 +00001534 n<<=8;
wdenk2262cfe2002-11-18 00:14:45 +00001535 n+=ide_inb(device, ATA_CYL_LOW);
wdenkc6097192002-11-03 00:24:07 +00001536 if(n>buflen) {
1537 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1538 err=0xff;
1539 goto AI_OUT;
1540 }
1541 if((n==0)&&(buflen<0)) {
1542 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1543 err=0xff;
1544 goto AI_OUT;
1545 }
1546 if(n!=buflen) {
1547 AT_PRINTF("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1548 }
1549 if(n!=0) { /* data transfer */
1550 AT_PRINTF("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1551 /* we transfer shorts */
1552 n>>=1;
1553 /* ok now decide if it is an in or output */
wdenk2262cfe2002-11-18 00:14:45 +00001554 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
wdenkc6097192002-11-03 00:24:07 +00001555 AT_PRINTF("Write to device\n");
1556 output_data_shorts(device,(unsigned short *)buffer,n);
1557 } else {
1558 AT_PRINTF("Read from device @ %p shorts %d\n",buffer,n);
1559 input_data_shorts(device,(unsigned short *)buffer,n);
1560 }
1561 }
1562 udelay(5000); /* seems that some CD ROMs need this... */
1563 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1564 res=0;
1565 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1566 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001567 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
wdenkc6097192002-11-03 00:24:07 +00001568 AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c);
1569 } else {
1570 err = 0;
1571 }
1572AI_OUT:
1573 ide_led (DEVICE_LED(device), 0); /* LED off */
1574 return (err);
1575}
1576
1577/*
1578 * sending the command to atapi_issue. If an status other than good
1579 * returns, an request_sense will be issued
1580 */
1581
1582#define ATAPI_DRIVE_NOT_READY 100
1583#define ATAPI_UNIT_ATTN 10
1584
1585unsigned char atapi_issue_autoreq (int device,
1586 unsigned char* ccb,
1587 int ccblen,
1588 unsigned char *buffer,
1589 int buflen)
1590{
1591 unsigned char sense_data[18],sense_ccb[12];
1592 unsigned char res,key,asc,ascq;
1593 int notready,unitattn;
1594
wdenkc7de8292002-11-19 11:04:11 +00001595#ifdef CONFIG_AMIGAONEG3SE
1596 char *s;
1597 unsigned int timeout, retrycnt;
1598
1599 s = getenv("ide_cd_timeout");
1600 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1601
1602 retrycnt = 0;
1603#endif
1604
wdenkc6097192002-11-03 00:24:07 +00001605 unitattn=ATAPI_UNIT_ATTN;
1606 notready=ATAPI_DRIVE_NOT_READY;
1607
1608retry:
1609 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1610 if (res==0)
1611 return (0); /* Ok */
1612
1613 if (res==0xFF)
1614 return (0xFF); /* error */
1615
1616 AT_PRINTF("(auto_req)atapi_issue returned sense key %X\n",res);
1617
1618 memset(sense_ccb,0,sizeof(sense_ccb));
1619 memset(sense_data,0,sizeof(sense_data));
1620 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
wdenkc7de8292002-11-19 11:04:11 +00001621 sense_ccb[4]=18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001622
1623 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1624 key=(sense_data[2]&0xF);
1625 asc=(sense_data[12]);
1626 ascq=(sense_data[13]);
1627
1628 AT_PRINTF("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1629 AT_PRINTF(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1630 sense_data[0],
1631 key,
1632 asc,
1633 ascq);
1634
1635 if((key==0))
1636 return 0; /* ok device ready */
1637
1638 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1639 if(unitattn-->0) {
1640 udelay(200*1000);
1641 goto retry;
1642 }
1643 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1644 goto error;
1645 }
1646 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1647 if (notready-->0) {
1648 udelay(200*1000);
1649 goto retry;
1650 }
1651 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1652 goto error;
1653 }
1654 if(asc==0x3a) {
1655 AT_PRINTF("Media not present\n");
1656 goto error;
1657 }
wdenkc7de8292002-11-19 11:04:11 +00001658
1659#ifdef CONFIG_AMIGAONEG3SE
1660 if ((sense_data[2]&0xF)==0x0B) {
1661 AT_PRINTF("ABORTED COMMAND...retry\n");
1662 if (retrycnt++ < 4)
1663 goto retry;
1664 return (0xFF);
1665 }
1666
1667 if ((sense_data[2]&0xf) == 0x02 &&
1668 sense_data[12] == 0x04 &&
1669 sense_data[13] == 0x01 ) {
1670 AT_PRINTF("Waiting for unit to become active\n");
1671 udelay(timeout);
1672 if (retrycnt++ < 4)
1673 goto retry;
1674 return 0xFF;
1675 }
1676#endif /* CONFIG_AMIGAONEG3SE */
1677
wdenkc6097192002-11-03 00:24:07 +00001678 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1679error:
1680 AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1681 return (0xFF);
1682}
1683
1684
wdenkc6097192002-11-03 00:24:07 +00001685static void atapi_inquiry(block_dev_desc_t * dev_desc)
1686{
1687 unsigned char ccb[12]; /* Command descriptor block */
1688 unsigned char iobuf[64]; /* temp buf */
1689 unsigned char c;
1690 int device;
1691
1692 device=dev_desc->dev;
1693 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1694 dev_desc->block_read=atapi_read;
1695
1696 memset(ccb,0,sizeof(ccb));
1697 memset(iobuf,0,sizeof(iobuf));
1698
1699 ccb[0]=ATAPI_CMD_INQUIRY;
1700 ccb[4]=40; /* allocation Legnth */
1701 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1702
1703 AT_PRINTF("ATAPI_CMD_INQUIRY returned %x\n",c);
1704 if (c!=0)
1705 return;
1706
1707 /* copy device ident strings */
1708 ident_cpy(dev_desc->vendor,&iobuf[8],8);
1709 ident_cpy(dev_desc->product,&iobuf[16],16);
1710 ident_cpy(dev_desc->revision,&iobuf[32],5);
1711
1712 dev_desc->lun=0;
1713 dev_desc->lba=0;
1714 dev_desc->blksz=0;
1715 dev_desc->type=iobuf[0] & 0x1f;
1716
1717 if ((iobuf[1]&0x80)==0x80)
1718 dev_desc->removable = 1;
1719 else
1720 dev_desc->removable = 0;
1721
1722 memset(ccb,0,sizeof(ccb));
1723 memset(iobuf,0,sizeof(iobuf));
1724 ccb[0]=ATAPI_CMD_START_STOP;
1725 ccb[4]=0x03; /* start */
1726
1727 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1728
1729 AT_PRINTF("ATAPI_CMD_START_STOP returned %x\n",c);
1730 if (c!=0)
1731 return;
1732
1733 memset(ccb,0,sizeof(ccb));
1734 memset(iobuf,0,sizeof(iobuf));
1735 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1736
1737 AT_PRINTF("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1738 if (c!=0)
1739 return;
1740
1741 memset(ccb,0,sizeof(ccb));
1742 memset(iobuf,0,sizeof(iobuf));
1743 ccb[0]=ATAPI_CMD_READ_CAP;
1744 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1745 AT_PRINTF("ATAPI_CMD_READ_CAP returned %x\n",c);
1746 if (c!=0)
1747 return;
1748
1749 AT_PRINTF("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1750 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1751 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1752
1753 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1754 ((unsigned long)iobuf[1]<<16) +
1755 ((unsigned long)iobuf[2]<< 8) +
1756 ((unsigned long)iobuf[3]);
1757 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1758 ((unsigned long)iobuf[5]<<16) +
1759 ((unsigned long)iobuf[6]<< 8) +
1760 ((unsigned long)iobuf[7]);
1761 return;
1762}
1763
1764
1765/*
1766 * atapi_read:
1767 * we transfer only one block per command, since the multiple DRQ per
1768 * command is not yet implemented
1769 */
1770#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1771#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
1772#define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1773
1774ulong atapi_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1775{
1776 ulong n = 0;
1777 unsigned char ccb[12]; /* Command descriptor block */
1778 ulong cnt;
1779
1780 AT_PRINTF("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1781 device, blknr, blkcnt, (ulong)buffer);
1782
1783 do {
1784 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1785 cnt=ATAPI_READ_MAX_BLOCK;
1786 } else {
1787 cnt=blkcnt;
1788 }
1789 ccb[0]=ATAPI_CMD_READ_12;
1790 ccb[1]=0; /* reserved */
1791 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
1792 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
1793 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
1794 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
1795 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
1796 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
1797 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
1798 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
1799 ccb[10]=0; /* reserved */
1800 ccb[11]=0; /* reserved */
1801
1802 if (atapi_issue_autoreq(device,ccb,12,
1803 (unsigned char *)buffer,
1804 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
1805 return (n);
1806 }
1807 n+=cnt;
1808 blkcnt-=cnt;
1809 blknr+=cnt;
1810 buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
1811 } while (blkcnt > 0);
1812 return (n);
1813}
1814
1815/* ------------------------------------------------------------------------- */
1816
1817#endif /* CONFIG_ATAPI */
1818
wdenk0d498392003-07-01 21:06:45 +00001819U_BOOT_CMD(
1820 ide, 5, 1, do_ide,
wdenk8bde7f72003-06-27 21:31:46 +00001821 "ide - IDE sub-system\n",
1822 "reset - reset IDE controller\n"
1823 "ide info - show available IDE devices\n"
1824 "ide device [dev] - show or set current device\n"
1825 "ide part [dev] - print partition table of one or all IDE devices\n"
1826 "ide read addr blk# cnt\n"
1827 "ide write addr blk# cnt - read/write `cnt'"
1828 " blocks starting at block `blk#'\n"
1829 " to/from memory address `addr'\n"
1830);
1831
wdenk0d498392003-07-01 21:06:45 +00001832U_BOOT_CMD(
1833 diskboot, 3, 1, do_diskboot,
wdenk8bde7f72003-06-27 21:31:46 +00001834 "diskboot- boot from IDE device\n",
1835 "loadAddr dev:part\n"
1836);
1837
wdenkc6097192002-11-03 00:24:07 +00001838#endif /* CONFIG_COMMANDS & CFG_CMD_IDE */