blob: e96a5f59a7ee1ddb120c694b462e8a2a62f86aff [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
wdenk132ba5f2004-02-27 08:20:54 +000040#ifdef CONFIG_MPC5xxx
41#include <mpc5xxx.h>
42#endif
wdenkc6097192002-11-03 00:24:07 +000043#include <ide.h>
44#include <ata.h>
wdenkc6097192002-11-03 00:24:07 +000045#ifdef CONFIG_STATUS_LED
46# include <status_led.h>
47#endif
wdenk15647dc2003-10-09 19:00:25 +000048#ifndef __PPC__
wdenk2262cfe2002-11-18 00:14:45 +000049#include <asm/io.h>
wdenk15647dc2003-10-09 19:00:25 +000050#ifdef __MIPS__
51/* Macros depend on this variable */
52static unsigned long mips_io_port_base = 0;
53#endif
wdenk2262cfe2002-11-18 00:14:45 +000054#endif
wdenkc6097192002-11-03 00:24:07 +000055
56#ifdef CONFIG_SHOW_BOOT_PROGRESS
57# include <status_led.h>
58# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
59#else
60# define SHOW_BOOT_PROGRESS(arg)
61#endif
62
63
64#undef IDE_DEBUG
65
wdenkc7de8292002-11-19 11:04:11 +000066
wdenkc6097192002-11-03 00:24:07 +000067#ifdef IDE_DEBUG
68#define PRINTF(fmt,args...) printf (fmt ,##args)
69#else
70#define PRINTF(fmt,args...)
71#endif
72
73#if (CONFIG_COMMANDS & CFG_CMD_IDE)
74
wdenk15647dc2003-10-09 19:00:25 +000075#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +000076/* Timings for IDE Interface
77 *
78 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
79 * 70 165 30 PIO-Mode 0, [ns]
80 * 4 9 2 [Cycles]
81 * 50 125 20 PIO-Mode 1, [ns]
82 * 3 7 2 [Cycles]
83 * 30 100 15 PIO-Mode 2, [ns]
84 * 2 6 1 [Cycles]
85 * 30 80 10 PIO-Mode 3, [ns]
86 * 2 5 1 [Cycles]
87 * 25 70 10 PIO-Mode 4, [ns]
88 * 2 4 1 [Cycles]
89 */
90
91const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
92{
93 /* Setup Length Hold */
94 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
95 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
96 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
97 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
98 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
99};
100
101static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
102
103#ifndef CFG_PIO_MODE
104#define CFG_PIO_MODE 0 /* use a relaxed default */
105#endif
106static int pio_mode = CFG_PIO_MODE;
107
108/* Make clock cycles and always round up */
109
110#define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
111
wdenk15647dc2003-10-09 19:00:25 +0000112#endif /* CONFIG_IDE_8xx_DIRECT */
113
wdenkc6097192002-11-03 00:24:07 +0000114/* ------------------------------------------------------------------------- */
115
116/* Current I/O Device */
117static int curr_device = -1;
118
119/* Current offset for IDE0 / IDE1 bus access */
120ulong ide_bus_offset[CFG_IDE_MAXBUS] = {
121#if defined(CFG_ATA_IDE0_OFFSET)
122 CFG_ATA_IDE0_OFFSET,
123#endif
124#if defined(CFG_ATA_IDE1_OFFSET) && (CFG_IDE_MAXBUS > 1)
125 CFG_ATA_IDE1_OFFSET,
126#endif
127};
128
wdenk15647dc2003-10-09 19:00:25 +0000129
wdenkc6097192002-11-03 00:24:07 +0000130#define ATA_CURR_BASE(dev) (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
131
wdenkc7de8292002-11-19 11:04:11 +0000132#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000133static int ide_bus_ok[CFG_IDE_MAXBUS];
wdenkc7de8292002-11-19 11:04:11 +0000134#else
135static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
136#endif
wdenkc6097192002-11-03 00:24:07 +0000137
138static block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
139/* ------------------------------------------------------------------------- */
140
141#ifdef CONFIG_IDE_LED
wdenkc40b2952004-03-13 23:29:43 +0000142#if !defined(CONFIG_KUP4K) && !defined(CONFIG_HMI10)
wdenkc6097192002-11-03 00:24:07 +0000143static void ide_led (uchar led, uchar status);
144#else
wdenk1f53a412002-12-04 23:39:58 +0000145extern void ide_led (uchar led, uchar status);
146#endif
147#else
wdenkc7de8292002-11-19 11:04:11 +0000148#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000149#define ide_led(a,b) /* dummy */
wdenkc7de8292002-11-19 11:04:11 +0000150#else
151extern void ide_led(uchar led, uchar status);
152#define LED_IDE1 1
153#define LED_IDE2 2
154#define CONFIG_IDE_LED 1
155#define DEVICE_LED(x) 1
156#endif
wdenkc6097192002-11-03 00:24:07 +0000157#endif
158
159#ifdef CONFIG_IDE_RESET
160static void ide_reset (void);
161#else
162#define ide_reset() /* dummy */
163#endif
164
165static void ide_ident (block_dev_desc_t *dev_desc);
166static uchar ide_wait (int dev, ulong t);
167
168#define IDE_TIME_OUT 2000 /* 2 sec timeout */
169
170#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
171
172#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
173
wdenk2262cfe2002-11-18 00:14:45 +0000174static void __inline__ ide_outb(int dev, int port, unsigned char val);
175static unsigned char __inline__ ide_inb(int dev, int port);
wdenkc6097192002-11-03 00:24:07 +0000176static void input_data(int dev, ulong *sect_buf, int words);
177static void output_data(int dev, ulong *sect_buf, int words);
178static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
179
180
181#ifdef CONFIG_ATAPI
182static void atapi_inquiry(block_dev_desc_t *dev_desc);
wdenkc40b2952004-03-13 23:29:43 +0000183ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer);
wdenkc6097192002-11-03 00:24:07 +0000184#endif
185
186
187#ifdef CONFIG_IDE_8xx_DIRECT
188static void set_pcmcia_timing (int pmode);
wdenkc6097192002-11-03 00:24:07 +0000189#endif
190
191/* ------------------------------------------------------------------------- */
192
193int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
194{
195 int rcode = 0;
196
197 switch (argc) {
198 case 0:
199 case 1:
200 printf ("Usage:\n%s\n", cmdtp->usage);
201 return 1;
202 case 2:
203 if (strncmp(argv[1],"res",3) == 0) {
204 puts ("\nReset IDE"
205#ifdef CONFIG_IDE_8xx_DIRECT
206 " on PCMCIA " PCMCIA_SLOT_MSG
207#endif
208 ": ");
209
210 ide_init ();
211 return 0;
212 } else if (strncmp(argv[1],"inf",3) == 0) {
213 int i;
214
215 putc ('\n');
216
217 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
218 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
219 continue; /* list only known devices */
220 printf ("IDE device %d: ", i);
221 dev_print(&ide_dev_desc[i]);
222 }
223 return 0;
224
225 } else if (strncmp(argv[1],"dev",3) == 0) {
226 if ((curr_device < 0) || (curr_device >= CFG_IDE_MAXDEVICE)) {
227 puts ("\nno IDE devices available\n");
228 return 1;
229 }
230 printf ("\nIDE device %d: ", curr_device);
231 dev_print(&ide_dev_desc[curr_device]);
232 return 0;
233 } else if (strncmp(argv[1],"part",4) == 0) {
234 int dev, ok;
235
236 for (ok=0, dev=0; dev<CFG_IDE_MAXDEVICE; ++dev) {
237 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
238 ++ok;
239 if (dev)
240 putc ('\n');
241 print_part(&ide_dev_desc[dev]);
242 }
243 }
244 if (!ok) {
245 puts ("\nno IDE devices available\n");
246 rcode ++;
247 }
248 return rcode;
249 }
250 printf ("Usage:\n%s\n", cmdtp->usage);
251 return 1;
252 case 3:
253 if (strncmp(argv[1],"dev",3) == 0) {
254 int dev = (int)simple_strtoul(argv[2], NULL, 10);
255
256 printf ("\nIDE device %d: ", dev);
257 if (dev >= CFG_IDE_MAXDEVICE) {
258 puts ("unknown device\n");
259 return 1;
260 }
261 dev_print(&ide_dev_desc[dev]);
262 /*ide_print (dev);*/
263
264 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
265 return 1;
266 }
267
268 curr_device = dev;
269
270 puts ("... is now current device\n");
271
272 return 0;
273 } else if (strncmp(argv[1],"part",4) == 0) {
274 int dev = (int)simple_strtoul(argv[2], NULL, 10);
275
276 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
277 print_part(&ide_dev_desc[dev]);
278 } else {
279 printf ("\nIDE device %d not available\n", dev);
280 rcode = 1;
281 }
282 return rcode;
283#if 0
284 } else if (strncmp(argv[1],"pio",4) == 0) {
285 int mode = (int)simple_strtoul(argv[2], NULL, 10);
286
287 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
288 puts ("\nSetting ");
289 pio_mode = mode;
290 ide_init ();
291 } else {
292 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
293 mode, IDE_MAX_PIO_MODE);
294 }
295 return;
296#endif
297 }
298
299 printf ("Usage:\n%s\n", cmdtp->usage);
300 return 1;
301 default:
302 /* at least 4 args */
303
304 if (strcmp(argv[1],"read") == 0) {
305 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc40b2952004-03-13 23:29:43 +0000306#if CFG_64BIT_STRTOUL
307 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
308#else
309 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
310#endif
wdenkc6097192002-11-03 00:24:07 +0000311 ulong cnt = simple_strtoul(argv[4], NULL, 16);
312 ulong n;
313
wdenkc40b2952004-03-13 23:29:43 +0000314 printf ("\nIDE read: device %d block # %qd, count %ld ... ",
wdenkc6097192002-11-03 00:24:07 +0000315 curr_device, blk, cnt);
316
317 n = ide_dev_desc[curr_device].block_read (curr_device,
318 blk, cnt,
319 (ulong *)addr);
320 /* flush cache after read */
321 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
322
323 printf ("%ld blocks read: %s\n",
324 n, (n==cnt) ? "OK" : "ERROR");
325 if (n==cnt) {
326 return 0;
327 } else {
328 return 1;
329 }
330 } else if (strcmp(argv[1],"write") == 0) {
331 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc40b2952004-03-13 23:29:43 +0000332#if CFG_64BIT_STRTOUL
333 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
334#else
335 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
336#endif
wdenkc6097192002-11-03 00:24:07 +0000337 ulong cnt = simple_strtoul(argv[4], NULL, 16);
338 ulong n;
339
wdenkc40b2952004-03-13 23:29:43 +0000340 printf ("\nIDE write: device %d block # %qd, count %ld ... ",
wdenkc6097192002-11-03 00:24:07 +0000341 curr_device, blk, cnt);
342
343 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
344
345 printf ("%ld blocks written: %s\n",
346 n, (n==cnt) ? "OK" : "ERROR");
347 if (n==cnt) {
348 return 0;
349 } else {
350 return 1;
351 }
352 } else {
353 printf ("Usage:\n%s\n", cmdtp->usage);
354 rcode = 1;
355 }
356
357 return rcode;
358 }
359}
360
361int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
362{
363 char *boot_device = NULL;
364 char *ep;
365 int dev, part = 0;
366 ulong cnt;
367 ulong addr;
368 disk_partition_t info;
369 image_header_t *hdr;
370 int rcode = 0;
371
372 switch (argc) {
373 case 1:
374 addr = CFG_LOAD_ADDR;
375 boot_device = getenv ("bootdevice");
376 break;
377 case 2:
378 addr = simple_strtoul(argv[1], NULL, 16);
379 boot_device = getenv ("bootdevice");
380 break;
381 case 3:
382 addr = simple_strtoul(argv[1], NULL, 16);
383 boot_device = argv[2];
384 break;
385 default:
386 printf ("Usage:\n%s\n", cmdtp->usage);
387 SHOW_BOOT_PROGRESS (-1);
388 return 1;
389 }
390
391 if (!boot_device) {
392 puts ("\n** No boot device **\n");
393 SHOW_BOOT_PROGRESS (-1);
394 return 1;
395 }
396
397 dev = simple_strtoul(boot_device, &ep, 16);
398
399 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
400 printf ("\n** Device %d not available\n", dev);
401 SHOW_BOOT_PROGRESS (-1);
402 return 1;
403 }
404
405 if (*ep) {
406 if (*ep != ':') {
407 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
408 SHOW_BOOT_PROGRESS (-1);
409 return 1;
410 }
411 part = simple_strtoul(++ep, NULL, 16);
412 }
413 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
414 SHOW_BOOT_PROGRESS (-1);
415 return 1;
416 }
wdenk4532cb62003-04-27 22:52:51 +0000417 if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
418 (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
wdenkc6097192002-11-03 00:24:07 +0000419 printf ("\n** Invalid partition type \"%.32s\""
420 " (expect \"" BOOT_PART_TYPE "\")\n",
421 info.type);
422 SHOW_BOOT_PROGRESS (-1);
423 return 1;
424 }
425
426 printf ("\nLoading from IDE device %d, partition %d: "
427 "Name: %.32s Type: %.32s\n",
428 dev, part, info.name, info.type);
429
430 PRINTF ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
431 info.start, info.size, info.blksz);
432
433 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
434 printf ("** Read error on %d:%d\n", dev, part);
435 SHOW_BOOT_PROGRESS (-1);
436 return 1;
437 }
438
439 hdr = (image_header_t *)addr;
440
441 if (ntohl(hdr->ih_magic) == IH_MAGIC) {
442
443 print_image_hdr (hdr);
444
445 cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t));
446 cnt += info.blksz - 1;
447 cnt /= info.blksz;
448 cnt -= 1;
449 } else {
450 printf("\n** Bad Magic Number **\n");
451 SHOW_BOOT_PROGRESS (-1);
452 return 1;
453 }
454
455 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
456 (ulong *)(addr+info.blksz)) != cnt) {
457 printf ("** Read error on %d:%d\n", dev, part);
458 SHOW_BOOT_PROGRESS (-1);
459 return 1;
460 }
461
462
463 /* Loading ok, update default load address */
464
465 load_addr = addr;
466
467 /* Check if we should attempt an auto-start */
468 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
469 char *local_args[2];
470 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
471
472 local_args[0] = argv[0];
473 local_args[1] = NULL;
474
475 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
476
477 do_bootm (cmdtp, 0, 1, local_args);
478 rcode = 1;
479 }
480 return rcode;
481}
482
483/* ------------------------------------------------------------------------- */
484
485void ide_init (void)
486{
wdenkc6097192002-11-03 00:24:07 +0000487
488#ifdef CONFIG_IDE_8xx_DIRECT
wdenk15647dc2003-10-09 19:00:25 +0000489 DECLARE_GLOBAL_DATA_PTR;
wdenkc6097192002-11-03 00:24:07 +0000490 volatile immap_t *immr = (immap_t *)CFG_IMMR;
491 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
492#endif
493 unsigned char c;
494 int i, bus;
wdenkc7de8292002-11-19 11:04:11 +0000495#ifdef CONFIG_AMIGAONEG3SE
496 unsigned int max_bus_scan;
497 unsigned int ata_reset_time;
498 char *s;
499#endif
wdenk9fd5e312003-12-07 23:55:12 +0000500#ifdef CONFIG_IDE_8xx_PCCARD
501 extern int pcmcia_on (void);
502 extern int ide_devices_found; /* Initialized in check_ide_device() */
503#endif /* CONFIG_IDE_8xx_PCCARD */
504
505#ifdef CONFIG_IDE_PREINIT
506 WATCHDOG_RESET();
507
508 if (ide_preinit ()) {
509 puts ("ide_preinit failed\n");
510 return;
511 }
512#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000513
514#ifdef CONFIG_IDE_8xx_PCCARD
515 extern int pcmcia_on (void);
wdenk6069ff22003-02-28 00:49:47 +0000516 extern int ide_devices_found; /* Initialized in check_ide_device() */
wdenkc6097192002-11-03 00:24:07 +0000517
518 WATCHDOG_RESET();
519
wdenk6069ff22003-02-28 00:49:47 +0000520 ide_devices_found = 0;
wdenkc6097192002-11-03 00:24:07 +0000521 /* initialize the PCMCIA IDE adapter card */
wdenk6069ff22003-02-28 00:49:47 +0000522 pcmcia_on();
523 if (!ide_devices_found)
wdenkc6097192002-11-03 00:24:07 +0000524 return;
525 udelay (1000000); /* 1 s */
526#endif /* CONFIG_IDE_8xx_PCCARD */
527
528 WATCHDOG_RESET();
529
wdenk15647dc2003-10-09 19:00:25 +0000530#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +0000531 /* Initialize PIO timing tables */
532 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
533 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
534 gd->bus_clk);
535 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
536 gd->bus_clk);
537 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
538 gd->bus_clk);
539 PRINTF ("PIO Mode %d: setup=%2d ns/%d clk"
540 " len=%3d ns/%d clk"
541 " hold=%2d ns/%d clk\n",
542 i,
543 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
544 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
545 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
546 }
wdenk15647dc2003-10-09 19:00:25 +0000547#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000548
549 /* Reset the IDE just to be sure.
550 * Light LED's to show
551 */
552 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
553 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
554
555#ifdef CONFIG_IDE_8xx_DIRECT
556 /* PCMCIA / IDE initialization for common mem space */
557 pcmp->pcmc_pgcrb = 0;
wdenkc6097192002-11-03 00:24:07 +0000558
559 /* start in PIO mode 0 - most relaxed timings */
560 pio_mode = 0;
561 set_pcmcia_timing (pio_mode);
wdenk15647dc2003-10-09 19:00:25 +0000562#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000563
564 /*
565 * Wait for IDE to get ready.
566 * According to spec, this can take up to 31 seconds!
567 */
wdenkc7de8292002-11-19 11:04:11 +0000568#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000569 for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
570 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
wdenkc7de8292002-11-19 11:04:11 +0000571#else
572 s = getenv("ide_maxbus");
573 if (s)
574 max_bus_scan = simple_strtol(s, NULL, 10);
575 else
576 max_bus_scan = CFG_IDE_MAXBUS;
577
578 for (bus=0; bus<max_bus_scan; ++bus) {
579 int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
580#endif
wdenkc6097192002-11-03 00:24:07 +0000581
wdenk6069ff22003-02-28 00:49:47 +0000582#ifdef CONFIG_IDE_8xx_PCCARD
583 /* Skip non-ide devices from probing */
584 if ((ide_devices_found & (1 << bus)) == 0) {
585 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
586 continue;
587 }
588#endif
wdenkc6097192002-11-03 00:24:07 +0000589 printf ("Bus %d: ", bus);
590
591 ide_bus_ok[bus] = 0;
592
593 /* Select device
594 */
595 udelay (100000); /* 100 ms */
wdenk2262cfe2002-11-18 00:14:45 +0000596 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
wdenkc6097192002-11-03 00:24:07 +0000597 udelay (100000); /* 100 ms */
wdenkc7de8292002-11-19 11:04:11 +0000598#ifdef CONFIG_AMIGAONEG3SE
599 ata_reset_time = ATA_RESET_TIME;
600 s = getenv("ide_reset_timeout");
601 if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10);
602#endif
wdenkc6097192002-11-03 00:24:07 +0000603 i = 0;
604 do {
605 udelay (10000); /* 10 ms */
606
wdenk2262cfe2002-11-18 00:14:45 +0000607 c = ide_inb (dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000608 i++;
wdenkc7de8292002-11-19 11:04:11 +0000609#ifdef CONFIG_AMIGAONEG3SE
610 if (i > (ata_reset_time * 100)) {
611#else
wdenkc6097192002-11-03 00:24:07 +0000612 if (i > (ATA_RESET_TIME * 100)) {
wdenkc7de8292002-11-19 11:04:11 +0000613#endif
wdenkc6097192002-11-03 00:24:07 +0000614 puts ("** Timeout **\n");
615 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc7de8292002-11-19 11:04:11 +0000616#ifdef CONFIG_AMIGAONEG3SE
617 /* If this is the second bus, the first one was OK */
wdenkc40b2952004-03-13 23:29:43 +0000618 if (bus != 0) {
wdenkc7de8292002-11-19 11:04:11 +0000619 ide_bus_ok[bus] = 0;
620 goto skip_bus;
621 }
622#endif
wdenkc6097192002-11-03 00:24:07 +0000623 return;
624 }
625 if ((i >= 100) && ((i%100)==0)) {
626 putc ('.');
627 }
628 } while (c & ATA_STAT_BUSY);
629
630 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
631 puts ("not available ");
632 PRINTF ("Status = 0x%02X ", c);
633#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
634 } else if ((c & ATA_STAT_READY) == 0) {
635 puts ("not available ");
636 PRINTF ("Status = 0x%02X ", c);
637#endif
638 } else {
639 puts ("OK ");
640 ide_bus_ok[bus] = 1;
641 }
642 WATCHDOG_RESET();
643 }
wdenkc7de8292002-11-19 11:04:11 +0000644
645#ifdef CONFIG_AMIGAONEG3SE
646 skip_bus:
647#endif
wdenkc6097192002-11-03 00:24:07 +0000648 putc ('\n');
649
650 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
651
652 curr_device = -1;
653 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
654#ifdef CONFIG_IDE_LED
655 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
656#endif
wdenk5cf9da42003-11-07 13:42:26 +0000657 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
wdenkc6097192002-11-03 00:24:07 +0000658 ide_dev_desc[i].if_type=IF_TYPE_IDE;
659 ide_dev_desc[i].dev=i;
660 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
661 ide_dev_desc[i].blksz=0;
662 ide_dev_desc[i].lba=0;
663 ide_dev_desc[i].block_read=ide_read;
664 if (!ide_bus_ok[IDE_BUS(i)])
665 continue;
666 ide_led (led, 1); /* LED on */
667 ide_ident(&ide_dev_desc[i]);
668 ide_led (led, 0); /* LED off */
669 dev_print(&ide_dev_desc[i]);
670/* ide_print (i); */
671 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
672 init_part (&ide_dev_desc[i]); /* initialize partition type */
673 if (curr_device < 0)
674 curr_device = i;
675 }
676 }
677 WATCHDOG_RESET();
678}
679
680/* ------------------------------------------------------------------------- */
681
682block_dev_desc_t * ide_get_dev(int dev)
683{
684 return ((block_dev_desc_t *)&ide_dev_desc[dev]);
685}
686
687
688#ifdef CONFIG_IDE_8xx_DIRECT
689
690static void
691set_pcmcia_timing (int pmode)
692{
693 volatile immap_t *immr = (immap_t *)CFG_IMMR;
694 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
695 ulong timings;
696
697 PRINTF ("Set timing for PIO Mode %d\n", pmode);
698
699 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
700 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
701 | PCMCIA_SL (pio_config_clk[pmode].t_length)
702 ;
703
704 /* IDE 0
705 */
706 pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0;
707 pcmp->pcmc_por0 = CFG_PCMCIA_POR0
708#if (CFG_PCMCIA_POR0 != 0)
709 | timings
710#endif
711 ;
712 PRINTF ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
713
714 pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1;
715 pcmp->pcmc_por1 = CFG_PCMCIA_POR1
716#if (CFG_PCMCIA_POR1 != 0)
717 | timings
718#endif
719 ;
720 PRINTF ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
721
722 pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2;
723 pcmp->pcmc_por2 = CFG_PCMCIA_POR2
724#if (CFG_PCMCIA_POR2 != 0)
725 | timings
726#endif
727 ;
728 PRINTF ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
729
730 pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3;
731 pcmp->pcmc_por3 = CFG_PCMCIA_POR3
732#if (CFG_PCMCIA_POR3 != 0)
733 | timings
734#endif
735 ;
736 PRINTF ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
737
738 /* IDE 1
739 */
740 pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4;
741 pcmp->pcmc_por4 = CFG_PCMCIA_POR4
742#if (CFG_PCMCIA_POR4 != 0)
743 | timings
744#endif
745 ;
746 PRINTF ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
747
748 pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5;
749 pcmp->pcmc_por5 = CFG_PCMCIA_POR5
750#if (CFG_PCMCIA_POR5 != 0)
751 | timings
752#endif
753 ;
754 PRINTF ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
755
756 pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6;
757 pcmp->pcmc_por6 = CFG_PCMCIA_POR6
758#if (CFG_PCMCIA_POR6 != 0)
759 | timings
760#endif
761 ;
762 PRINTF ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
763
764 pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7;
765 pcmp->pcmc_por7 = CFG_PCMCIA_POR7
766#if (CFG_PCMCIA_POR7 != 0)
767 | timings
768#endif
769 ;
770 PRINTF ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
771
772}
773
774#endif /* CONFIG_IDE_8xx_DIRECT */
775
776/* ------------------------------------------------------------------------- */
777
wdenk2262cfe2002-11-18 00:14:45 +0000778#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000779static void __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000780ide_outb(int dev, int port, unsigned char val)
wdenkc6097192002-11-03 00:24:07 +0000781{
wdenk9fd5e312003-12-07 23:55:12 +0000782 PRINTF ("ide_outb (dev= %d, port= %d, val= 0x%02x) : @ 0x%08lx\n",
783 dev, port, val, (ATA_CURR_BASE(dev)+port));
wdenkd4ca31c2004-01-02 14:00:00 +0000784
wdenkc6097192002-11-03 00:24:07 +0000785 /* Ensure I/O operations complete */
786 __asm__ volatile("eieio");
787 *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
wdenkc6097192002-11-03 00:24:07 +0000788}
wdenk2262cfe2002-11-18 00:14:45 +0000789#else /* ! __PPC__ */
790static void __inline__
791ide_outb(int dev, int port, unsigned char val)
792{
wdenk15647dc2003-10-09 19:00:25 +0000793 outb(val, ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000794}
795#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000796
wdenk2262cfe2002-11-18 00:14:45 +0000797
798#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000799static unsigned char __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000800ide_inb(int dev, int port)
wdenkc6097192002-11-03 00:24:07 +0000801{
802 uchar val;
803 /* Ensure I/O operations complete */
804 __asm__ volatile("eieio");
805 val = *((uchar *)(ATA_CURR_BASE(dev)+port));
wdenk9fd5e312003-12-07 23:55:12 +0000806 PRINTF ("ide_inb (dev= %d, port= %d) : @ 0x%08lx -> 0x%02x\n",
807 dev, port, (ATA_CURR_BASE(dev)+port), val);
wdenkc6097192002-11-03 00:24:07 +0000808 return (val);
809}
wdenk2262cfe2002-11-18 00:14:45 +0000810#else /* ! __PPC__ */
811static unsigned char __inline__
812ide_inb(int dev, int port)
813{
wdenk15647dc2003-10-09 19:00:25 +0000814 return inb(ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000815}
816#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000817
wdenk2262cfe2002-11-18 00:14:45 +0000818#ifdef __PPC__
wdenkcceb8712003-06-23 18:12:28 +0000819# ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000820static void
821output_data_short(int dev, ulong *sect_buf, int words)
822{
823 ushort *dbuf;
824 volatile ushort *pbuf;
wdenk8bde7f72003-06-27 21:31:46 +0000825
wdenkc7de8292002-11-19 11:04:11 +0000826 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
827 dbuf = (ushort *)sect_buf;
828 while (words--) {
829 __asm__ volatile ("eieio");
830 *pbuf = *dbuf++;
831 __asm__ volatile ("eieio");
832 }
833
834 if (words&1)
835 *pbuf = 0;
836}
wdenkcceb8712003-06-23 18:12:28 +0000837# endif /* CONFIG_AMIGAONEG3SE */
wdenk5da627a2003-10-09 20:09:04 +0000838#endif /* __PPC_ */
wdenkc7de8292002-11-19 11:04:11 +0000839
wdenk5da627a2003-10-09 20:09:04 +0000840/* We only need to swap data if we are running on a big endian cpu. */
841/* But Au1x00 cpu:s already swaps data in big endian mode! */
842#if defined(__LITTLE_ENDIAN) || defined(CONFIG_AU1X00)
843#define input_swap_data(x,y,z) input_data(x,y,z)
844#else
wdenkc6097192002-11-03 00:24:07 +0000845static void
846input_swap_data(int dev, ulong *sect_buf, int words)
847{
wdenkc40b2952004-03-13 23:29:43 +0000848#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +0000849 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
850 ushort *dbuf = (ushort *)sect_buf;
851
852 while (words--) {
853 *dbuf++ = ld_le16(pbuf);
854 *dbuf++ = ld_le16(pbuf);
855 }
wdenkc40b2952004-03-13 23:29:43 +0000856#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +0000857 uchar i;
858 volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
859 volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
860 ushort *dbuf = (ushort *)sect_buf;
861
862 while (words--) {
863 for (i=0; i<2; i++) {
864 *(((uchar *)(dbuf)) + 1) = *pbuf_even;
865 *(uchar *)dbuf = *pbuf_odd;
866 dbuf+=1;
867 }
868 }
wdenkc40b2952004-03-13 23:29:43 +0000869#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +0000870}
wdenk5da627a2003-10-09 20:09:04 +0000871#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000872
wdenk2262cfe2002-11-18 00:14:45 +0000873
wdenk2262cfe2002-11-18 00:14:45 +0000874#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000875static void
876output_data(int dev, ulong *sect_buf, int words)
877{
wdenkc40b2952004-03-13 23:29:43 +0000878#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +0000879 ushort *dbuf;
880 volatile ushort *pbuf;
881
882 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
883 dbuf = (ushort *)sect_buf;
884 while (words--) {
885 __asm__ volatile ("eieio");
886 *pbuf = *dbuf++;
887 __asm__ volatile ("eieio");
888 *pbuf = *dbuf++;
889 }
wdenkc40b2952004-03-13 23:29:43 +0000890#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +0000891 uchar *dbuf;
892 volatile uchar *pbuf_even;
893 volatile uchar *pbuf_odd;
894
895 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
896 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
897 dbuf = (uchar *)sect_buf;
898 while (words--) {
899 __asm__ volatile ("eieio");
900 *pbuf_even = *dbuf++;
901 __asm__ volatile ("eieio");
902 *pbuf_odd = *dbuf++;
903 __asm__ volatile ("eieio");
904 *pbuf_even = *dbuf++;
905 __asm__ volatile ("eieio");
906 *pbuf_odd = *dbuf++;
907 }
wdenkc40b2952004-03-13 23:29:43 +0000908#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +0000909}
wdenk2262cfe2002-11-18 00:14:45 +0000910#else /* ! __PPC__ */
911static void
912output_data(int dev, ulong *sect_buf, int words)
913{
wdenk15647dc2003-10-09 19:00:25 +0000914 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
wdenk2262cfe2002-11-18 00:14:45 +0000915}
916#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000917
wdenk2262cfe2002-11-18 00:14:45 +0000918#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000919static void
920input_data(int dev, ulong *sect_buf, int words)
921{
wdenkc40b2952004-03-13 23:29:43 +0000922#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +0000923 ushort *dbuf;
924 volatile ushort *pbuf;
925
926 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
927 dbuf = (ushort *)sect_buf;
928 while (words--) {
929 __asm__ volatile ("eieio");
930 *dbuf++ = *pbuf;
931 __asm__ volatile ("eieio");
932 *dbuf++ = *pbuf;
933 }
wdenkc40b2952004-03-13 23:29:43 +0000934#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +0000935 uchar *dbuf;
936 volatile uchar *pbuf_even;
937 volatile uchar *pbuf_odd;
938
939 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
940 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
941 dbuf = (uchar *)sect_buf;
942 while (words--) {
943 __asm__ volatile ("eieio");
944 *dbuf++ = *pbuf_even;
945 __asm__ volatile ("eieio");
946 *dbuf++ = *pbuf_odd;
947 __asm__ volatile ("eieio");
948 *dbuf++ = *pbuf_even;
949 __asm__ volatile ("eieio");
950 *dbuf++ = *pbuf_odd;
951 }
wdenkc40b2952004-03-13 23:29:43 +0000952#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +0000953}
wdenk2262cfe2002-11-18 00:14:45 +0000954#else /* ! __PPC__ */
955static void
956input_data(int dev, ulong *sect_buf, int words)
957{
wdenk15647dc2003-10-09 19:00:25 +0000958 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
wdenk2262cfe2002-11-18 00:14:45 +0000959}
960
961#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000962
wdenkc7de8292002-11-19 11:04:11 +0000963#ifdef CONFIG_AMIGAONEG3SE
964static void
965input_data_short(int dev, ulong *sect_buf, int words)
966{
967 ushort *dbuf;
968 volatile ushort *pbuf;
969
970 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
971 dbuf = (ushort *)sect_buf;
972 while (words--) {
973 __asm__ volatile ("eieio");
974 *dbuf++ = *pbuf;
975 __asm__ volatile ("eieio");
976 }
977
wdenkc40b2952004-03-13 23:29:43 +0000978 if (words&1) {
wdenkc7de8292002-11-19 11:04:11 +0000979 ushort dummy;
980 dummy = *pbuf;
981 }
982}
983#endif
984
wdenkc6097192002-11-03 00:24:07 +0000985/* -------------------------------------------------------------------------
986 */
987static void ide_ident (block_dev_desc_t *dev_desc)
988{
989 ulong iobuf[ATA_SECTORWORDS];
990 unsigned char c;
991 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
992
wdenkc7de8292002-11-19 11:04:11 +0000993#ifdef CONFIG_AMIGAONEG3SE
994 int max_bus_scan;
995 int retries = 0;
996 char *s;
997 int do_retry = 0;
998#endif
999
wdenkc6097192002-11-03 00:24:07 +00001000#if 0
1001 int mode, cycle_time;
1002#endif
1003 int device;
1004 device=dev_desc->dev;
1005 printf (" Device %d: ", device);
1006
wdenkc7de8292002-11-19 11:04:11 +00001007#ifdef CONFIG_AMIGAONEG3SE
1008 s = getenv("ide_maxbus");
1009 if (s) {
1010 max_bus_scan = simple_strtol(s, NULL, 10);
1011 } else {
1012 max_bus_scan = CFG_IDE_MAXBUS;
1013 }
1014 if (device >= max_bus_scan*2) {
1015 dev_desc->type=DEV_TYPE_UNKNOWN;
1016 return;
1017 }
1018#endif
1019
wdenkc6097192002-11-03 00:24:07 +00001020 ide_led (DEVICE_LED(device), 1); /* LED on */
1021 /* Select device
1022 */
wdenk2262cfe2002-11-18 00:14:45 +00001023 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001024 dev_desc->if_type=IF_TYPE_IDE;
1025#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +00001026
1027#ifdef CONFIG_AMIGAONEG3SE
1028 do_retry = 0;
1029 retries = 0;
1030
1031 /* Warning: This will be tricky to read */
wdenkc40b2952004-03-13 23:29:43 +00001032 while (retries <= 1) {
wdenkc7de8292002-11-19 11:04:11 +00001033#endif /* CONFIG_AMIGAONEG3SE */
1034
wdenkc6097192002-11-03 00:24:07 +00001035 /* check signature */
wdenk2262cfe2002-11-18 00:14:45 +00001036 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1037 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1038 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
1039 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
wdenkc6097192002-11-03 00:24:07 +00001040 /* ATAPI Signature found */
1041 dev_desc->if_type=IF_TYPE_ATAPI;
1042 /* Start Ident Command
1043 */
wdenk2262cfe2002-11-18 00:14:45 +00001044 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001045 /*
1046 * Wait for completion - ATAPI devices need more time
1047 * to become ready
1048 */
1049 c = ide_wait (device, ATAPI_TIME_OUT);
wdenkc40b2952004-03-13 23:29:43 +00001050 } else
wdenkc6097192002-11-03 00:24:07 +00001051#endif
1052 {
1053 /* Start Ident Command
1054 */
wdenk2262cfe2002-11-18 00:14:45 +00001055 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001056
1057 /* Wait for completion
1058 */
1059 c = ide_wait (device, IDE_TIME_OUT);
1060 }
1061 ide_led (DEVICE_LED(device), 0); /* LED off */
1062
1063 if (((c & ATA_STAT_DRQ) == 0) ||
1064 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
wdenkc7de8292002-11-19 11:04:11 +00001065#ifdef CONFIG_AMIGAONEG3SE
1066 if (retries == 0) {
1067 do_retry = 1;
1068 } else {
wdenkc7de8292002-11-19 11:04:11 +00001069 return;
1070 }
1071#else
wdenkc6097192002-11-03 00:24:07 +00001072 return;
wdenkc7de8292002-11-19 11:04:11 +00001073#endif /* CONFIG_AMIGAONEG3SE */
wdenkc6097192002-11-03 00:24:07 +00001074 }
1075
wdenkc7de8292002-11-19 11:04:11 +00001076#ifdef CONFIG_AMIGAONEG3SE
1077 s = getenv("ide_doreset");
1078 if (s && strcmp(s, "on") == 0 && 1 == do_retry) {
1079 /* Need to soft reset the device in case it's an ATAPI... */
1080 PRINTF("Retrying...\n");
1081 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1082 udelay(100000);
1083 ide_outb (device, ATA_COMMAND, 0x08);
1084 udelay (100000); /* 100 ms */
1085 retries++;
1086 } else {
1087 retries = 100;
1088 }
1089 } /* see above - ugly to read */
1090#endif /* CONFIG_AMIGAONEG3SE */
1091
wdenkc6097192002-11-03 00:24:07 +00001092 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1093
1094 ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1095 ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1096 ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +00001097#ifdef __LITTLE_ENDIAN
1098 /*
1099 * firmware revision and model number have Big Endian Byte
1100 * order in Word. Convert both to little endian.
1101 *
1102 * See CF+ and CompactFlash Specification Revision 2.0:
1103 * 6.2.1.6: Identfy Drive, Table 39 for more details
1104 */
1105
1106 strswab (dev_desc->revision);
1107 strswab (dev_desc->vendor);
1108#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +00001109
1110 if ((iop->config & 0x0080)==0x0080)
1111 dev_desc->removable = 1;
1112 else
1113 dev_desc->removable = 0;
1114
1115#if 0
1116 /*
1117 * Drive PIO mode autoselection
1118 */
1119 mode = iop->tPIO;
1120
1121 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1122 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1123 mode = 2;
1124 PRINTF ("Override tPIO -> 2\n");
1125 }
1126 if (iop->field_valid & 2) { /* drive implements ATA2? */
1127 PRINTF ("Drive implements ATA2\n");
1128 if (iop->capability & 8) { /* drive supports use_iordy? */
1129 cycle_time = iop->eide_pio_iordy;
1130 } else {
1131 cycle_time = iop->eide_pio;
1132 }
1133 PRINTF ("cycle time = %d\n", cycle_time);
1134 mode = 4;
1135 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1136 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1137 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1138 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1139 }
1140 printf ("PIO mode to use: PIO %d\n", mode);
1141#endif /* 0 */
1142
1143#ifdef CONFIG_ATAPI
1144 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1145 atapi_inquiry(dev_desc);
1146 return;
1147 }
1148#endif /* CONFIG_ATAPI */
1149
wdenkc3f9d492004-03-14 00:59:59 +00001150#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +00001151 /* swap shorts */
1152 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
wdenkc3f9d492004-03-14 00:59:59 +00001153#else /* ! __BIG_ENDIAN */
1154 /*
1155 * do not swap shorts on little endian
1156 *
1157 * See CF+ and CompactFlash Specification Revision 2.0:
1158 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1159 */
1160 dev_desc->lba = iop->lba_capacity;
1161#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +00001162
1163#if CONFIG_LBA48
1164 if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
1165 dev_desc->lba48support = 1;
1166 dev_desc->lba48 = (unsigned long long)iop->lba48_capacity[0] |
1167 ((unsigned long long)iop->lba48_capacity[1] << 16) |
1168 ((unsigned long long)iop->lba48_capacity[2] << 32) |
1169 ((unsigned long long)iop->lba48_capacity[3] << 48);
1170 } else {
1171 dev_desc->lba48support = 0;
1172 dev_desc->lba48 = 0;
1173 }
1174#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +00001175 /* assuming HD */
1176 dev_desc->type=DEV_TYPE_HARDDISK;
1177 dev_desc->blksz=ATA_BLOCKSIZE;
1178 dev_desc->lun=0; /* just to fill something in... */
1179
1180#if 0 /* only used to test the powersaving mode,
1181 * if enabled, the drive goes after 5 sec
1182 * in standby mode */
wdenk2262cfe2002-11-18 00:14:45 +00001183 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001184 c = ide_wait (device, IDE_TIME_OUT);
wdenk2262cfe2002-11-18 00:14:45 +00001185 ide_outb (device, ATA_SECT_CNT, 1);
1186 ide_outb (device, ATA_LBA_LOW, 0);
1187 ide_outb (device, ATA_LBA_MID, 0);
1188 ide_outb (device, ATA_LBA_HIGH, 0);
1189 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001190 ATA_DEVICE(device));
wdenk2262cfe2002-11-18 00:14:45 +00001191 ide_outb (device, ATA_COMMAND, 0xe3);
wdenkc6097192002-11-03 00:24:07 +00001192 udelay (50);
1193 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1194#endif
1195}
1196
1197
1198/* ------------------------------------------------------------------------- */
1199
wdenkc40b2952004-03-13 23:29:43 +00001200ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
wdenkc6097192002-11-03 00:24:07 +00001201{
1202 ulong n = 0;
1203 unsigned char c;
1204 unsigned char pwrsave=0; /* power save */
wdenkc40b2952004-03-13 23:29:43 +00001205#if CONFIG_LBA48
1206 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +00001207
wdenkc40b2952004-03-13 23:29:43 +00001208 if (blknr & 0x0000fffff0000000) {
1209 /* more than 28 bits used, use 48bit mode */
1210 lba48 = 1;
1211 }
1212#endif
1213 PRINTF ("ide_read dev %d start %qX, blocks %lX buffer at %lX\n",
wdenkc6097192002-11-03 00:24:07 +00001214 device, blknr, blkcnt, (ulong)buffer);
1215
1216 ide_led (DEVICE_LED(device), 1); /* LED on */
1217
1218 /* Select device
1219 */
wdenk2262cfe2002-11-18 00:14:45 +00001220 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001221 c = ide_wait (device, IDE_TIME_OUT);
1222
1223 if (c & ATA_STAT_BUSY) {
1224 printf ("IDE read: device %d not ready\n", device);
1225 goto IDE_READ_E;
1226 }
1227
1228 /* first check if the drive is in Powersaving mode, if yes,
1229 * increase the timeout value */
wdenk2262cfe2002-11-18 00:14:45 +00001230 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
wdenkc6097192002-11-03 00:24:07 +00001231 udelay (50);
1232
1233 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1234
1235 if (c & ATA_STAT_BUSY) {
1236 printf ("IDE read: device %d not ready\n", device);
1237 goto IDE_READ_E;
1238 }
1239 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1240 printf ("No Powersaving mode %X\n", c);
1241 } else {
wdenk2262cfe2002-11-18 00:14:45 +00001242 c = ide_inb(device,ATA_SECT_CNT);
wdenkc6097192002-11-03 00:24:07 +00001243 PRINTF("Powersaving %02X\n",c);
1244 if(c==0)
1245 pwrsave=1;
1246 }
1247
1248
1249 while (blkcnt-- > 0) {
1250
1251 c = ide_wait (device, IDE_TIME_OUT);
1252
1253 if (c & ATA_STAT_BUSY) {
1254 printf ("IDE read: device %d not ready\n", device);
1255 break;
1256 }
wdenkc40b2952004-03-13 23:29:43 +00001257#if CONFIG_LBA48
1258 if (lba48) {
1259 /* write high bits */
1260 ide_outb (device, ATA_SECT_CNT, 0);
1261 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1262 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1263 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1264 }
1265#endif
wdenk2262cfe2002-11-18 00:14:45 +00001266 ide_outb (device, ATA_SECT_CNT, 1);
1267 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1268 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1269 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001270
1271#if CONFIG_LBA48
1272 if (lba48) {
1273 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1274 ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1275
1276 } else
1277#endif
1278 {
1279 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1280 ATA_DEVICE(device) |
1281 ((blknr >> 24) & 0xF) );
1282 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1283 }
wdenkc6097192002-11-03 00:24:07 +00001284
1285 udelay (50);
1286
1287 if(pwrsave) {
1288 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1289 pwrsave=0;
1290 } else {
1291 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1292 }
1293
1294 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
wdenkc40b2952004-03-13 23:29:43 +00001295#if CFG_64BIT_LBA && CFG_64BIT_VSPRINTF
1296 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001297 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001298#else
1299 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1300 device, (ulong)blknr, c);
1301#endif
wdenkc6097192002-11-03 00:24:07 +00001302 break;
1303 }
1304
1305 input_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001306 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001307
1308 ++n;
1309 ++blknr;
1310 buffer += ATA_SECTORWORDS;
1311 }
1312IDE_READ_E:
1313 ide_led (DEVICE_LED(device), 0); /* LED off */
1314 return (n);
1315}
1316
1317/* ------------------------------------------------------------------------- */
1318
1319
wdenkc40b2952004-03-13 23:29:43 +00001320ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
wdenkc6097192002-11-03 00:24:07 +00001321{
1322 ulong n = 0;
1323 unsigned char c;
wdenkc40b2952004-03-13 23:29:43 +00001324#if CONFIG_LBA48
1325 unsigned char lba48 = 0;
1326
1327 if (blknr & 0x0000fffff0000000) {
1328 /* more than 28 bits used, use 48bit mode */
1329 lba48 = 1;
1330 }
1331#endif
wdenkc6097192002-11-03 00:24:07 +00001332
1333 ide_led (DEVICE_LED(device), 1); /* LED on */
1334
1335 /* Select device
1336 */
wdenk2262cfe2002-11-18 00:14:45 +00001337 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001338
1339 while (blkcnt-- > 0) {
1340
1341 c = ide_wait (device, IDE_TIME_OUT);
1342
1343 if (c & ATA_STAT_BUSY) {
1344 printf ("IDE read: device %d not ready\n", device);
1345 goto WR_OUT;
1346 }
wdenkc40b2952004-03-13 23:29:43 +00001347#if CONFIG_LBA48
1348 if (lba48) {
1349 /* write high bits */
1350 ide_outb (device, ATA_SECT_CNT, 0);
1351 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1352 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1353 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1354 }
1355#endif
wdenk2262cfe2002-11-18 00:14:45 +00001356 ide_outb (device, ATA_SECT_CNT, 1);
1357 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1358 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1359 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001360
1361#if CONFIG_LBA48
1362 if (lba48) {
1363 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1364 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
1365
1366 } else
1367#endif
1368 {
1369 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1370 ATA_DEVICE(device) |
1371 ((blknr >> 24) & 0xF) );
1372 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1373 }
wdenkc6097192002-11-03 00:24:07 +00001374
1375 udelay (50);
1376
1377 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1378
1379 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
wdenkc40b2952004-03-13 23:29:43 +00001380#if CFG_64BIT_LBA && CFG_64BIT_VSPRINTF
1381 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001382 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001383#else
1384 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1385 device, (ulong)blknr, c);
1386#endif
wdenkc6097192002-11-03 00:24:07 +00001387 goto WR_OUT;
1388 }
1389
1390 output_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001391 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001392 ++n;
1393 ++blknr;
1394 buffer += ATA_SECTORWORDS;
1395 }
1396WR_OUT:
1397 ide_led (DEVICE_LED(device), 0); /* LED off */
1398 return (n);
1399}
1400
1401/* ------------------------------------------------------------------------- */
1402
1403/*
1404 * copy src to dest, skipping leading and trailing blanks and null
1405 * terminate the string
1406 */
1407static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len)
1408{
1409 int start,end;
1410
1411 start=0;
1412 while (start<len) {
1413 if (src[start]!=' ')
1414 break;
1415 start++;
1416 }
1417 end=len-1;
1418 while (end>start) {
1419 if (src[end]!=' ')
1420 break;
1421 end--;
1422 }
1423 for ( ; start<=end; start++) {
1424 *dest++=src[start];
1425 }
1426 *dest='\0';
1427}
1428
1429/* ------------------------------------------------------------------------- */
1430
1431/*
1432 * Wait until Busy bit is off, or timeout (in ms)
1433 * Return last status
1434 */
1435static uchar ide_wait (int dev, ulong t)
1436{
1437 ulong delay = 10 * t; /* poll every 100 us */
1438 uchar c;
1439
wdenk2262cfe2002-11-18 00:14:45 +00001440 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
wdenkc6097192002-11-03 00:24:07 +00001441 udelay (100);
1442 if (delay-- == 0) {
1443 break;
1444 }
1445 }
1446 return (c);
1447}
1448
1449/* ------------------------------------------------------------------------- */
1450
1451#ifdef CONFIG_IDE_RESET
1452extern void ide_set_reset(int idereset);
1453
1454static void ide_reset (void)
1455{
1456#if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1457 volatile immap_t *immr = (immap_t *)CFG_IMMR;
1458#endif
1459 int i;
1460
1461 curr_device = -1;
1462 for (i=0; i<CFG_IDE_MAXBUS; ++i)
1463 ide_bus_ok[i] = 0;
1464 for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1465 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1466
1467 ide_set_reset (1); /* assert reset */
1468
1469 WATCHDOG_RESET();
1470
1471#ifdef CFG_PB_12V_ENABLE
1472 immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */
1473 immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1474 immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1475 immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE;
1476
1477 /* wait 500 ms for the voltage to stabilize
1478 */
1479 for (i=0; i<500; ++i) {
1480 udelay (1000);
1481 }
1482
1483 immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */
1484#endif /* CFG_PB_12V_ENABLE */
1485
1486#ifdef CFG_PB_IDE_MOTOR
1487 /* configure IDE Motor voltage monitor pin as input */
1488 immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1489 immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1490 immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1491
1492 /* wait up to 1 s for the motor voltage to stabilize
1493 */
1494 for (i=0; i<1000; ++i) {
1495 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1496 break;
1497 }
1498 udelay (1000);
1499 }
1500
1501 if (i == 1000) { /* Timeout */
1502 printf ("\nWarning: 5V for IDE Motor missing\n");
1503# ifdef CONFIG_STATUS_LED
1504# ifdef STATUS_LED_YELLOW
1505 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1506# endif
1507# ifdef STATUS_LED_GREEN
1508 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1509# endif
1510# endif /* CONFIG_STATUS_LED */
1511 }
1512#endif /* CFG_PB_IDE_MOTOR */
1513
1514 WATCHDOG_RESET();
1515
1516 /* de-assert RESET signal */
1517 ide_set_reset(0);
1518
1519 /* wait 250 ms */
1520 for (i=0; i<250; ++i) {
1521 udelay (1000);
1522 }
1523}
1524
1525#endif /* CONFIG_IDE_RESET */
1526
1527/* ------------------------------------------------------------------------- */
1528
wdenkc40b2952004-03-13 23:29:43 +00001529#if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K) && !defined(CONFIG_HMI10)
wdenkc6097192002-11-03 00:24:07 +00001530
1531static uchar led_buffer = 0; /* Buffer for current LED status */
1532
1533static void ide_led (uchar led, uchar status)
1534{
1535 uchar *led_port = LED_PORT;
1536
1537 if (status) { /* switch LED on */
1538 led_buffer |= led;
1539 } else { /* switch LED off */
1540 led_buffer &= ~led;
1541 }
1542
1543 *led_port = led_buffer;
1544}
1545
1546#endif /* CONFIG_IDE_LED */
1547
1548/* ------------------------------------------------------------------------- */
1549
1550#ifdef CONFIG_ATAPI
1551/****************************************************************************
1552 * ATAPI Support
1553 */
1554
1555
wdenkc6097192002-11-03 00:24:07 +00001556#undef ATAPI_DEBUG
1557
1558#ifdef ATAPI_DEBUG
1559#define AT_PRINTF(fmt,args...) printf (fmt ,##args)
1560#else
1561#define AT_PRINTF(fmt,args...)
1562#endif
1563
wdenk2262cfe2002-11-18 00:14:45 +00001564#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +00001565/* since ATAPI may use commands with not 4 bytes alligned length
1566 * we have our own transfer functions, 2 bytes alligned */
1567static void
1568output_data_shorts(int dev, ushort *sect_buf, int shorts)
1569{
wdenkc40b2952004-03-13 23:29:43 +00001570#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +00001571 ushort *dbuf;
1572 volatile ushort *pbuf;
1573
1574 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1575 dbuf = (ushort *)sect_buf;
1576 while (shorts--) {
1577 __asm__ volatile ("eieio");
1578 *pbuf = *dbuf++;
1579 }
wdenkc40b2952004-03-13 23:29:43 +00001580#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +00001581 uchar *dbuf;
1582 volatile uchar *pbuf_even;
1583 volatile uchar *pbuf_odd;
1584
1585 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1586 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1587 while (shorts--) {
1588 __asm__ volatile ("eieio");
1589 *pbuf_even = *dbuf++;
1590 __asm__ volatile ("eieio");
1591 *pbuf_odd = *dbuf++;
1592 }
wdenkc40b2952004-03-13 23:29:43 +00001593#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +00001594}
1595
1596static void
1597input_data_shorts(int dev, ushort *sect_buf, int shorts)
1598{
wdenkc40b2952004-03-13 23:29:43 +00001599#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +00001600 ushort *dbuf;
1601 volatile ushort *pbuf;
1602
1603 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1604 dbuf = (ushort *)sect_buf;
1605 while (shorts--) {
1606 __asm__ volatile ("eieio");
1607 *dbuf++ = *pbuf;
1608 }
wdenkc40b2952004-03-13 23:29:43 +00001609#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +00001610 uchar *dbuf;
1611 volatile uchar *pbuf_even;
1612 volatile uchar *pbuf_odd;
1613
1614 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1615 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1616 while (shorts--) {
1617 __asm__ volatile ("eieio");
1618 *dbuf++ = *pbuf_even;
1619 __asm__ volatile ("eieio");
1620 *dbuf++ = *pbuf_odd;
1621 }
wdenkc40b2952004-03-13 23:29:43 +00001622#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +00001623}
1624
wdenk2262cfe2002-11-18 00:14:45 +00001625#else /* ! __PPC__ */
1626static void
1627output_data_shorts(int dev, ushort *sect_buf, int shorts)
1628{
wdenk15647dc2003-10-09 19:00:25 +00001629 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001630}
1631
1632
1633static void
1634input_data_shorts(int dev, ushort *sect_buf, int shorts)
1635{
wdenk15647dc2003-10-09 19:00:25 +00001636 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001637}
1638
1639#endif /* __PPC__ */
1640
wdenkc6097192002-11-03 00:24:07 +00001641/*
1642 * Wait until (Status & mask) == res, or timeout (in ms)
1643 * Return last status
1644 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1645 * and then they set their DRQ Bit
1646 */
1647static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1648{
1649 ulong delay = 10 * t; /* poll every 100 us */
1650 uchar c;
1651
wdenk2262cfe2002-11-18 00:14:45 +00001652 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1653 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001654 /* break if error occurs (doesn't make sense to wait more) */
1655 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1656 break;
1657 udelay (100);
1658 if (delay-- == 0) {
1659 break;
1660 }
1661 }
1662 return (c);
1663}
1664
1665/*
1666 * issue an atapi command
1667 */
1668unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1669{
1670 unsigned char c,err,mask,res;
1671 int n;
1672 ide_led (DEVICE_LED(device), 1); /* LED on */
1673
1674 /* Select device
1675 */
1676 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1677 res = 0;
wdenkc7de8292002-11-19 11:04:11 +00001678#ifdef CONFIG_AMIGAONEG3SE
1679# warning THF: Removed LBA mode ???
1680#endif
wdenk2262cfe2002-11-18 00:14:45 +00001681 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001682 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1683 if ((c & mask) != res) {
1684 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1685 err=0xFF;
1686 goto AI_OUT;
1687 }
1688 /* write taskfile */
wdenk2262cfe2002-11-18 00:14:45 +00001689 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
wdenkc7de8292002-11-19 11:04:11 +00001690 ide_outb (device, ATA_SECT_CNT, 0);
1691 ide_outb (device, ATA_SECT_NUM, 0);
wdenk2262cfe2002-11-18 00:14:45 +00001692 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
wdenkc7de8292002-11-19 11:04:11 +00001693 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1694#ifdef CONFIG_AMIGAONEG3SE
1695# warning THF: Removed LBA mode ???
1696#endif
wdenk2262cfe2002-11-18 00:14:45 +00001697 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001698
wdenk2262cfe2002-11-18 00:14:45 +00001699 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
wdenkc6097192002-11-03 00:24:07 +00001700 udelay (50);
1701
1702 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1703 res = ATA_STAT_DRQ;
1704 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1705
1706 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1707 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1708 err=0xFF;
1709 goto AI_OUT;
1710 }
1711
1712 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1713 /* ATAPI Command written wait for completition */
1714 udelay (5000); /* device must set bsy */
1715
1716 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1717 /* if no data wait for DRQ = 0 BSY = 0
1718 * if data wait for DRQ = 1 BSY = 0 */
1719 res=0;
1720 if(buflen)
1721 res = ATA_STAT_DRQ;
1722 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1723 if ((c & mask) != res ) {
1724 if (c & ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001725 err=(ide_inb(device,ATA_ERROR_REG))>>4;
wdenkc6097192002-11-03 00:24:07 +00001726 AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1727 } else {
1728 printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1729 err=0xFF;
1730 }
1731 goto AI_OUT;
1732 }
wdenk2262cfe2002-11-18 00:14:45 +00001733 n=ide_inb(device, ATA_CYL_HIGH);
wdenkc6097192002-11-03 00:24:07 +00001734 n<<=8;
wdenk2262cfe2002-11-18 00:14:45 +00001735 n+=ide_inb(device, ATA_CYL_LOW);
wdenkc6097192002-11-03 00:24:07 +00001736 if(n>buflen) {
1737 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1738 err=0xff;
1739 goto AI_OUT;
1740 }
1741 if((n==0)&&(buflen<0)) {
1742 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1743 err=0xff;
1744 goto AI_OUT;
1745 }
1746 if(n!=buflen) {
1747 AT_PRINTF("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1748 }
1749 if(n!=0) { /* data transfer */
1750 AT_PRINTF("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1751 /* we transfer shorts */
1752 n>>=1;
1753 /* ok now decide if it is an in or output */
wdenk2262cfe2002-11-18 00:14:45 +00001754 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
wdenkc6097192002-11-03 00:24:07 +00001755 AT_PRINTF("Write to device\n");
1756 output_data_shorts(device,(unsigned short *)buffer,n);
1757 } else {
1758 AT_PRINTF("Read from device @ %p shorts %d\n",buffer,n);
1759 input_data_shorts(device,(unsigned short *)buffer,n);
1760 }
1761 }
1762 udelay(5000); /* seems that some CD ROMs need this... */
1763 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1764 res=0;
1765 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1766 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001767 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
wdenkc6097192002-11-03 00:24:07 +00001768 AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c);
1769 } else {
1770 err = 0;
1771 }
1772AI_OUT:
1773 ide_led (DEVICE_LED(device), 0); /* LED off */
1774 return (err);
1775}
1776
1777/*
1778 * sending the command to atapi_issue. If an status other than good
1779 * returns, an request_sense will be issued
1780 */
1781
1782#define ATAPI_DRIVE_NOT_READY 100
1783#define ATAPI_UNIT_ATTN 10
1784
1785unsigned char atapi_issue_autoreq (int device,
1786 unsigned char* ccb,
1787 int ccblen,
1788 unsigned char *buffer,
1789 int buflen)
1790{
1791 unsigned char sense_data[18],sense_ccb[12];
1792 unsigned char res,key,asc,ascq;
1793 int notready,unitattn;
1794
wdenkc7de8292002-11-19 11:04:11 +00001795#ifdef CONFIG_AMIGAONEG3SE
1796 char *s;
1797 unsigned int timeout, retrycnt;
1798
1799 s = getenv("ide_cd_timeout");
1800 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1801
1802 retrycnt = 0;
1803#endif
1804
wdenkc6097192002-11-03 00:24:07 +00001805 unitattn=ATAPI_UNIT_ATTN;
1806 notready=ATAPI_DRIVE_NOT_READY;
1807
1808retry:
1809 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1810 if (res==0)
1811 return (0); /* Ok */
1812
1813 if (res==0xFF)
1814 return (0xFF); /* error */
1815
1816 AT_PRINTF("(auto_req)atapi_issue returned sense key %X\n",res);
1817
1818 memset(sense_ccb,0,sizeof(sense_ccb));
1819 memset(sense_data,0,sizeof(sense_data));
1820 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
wdenkc7de8292002-11-19 11:04:11 +00001821 sense_ccb[4]=18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001822
1823 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1824 key=(sense_data[2]&0xF);
1825 asc=(sense_data[12]);
1826 ascq=(sense_data[13]);
1827
1828 AT_PRINTF("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1829 AT_PRINTF(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1830 sense_data[0],
1831 key,
1832 asc,
1833 ascq);
1834
1835 if((key==0))
1836 return 0; /* ok device ready */
1837
1838 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1839 if(unitattn-->0) {
1840 udelay(200*1000);
1841 goto retry;
1842 }
1843 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1844 goto error;
1845 }
1846 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1847 if (notready-->0) {
1848 udelay(200*1000);
1849 goto retry;
1850 }
1851 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1852 goto error;
1853 }
1854 if(asc==0x3a) {
1855 AT_PRINTF("Media not present\n");
1856 goto error;
1857 }
wdenkc7de8292002-11-19 11:04:11 +00001858
1859#ifdef CONFIG_AMIGAONEG3SE
1860 if ((sense_data[2]&0xF)==0x0B) {
1861 AT_PRINTF("ABORTED COMMAND...retry\n");
1862 if (retrycnt++ < 4)
1863 goto retry;
1864 return (0xFF);
1865 }
1866
1867 if ((sense_data[2]&0xf) == 0x02 &&
1868 sense_data[12] == 0x04 &&
1869 sense_data[13] == 0x01 ) {
1870 AT_PRINTF("Waiting for unit to become active\n");
1871 udelay(timeout);
1872 if (retrycnt++ < 4)
1873 goto retry;
1874 return 0xFF;
1875 }
1876#endif /* CONFIG_AMIGAONEG3SE */
1877
wdenkc6097192002-11-03 00:24:07 +00001878 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1879error:
1880 AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1881 return (0xFF);
1882}
1883
1884
wdenkc6097192002-11-03 00:24:07 +00001885static void atapi_inquiry(block_dev_desc_t * dev_desc)
1886{
1887 unsigned char ccb[12]; /* Command descriptor block */
1888 unsigned char iobuf[64]; /* temp buf */
1889 unsigned char c;
1890 int device;
1891
1892 device=dev_desc->dev;
1893 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1894 dev_desc->block_read=atapi_read;
1895
1896 memset(ccb,0,sizeof(ccb));
1897 memset(iobuf,0,sizeof(iobuf));
1898
1899 ccb[0]=ATAPI_CMD_INQUIRY;
1900 ccb[4]=40; /* allocation Legnth */
1901 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1902
1903 AT_PRINTF("ATAPI_CMD_INQUIRY returned %x\n",c);
1904 if (c!=0)
1905 return;
1906
1907 /* copy device ident strings */
1908 ident_cpy(dev_desc->vendor,&iobuf[8],8);
1909 ident_cpy(dev_desc->product,&iobuf[16],16);
1910 ident_cpy(dev_desc->revision,&iobuf[32],5);
1911
1912 dev_desc->lun=0;
1913 dev_desc->lba=0;
1914 dev_desc->blksz=0;
1915 dev_desc->type=iobuf[0] & 0x1f;
1916
1917 if ((iobuf[1]&0x80)==0x80)
1918 dev_desc->removable = 1;
1919 else
1920 dev_desc->removable = 0;
1921
1922 memset(ccb,0,sizeof(ccb));
1923 memset(iobuf,0,sizeof(iobuf));
1924 ccb[0]=ATAPI_CMD_START_STOP;
1925 ccb[4]=0x03; /* start */
1926
1927 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1928
1929 AT_PRINTF("ATAPI_CMD_START_STOP returned %x\n",c);
1930 if (c!=0)
1931 return;
1932
1933 memset(ccb,0,sizeof(ccb));
1934 memset(iobuf,0,sizeof(iobuf));
1935 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1936
1937 AT_PRINTF("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1938 if (c!=0)
1939 return;
1940
1941 memset(ccb,0,sizeof(ccb));
1942 memset(iobuf,0,sizeof(iobuf));
1943 ccb[0]=ATAPI_CMD_READ_CAP;
1944 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1945 AT_PRINTF("ATAPI_CMD_READ_CAP returned %x\n",c);
1946 if (c!=0)
1947 return;
1948
1949 AT_PRINTF("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1950 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1951 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1952
1953 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1954 ((unsigned long)iobuf[1]<<16) +
1955 ((unsigned long)iobuf[2]<< 8) +
1956 ((unsigned long)iobuf[3]);
1957 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1958 ((unsigned long)iobuf[5]<<16) +
1959 ((unsigned long)iobuf[6]<< 8) +
1960 ((unsigned long)iobuf[7]);
wdenkc40b2952004-03-13 23:29:43 +00001961 dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
wdenkc6097192002-11-03 00:24:07 +00001962 return;
1963}
1964
1965
1966/*
1967 * atapi_read:
1968 * we transfer only one block per command, since the multiple DRQ per
1969 * command is not yet implemented
1970 */
1971#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1972#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
1973#define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1974
wdenkc40b2952004-03-13 23:29:43 +00001975ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
wdenkc6097192002-11-03 00:24:07 +00001976{
1977 ulong n = 0;
1978 unsigned char ccb[12]; /* Command descriptor block */
1979 ulong cnt;
1980
1981 AT_PRINTF("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1982 device, blknr, blkcnt, (ulong)buffer);
1983
1984 do {
1985 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1986 cnt=ATAPI_READ_MAX_BLOCK;
1987 } else {
1988 cnt=blkcnt;
1989 }
1990 ccb[0]=ATAPI_CMD_READ_12;
1991 ccb[1]=0; /* reserved */
1992 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
1993 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
1994 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
1995 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
1996 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
1997 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
1998 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
1999 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
2000 ccb[10]=0; /* reserved */
2001 ccb[11]=0; /* reserved */
2002
2003 if (atapi_issue_autoreq(device,ccb,12,
2004 (unsigned char *)buffer,
2005 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
2006 return (n);
2007 }
2008 n+=cnt;
2009 blkcnt-=cnt;
2010 blknr+=cnt;
2011 buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
2012 } while (blkcnt > 0);
2013 return (n);
2014}
2015
2016/* ------------------------------------------------------------------------- */
2017
2018#endif /* CONFIG_ATAPI */
2019
wdenk0d498392003-07-01 21:06:45 +00002020U_BOOT_CMD(
2021 ide, 5, 1, do_ide,
wdenk8bde7f72003-06-27 21:31:46 +00002022 "ide - IDE sub-system\n",
2023 "reset - reset IDE controller\n"
2024 "ide info - show available IDE devices\n"
2025 "ide device [dev] - show or set current device\n"
2026 "ide part [dev] - print partition table of one or all IDE devices\n"
2027 "ide read addr blk# cnt\n"
2028 "ide write addr blk# cnt - read/write `cnt'"
2029 " blocks starting at block `blk#'\n"
2030 " to/from memory address `addr'\n"
2031);
2032
wdenk0d498392003-07-01 21:06:45 +00002033U_BOOT_CMD(
2034 diskboot, 3, 1, do_diskboot,
wdenk8bde7f72003-06-27 21:31:46 +00002035 "diskboot- boot from IDE device\n",
2036 "loadAddr dev:part\n"
2037);
2038
wdenkc6097192002-11-03 00:24:07 +00002039#endif /* CONFIG_COMMANDS & CFG_CMD_IDE */