blob: bb064eaa04a3ad7869db70aeca2f99f23a3be8b9 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenk1a344f22005-02-03 23:00:49 +00002 * (C) Copyright 2000-2005
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25/*
26 * IDE support
27 */
28#include <common.h>
29#include <config.h>
30#include <watchdog.h>
31#include <command.h>
32#include <image.h>
33#include <asm/byteorder.h>
Heiko Schocherf98984c2007-08-28 17:39:14 +020034#include <asm/io.h>
Grant Likely735dd972007-02-20 09:04:34 +010035
wdenkc6097192002-11-03 00:24:07 +000036#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
37# include <pcmcia.h>
38#endif
Grant Likely735dd972007-02-20 09:04:34 +010039
wdenkc6097192002-11-03 00:24:07 +000040#ifdef CONFIG_8xx
41# include <mpc8xx.h>
42#endif
Grant Likely735dd972007-02-20 09:04:34 +010043
wdenk132ba5f2004-02-27 08:20:54 +000044#ifdef CONFIG_MPC5xxx
45#include <mpc5xxx.h>
46#endif
Grant Likely735dd972007-02-20 09:04:34 +010047
wdenkc6097192002-11-03 00:24:07 +000048#include <ide.h>
49#include <ata.h>
Grant Likely735dd972007-02-20 09:04:34 +010050
wdenkc6097192002-11-03 00:24:07 +000051#ifdef CONFIG_STATUS_LED
52# include <status_led.h>
53#endif
Grant Likely735dd972007-02-20 09:04:34 +010054
wdenk15647dc2003-10-09 19:00:25 +000055#ifndef __PPC__
wdenk2262cfe2002-11-18 00:14:45 +000056#include <asm/io.h>
wdenk15647dc2003-10-09 19:00:25 +000057#ifdef __MIPS__
58/* Macros depend on this variable */
Wolfgang Denkc75eba32005-12-01 02:15:07 +010059unsigned long mips_io_port_base = 0;
wdenk15647dc2003-10-09 19:00:25 +000060#endif
wdenk2262cfe2002-11-18 00:14:45 +000061#endif
wdenkc6097192002-11-03 00:24:07 +000062
Wolfgang Denkd87080b2006-03-31 18:32:53 +020063#ifdef CONFIG_IDE_8xx_DIRECT
64DECLARE_GLOBAL_DATA_PTR;
65#endif
66
wdenk5cf91d62004-04-23 20:32:05 +000067#ifdef __PPC__
68# define EIEIO __asm__ volatile ("eieio")
wdenk1a344f22005-02-03 23:00:49 +000069# define SYNC __asm__ volatile ("sync")
wdenk5cf91d62004-04-23 20:32:05 +000070#else
71# define EIEIO /* nothing */
wdenk1a344f22005-02-03 23:00:49 +000072# define SYNC /* nothing */
wdenkc6097192002-11-03 00:24:07 +000073#endif
74
Jon Loeligerc76fe472007-07-08 18:02:23 -050075#if defined(CONFIG_CMD_IDE)
wdenkc6097192002-11-03 00:24:07 +000076
wdenk15647dc2003-10-09 19:00:25 +000077#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +000078/* Timings for IDE Interface
79 *
80 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
81 * 70 165 30 PIO-Mode 0, [ns]
82 * 4 9 2 [Cycles]
83 * 50 125 20 PIO-Mode 1, [ns]
84 * 3 7 2 [Cycles]
85 * 30 100 15 PIO-Mode 2, [ns]
86 * 2 6 1 [Cycles]
87 * 30 80 10 PIO-Mode 3, [ns]
88 * 2 5 1 [Cycles]
89 * 25 70 10 PIO-Mode 4, [ns]
90 * 2 4 1 [Cycles]
91 */
92
93const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
94{
95 /* Setup Length Hold */
96 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
97 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
98 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
99 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
100 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
101};
102
103static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
104
105#ifndef CFG_PIO_MODE
106#define CFG_PIO_MODE 0 /* use a relaxed default */
107#endif
108static int pio_mode = CFG_PIO_MODE;
109
110/* Make clock cycles and always round up */
111
112#define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
113
wdenk15647dc2003-10-09 19:00:25 +0000114#endif /* CONFIG_IDE_8xx_DIRECT */
115
wdenkc6097192002-11-03 00:24:07 +0000116/* ------------------------------------------------------------------------- */
117
118/* Current I/O Device */
119static int curr_device = -1;
120
121/* Current offset for IDE0 / IDE1 bus access */
122ulong ide_bus_offset[CFG_IDE_MAXBUS] = {
123#if defined(CFG_ATA_IDE0_OFFSET)
124 CFG_ATA_IDE0_OFFSET,
125#endif
126#if defined(CFG_ATA_IDE1_OFFSET) && (CFG_IDE_MAXBUS > 1)
127 CFG_ATA_IDE1_OFFSET,
128#endif
129};
130
wdenk15647dc2003-10-09 19:00:25 +0000131
wdenkc7de8292002-11-19 11:04:11 +0000132#ifndef CONFIG_AMIGAONEG3SE
wdenk1a344f22005-02-03 23:00:49 +0000133static int ide_bus_ok[CFG_IDE_MAXBUS];
wdenkc7de8292002-11-19 11:04:11 +0000134#else
wdenk1a344f22005-02-03 23:00:49 +0000135static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
wdenkc7de8292002-11-19 11:04:11 +0000136#endif
wdenkc6097192002-11-03 00:24:07 +0000137
stroesefa838872004-12-16 17:40:30 +0000138block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
wdenkc6097192002-11-03 00:24:07 +0000139/* ------------------------------------------------------------------------- */
140
141#ifdef CONFIG_IDE_LED
wdenke2ffd592004-12-31 09:32:47 +0000142#if !defined(CONFIG_KUP4K) && !defined(CONFIG_KUP4X) &&!defined(CONFIG_BMS2003) &&!defined(CONFIG_CPC45)
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
Heiko Schocherf98984c2007-08-28 17:39:14 +0200174void inline ide_outb(int dev, int port, unsigned char val);
175unsigned 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
Heiko Schocher566a4942007-06-22 19:11:54 +0200180#ifndef CFG_ATA_PORT_ADDR
181#define CFG_ATA_PORT_ADDR(port) (port)
182#endif
wdenkc6097192002-11-03 00:24:07 +0000183
184#ifdef CONFIG_ATAPI
185static void atapi_inquiry(block_dev_desc_t *dev_desc);
Grant Likelyeb867a72007-02-20 09:05:45 +0100186ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer);
wdenkc6097192002-11-03 00:24:07 +0000187#endif
188
189
190#ifdef CONFIG_IDE_8xx_DIRECT
191static void set_pcmcia_timing (int pmode);
wdenkc6097192002-11-03 00:24:07 +0000192#endif
193
194/* ------------------------------------------------------------------------- */
195
196int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
197{
198 int rcode = 0;
199
200 switch (argc) {
201 case 0:
202 case 1:
203 printf ("Usage:\n%s\n", cmdtp->usage);
204 return 1;
205 case 2:
206 if (strncmp(argv[1],"res",3) == 0) {
207 puts ("\nReset IDE"
208#ifdef CONFIG_IDE_8xx_DIRECT
209 " on PCMCIA " PCMCIA_SLOT_MSG
210#endif
211 ": ");
212
213 ide_init ();
214 return 0;
215 } else if (strncmp(argv[1],"inf",3) == 0) {
216 int i;
217
218 putc ('\n');
219
220 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
221 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
222 continue; /* list only known devices */
223 printf ("IDE device %d: ", i);
224 dev_print(&ide_dev_desc[i]);
225 }
226 return 0;
227
228 } else if (strncmp(argv[1],"dev",3) == 0) {
229 if ((curr_device < 0) || (curr_device >= CFG_IDE_MAXDEVICE)) {
230 puts ("\nno IDE devices available\n");
231 return 1;
232 }
233 printf ("\nIDE device %d: ", curr_device);
234 dev_print(&ide_dev_desc[curr_device]);
235 return 0;
236 } else if (strncmp(argv[1],"part",4) == 0) {
237 int dev, ok;
238
239 for (ok=0, dev=0; dev<CFG_IDE_MAXDEVICE; ++dev) {
240 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
241 ++ok;
242 if (dev)
243 putc ('\n');
244 print_part(&ide_dev_desc[dev]);
245 }
246 }
247 if (!ok) {
248 puts ("\nno IDE devices available\n");
249 rcode ++;
250 }
251 return rcode;
252 }
253 printf ("Usage:\n%s\n", cmdtp->usage);
254 return 1;
255 case 3:
256 if (strncmp(argv[1],"dev",3) == 0) {
257 int dev = (int)simple_strtoul(argv[2], NULL, 10);
258
259 printf ("\nIDE device %d: ", dev);
260 if (dev >= CFG_IDE_MAXDEVICE) {
261 puts ("unknown device\n");
262 return 1;
263 }
264 dev_print(&ide_dev_desc[dev]);
265 /*ide_print (dev);*/
266
267 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
268 return 1;
269 }
270
271 curr_device = dev;
272
273 puts ("... is now current device\n");
274
275 return 0;
276 } else if (strncmp(argv[1],"part",4) == 0) {
277 int dev = (int)simple_strtoul(argv[2], NULL, 10);
278
279 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
280 print_part(&ide_dev_desc[dev]);
281 } else {
282 printf ("\nIDE device %d not available\n", dev);
283 rcode = 1;
284 }
285 return rcode;
286#if 0
287 } else if (strncmp(argv[1],"pio",4) == 0) {
288 int mode = (int)simple_strtoul(argv[2], NULL, 10);
289
290 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
291 puts ("\nSetting ");
292 pio_mode = mode;
293 ide_init ();
294 } else {
295 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
296 mode, IDE_MAX_PIO_MODE);
297 }
298 return;
299#endif
300 }
301
302 printf ("Usage:\n%s\n", cmdtp->usage);
303 return 1;
304 default:
305 /* at least 4 args */
306
307 if (strcmp(argv[1],"read") == 0) {
308 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000309 ulong cnt = simple_strtoul(argv[4], NULL, 16);
310 ulong n;
wdenk42dfe7a2004-03-14 22:25:36 +0000311#ifdef CFG_64BIT_STRTOUL
312 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000313
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);
wdenk42dfe7a2004-03-14 22:25:36 +0000316#else
317 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
318
319 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
320 curr_device, blk, cnt);
321#endif
wdenkc6097192002-11-03 00:24:07 +0000322
323 n = ide_dev_desc[curr_device].block_read (curr_device,
324 blk, cnt,
325 (ulong *)addr);
326 /* flush cache after read */
327 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
328
329 printf ("%ld blocks read: %s\n",
330 n, (n==cnt) ? "OK" : "ERROR");
331 if (n==cnt) {
332 return 0;
333 } else {
334 return 1;
335 }
336 } else if (strcmp(argv[1],"write") == 0) {
337 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000338 ulong cnt = simple_strtoul(argv[4], NULL, 16);
339 ulong n;
wdenk42dfe7a2004-03-14 22:25:36 +0000340#ifdef CFG_64BIT_STRTOUL
341 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000342
wdenkc40b2952004-03-13 23:29:43 +0000343 printf ("\nIDE write: device %d block # %qd, count %ld ... ",
wdenkc6097192002-11-03 00:24:07 +0000344 curr_device, blk, cnt);
wdenk42dfe7a2004-03-14 22:25:36 +0000345#else
346 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
347
348 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
349 curr_device, blk, cnt);
350#endif
wdenkc6097192002-11-03 00:24:07 +0000351
352 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
353
354 printf ("%ld blocks written: %s\n",
355 n, (n==cnt) ? "OK" : "ERROR");
356 if (n==cnt) {
357 return 0;
358 } else {
359 return 1;
360 }
361 } else {
362 printf ("Usage:\n%s\n", cmdtp->usage);
363 rcode = 1;
364 }
365
366 return rcode;
367 }
368}
369
370int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
371{
372 char *boot_device = NULL;
373 char *ep;
374 int dev, part = 0;
wdenk1a344f22005-02-03 23:00:49 +0000375 ulong addr, cnt, checksum;
wdenkc6097192002-11-03 00:24:07 +0000376 disk_partition_t info;
377 image_header_t *hdr;
378 int rcode = 0;
379
Heiko Schocherfad63402007-07-13 09:54:17 +0200380 show_boot_progress (41);
wdenkc6097192002-11-03 00:24:07 +0000381 switch (argc) {
382 case 1:
383 addr = CFG_LOAD_ADDR;
384 boot_device = getenv ("bootdevice");
385 break;
386 case 2:
387 addr = simple_strtoul(argv[1], NULL, 16);
388 boot_device = getenv ("bootdevice");
389 break;
390 case 3:
391 addr = simple_strtoul(argv[1], NULL, 16);
392 boot_device = argv[2];
393 break;
394 default:
395 printf ("Usage:\n%s\n", cmdtp->usage);
Heiko Schocherfad63402007-07-13 09:54:17 +0200396 show_boot_progress (-42);
wdenkc6097192002-11-03 00:24:07 +0000397 return 1;
398 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200399 show_boot_progress (42);
wdenkc6097192002-11-03 00:24:07 +0000400
401 if (!boot_device) {
402 puts ("\n** No boot device **\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200403 show_boot_progress (-43);
wdenkc6097192002-11-03 00:24:07 +0000404 return 1;
405 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200406 show_boot_progress (43);
wdenkc6097192002-11-03 00:24:07 +0000407
408 dev = simple_strtoul(boot_device, &ep, 16);
409
410 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
411 printf ("\n** Device %d not available\n", dev);
Heiko Schocherfad63402007-07-13 09:54:17 +0200412 show_boot_progress (-44);
wdenkc6097192002-11-03 00:24:07 +0000413 return 1;
414 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200415 show_boot_progress (44);
wdenkc6097192002-11-03 00:24:07 +0000416
417 if (*ep) {
418 if (*ep != ':') {
419 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200420 show_boot_progress (-45);
wdenkc6097192002-11-03 00:24:07 +0000421 return 1;
422 }
423 part = simple_strtoul(++ep, NULL, 16);
424 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200425 show_boot_progress (45);
Denis Peter78827512007-04-13 09:13:33 +0200426 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
Heiko Schocherfad63402007-07-13 09:54:17 +0200427 show_boot_progress (-46);
wdenkc6097192002-11-03 00:24:07 +0000428 return 1;
429 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200430 show_boot_progress (46);
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200431 if ((strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
432 (strncmp((char *)info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
wdenkc6097192002-11-03 00:24:07 +0000433 printf ("\n** Invalid partition type \"%.32s\""
434 " (expect \"" BOOT_PART_TYPE "\")\n",
435 info.type);
Heiko Schocherfad63402007-07-13 09:54:17 +0200436 show_boot_progress (-47);
wdenkc6097192002-11-03 00:24:07 +0000437 return 1;
438 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200439 show_boot_progress (47);
wdenkc6097192002-11-03 00:24:07 +0000440
441 printf ("\nLoading from IDE device %d, partition %d: "
442 "Name: %.32s Type: %.32s\n",
443 dev, part, info.name, info.type);
444
wdenk1a344f22005-02-03 23:00:49 +0000445 debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
wdenkc6097192002-11-03 00:24:07 +0000446 info.start, info.size, info.blksz);
447
448 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
449 printf ("** Read error on %d:%d\n", dev, part);
Heiko Schocherfad63402007-07-13 09:54:17 +0200450 show_boot_progress (-48);
wdenkc6097192002-11-03 00:24:07 +0000451 return 1;
452 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200453 show_boot_progress (48);
wdenkc6097192002-11-03 00:24:07 +0000454
455 hdr = (image_header_t *)addr;
456
wdenk1a344f22005-02-03 23:00:49 +0000457 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenkc6097192002-11-03 00:24:07 +0000458 printf("\n** Bad Magic Number **\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200459 show_boot_progress (-49);
wdenkc6097192002-11-03 00:24:07 +0000460 return 1;
461 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200462 show_boot_progress (49);
wdenkc6097192002-11-03 00:24:07 +0000463
wdenk1a344f22005-02-03 23:00:49 +0000464 checksum = ntohl(hdr->ih_hcrc);
465 hdr->ih_hcrc = 0;
466
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200467 if (crc32 (0, (uchar *)hdr, sizeof(image_header_t)) != checksum) {
wdenk1a344f22005-02-03 23:00:49 +0000468 puts ("\n** Bad Header Checksum **\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200469 show_boot_progress (-50);
wdenk1a344f22005-02-03 23:00:49 +0000470 return 1;
471 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200472 show_boot_progress (50);
wdenkb9649852005-02-08 15:29:01 +0000473 hdr->ih_hcrc = htonl(checksum); /* restore checksum for later use */
wdenk1a344f22005-02-03 23:00:49 +0000474
475 print_image_hdr (hdr);
476
477 cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t));
478 cnt += info.blksz - 1;
479 cnt /= info.blksz;
480 cnt -= 1;
481
wdenkc6097192002-11-03 00:24:07 +0000482 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
483 (ulong *)(addr+info.blksz)) != cnt) {
484 printf ("** Read error on %d:%d\n", dev, part);
Heiko Schocherfad63402007-07-13 09:54:17 +0200485 show_boot_progress (-51);
wdenkc6097192002-11-03 00:24:07 +0000486 return 1;
487 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200488 show_boot_progress (51);
wdenkc6097192002-11-03 00:24:07 +0000489
490
491 /* Loading ok, update default load address */
492
493 load_addr = addr;
494
495 /* Check if we should attempt an auto-start */
496 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
497 char *local_args[2];
498 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
499
500 local_args[0] = argv[0];
501 local_args[1] = NULL;
502
503 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
504
505 do_bootm (cmdtp, 0, 1, local_args);
506 rcode = 1;
507 }
508 return rcode;
509}
510
511/* ------------------------------------------------------------------------- */
512
513void ide_init (void)
514{
wdenkc6097192002-11-03 00:24:07 +0000515
516#ifdef CONFIG_IDE_8xx_DIRECT
517 volatile immap_t *immr = (immap_t *)CFG_IMMR;
518 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
519#endif
520 unsigned char c;
521 int i, bus;
Wolfgang Denk51056dd2007-04-11 17:22:55 +0200522#if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SC3)
Wolfgang Denk9045f332007-06-08 10:24:58 +0200523 unsigned int ata_reset_time = ATA_RESET_TIME;
524 char *s;
Wolfgang Denk51056dd2007-04-11 17:22:55 +0200525#endif
wdenkc7de8292002-11-19 11:04:11 +0000526#ifdef CONFIG_AMIGAONEG3SE
527 unsigned int max_bus_scan;
wdenkc7de8292002-11-19 11:04:11 +0000528#endif
wdenk9fd5e312003-12-07 23:55:12 +0000529#ifdef CONFIG_IDE_8xx_PCCARD
530 extern int pcmcia_on (void);
531 extern int ide_devices_found; /* Initialized in check_ide_device() */
532#endif /* CONFIG_IDE_8xx_PCCARD */
533
534#ifdef CONFIG_IDE_PREINIT
wdenk4d13cba2004-03-14 14:09:05 +0000535 extern int ide_preinit (void);
wdenk9fd5e312003-12-07 23:55:12 +0000536 WATCHDOG_RESET();
537
538 if (ide_preinit ()) {
539 puts ("ide_preinit failed\n");
540 return;
541 }
542#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000543
544#ifdef CONFIG_IDE_8xx_PCCARD
545 extern int pcmcia_on (void);
wdenk6069ff22003-02-28 00:49:47 +0000546 extern int ide_devices_found; /* Initialized in check_ide_device() */
wdenkc6097192002-11-03 00:24:07 +0000547
548 WATCHDOG_RESET();
549
wdenk6069ff22003-02-28 00:49:47 +0000550 ide_devices_found = 0;
wdenkc6097192002-11-03 00:24:07 +0000551 /* initialize the PCMCIA IDE adapter card */
wdenk6069ff22003-02-28 00:49:47 +0000552 pcmcia_on();
553 if (!ide_devices_found)
wdenkc6097192002-11-03 00:24:07 +0000554 return;
555 udelay (1000000); /* 1 s */
556#endif /* CONFIG_IDE_8xx_PCCARD */
557
558 WATCHDOG_RESET();
559
wdenk15647dc2003-10-09 19:00:25 +0000560#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +0000561 /* Initialize PIO timing tables */
562 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
wdenk1a344f22005-02-03 23:00:49 +0000563 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
564 gd->bus_clk);
565 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
566 gd->bus_clk);
567 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
568 gd->bus_clk);
569 debug ( "PIO Mode %d: setup=%2d ns/%d clk"
570 " len=%3d ns/%d clk"
571 " hold=%2d ns/%d clk\n",
572 i,
573 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
574 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
575 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
wdenkc6097192002-11-03 00:24:07 +0000576 }
wdenk15647dc2003-10-09 19:00:25 +0000577#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000578
579 /* Reset the IDE just to be sure.
580 * Light LED's to show
581 */
582 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
583 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
584
585#ifdef CONFIG_IDE_8xx_DIRECT
586 /* PCMCIA / IDE initialization for common mem space */
587 pcmp->pcmc_pgcrb = 0;
wdenkc6097192002-11-03 00:24:07 +0000588
589 /* start in PIO mode 0 - most relaxed timings */
590 pio_mode = 0;
591 set_pcmcia_timing (pio_mode);
wdenk15647dc2003-10-09 19:00:25 +0000592#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000593
594 /*
595 * Wait for IDE to get ready.
596 * According to spec, this can take up to 31 seconds!
597 */
wdenkc7de8292002-11-19 11:04:11 +0000598#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000599 for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
600 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
wdenkc7de8292002-11-19 11:04:11 +0000601#else
602 s = getenv("ide_maxbus");
603 if (s)
wdenk1a344f22005-02-03 23:00:49 +0000604 max_bus_scan = simple_strtol(s, NULL, 10);
wdenkc7de8292002-11-19 11:04:11 +0000605 else
wdenk1a344f22005-02-03 23:00:49 +0000606 max_bus_scan = CFG_IDE_MAXBUS;
wdenkc7de8292002-11-19 11:04:11 +0000607
608 for (bus=0; bus<max_bus_scan; ++bus) {
609 int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
610#endif
wdenkc6097192002-11-03 00:24:07 +0000611
wdenk6069ff22003-02-28 00:49:47 +0000612#ifdef CONFIG_IDE_8xx_PCCARD
613 /* Skip non-ide devices from probing */
614 if ((ide_devices_found & (1 << bus)) == 0) {
615 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
616 continue;
617 }
618#endif
wdenkc6097192002-11-03 00:24:07 +0000619 printf ("Bus %d: ", bus);
620
621 ide_bus_ok[bus] = 0;
622
623 /* Select device
624 */
625 udelay (100000); /* 100 ms */
wdenk2262cfe2002-11-18 00:14:45 +0000626 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
wdenkc6097192002-11-03 00:24:07 +0000627 udelay (100000); /* 100 ms */
Wolfgang Denk51056dd2007-04-11 17:22:55 +0200628#if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SC3)
629 if ((s = getenv("ide_reset_timeout")) != NULL)
630 ata_reset_time = simple_strtol(s, NULL, 10);
wdenkc7de8292002-11-19 11:04:11 +0000631#endif
wdenkc6097192002-11-03 00:24:07 +0000632 i = 0;
633 do {
634 udelay (10000); /* 10 ms */
635
wdenk2262cfe2002-11-18 00:14:45 +0000636 c = ide_inb (dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000637 i++;
Wolfgang Denk51056dd2007-04-11 17:22:55 +0200638#if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SC3)
wdenkc7de8292002-11-19 11:04:11 +0000639 if (i > (ata_reset_time * 100)) {
640#else
wdenkc6097192002-11-03 00:24:07 +0000641 if (i > (ATA_RESET_TIME * 100)) {
wdenkc7de8292002-11-19 11:04:11 +0000642#endif
wdenkc6097192002-11-03 00:24:07 +0000643 puts ("** Timeout **\n");
644 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc7de8292002-11-19 11:04:11 +0000645#ifdef CONFIG_AMIGAONEG3SE
646 /* If this is the second bus, the first one was OK */
wdenkc40b2952004-03-13 23:29:43 +0000647 if (bus != 0) {
wdenk1a344f22005-02-03 23:00:49 +0000648 ide_bus_ok[bus] = 0;
649 goto skip_bus;
wdenkc7de8292002-11-19 11:04:11 +0000650 }
651#endif
wdenkc6097192002-11-03 00:24:07 +0000652 return;
653 }
654 if ((i >= 100) && ((i%100)==0)) {
655 putc ('.');
656 }
657 } while (c & ATA_STAT_BUSY);
658
659 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
660 puts ("not available ");
wdenk1a344f22005-02-03 23:00:49 +0000661 debug ("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000662#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
663 } else if ((c & ATA_STAT_READY) == 0) {
664 puts ("not available ");
wdenk1a344f22005-02-03 23:00:49 +0000665 debug ("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000666#endif
667 } else {
668 puts ("OK ");
669 ide_bus_ok[bus] = 1;
670 }
671 WATCHDOG_RESET();
672 }
wdenkc7de8292002-11-19 11:04:11 +0000673
674#ifdef CONFIG_AMIGAONEG3SE
675 skip_bus:
676#endif
wdenkc6097192002-11-03 00:24:07 +0000677 putc ('\n');
678
679 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
680
681 curr_device = -1;
682 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
683#ifdef CONFIG_IDE_LED
684 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
685#endif
wdenk5cf9da42003-11-07 13:42:26 +0000686 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
wdenkc6097192002-11-03 00:24:07 +0000687 ide_dev_desc[i].if_type=IF_TYPE_IDE;
688 ide_dev_desc[i].dev=i;
689 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
690 ide_dev_desc[i].blksz=0;
691 ide_dev_desc[i].lba=0;
692 ide_dev_desc[i].block_read=ide_read;
693 if (!ide_bus_ok[IDE_BUS(i)])
694 continue;
695 ide_led (led, 1); /* LED on */
696 ide_ident(&ide_dev_desc[i]);
697 ide_led (led, 0); /* LED off */
698 dev_print(&ide_dev_desc[i]);
699/* ide_print (i); */
700 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
701 init_part (&ide_dev_desc[i]); /* initialize partition type */
702 if (curr_device < 0)
703 curr_device = i;
704 }
705 }
706 WATCHDOG_RESET();
707}
708
709/* ------------------------------------------------------------------------- */
710
711block_dev_desc_t * ide_get_dev(int dev)
712{
Grant Likely735dd972007-02-20 09:04:34 +0100713 return (dev < CFG_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
wdenkc6097192002-11-03 00:24:07 +0000714}
715
716
717#ifdef CONFIG_IDE_8xx_DIRECT
718
719static void
720set_pcmcia_timing (int pmode)
721{
722 volatile immap_t *immr = (immap_t *)CFG_IMMR;
723 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
724 ulong timings;
725
wdenk1a344f22005-02-03 23:00:49 +0000726 debug ("Set timing for PIO Mode %d\n", pmode);
wdenkc6097192002-11-03 00:24:07 +0000727
728 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
729 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
730 | PCMCIA_SL (pio_config_clk[pmode].t_length)
731 ;
732
733 /* IDE 0
734 */
735 pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0;
736 pcmp->pcmc_por0 = CFG_PCMCIA_POR0
737#if (CFG_PCMCIA_POR0 != 0)
738 | timings
739#endif
740 ;
wdenk1a344f22005-02-03 23:00:49 +0000741 debug ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
wdenkc6097192002-11-03 00:24:07 +0000742
743 pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1;
744 pcmp->pcmc_por1 = CFG_PCMCIA_POR1
745#if (CFG_PCMCIA_POR1 != 0)
746 | timings
747#endif
748 ;
wdenk1a344f22005-02-03 23:00:49 +0000749 debug ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
wdenkc6097192002-11-03 00:24:07 +0000750
751 pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2;
752 pcmp->pcmc_por2 = CFG_PCMCIA_POR2
753#if (CFG_PCMCIA_POR2 != 0)
754 | timings
755#endif
756 ;
wdenk1a344f22005-02-03 23:00:49 +0000757 debug ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
wdenkc6097192002-11-03 00:24:07 +0000758
759 pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3;
760 pcmp->pcmc_por3 = CFG_PCMCIA_POR3
761#if (CFG_PCMCIA_POR3 != 0)
762 | timings
763#endif
764 ;
wdenk1a344f22005-02-03 23:00:49 +0000765 debug ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
wdenkc6097192002-11-03 00:24:07 +0000766
767 /* IDE 1
768 */
769 pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4;
770 pcmp->pcmc_por4 = CFG_PCMCIA_POR4
771#if (CFG_PCMCIA_POR4 != 0)
772 | timings
773#endif
774 ;
wdenk1a344f22005-02-03 23:00:49 +0000775 debug ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
wdenkc6097192002-11-03 00:24:07 +0000776
777 pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5;
778 pcmp->pcmc_por5 = CFG_PCMCIA_POR5
779#if (CFG_PCMCIA_POR5 != 0)
780 | timings
781#endif
782 ;
wdenk1a344f22005-02-03 23:00:49 +0000783 debug ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
wdenkc6097192002-11-03 00:24:07 +0000784
785 pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6;
786 pcmp->pcmc_por6 = CFG_PCMCIA_POR6
787#if (CFG_PCMCIA_POR6 != 0)
788 | timings
789#endif
790 ;
wdenk1a344f22005-02-03 23:00:49 +0000791 debug ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
wdenkc6097192002-11-03 00:24:07 +0000792
793 pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7;
794 pcmp->pcmc_por7 = CFG_PCMCIA_POR7
795#if (CFG_PCMCIA_POR7 != 0)
796 | timings
797#endif
798 ;
wdenk1a344f22005-02-03 23:00:49 +0000799 debug ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
wdenkc6097192002-11-03 00:24:07 +0000800
801}
802
803#endif /* CONFIG_IDE_8xx_DIRECT */
804
805/* ------------------------------------------------------------------------- */
806
Heiko Schocherf98984c2007-08-28 17:39:14 +0200807void inline
808__ide_outb(int dev, int port, unsigned char val)
wdenkc6097192002-11-03 00:24:07 +0000809{
wdenk1a344f22005-02-03 23:00:49 +0000810 debug ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
Heiko Schocherf98984c2007-08-28 17:39:14 +0200811 dev, port, val, (ATA_CURR_BASE(dev)+CFG_ATA_PORT_ADDR(port)));
812 outb(val, (ATA_CURR_BASE(dev)+CFG_ATA_PORT_ADDR(port)));
wdenkc6097192002-11-03 00:24:07 +0000813}
Heiko Schocherf98984c2007-08-28 17:39:14 +0200814void inline ide_outb (int dev, int port, unsigned char val)
815 __attribute__((weak, alias("__ide_outb")));
wdenkc6097192002-11-03 00:24:07 +0000816
Heiko Schocherf98984c2007-08-28 17:39:14 +0200817unsigned char inline
818__ide_inb(int dev, int port)
wdenkc6097192002-11-03 00:24:07 +0000819{
820 uchar val;
Heiko Schocherf98984c2007-08-28 17:39:14 +0200821 val = inb((ATA_CURR_BASE(dev)+CFG_ATA_PORT_ADDR(port)));
wdenk1a344f22005-02-03 23:00:49 +0000822 debug ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
Heiko Schocherf98984c2007-08-28 17:39:14 +0200823 dev, port, (ATA_CURR_BASE(dev)+CFG_ATA_PORT_ADDR(port)), val);
824 return val;
wdenkc6097192002-11-03 00:24:07 +0000825}
Heiko Schocherf98984c2007-08-28 17:39:14 +0200826unsigned char inline ide_inb(int dev, int port)
827 __attribute__((weak, alias("__ide_inb")));
wdenkc6097192002-11-03 00:24:07 +0000828
wdenk2262cfe2002-11-18 00:14:45 +0000829#ifdef __PPC__
wdenkcceb8712003-06-23 18:12:28 +0000830# ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000831static void
832output_data_short(int dev, ulong *sect_buf, int words)
833{
834 ushort *dbuf;
835 volatile ushort *pbuf;
wdenk8bde7f72003-06-27 21:31:46 +0000836
wdenkc7de8292002-11-19 11:04:11 +0000837 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
838 dbuf = (ushort *)sect_buf;
839 while (words--) {
wdenk5cf91d62004-04-23 20:32:05 +0000840 EIEIO;
wdenkc7de8292002-11-19 11:04:11 +0000841 *pbuf = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000842 EIEIO;
wdenkc7de8292002-11-19 11:04:11 +0000843 }
844
845 if (words&1)
wdenk1a344f22005-02-03 23:00:49 +0000846 *pbuf = 0;
wdenkc7de8292002-11-19 11:04:11 +0000847}
wdenkcceb8712003-06-23 18:12:28 +0000848# endif /* CONFIG_AMIGAONEG3SE */
wdenk5da627a2003-10-09 20:09:04 +0000849#endif /* __PPC_ */
wdenkc7de8292002-11-19 11:04:11 +0000850
wdenk5da627a2003-10-09 20:09:04 +0000851/* We only need to swap data if we are running on a big endian cpu. */
852/* But Au1x00 cpu:s already swaps data in big endian mode! */
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200853#if defined(__LITTLE_ENDIAN) || ( defined(CONFIG_AU1X00) && !defined(CONFIG_GTH2) )
wdenk5da627a2003-10-09 20:09:04 +0000854#define input_swap_data(x,y,z) input_data(x,y,z)
855#else
wdenkc6097192002-11-03 00:24:07 +0000856static void
857input_swap_data(int dev, ulong *sect_buf, int words)
858{
wdenk1a344f22005-02-03 23:00:49 +0000859#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenka522fa02004-01-04 22:51:12 +0000860 uchar i;
861 volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
862 volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
863 ushort *dbuf = (ushort *)sect_buf;
864
865 while (words--) {
866 for (i=0; i<2; i++) {
867 *(((uchar *)(dbuf)) + 1) = *pbuf_even;
868 *(uchar *)dbuf = *pbuf_odd;
869 dbuf+=1;
870 }
871 }
wdenkf4733a02005-03-06 01:21:30 +0000872#else
wdenk1a344f22005-02-03 23:00:49 +0000873 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
874 ushort *dbuf = (ushort *)sect_buf;
875
876 debug("in input swap data base for read is %lx\n", (unsigned long) pbuf);
877
878 while (words--) {
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200879#ifdef __MIPS__
880 *dbuf++ = swab16p((u16*)pbuf);
881 *dbuf++ = swab16p((u16*)pbuf);
Heiko Schocher566a4942007-06-22 19:11:54 +0200882#elif defined(CONFIG_PCS440EP)
883 *dbuf++ = *pbuf;
884 *dbuf++ = *pbuf;
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200885#else
wdenk1a344f22005-02-03 23:00:49 +0000886 *dbuf++ = ld_le16(pbuf);
887 *dbuf++ = ld_le16(pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200888#endif /* !MIPS */
wdenk1a344f22005-02-03 23:00:49 +0000889 }
890#endif
wdenkc6097192002-11-03 00:24:07 +0000891}
wdenk5da627a2003-10-09 20:09:04 +0000892#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000893
wdenk2262cfe2002-11-18 00:14:45 +0000894
wdenkdb01a2e2004-04-15 23:14:49 +0000895#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
wdenkc6097192002-11-03 00:24:07 +0000896static void
897output_data(int dev, ulong *sect_buf, int words)
898{
wdenk1a344f22005-02-03 23:00:49 +0000899#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenka522fa02004-01-04 22:51:12 +0000900 uchar *dbuf;
901 volatile uchar *pbuf_even;
902 volatile uchar *pbuf_odd;
903
904 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
905 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
906 dbuf = (uchar *)sect_buf;
907 while (words--) {
wdenk5cf91d62004-04-23 20:32:05 +0000908 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000909 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000910 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000911 *pbuf_odd = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000912 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000913 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000914 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000915 *pbuf_odd = *dbuf++;
916 }
wdenk1a344f22005-02-03 23:00:49 +0000917#else
918 ushort *dbuf;
919 volatile ushort *pbuf;
920
921 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
922 dbuf = (ushort *)sect_buf;
923 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200924#if defined(CONFIG_PCS440EP)
925 /* not tested, because CF was write protected */
926 EIEIO;
927 *pbuf = ld_le16(dbuf++);
928 EIEIO;
929 *pbuf = ld_le16(dbuf++);
930#else
wdenk1a344f22005-02-03 23:00:49 +0000931 EIEIO;
932 *pbuf = *dbuf++;
933 EIEIO;
934 *pbuf = *dbuf++;
Heiko Schocher566a4942007-06-22 19:11:54 +0200935#endif
wdenk1a344f22005-02-03 23:00:49 +0000936 }
937#endif
wdenkc6097192002-11-03 00:24:07 +0000938}
wdenk2262cfe2002-11-18 00:14:45 +0000939#else /* ! __PPC__ */
940static void
941output_data(int dev, ulong *sect_buf, int words)
942{
wdenk15647dc2003-10-09 19:00:25 +0000943 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
wdenk2262cfe2002-11-18 00:14:45 +0000944}
945#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000946
wdenkdb01a2e2004-04-15 23:14:49 +0000947#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
wdenkc6097192002-11-03 00:24:07 +0000948static void
949input_data(int dev, ulong *sect_buf, int words)
950{
wdenk1a344f22005-02-03 23:00:49 +0000951#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenka522fa02004-01-04 22:51:12 +0000952 uchar *dbuf;
953 volatile uchar *pbuf_even;
954 volatile uchar *pbuf_odd;
955
956 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
957 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
958 dbuf = (uchar *)sect_buf;
959 while (words--) {
wdenka522fa02004-01-04 22:51:12 +0000960 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +0000961 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000962 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000963 *dbuf++ = *pbuf_odd;
wdenk5cf91d62004-04-23 20:32:05 +0000964 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000965 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000966 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +0000967 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000968 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000969 *dbuf++ = *pbuf_odd;
wdenk1a344f22005-02-03 23:00:49 +0000970 EIEIO;
971 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000972 }
wdenk1a344f22005-02-03 23:00:49 +0000973#else
974 ushort *dbuf;
975 volatile ushort *pbuf;
976
977 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
978 dbuf = (ushort *)sect_buf;
979
980 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
981
982 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200983#if defined(CONFIG_PCS440EP)
984 EIEIO;
985 *dbuf++ = ld_le16(pbuf);
986 EIEIO;
987 *dbuf++ = ld_le16(pbuf);
988#else
wdenk1a344f22005-02-03 23:00:49 +0000989 EIEIO;
990 *dbuf++ = *pbuf;
991 EIEIO;
992 *dbuf++ = *pbuf;
Heiko Schocher566a4942007-06-22 19:11:54 +0200993#endif
wdenk1a344f22005-02-03 23:00:49 +0000994 }
995#endif
wdenkc6097192002-11-03 00:24:07 +0000996}
wdenk2262cfe2002-11-18 00:14:45 +0000997#else /* ! __PPC__ */
998static void
999input_data(int dev, ulong *sect_buf, int words)
1000{
wdenk15647dc2003-10-09 19:00:25 +00001001 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
wdenk2262cfe2002-11-18 00:14:45 +00001002}
1003
1004#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +00001005
wdenkc7de8292002-11-19 11:04:11 +00001006#ifdef CONFIG_AMIGAONEG3SE
1007static void
1008input_data_short(int dev, ulong *sect_buf, int words)
1009{
1010 ushort *dbuf;
1011 volatile ushort *pbuf;
1012
1013 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1014 dbuf = (ushort *)sect_buf;
1015 while (words--) {
wdenk5cf91d62004-04-23 20:32:05 +00001016 EIEIO;
wdenkc7de8292002-11-19 11:04:11 +00001017 *dbuf++ = *pbuf;
wdenk5cf91d62004-04-23 20:32:05 +00001018 EIEIO;
wdenkc7de8292002-11-19 11:04:11 +00001019 }
1020
wdenkc40b2952004-03-13 23:29:43 +00001021 if (words&1) {
wdenk1a344f22005-02-03 23:00:49 +00001022 ushort dummy;
1023 dummy = *pbuf;
wdenkc7de8292002-11-19 11:04:11 +00001024 }
1025}
1026#endif
1027
wdenkc6097192002-11-03 00:24:07 +00001028/* -------------------------------------------------------------------------
1029 */
1030static void ide_ident (block_dev_desc_t *dev_desc)
1031{
1032 ulong iobuf[ATA_SECTORWORDS];
1033 unsigned char c;
1034 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
1035
wdenkc7de8292002-11-19 11:04:11 +00001036#ifdef CONFIG_AMIGAONEG3SE
1037 int max_bus_scan;
wdenkc7de8292002-11-19 11:04:11 +00001038 char *s;
wdenk64f70be2004-09-28 20:34:50 +00001039#endif
1040#ifdef CONFIG_ATAPI
1041 int retries = 0;
wdenkc7de8292002-11-19 11:04:11 +00001042 int do_retry = 0;
1043#endif
1044
wdenkc6097192002-11-03 00:24:07 +00001045#if 0
1046 int mode, cycle_time;
1047#endif
1048 int device;
1049 device=dev_desc->dev;
1050 printf (" Device %d: ", device);
1051
wdenkc7de8292002-11-19 11:04:11 +00001052#ifdef CONFIG_AMIGAONEG3SE
1053 s = getenv("ide_maxbus");
1054 if (s) {
1055 max_bus_scan = simple_strtol(s, NULL, 10);
1056 } else {
1057 max_bus_scan = CFG_IDE_MAXBUS;
1058 }
1059 if (device >= max_bus_scan*2) {
1060 dev_desc->type=DEV_TYPE_UNKNOWN;
1061 return;
1062 }
1063#endif
1064
wdenkc6097192002-11-03 00:24:07 +00001065 ide_led (DEVICE_LED(device), 1); /* LED on */
1066 /* Select device
1067 */
wdenk2262cfe2002-11-18 00:14:45 +00001068 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001069 dev_desc->if_type=IF_TYPE_IDE;
1070#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +00001071
wdenkc7de8292002-11-19 11:04:11 +00001072 do_retry = 0;
1073 retries = 0;
1074
1075 /* Warning: This will be tricky to read */
wdenkc40b2952004-03-13 23:29:43 +00001076 while (retries <= 1) {
wdenkc6097192002-11-03 00:24:07 +00001077 /* check signature */
wdenk2262cfe2002-11-18 00:14:45 +00001078 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1079 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1080 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
1081 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
wdenkc6097192002-11-03 00:24:07 +00001082 /* ATAPI Signature found */
1083 dev_desc->if_type=IF_TYPE_ATAPI;
1084 /* Start Ident Command
1085 */
wdenk2262cfe2002-11-18 00:14:45 +00001086 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001087 /*
1088 * Wait for completion - ATAPI devices need more time
1089 * to become ready
1090 */
1091 c = ide_wait (device, ATAPI_TIME_OUT);
wdenkc40b2952004-03-13 23:29:43 +00001092 } else
wdenkc6097192002-11-03 00:24:07 +00001093#endif
1094 {
1095 /* Start Ident Command
1096 */
wdenk2262cfe2002-11-18 00:14:45 +00001097 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001098
1099 /* Wait for completion
1100 */
1101 c = ide_wait (device, IDE_TIME_OUT);
1102 }
1103 ide_led (DEVICE_LED(device), 0); /* LED off */
1104
1105 if (((c & ATA_STAT_DRQ) == 0) ||
1106 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
wdenk64f70be2004-09-28 20:34:50 +00001107#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +00001108#ifdef CONFIG_AMIGAONEG3SE
wdenk64f70be2004-09-28 20:34:50 +00001109 s = getenv("ide_doreset");
1110 if (s && strcmp(s, "on") == 0)
1111#endif
wdenk1a344f22005-02-03 23:00:49 +00001112 {
1113 /* Need to soft reset the device in case it's an ATAPI... */
1114 debug ("Retrying...\n");
1115 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1116 udelay(100000);
1117 ide_outb (device, ATA_COMMAND, 0x08);
1118 udelay (500000); /* 500 ms */
1119 }
wdenk64f70be2004-09-28 20:34:50 +00001120 /* Select device
1121 */
1122 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1123 retries++;
wdenkc7de8292002-11-19 11:04:11 +00001124#else
wdenkc6097192002-11-03 00:24:07 +00001125 return;
wdenk64f70be2004-09-28 20:34:50 +00001126#endif
wdenkc6097192002-11-03 00:24:07 +00001127 }
wdenk64f70be2004-09-28 20:34:50 +00001128#ifdef CONFIG_ATAPI
1129 else
1130 break;
wdenkc7de8292002-11-19 11:04:11 +00001131 } /* see above - ugly to read */
wdenk64f70be2004-09-28 20:34:50 +00001132
1133 if (retries == 2) /* Not found */
1134 return;
1135#endif
wdenkc7de8292002-11-19 11:04:11 +00001136
wdenkc6097192002-11-03 00:24:07 +00001137 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1138
1139 ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1140 ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1141 ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +00001142#ifdef __LITTLE_ENDIAN
1143 /*
1144 * firmware revision and model number have Big Endian Byte
1145 * order in Word. Convert both to little endian.
1146 *
1147 * See CF+ and CompactFlash Specification Revision 2.0:
1148 * 6.2.1.6: Identfy Drive, Table 39 for more details
1149 */
1150
1151 strswab (dev_desc->revision);
1152 strswab (dev_desc->vendor);
1153#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +00001154
1155 if ((iop->config & 0x0080)==0x0080)
1156 dev_desc->removable = 1;
1157 else
1158 dev_desc->removable = 0;
1159
1160#if 0
1161 /*
1162 * Drive PIO mode autoselection
1163 */
1164 mode = iop->tPIO;
1165
1166 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1167 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1168 mode = 2;
wdenk1a344f22005-02-03 23:00:49 +00001169 debug ("Override tPIO -> 2\n");
wdenkc6097192002-11-03 00:24:07 +00001170 }
1171 if (iop->field_valid & 2) { /* drive implements ATA2? */
wdenk1a344f22005-02-03 23:00:49 +00001172 debug ("Drive implements ATA2\n");
wdenkc6097192002-11-03 00:24:07 +00001173 if (iop->capability & 8) { /* drive supports use_iordy? */
1174 cycle_time = iop->eide_pio_iordy;
1175 } else {
1176 cycle_time = iop->eide_pio;
1177 }
wdenk1a344f22005-02-03 23:00:49 +00001178 debug ("cycle time = %d\n", cycle_time);
wdenkc6097192002-11-03 00:24:07 +00001179 mode = 4;
1180 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1181 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1182 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1183 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1184 }
1185 printf ("PIO mode to use: PIO %d\n", mode);
1186#endif /* 0 */
1187
1188#ifdef CONFIG_ATAPI
1189 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1190 atapi_inquiry(dev_desc);
1191 return;
1192 }
1193#endif /* CONFIG_ATAPI */
1194
wdenkc3f9d492004-03-14 00:59:59 +00001195#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +00001196 /* swap shorts */
1197 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
wdenkc3f9d492004-03-14 00:59:59 +00001198#else /* ! __BIG_ENDIAN */
1199 /*
1200 * do not swap shorts on little endian
1201 *
1202 * See CF+ and CompactFlash Specification Revision 2.0:
1203 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1204 */
1205 dev_desc->lba = iop->lba_capacity;
1206#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +00001207
wdenk42dfe7a2004-03-14 22:25:36 +00001208#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001209 if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
wdenk6e592382004-04-18 17:39:38 +00001210 dev_desc->lba48 = 1;
1211 dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] |
wdenkc40b2952004-03-13 23:29:43 +00001212 ((unsigned long long)iop->lba48_capacity[1] << 16) |
1213 ((unsigned long long)iop->lba48_capacity[2] << 32) |
1214 ((unsigned long long)iop->lba48_capacity[3] << 48);
1215 } else {
wdenkc40b2952004-03-13 23:29:43 +00001216 dev_desc->lba48 = 0;
1217 }
1218#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +00001219 /* assuming HD */
1220 dev_desc->type=DEV_TYPE_HARDDISK;
1221 dev_desc->blksz=ATA_BLOCKSIZE;
1222 dev_desc->lun=0; /* just to fill something in... */
1223
1224#if 0 /* only used to test the powersaving mode,
1225 * if enabled, the drive goes after 5 sec
1226 * in standby mode */
wdenk2262cfe2002-11-18 00:14:45 +00001227 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001228 c = ide_wait (device, IDE_TIME_OUT);
wdenk2262cfe2002-11-18 00:14:45 +00001229 ide_outb (device, ATA_SECT_CNT, 1);
1230 ide_outb (device, ATA_LBA_LOW, 0);
1231 ide_outb (device, ATA_LBA_MID, 0);
1232 ide_outb (device, ATA_LBA_HIGH, 0);
wdenk1a344f22005-02-03 23:00:49 +00001233 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenk2262cfe2002-11-18 00:14:45 +00001234 ide_outb (device, ATA_COMMAND, 0xe3);
wdenkc6097192002-11-03 00:24:07 +00001235 udelay (50);
1236 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1237#endif
1238}
1239
1240
1241/* ------------------------------------------------------------------------- */
1242
Grant Likelyeb867a72007-02-20 09:05:45 +01001243ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001244{
1245 ulong n = 0;
1246 unsigned char c;
1247 unsigned char pwrsave=0; /* power save */
wdenk42dfe7a2004-03-14 22:25:36 +00001248#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001249 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +00001250
wdenkc40b2952004-03-13 23:29:43 +00001251 if (blknr & 0x0000fffff0000000) {
1252 /* more than 28 bits used, use 48bit mode */
1253 lba48 = 1;
1254 }
1255#endif
wdenk1a344f22005-02-03 23:00:49 +00001256 debug ("ide_read dev %d start %qX, blocks %lX buffer at %lX\n",
wdenkc6097192002-11-03 00:24:07 +00001257 device, blknr, blkcnt, (ulong)buffer);
1258
1259 ide_led (DEVICE_LED(device), 1); /* LED on */
1260
1261 /* Select device
1262 */
wdenk2262cfe2002-11-18 00:14:45 +00001263 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001264 c = ide_wait (device, IDE_TIME_OUT);
1265
1266 if (c & ATA_STAT_BUSY) {
1267 printf ("IDE read: device %d not ready\n", device);
1268 goto IDE_READ_E;
1269 }
1270
1271 /* first check if the drive is in Powersaving mode, if yes,
1272 * increase the timeout value */
wdenk2262cfe2002-11-18 00:14:45 +00001273 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
wdenkc6097192002-11-03 00:24:07 +00001274 udelay (50);
1275
1276 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1277
1278 if (c & ATA_STAT_BUSY) {
1279 printf ("IDE read: device %d not ready\n", device);
1280 goto IDE_READ_E;
1281 }
1282 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1283 printf ("No Powersaving mode %X\n", c);
1284 } else {
wdenk2262cfe2002-11-18 00:14:45 +00001285 c = ide_inb(device,ATA_SECT_CNT);
wdenk1a344f22005-02-03 23:00:49 +00001286 debug ("Powersaving %02X\n",c);
wdenkc6097192002-11-03 00:24:07 +00001287 if(c==0)
1288 pwrsave=1;
1289 }
1290
1291
1292 while (blkcnt-- > 0) {
1293
1294 c = ide_wait (device, IDE_TIME_OUT);
1295
1296 if (c & ATA_STAT_BUSY) {
1297 printf ("IDE read: device %d not ready\n", device);
1298 break;
1299 }
wdenk42dfe7a2004-03-14 22:25:36 +00001300#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001301 if (lba48) {
1302 /* write high bits */
1303 ide_outb (device, ATA_SECT_CNT, 0);
1304 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1305 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1306 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1307 }
1308#endif
wdenk2262cfe2002-11-18 00:14:45 +00001309 ide_outb (device, ATA_SECT_CNT, 1);
1310 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1311 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1312 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001313
wdenk42dfe7a2004-03-14 22:25:36 +00001314#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001315 if (lba48) {
1316 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1317 ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1318
1319 } else
1320#endif
1321 {
1322 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1323 ATA_DEVICE(device) |
1324 ((blknr >> 24) & 0xF) );
1325 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1326 }
wdenkc6097192002-11-03 00:24:07 +00001327
1328 udelay (50);
1329
1330 if(pwrsave) {
1331 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1332 pwrsave=0;
1333 } else {
1334 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1335 }
1336
1337 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
wdenk42dfe7a2004-03-14 22:25:36 +00001338#if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
wdenkc40b2952004-03-13 23:29:43 +00001339 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001340 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001341#else
1342 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1343 device, (ulong)blknr, c);
1344#endif
wdenkc6097192002-11-03 00:24:07 +00001345 break;
1346 }
1347
1348 input_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001349 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001350
1351 ++n;
1352 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001353 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001354 }
1355IDE_READ_E:
1356 ide_led (DEVICE_LED(device), 0); /* LED off */
1357 return (n);
1358}
1359
1360/* ------------------------------------------------------------------------- */
1361
1362
Grant Likelyeb867a72007-02-20 09:05:45 +01001363ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001364{
1365 ulong n = 0;
1366 unsigned char c;
wdenk42dfe7a2004-03-14 22:25:36 +00001367#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001368 unsigned char lba48 = 0;
1369
1370 if (blknr & 0x0000fffff0000000) {
1371 /* more than 28 bits used, use 48bit mode */
1372 lba48 = 1;
1373 }
1374#endif
wdenkc6097192002-11-03 00:24:07 +00001375
1376 ide_led (DEVICE_LED(device), 1); /* LED on */
1377
1378 /* Select device
1379 */
wdenk2262cfe2002-11-18 00:14:45 +00001380 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001381
1382 while (blkcnt-- > 0) {
1383
1384 c = ide_wait (device, IDE_TIME_OUT);
1385
1386 if (c & ATA_STAT_BUSY) {
1387 printf ("IDE read: device %d not ready\n", device);
1388 goto WR_OUT;
1389 }
wdenk42dfe7a2004-03-14 22:25:36 +00001390#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001391 if (lba48) {
1392 /* write high bits */
1393 ide_outb (device, ATA_SECT_CNT, 0);
1394 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1395 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1396 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1397 }
1398#endif
wdenk2262cfe2002-11-18 00:14:45 +00001399 ide_outb (device, ATA_SECT_CNT, 1);
1400 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1401 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1402 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001403
wdenk42dfe7a2004-03-14 22:25:36 +00001404#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001405 if (lba48) {
1406 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1407 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
1408
1409 } else
1410#endif
1411 {
1412 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1413 ATA_DEVICE(device) |
1414 ((blknr >> 24) & 0xF) );
1415 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1416 }
wdenkc6097192002-11-03 00:24:07 +00001417
1418 udelay (50);
1419
1420 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1421
1422 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
wdenk42dfe7a2004-03-14 22:25:36 +00001423#if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
wdenkc40b2952004-03-13 23:29:43 +00001424 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001425 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001426#else
1427 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1428 device, (ulong)blknr, c);
1429#endif
wdenkc6097192002-11-03 00:24:07 +00001430 goto WR_OUT;
1431 }
1432
1433 output_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001434 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001435 ++n;
1436 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001437 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001438 }
1439WR_OUT:
1440 ide_led (DEVICE_LED(device), 0); /* LED off */
1441 return (n);
1442}
1443
1444/* ------------------------------------------------------------------------- */
1445
1446/*
1447 * copy src to dest, skipping leading and trailing blanks and null
1448 * terminate the string
wdenk7d7ce412004-03-17 01:13:07 +00001449 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +00001450 */
wdenk7d7ce412004-03-17 01:13:07 +00001451static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
wdenkc6097192002-11-03 00:24:07 +00001452{
wdenk7d7ce412004-03-17 01:13:07 +00001453 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +00001454
wdenk7d7ce412004-03-17 01:13:07 +00001455 last = dst;
wdenk6fb6af62004-03-23 23:20:24 +00001456 end = src + len - 1;
wdenk7d7ce412004-03-17 01:13:07 +00001457
1458 /* reserve space for '\0' */
1459 if (len < 2)
1460 goto OUT;
wdenkefa329c2004-03-23 20:18:25 +00001461
wdenk7d7ce412004-03-17 01:13:07 +00001462 /* skip leading white space */
1463 while ((*src) && (src<end) && (*src==' '))
1464 ++src;
1465
1466 /* copy string, omitting trailing white space */
1467 while ((*src) && (src<end)) {
1468 *dst++ = *src;
1469 if (*src++ != ' ')
1470 last = dst;
wdenkc6097192002-11-03 00:24:07 +00001471 }
wdenk7d7ce412004-03-17 01:13:07 +00001472OUT:
1473 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +00001474}
1475
1476/* ------------------------------------------------------------------------- */
1477
1478/*
1479 * Wait until Busy bit is off, or timeout (in ms)
1480 * Return last status
1481 */
1482static uchar ide_wait (int dev, ulong t)
1483{
1484 ulong delay = 10 * t; /* poll every 100 us */
1485 uchar c;
1486
wdenk2262cfe2002-11-18 00:14:45 +00001487 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
wdenkc6097192002-11-03 00:24:07 +00001488 udelay (100);
1489 if (delay-- == 0) {
1490 break;
1491 }
1492 }
1493 return (c);
1494}
1495
1496/* ------------------------------------------------------------------------- */
1497
1498#ifdef CONFIG_IDE_RESET
1499extern void ide_set_reset(int idereset);
1500
1501static void ide_reset (void)
1502{
1503#if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1504 volatile immap_t *immr = (immap_t *)CFG_IMMR;
1505#endif
1506 int i;
1507
1508 curr_device = -1;
1509 for (i=0; i<CFG_IDE_MAXBUS; ++i)
1510 ide_bus_ok[i] = 0;
1511 for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1512 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1513
1514 ide_set_reset (1); /* assert reset */
1515
1516 WATCHDOG_RESET();
1517
1518#ifdef CFG_PB_12V_ENABLE
1519 immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */
1520 immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1521 immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1522 immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE;
1523
1524 /* wait 500 ms for the voltage to stabilize
1525 */
1526 for (i=0; i<500; ++i) {
1527 udelay (1000);
1528 }
1529
1530 immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */
1531#endif /* CFG_PB_12V_ENABLE */
1532
1533#ifdef CFG_PB_IDE_MOTOR
1534 /* configure IDE Motor voltage monitor pin as input */
1535 immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1536 immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1537 immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1538
1539 /* wait up to 1 s for the motor voltage to stabilize
1540 */
1541 for (i=0; i<1000; ++i) {
1542 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1543 break;
1544 }
1545 udelay (1000);
1546 }
1547
1548 if (i == 1000) { /* Timeout */
1549 printf ("\nWarning: 5V for IDE Motor missing\n");
1550# ifdef CONFIG_STATUS_LED
1551# ifdef STATUS_LED_YELLOW
1552 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1553# endif
1554# ifdef STATUS_LED_GREEN
1555 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1556# endif
1557# endif /* CONFIG_STATUS_LED */
1558 }
1559#endif /* CFG_PB_IDE_MOTOR */
1560
1561 WATCHDOG_RESET();
1562
1563 /* de-assert RESET signal */
1564 ide_set_reset(0);
1565
1566 /* wait 250 ms */
1567 for (i=0; i<250; ++i) {
1568 udelay (1000);
1569 }
1570}
1571
1572#endif /* CONFIG_IDE_RESET */
1573
1574/* ------------------------------------------------------------------------- */
1575
wdenke2ffd592004-12-31 09:32:47 +00001576#if defined(CONFIG_IDE_LED) && \
1577 !defined(CONFIG_AMIGAONEG3SE)&& \
1578 !defined(CONFIG_CPC45) && \
1579 !defined(CONFIG_HMI10) && \
1580 !defined(CONFIG_KUP4K) && \
1581 !defined(CONFIG_KUP4X)
wdenkc6097192002-11-03 00:24:07 +00001582
1583static uchar led_buffer = 0; /* Buffer for current LED status */
1584
1585static void ide_led (uchar led, uchar status)
1586{
1587 uchar *led_port = LED_PORT;
1588
1589 if (status) { /* switch LED on */
1590 led_buffer |= led;
1591 } else { /* switch LED off */
1592 led_buffer &= ~led;
1593 }
1594
1595 *led_port = led_buffer;
1596}
1597
1598#endif /* CONFIG_IDE_LED */
1599
1600/* ------------------------------------------------------------------------- */
1601
1602#ifdef CONFIG_ATAPI
1603/****************************************************************************
1604 * ATAPI Support
1605 */
1606
wdenkdb01a2e2004-04-15 23:14:49 +00001607#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
wdenkc6097192002-11-03 00:24:07 +00001608/* since ATAPI may use commands with not 4 bytes alligned length
1609 * we have our own transfer functions, 2 bytes alligned */
1610static void
1611output_data_shorts(int dev, ushort *sect_buf, int shorts)
1612{
wdenk1a344f22005-02-03 23:00:49 +00001613#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenka522fa02004-01-04 22:51:12 +00001614 uchar *dbuf;
1615 volatile uchar *pbuf_even;
1616 volatile uchar *pbuf_odd;
1617
1618 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1619 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1620 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001621 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001622 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +00001623 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001624 *pbuf_odd = *dbuf++;
1625 }
wdenk1a344f22005-02-03 23:00:49 +00001626#else
wdenkc6097192002-11-03 00:24:07 +00001627 ushort *dbuf;
1628 volatile ushort *pbuf;
1629
1630 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1631 dbuf = (ushort *)sect_buf;
wdenkdb01a2e2004-04-15 23:14:49 +00001632
wdenk1a344f22005-02-03 23:00:49 +00001633 debug ("in output data shorts base for read is %lx\n", (unsigned long) pbuf);
wdenkdb01a2e2004-04-15 23:14:49 +00001634
wdenkc6097192002-11-03 00:24:07 +00001635 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001636 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +00001637 *pbuf = *dbuf++;
wdenkc6097192002-11-03 00:24:07 +00001638 }
wdenk1a344f22005-02-03 23:00:49 +00001639#endif
1640}
1641
1642static void
1643input_data_shorts(int dev, ushort *sect_buf, int shorts)
1644{
1645#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenka522fa02004-01-04 22:51:12 +00001646 uchar *dbuf;
1647 volatile uchar *pbuf_even;
1648 volatile uchar *pbuf_odd;
1649
1650 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1651 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1652 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001653 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001654 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +00001655 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001656 *dbuf++ = *pbuf_odd;
1657 }
wdenk1a344f22005-02-03 23:00:49 +00001658#else
1659 ushort *dbuf;
1660 volatile ushort *pbuf;
1661
1662 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1663 dbuf = (ushort *)sect_buf;
1664
1665 debug("in input data shorts base for read is %lx\n", (unsigned long) pbuf);
1666
1667 while (shorts--) {
1668 EIEIO;
1669 *dbuf++ = *pbuf;
1670 }
1671#endif
wdenkc6097192002-11-03 00:24:07 +00001672}
1673
wdenk2262cfe2002-11-18 00:14:45 +00001674#else /* ! __PPC__ */
1675static void
1676output_data_shorts(int dev, ushort *sect_buf, int shorts)
1677{
wdenk15647dc2003-10-09 19:00:25 +00001678 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001679}
1680
wdenk2262cfe2002-11-18 00:14:45 +00001681static void
1682input_data_shorts(int dev, ushort *sect_buf, int shorts)
1683{
wdenk15647dc2003-10-09 19:00:25 +00001684 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001685}
1686
1687#endif /* __PPC__ */
1688
wdenkc6097192002-11-03 00:24:07 +00001689/*
1690 * Wait until (Status & mask) == res, or timeout (in ms)
1691 * Return last status
1692 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1693 * and then they set their DRQ Bit
1694 */
1695static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1696{
1697 ulong delay = 10 * t; /* poll every 100 us */
1698 uchar c;
1699
wdenk2262cfe2002-11-18 00:14:45 +00001700 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1701 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001702 /* break if error occurs (doesn't make sense to wait more) */
1703 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1704 break;
1705 udelay (100);
1706 if (delay-- == 0) {
1707 break;
1708 }
1709 }
1710 return (c);
1711}
1712
1713/*
1714 * issue an atapi command
1715 */
1716unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1717{
1718 unsigned char c,err,mask,res;
1719 int n;
1720 ide_led (DEVICE_LED(device), 1); /* LED on */
1721
1722 /* Select device
1723 */
1724 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1725 res = 0;
wdenkc7de8292002-11-19 11:04:11 +00001726#ifdef CONFIG_AMIGAONEG3SE
1727# warning THF: Removed LBA mode ???
1728#endif
wdenk2262cfe2002-11-18 00:14:45 +00001729 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001730 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1731 if ((c & mask) != res) {
1732 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1733 err=0xFF;
1734 goto AI_OUT;
1735 }
1736 /* write taskfile */
wdenk2262cfe2002-11-18 00:14:45 +00001737 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
wdenkc7de8292002-11-19 11:04:11 +00001738 ide_outb (device, ATA_SECT_CNT, 0);
1739 ide_outb (device, ATA_SECT_NUM, 0);
wdenk2262cfe2002-11-18 00:14:45 +00001740 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
wdenkc7de8292002-11-19 11:04:11 +00001741 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1742#ifdef CONFIG_AMIGAONEG3SE
1743# warning THF: Removed LBA mode ???
1744#endif
wdenk2262cfe2002-11-18 00:14:45 +00001745 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001746
wdenk2262cfe2002-11-18 00:14:45 +00001747 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
wdenkc6097192002-11-03 00:24:07 +00001748 udelay (50);
1749
1750 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1751 res = ATA_STAT_DRQ;
1752 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1753
1754 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1755 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1756 err=0xFF;
1757 goto AI_OUT;
1758 }
1759
1760 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1761 /* ATAPI Command written wait for completition */
1762 udelay (5000); /* device must set bsy */
1763
1764 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1765 /* if no data wait for DRQ = 0 BSY = 0
1766 * if data wait for DRQ = 1 BSY = 0 */
1767 res=0;
1768 if(buflen)
1769 res = ATA_STAT_DRQ;
1770 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1771 if ((c & mask) != res ) {
1772 if (c & ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001773 err=(ide_inb(device,ATA_ERROR_REG))>>4;
wdenk1a344f22005-02-03 23:00:49 +00001774 debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c);
wdenkc6097192002-11-03 00:24:07 +00001775 } else {
1776 printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1777 err=0xFF;
1778 }
1779 goto AI_OUT;
1780 }
wdenk2262cfe2002-11-18 00:14:45 +00001781 n=ide_inb(device, ATA_CYL_HIGH);
wdenkc6097192002-11-03 00:24:07 +00001782 n<<=8;
wdenk2262cfe2002-11-18 00:14:45 +00001783 n+=ide_inb(device, ATA_CYL_LOW);
wdenkc6097192002-11-03 00:24:07 +00001784 if(n>buflen) {
1785 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1786 err=0xff;
1787 goto AI_OUT;
1788 }
1789 if((n==0)&&(buflen<0)) {
1790 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1791 err=0xff;
1792 goto AI_OUT;
1793 }
1794 if(n!=buflen) {
wdenk1a344f22005-02-03 23:00:49 +00001795 debug ("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
wdenkc6097192002-11-03 00:24:07 +00001796 }
1797 if(n!=0) { /* data transfer */
wdenk1a344f22005-02-03 23:00:49 +00001798 debug ("ATAPI_ISSUE: %d Bytes to transfer\n",n);
wdenkc6097192002-11-03 00:24:07 +00001799 /* we transfer shorts */
1800 n>>=1;
1801 /* ok now decide if it is an in or output */
wdenk2262cfe2002-11-18 00:14:45 +00001802 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
wdenk1a344f22005-02-03 23:00:49 +00001803 debug ("Write to device\n");
wdenkc6097192002-11-03 00:24:07 +00001804 output_data_shorts(device,(unsigned short *)buffer,n);
1805 } else {
wdenk1a344f22005-02-03 23:00:49 +00001806 debug ("Read from device @ %p shorts %d\n",buffer,n);
wdenkc6097192002-11-03 00:24:07 +00001807 input_data_shorts(device,(unsigned short *)buffer,n);
1808 }
1809 }
1810 udelay(5000); /* seems that some CD ROMs need this... */
1811 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1812 res=0;
1813 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1814 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001815 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
wdenk1a344f22005-02-03 23:00:49 +00001816 debug ("atapi_issue 2 returned sense key %X status %X\n",err,c);
wdenkc6097192002-11-03 00:24:07 +00001817 } else {
1818 err = 0;
1819 }
1820AI_OUT:
1821 ide_led (DEVICE_LED(device), 0); /* LED off */
1822 return (err);
1823}
1824
1825/*
1826 * sending the command to atapi_issue. If an status other than good
1827 * returns, an request_sense will be issued
1828 */
1829
1830#define ATAPI_DRIVE_NOT_READY 100
1831#define ATAPI_UNIT_ATTN 10
1832
1833unsigned char atapi_issue_autoreq (int device,
1834 unsigned char* ccb,
1835 int ccblen,
1836 unsigned char *buffer,
1837 int buflen)
1838{
1839 unsigned char sense_data[18],sense_ccb[12];
1840 unsigned char res,key,asc,ascq;
1841 int notready,unitattn;
1842
wdenkc7de8292002-11-19 11:04:11 +00001843#ifdef CONFIG_AMIGAONEG3SE
1844 char *s;
1845 unsigned int timeout, retrycnt;
1846
1847 s = getenv("ide_cd_timeout");
1848 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1849
1850 retrycnt = 0;
1851#endif
1852
wdenkc6097192002-11-03 00:24:07 +00001853 unitattn=ATAPI_UNIT_ATTN;
1854 notready=ATAPI_DRIVE_NOT_READY;
1855
1856retry:
1857 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1858 if (res==0)
1859 return (0); /* Ok */
1860
1861 if (res==0xFF)
1862 return (0xFF); /* error */
1863
wdenk1a344f22005-02-03 23:00:49 +00001864 debug ("(auto_req)atapi_issue returned sense key %X\n",res);
wdenkc6097192002-11-03 00:24:07 +00001865
1866 memset(sense_ccb,0,sizeof(sense_ccb));
1867 memset(sense_data,0,sizeof(sense_data));
1868 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
wdenkc7de8292002-11-19 11:04:11 +00001869 sense_ccb[4]=18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001870
1871 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1872 key=(sense_data[2]&0xF);
1873 asc=(sense_data[12]);
1874 ascq=(sense_data[13]);
1875
wdenk1a344f22005-02-03 23:00:49 +00001876 debug ("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1877 debug (" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
wdenkc6097192002-11-03 00:24:07 +00001878 sense_data[0],
1879 key,
1880 asc,
1881 ascq);
1882
1883 if((key==0))
1884 return 0; /* ok device ready */
1885
1886 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1887 if(unitattn-->0) {
1888 udelay(200*1000);
1889 goto retry;
1890 }
1891 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1892 goto error;
1893 }
1894 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1895 if (notready-->0) {
1896 udelay(200*1000);
1897 goto retry;
1898 }
1899 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1900 goto error;
1901 }
1902 if(asc==0x3a) {
wdenk1a344f22005-02-03 23:00:49 +00001903 debug ("Media not present\n");
wdenkc6097192002-11-03 00:24:07 +00001904 goto error;
1905 }
wdenkc7de8292002-11-19 11:04:11 +00001906
1907#ifdef CONFIG_AMIGAONEG3SE
1908 if ((sense_data[2]&0xF)==0x0B) {
wdenk1a344f22005-02-03 23:00:49 +00001909 debug ("ABORTED COMMAND...retry\n");
wdenkc7de8292002-11-19 11:04:11 +00001910 if (retrycnt++ < 4)
1911 goto retry;
1912 return (0xFF);
1913 }
1914
1915 if ((sense_data[2]&0xf) == 0x02 &&
1916 sense_data[12] == 0x04 &&
1917 sense_data[13] == 0x01 ) {
wdenk1a344f22005-02-03 23:00:49 +00001918 debug ("Waiting for unit to become active\n");
wdenkc7de8292002-11-19 11:04:11 +00001919 udelay(timeout);
1920 if (retrycnt++ < 4)
1921 goto retry;
1922 return 0xFF;
1923 }
1924#endif /* CONFIG_AMIGAONEG3SE */
1925
wdenkc6097192002-11-03 00:24:07 +00001926 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1927error:
wdenk1a344f22005-02-03 23:00:49 +00001928 debug ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
wdenkc6097192002-11-03 00:24:07 +00001929 return (0xFF);
1930}
1931
1932
wdenkc6097192002-11-03 00:24:07 +00001933static void atapi_inquiry(block_dev_desc_t * dev_desc)
1934{
1935 unsigned char ccb[12]; /* Command descriptor block */
1936 unsigned char iobuf[64]; /* temp buf */
1937 unsigned char c;
1938 int device;
1939
1940 device=dev_desc->dev;
1941 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1942 dev_desc->block_read=atapi_read;
1943
1944 memset(ccb,0,sizeof(ccb));
1945 memset(iobuf,0,sizeof(iobuf));
1946
1947 ccb[0]=ATAPI_CMD_INQUIRY;
1948 ccb[4]=40; /* allocation Legnth */
1949 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1950
wdenk1a344f22005-02-03 23:00:49 +00001951 debug ("ATAPI_CMD_INQUIRY returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001952 if (c!=0)
1953 return;
1954
1955 /* copy device ident strings */
1956 ident_cpy(dev_desc->vendor,&iobuf[8],8);
1957 ident_cpy(dev_desc->product,&iobuf[16],16);
1958 ident_cpy(dev_desc->revision,&iobuf[32],5);
1959
1960 dev_desc->lun=0;
1961 dev_desc->lba=0;
1962 dev_desc->blksz=0;
1963 dev_desc->type=iobuf[0] & 0x1f;
1964
1965 if ((iobuf[1]&0x80)==0x80)
1966 dev_desc->removable = 1;
1967 else
1968 dev_desc->removable = 0;
1969
1970 memset(ccb,0,sizeof(ccb));
1971 memset(iobuf,0,sizeof(iobuf));
1972 ccb[0]=ATAPI_CMD_START_STOP;
1973 ccb[4]=0x03; /* start */
1974
1975 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1976
wdenk1a344f22005-02-03 23:00:49 +00001977 debug ("ATAPI_CMD_START_STOP returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001978 if (c!=0)
1979 return;
1980
1981 memset(ccb,0,sizeof(ccb));
1982 memset(iobuf,0,sizeof(iobuf));
1983 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1984
wdenk1a344f22005-02-03 23:00:49 +00001985 debug ("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001986 if (c!=0)
1987 return;
1988
1989 memset(ccb,0,sizeof(ccb));
1990 memset(iobuf,0,sizeof(iobuf));
1991 ccb[0]=ATAPI_CMD_READ_CAP;
1992 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
wdenk1a344f22005-02-03 23:00:49 +00001993 debug ("ATAPI_CMD_READ_CAP returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001994 if (c!=0)
1995 return;
1996
wdenk1a344f22005-02-03 23:00:49 +00001997 debug ("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
wdenkc6097192002-11-03 00:24:07 +00001998 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1999 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
2000
2001 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
2002 ((unsigned long)iobuf[1]<<16) +
2003 ((unsigned long)iobuf[2]<< 8) +
2004 ((unsigned long)iobuf[3]);
2005 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
2006 ((unsigned long)iobuf[5]<<16) +
2007 ((unsigned long)iobuf[6]<< 8) +
2008 ((unsigned long)iobuf[7]);
wdenk42dfe7a2004-03-14 22:25:36 +00002009#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00002010 dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
wdenk42dfe7a2004-03-14 22:25:36 +00002011#endif
wdenkc6097192002-11-03 00:24:07 +00002012 return;
2013}
2014
2015
2016/*
2017 * atapi_read:
2018 * we transfer only one block per command, since the multiple DRQ per
2019 * command is not yet implemented
2020 */
2021#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
2022#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
2023#define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
2024
Grant Likelyeb867a72007-02-20 09:05:45 +01002025ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00002026{
2027 ulong n = 0;
2028 unsigned char ccb[12]; /* Command descriptor block */
2029 ulong cnt;
2030
wdenk1a344f22005-02-03 23:00:49 +00002031 debug ("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
wdenkc6097192002-11-03 00:24:07 +00002032 device, blknr, blkcnt, (ulong)buffer);
2033
2034 do {
2035 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
2036 cnt=ATAPI_READ_MAX_BLOCK;
2037 } else {
2038 cnt=blkcnt;
2039 }
2040 ccb[0]=ATAPI_CMD_READ_12;
2041 ccb[1]=0; /* reserved */
2042 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
2043 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
2044 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
2045 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
2046 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
2047 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
2048 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
2049 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
2050 ccb[10]=0; /* reserved */
2051 ccb[11]=0; /* reserved */
2052
2053 if (atapi_issue_autoreq(device,ccb,12,
2054 (unsigned char *)buffer,
2055 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
2056 return (n);
2057 }
2058 n+=cnt;
2059 blkcnt-=cnt;
2060 blknr+=cnt;
Greg Lopp0b945042007-04-13 08:02:24 +02002061 buffer+=(cnt*ATAPI_READ_BLOCK_SIZE);
wdenkc6097192002-11-03 00:24:07 +00002062 } while (blkcnt > 0);
2063 return (n);
2064}
2065
2066/* ------------------------------------------------------------------------- */
2067
2068#endif /* CONFIG_ATAPI */
2069
wdenk0d498392003-07-01 21:06:45 +00002070U_BOOT_CMD(
2071 ide, 5, 1, do_ide,
wdenk8bde7f72003-06-27 21:31:46 +00002072 "ide - IDE sub-system\n",
2073 "reset - reset IDE controller\n"
2074 "ide info - show available IDE devices\n"
2075 "ide device [dev] - show or set current device\n"
2076 "ide part [dev] - print partition table of one or all IDE devices\n"
2077 "ide read addr blk# cnt\n"
2078 "ide write addr blk# cnt - read/write `cnt'"
2079 " blocks starting at block `blk#'\n"
2080 " to/from memory address `addr'\n"
2081);
2082
wdenk0d498392003-07-01 21:06:45 +00002083U_BOOT_CMD(
2084 diskboot, 3, 1, do_diskboot,
wdenk8bde7f72003-06-27 21:31:46 +00002085 "diskboot- boot from IDE device\n",
2086 "loadAddr dev:part\n"
2087);
2088
Jon Loeligerc76fe472007-07-08 18:02:23 -05002089#endif