blob: 7eb19cf2cff4ef28b204ab7ffefe06c38b46aa89 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk34c202c2011-10-29 09:41:40 +00002 * (C) Copyright 2000-2011
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 */
Albert Aribaud113bfe42010-08-08 05:17:06 +053028
wdenkc6097192002-11-03 00:24:07 +000029#include <common.h>
30#include <config.h>
31#include <watchdog.h>
32#include <command.h>
33#include <image.h>
34#include <asm/byteorder.h>
Heiko Schocherf98984c2007-08-28 17:39:14 +020035#include <asm/io.h>
Grant Likely735dd972007-02-20 09:04:34 +010036
wdenkc6097192002-11-03 00:24:07 +000037#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
38# include <pcmcia.h>
39#endif
Grant Likely735dd972007-02-20 09:04:34 +010040
wdenkc6097192002-11-03 00:24:07 +000041#ifdef CONFIG_8xx
42# include <mpc8xx.h>
43#endif
Grant Likely735dd972007-02-20 09:04:34 +010044
wdenk132ba5f2004-02-27 08:20:54 +000045#ifdef CONFIG_MPC5xxx
46#include <mpc5xxx.h>
47#endif
Grant Likely735dd972007-02-20 09:04:34 +010048
wdenkc6097192002-11-03 00:24:07 +000049#include <ide.h>
50#include <ata.h>
Grant Likely735dd972007-02-20 09:04:34 +010051
wdenkc6097192002-11-03 00:24:07 +000052#ifdef CONFIG_STATUS_LED
53# include <status_led.h>
54#endif
Grant Likely735dd972007-02-20 09:04:34 +010055
wdenk5cf91d62004-04-23 20:32:05 +000056#ifdef __PPC__
57# define EIEIO __asm__ volatile ("eieio")
wdenk1a344f22005-02-03 23:00:49 +000058# define SYNC __asm__ volatile ("sync")
wdenk5cf91d62004-04-23 20:32:05 +000059#else
60# define EIEIO /* nothing */
wdenk1a344f22005-02-03 23:00:49 +000061# define SYNC /* nothing */
wdenkc6097192002-11-03 00:24:07 +000062#endif
63
wdenkc6097192002-11-03 00:24:07 +000064/* ------------------------------------------------------------------------- */
65
66/* Current I/O Device */
67static int curr_device = -1;
68
69/* Current offset for IDE0 / IDE1 bus access */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
71#if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
72 CONFIG_SYS_ATA_IDE0_OFFSET,
wdenkc6097192002-11-03 00:24:07 +000073#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074#if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
75 CONFIG_SYS_ATA_IDE1_OFFSET,
wdenkc6097192002-11-03 00:24:07 +000076#endif
77};
78
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020079static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
wdenkc6097192002-11-03 00:24:07 +000080
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
wdenkc6097192002-11-03 00:24:07 +000082/* ------------------------------------------------------------------------- */
83
wdenkc6097192002-11-03 00:24:07 +000084#ifdef CONFIG_IDE_RESET
85static void ide_reset (void);
86#else
87#define ide_reset() /* dummy */
88#endif
89
90static void ide_ident (block_dev_desc_t *dev_desc);
91static uchar ide_wait (int dev, ulong t);
92
93#define IDE_TIME_OUT 2000 /* 2 sec timeout */
94
95#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
96
97#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
98
wdenkc6097192002-11-03 00:24:07 +000099static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
100
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200101#ifndef CONFIG_SYS_ATA_PORT_ADDR
102#define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
Heiko Schocher566a4942007-06-22 19:11:54 +0200103#endif
wdenkc6097192002-11-03 00:24:07 +0000104
105#ifdef CONFIG_ATAPI
106static void atapi_inquiry(block_dev_desc_t *dev_desc);
Grant Likelyeb867a72007-02-20 09:05:45 +0100107ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer);
wdenkc6097192002-11-03 00:24:07 +0000108#endif
109
110
wdenkc6097192002-11-03 00:24:07 +0000111/* ------------------------------------------------------------------------- */
112
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000113int do_ide(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000114{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000115 int rcode = 0;
wdenkc6097192002-11-03 00:24:07 +0000116
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000117 switch (argc) {
118 case 0:
119 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000120 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000121 case 2:
122 if (strncmp(argv[1], "res", 3) == 0) {
123 puts("\nReset IDE"
124#ifdef CONFIG_IDE_8xx_DIRECT
125 " on PCMCIA " PCMCIA_SLOT_MSG
126#endif
127 ": ");
wdenkc6097192002-11-03 00:24:07 +0000128
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000129 ide_init();
130 return 0;
131 } else if (strncmp(argv[1], "inf", 3) == 0) {
132 int i;
133
134 putc('\n');
135
136 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
137 if (ide_dev_desc[i].type == DEV_TYPE_UNKNOWN)
138 continue; /* list only known devices */
139 printf("IDE device %d: ", i);
140 dev_print(&ide_dev_desc[i]);
141 }
142 return 0;
143
144 } else if (strncmp(argv[1], "dev", 3) == 0) {
145 if ((curr_device < 0)
146 || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
147 puts("\nno IDE devices available\n");
148 return 1;
149 }
150 printf("\nIDE device %d: ", curr_device);
151 dev_print(&ide_dev_desc[curr_device]);
152 return 0;
153 } else if (strncmp(argv[1], "part", 4) == 0) {
154 int dev, ok;
155
156 for (ok = 0, dev = 0;
157 dev < CONFIG_SYS_IDE_MAXDEVICE;
158 ++dev) {
159 if (ide_dev_desc[dev].part_type !=
160 PART_TYPE_UNKNOWN) {
161 ++ok;
162 if (dev)
163 putc('\n');
164 print_part(&ide_dev_desc[dev]);
165 }
166 }
167 if (!ok) {
168 puts("\nno IDE devices available\n");
169 rcode++;
170 }
171 return rcode;
172 }
Simon Glass4c12eeb2011-12-10 08:44:01 +0000173 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000174 case 3:
175 if (strncmp(argv[1], "dev", 3) == 0) {
176 int dev = (int) simple_strtoul(argv[2], NULL, 10);
177
178 printf("\nIDE device %d: ", dev);
179 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
180 puts("unknown device\n");
181 return 1;
182 }
183 dev_print(&ide_dev_desc[dev]);
184 /*ide_print (dev); */
185
186 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
187 return 1;
188
189 curr_device = dev;
190
191 puts("... is now current device\n");
192
193 return 0;
194 } else if (strncmp(argv[1], "part", 4) == 0) {
195 int dev = (int) simple_strtoul(argv[2], NULL, 10);
196
197 if (ide_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
198 print_part(&ide_dev_desc[dev]);
199 } else {
200 printf("\nIDE device %d not available\n",
201 dev);
202 rcode = 1;
203 }
204 return rcode;
205 }
206
Simon Glass4c12eeb2011-12-10 08:44:01 +0000207 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000208 default:
209 /* at least 4 args */
210
211 if (strcmp(argv[1], "read") == 0) {
212 ulong addr = simple_strtoul(argv[2], NULL, 16);
213 ulong cnt = simple_strtoul(argv[4], NULL, 16);
214 ulong n;
215
216#ifdef CONFIG_SYS_64BIT_LBA
217 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
218
219 printf("\nIDE read: device %d block # %lld, count %ld ... ",
220 curr_device, blk, cnt);
221#else
222 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
223
224 printf("\nIDE read: device %d block # %ld, count %ld ... ",
225 curr_device, blk, cnt);
226#endif
227
228 n = ide_dev_desc[curr_device].block_read(curr_device,
229 blk, cnt,
230 (ulong *)addr);
231 /* flush cache after read */
232 flush_cache(addr,
233 cnt * ide_dev_desc[curr_device].blksz);
234
235 printf("%ld blocks read: %s\n",
236 n, (n == cnt) ? "OK" : "ERROR");
237 if (n == cnt)
238 return 0;
239 else
240 return 1;
241 } else if (strcmp(argv[1], "write") == 0) {
242 ulong addr = simple_strtoul(argv[2], NULL, 16);
243 ulong cnt = simple_strtoul(argv[4], NULL, 16);
244 ulong n;
245
246#ifdef CONFIG_SYS_64BIT_LBA
247 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
248
249 printf("\nIDE write: device %d block # %lld, count %ld ... ",
250 curr_device, blk, cnt);
251#else
252 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
253
254 printf("\nIDE write: device %d block # %ld, count %ld ... ",
255 curr_device, blk, cnt);
256#endif
257 n = ide_write(curr_device, blk, cnt, (ulong *) addr);
258
259 printf("%ld blocks written: %s\n",
260 n, (n == cnt) ? "OK" : "ERROR");
261 if (n == cnt)
262 return 0;
263 else
264 return 1;
265 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +0000266 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000267 }
268
269 return rcode;
270 }
wdenkc6097192002-11-03 00:24:07 +0000271}
272
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000273int do_diskboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000274{
Rob Herring7405a132012-09-21 04:02:30 +0000275 return common_diskboot(cmdtp, "ide", argc, argv);
wdenkc6097192002-11-03 00:24:07 +0000276}
277
278/* ------------------------------------------------------------------------- */
279
Pavel Herrmann19be2ea2012-10-07 05:56:10 +0000280void __ide_led(uchar led, uchar status)
281{
282#if defined(CONFIG_IDE_LED) && defined(PER8_BASE) /* required by LED_PORT */
283 static uchar led_buffer; /* Buffer for current LED status */
284
285 uchar *led_port = LED_PORT;
286
287 if (status) /* switch LED on */
288 led_buffer |= led;
289 else /* switch LED off */
290 led_buffer &= ~led;
291
292 *led_port = led_buffer;
293#endif
294}
295
296void ide_led(uchar led, uchar status)
297 __attribute__ ((weak, alias("__ide_led")));
298
299#ifndef CONFIG_IDE_LED /* define LED macros, they are not used anyways */
300# define DEVICE_LED(x) 0
301# define LED_IDE1 1
302# define LED_IDE2 2
303#endif
304
305/* ------------------------------------------------------------------------- */
306
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000307inline void __ide_outb(int dev, int port, unsigned char val)
Stefan Roesef2302d42008-08-06 14:05:38 +0200308{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000309 debug("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
310 dev, port, val,
311 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000312
313#if defined(CONFIG_IDE_AHB)
314 if (port) {
315 /* write command */
316 ide_write_register(dev, port, val);
317 } else {
318 /* write data */
319 outb(val, (ATA_CURR_BASE(dev)));
320 }
321#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000322 outb(val, (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000323#endif
Stefan Roesef2302d42008-08-06 14:05:38 +0200324}
Macpaul Lin0abddf82011-04-11 20:45:32 +0000325
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000326void ide_outb(int dev, int port, unsigned char val)
327 __attribute__ ((weak, alias("__ide_outb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200328
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000329inline unsigned char __ide_inb(int dev, int port)
Stefan Roesef2302d42008-08-06 14:05:38 +0200330{
331 uchar val;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000332
333#if defined(CONFIG_IDE_AHB)
334 val = ide_read_register(dev, port);
335#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000336 val = inb((ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000337#endif
338
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000339 debug("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
340 dev, port,
341 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)), val);
Stefan Roesef2302d42008-08-06 14:05:38 +0200342 return val;
343}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000344
Kim Phillips2df72b82009-05-19 12:53:36 -0500345unsigned char ide_inb(int dev, int port)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000346 __attribute__ ((weak, alias("__ide_inb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200347
Steven A. Falco36c2d302008-08-15 15:34:10 -0400348#ifdef CONFIG_TUNE_PIO
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000349inline int __ide_set_piomode(int pio_mode)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400350{
351 return 0;
352}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000353
354inline int ide_set_piomode(int pio_mode)
355 __attribute__ ((weak, alias("__ide_set_piomode")));
Steven A. Falco36c2d302008-08-15 15:34:10 -0400356#endif
357
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000358void ide_init(void)
wdenkc6097192002-11-03 00:24:07 +0000359{
wdenkc6097192002-11-03 00:24:07 +0000360 unsigned char c;
361 int i, bus;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000362
wdenk9fd5e312003-12-07 23:55:12 +0000363#ifdef CONFIG_IDE_8xx_PCCARD
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000364 extern int ide_devices_found; /* Initialized in check_ide_device() */
365#endif /* CONFIG_IDE_8xx_PCCARD */
wdenk9fd5e312003-12-07 23:55:12 +0000366
367#ifdef CONFIG_IDE_PREINIT
368 WATCHDOG_RESET();
369
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000370 if (ide_preinit()) {
371 puts("ide_preinit failed\n");
wdenk9fd5e312003-12-07 23:55:12 +0000372 return;
373 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000374#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000375
wdenkc6097192002-11-03 00:24:07 +0000376 WATCHDOG_RESET();
377
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000378 /*
379 * Reset the IDE just to be sure.
wdenkc6097192002-11-03 00:24:07 +0000380 * Light LED's to show
381 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000382 ide_led((LED_IDE1 | LED_IDE2), 1); /* LED's on */
383
384 /* ATAPI Drives seems to need a proper IDE Reset */
385 ide_reset();
wdenkc6097192002-11-03 00:24:07 +0000386
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000387#ifdef CONFIG_IDE_INIT_POSTRESET
388 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000389
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000390 if (ide_init_postreset()) {
391 puts("ide_preinit_postreset failed\n");
392 return;
393 }
394#endif /* CONFIG_IDE_INIT_POSTRESET */
wdenkc6097192002-11-03 00:24:07 +0000395
396 /*
397 * Wait for IDE to get ready.
398 * According to spec, this can take up to 31 seconds!
399 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000400 for (bus = 0; bus < CONFIG_SYS_IDE_MAXBUS; ++bus) {
401 int dev =
402 bus * (CONFIG_SYS_IDE_MAXDEVICE /
403 CONFIG_SYS_IDE_MAXBUS);
wdenkc6097192002-11-03 00:24:07 +0000404
wdenk6069ff22003-02-28 00:49:47 +0000405#ifdef CONFIG_IDE_8xx_PCCARD
406 /* Skip non-ide devices from probing */
407 if ((ide_devices_found & (1 << bus)) == 0) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000408 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenk6069ff22003-02-28 00:49:47 +0000409 continue;
410 }
411#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000412 printf("Bus %d: ", bus);
wdenkc6097192002-11-03 00:24:07 +0000413
414 ide_bus_ok[bus] = 0;
415
416 /* Select device
417 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000418 udelay(100000); /* 100 ms */
419 ide_outb(dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
420 udelay(100000); /* 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000421 i = 0;
422 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000423 udelay(10000); /* 10 ms */
wdenkc6097192002-11-03 00:24:07 +0000424
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000425 c = ide_inb(dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000426 i++;
427 if (i > (ATA_RESET_TIME * 100)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000428 puts("** Timeout **\n");
429 /* LED's off */
430 ide_led((LED_IDE1 | LED_IDE2), 0);
wdenkc6097192002-11-03 00:24:07 +0000431 return;
432 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000433 if ((i >= 100) && ((i % 100) == 0))
434 putc('.');
435
wdenkc6097192002-11-03 00:24:07 +0000436 } while (c & ATA_STAT_BUSY);
437
438 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000439 puts("not available ");
440 debug("Status = 0x%02X ", c);
441#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
442 } else if ((c & ATA_STAT_READY) == 0) {
443 puts("not available ");
444 debug("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000445#endif
446 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000447 puts("OK ");
wdenkc6097192002-11-03 00:24:07 +0000448 ide_bus_ok[bus] = 1;
449 }
450 WATCHDOG_RESET();
451 }
wdenkc7de8292002-11-19 11:04:11 +0000452
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000453 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000454
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000455 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc6097192002-11-03 00:24:07 +0000456
457 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000458 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
wdenkc6097192002-11-03 00:24:07 +0000459 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000460 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
461 ide_dev_desc[i].if_type = IF_TYPE_IDE;
462 ide_dev_desc[i].dev = i;
463 ide_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
464 ide_dev_desc[i].blksz = 0;
465 ide_dev_desc[i].lba = 0;
466 ide_dev_desc[i].block_read = ide_read;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000467 ide_dev_desc[i].block_write = ide_write;
wdenkc6097192002-11-03 00:24:07 +0000468 if (!ide_bus_ok[IDE_BUS(i)])
469 continue;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000470 ide_led(led, 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000471 ide_ident(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000472 ide_led(led, 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000473 dev_print(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000474
wdenkc6097192002-11-03 00:24:07 +0000475 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000476 /* initialize partition type */
477 init_part(&ide_dev_desc[i]);
wdenkc6097192002-11-03 00:24:07 +0000478 if (curr_device < 0)
479 curr_device = i;
480 }
481 }
482 WATCHDOG_RESET();
483}
484
485/* ------------------------------------------------------------------------- */
486
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000487#ifdef CONFIG_PARTITIONS
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000488block_dev_desc_t *ide_get_dev(int dev)
wdenkc6097192002-11-03 00:24:07 +0000489{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200490 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
wdenkc6097192002-11-03 00:24:07 +0000491}
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000492#endif
wdenkc6097192002-11-03 00:24:07 +0000493
wdenkc6097192002-11-03 00:24:07 +0000494/* ------------------------------------------------------------------------- */
495
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000496void ide_input_swap_data(int dev, ulong *sect_buf, int words)
497 __attribute__ ((weak, alias("__ide_input_swap_data")));
498
499void ide_input_data(int dev, ulong *sect_buf, int words)
500 __attribute__ ((weak, alias("__ide_input_data")));
501
502void ide_output_data(int dev, const ulong *sect_buf, int words)
503 __attribute__ ((weak, alias("__ide_output_data")));
504
wdenk5da627a2003-10-09 20:09:04 +0000505/* We only need to swap data if we are running on a big endian cpu. */
506/* But Au1x00 cpu:s already swaps data in big endian mode! */
Tom Rini61c0d6a2012-09-26 15:20:33 -0700507#if defined(__LITTLE_ENDIAN) || defined(CONFIG_SOC_AU1X00)
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000508void __ide_input_swap_data(int dev, ulong *sect_buf, int words)
509{
510 ide_input_data(dev, sect_buf, words);
511}
wdenk5da627a2003-10-09 20:09:04 +0000512#else
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000513void __ide_input_swap_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000514{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000515 volatile ushort *pbuf =
516 (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
517 ushort *dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000518
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000519 debug("in input swap data base for read is %lx\n",
520 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +0000521
522 while (words--) {
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200523#ifdef __MIPS__
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000524 *dbuf++ = swab16p((u16 *) pbuf);
525 *dbuf++ = swab16p((u16 *) pbuf);
Heiko Schocher566a4942007-06-22 19:11:54 +0200526#elif defined(CONFIG_PCS440EP)
527 *dbuf++ = *pbuf;
528 *dbuf++ = *pbuf;
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200529#else
wdenk1a344f22005-02-03 23:00:49 +0000530 *dbuf++ = ld_le16(pbuf);
531 *dbuf++ = ld_le16(pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200532#endif /* !MIPS */
wdenk1a344f22005-02-03 23:00:49 +0000533 }
wdenkc6097192002-11-03 00:24:07 +0000534}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000535#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000536
wdenk2262cfe2002-11-18 00:14:45 +0000537
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530538#if defined(CONFIG_IDE_SWAP_IO)
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000539void __ide_output_data(int dev, const ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000540{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000541 ushort *dbuf;
542 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000543
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000544 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
545 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000546 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200547#if defined(CONFIG_PCS440EP)
548 /* not tested, because CF was write protected */
549 EIEIO;
550 *pbuf = ld_le16(dbuf++);
551 EIEIO;
552 *pbuf = ld_le16(dbuf++);
553#else
wdenk1a344f22005-02-03 23:00:49 +0000554 EIEIO;
555 *pbuf = *dbuf++;
556 EIEIO;
557 *pbuf = *dbuf++;
Heiko Schocher566a4942007-06-22 19:11:54 +0200558#endif
wdenk1a344f22005-02-03 23:00:49 +0000559 }
wdenkc6097192002-11-03 00:24:07 +0000560}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000561#else /* ! CONFIG_IDE_SWAP_IO */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000562void __ide_output_data(int dev, const ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000563{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000564#if defined(CONFIG_IDE_AHB)
565 ide_write_data(dev, sect_buf, words);
566#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000567 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000568#endif
wdenk2262cfe2002-11-18 00:14:45 +0000569}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000570#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000571
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530572#if defined(CONFIG_IDE_SWAP_IO)
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000573void __ide_input_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000574{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000575 ushort *dbuf;
576 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000577
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000578 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
579 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000580
581 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
582
583 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200584#if defined(CONFIG_PCS440EP)
585 EIEIO;
586 *dbuf++ = ld_le16(pbuf);
587 EIEIO;
588 *dbuf++ = ld_le16(pbuf);
589#else
wdenk1a344f22005-02-03 23:00:49 +0000590 EIEIO;
591 *dbuf++ = *pbuf;
592 EIEIO;
593 *dbuf++ = *pbuf;
Heiko Schocher566a4942007-06-22 19:11:54 +0200594#endif
wdenk1a344f22005-02-03 23:00:49 +0000595 }
wdenkc6097192002-11-03 00:24:07 +0000596}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000597#else /* ! CONFIG_IDE_SWAP_IO */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000598void __ide_input_data(int dev, ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000599{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000600#if defined(CONFIG_IDE_AHB)
601 ide_read_data(dev, sect_buf, words);
602#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000603 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000604#endif
wdenk2262cfe2002-11-18 00:14:45 +0000605}
606
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000607#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000608
609/* -------------------------------------------------------------------------
610 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000611static void ide_ident(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +0000612{
wdenkc6097192002-11-03 00:24:07 +0000613 unsigned char c;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000614 hd_driveid_t iop;
wdenkc6097192002-11-03 00:24:07 +0000615
wdenk64f70be2004-09-28 20:34:50 +0000616#ifdef CONFIG_ATAPI
617 int retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000618#endif
619
Steven A. Falco36c2d302008-08-15 15:34:10 -0400620#ifdef CONFIG_TUNE_PIO
621 int pio_mode;
622#endif
623
wdenkc6097192002-11-03 00:24:07 +0000624#if 0
625 int mode, cycle_time;
626#endif
627 int device;
wdenkc6097192002-11-03 00:24:07 +0000628
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000629 device = dev_desc->dev;
630 printf(" Device %d: ", device);
631
632 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000633 /* Select device
634 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000635 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
636 dev_desc->if_type = IF_TYPE_IDE;
wdenkc6097192002-11-03 00:24:07 +0000637#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +0000638
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000639 retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000640
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000641 /* Warning: This will be tricky to read */
642 while (retries <= 1) {
643 /* check signature */
644 if ((ide_inb(device, ATA_SECT_CNT) == 0x01) &&
645 (ide_inb(device, ATA_SECT_NUM) == 0x01) &&
646 (ide_inb(device, ATA_CYL_LOW) == 0x14) &&
647 (ide_inb(device, ATA_CYL_HIGH) == 0xEB)) {
648 /* ATAPI Signature found */
649 dev_desc->if_type = IF_TYPE_ATAPI;
650 /*
651 * Start Ident Command
652 */
653 ide_outb(device, ATA_COMMAND, ATAPI_CMD_IDENT);
654 /*
655 * Wait for completion - ATAPI devices need more time
656 * to become ready
657 */
658 c = ide_wait(device, ATAPI_TIME_OUT);
659 } else
wdenkc6097192002-11-03 00:24:07 +0000660#endif
wdenk1a344f22005-02-03 23:00:49 +0000661 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000662 /*
663 * Start Ident Command
664 */
665 ide_outb(device, ATA_COMMAND, ATA_CMD_IDENT);
666
667 /*
668 * Wait for completion
669 */
670 c = ide_wait(device, IDE_TIME_OUT);
wdenk1a344f22005-02-03 23:00:49 +0000671 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000672 ide_led(DEVICE_LED(device), 0); /* LED off */
673
674 if (((c & ATA_STAT_DRQ) == 0) ||
675 ((c & (ATA_STAT_FAULT | ATA_STAT_ERR)) != 0)) {
wdenk64f70be2004-09-28 20:34:50 +0000676#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000677 {
678 /*
679 * Need to soft reset the device
680 * in case it's an ATAPI...
681 */
682 debug("Retrying...\n");
683 ide_outb(device, ATA_DEV_HD,
684 ATA_LBA | ATA_DEVICE(device));
685 udelay(100000);
686 ide_outb(device, ATA_COMMAND, 0x08);
687 udelay(500000); /* 500 ms */
688 }
689 /*
690 * Select device
691 */
692 ide_outb(device, ATA_DEV_HD,
693 ATA_LBA | ATA_DEVICE(device));
694 retries++;
695#else
696 return;
697#endif
698 }
699#ifdef CONFIG_ATAPI
700 else
701 break;
702 } /* see above - ugly to read */
wdenk64f70be2004-09-28 20:34:50 +0000703
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000704 if (retries == 2) /* Not found */
wdenk64f70be2004-09-28 20:34:50 +0000705 return;
706#endif
wdenkc7de8292002-11-19 11:04:11 +0000707
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000708 ide_input_swap_data(device, (ulong *)&iop, ATA_SECTORWORDS);
wdenkc6097192002-11-03 00:24:07 +0000709
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000710 ident_cpy((unsigned char *) dev_desc->revision, iop.fw_rev,
711 sizeof(dev_desc->revision));
712 ident_cpy((unsigned char *) dev_desc->vendor, iop.model,
713 sizeof(dev_desc->vendor));
714 ident_cpy((unsigned char *) dev_desc->product, iop.serial_no,
715 sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +0000716#ifdef __LITTLE_ENDIAN
717 /*
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500718 * firmware revision, model, and serial number have Big Endian Byte
719 * order in Word. Convert all three to little endian.
wdenkc3f9d492004-03-14 00:59:59 +0000720 *
721 * See CF+ and CompactFlash Specification Revision 2.0:
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500722 * 6.2.1.6: Identify Drive, Table 39 for more details
wdenkc3f9d492004-03-14 00:59:59 +0000723 */
724
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000725 strswab(dev_desc->revision);
726 strswab(dev_desc->vendor);
727 strswab(dev_desc->product);
wdenkc3f9d492004-03-14 00:59:59 +0000728#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +0000729
Marek Vasutb18eabf2011-08-20 09:15:13 +0000730 if ((iop.config & 0x0080) == 0x0080)
wdenkc6097192002-11-03 00:24:07 +0000731 dev_desc->removable = 1;
732 else
733 dev_desc->removable = 0;
734
Steven A. Falco36c2d302008-08-15 15:34:10 -0400735#ifdef CONFIG_TUNE_PIO
736 /* Mode 0 - 2 only, are directly determined by word 51. */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000737 pio_mode = iop.tPIO;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400738 if (pio_mode > 2) {
739 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000740 /* Force it to dead slow, and hope for the best... */
741 pio_mode = 0;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400742 }
743
744 /* Any CompactFlash Storage Card that supports PIO mode 3 or above
745 * shall set bit 1 of word 53 to one and support the fields contained
746 * in words 64 through 70.
747 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000748 if (iop.field_valid & 0x02) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000749 /*
750 * Mode 3 and above are possible. Check in order from slow
Steven A. Falco36c2d302008-08-15 15:34:10 -0400751 * to fast, so we wind up with the highest mode allowed.
752 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000753 if (iop.eide_pio_modes & 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400754 pio_mode = 3;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000755 if (iop.eide_pio_modes & 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400756 pio_mode = 4;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000757 if (ata_id_is_cfa((u16 *)&iop)) {
758 if ((iop.cf_advanced_caps & 0x07) == 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400759 pio_mode = 5;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000760 if ((iop.cf_advanced_caps & 0x07) == 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400761 pio_mode = 6;
762 }
763 }
764
765 /* System-specific, depends on bus speeds, etc. */
766 ide_set_piomode(pio_mode);
767#endif /* CONFIG_TUNE_PIO */
768
wdenkc6097192002-11-03 00:24:07 +0000769#if 0
770 /*
771 * Drive PIO mode autoselection
772 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000773 mode = iop.tPIO;
wdenkc6097192002-11-03 00:24:07 +0000774
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000775 printf("tPIO = 0x%02x = %d\n", mode, mode);
wdenkc6097192002-11-03 00:24:07 +0000776 if (mode > 2) { /* 2 is maximum allowed tPIO value */
777 mode = 2;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000778 debug("Override tPIO -> 2\n");
wdenkc6097192002-11-03 00:24:07 +0000779 }
Marek Vasutb18eabf2011-08-20 09:15:13 +0000780 if (iop.field_valid & 2) { /* drive implements ATA2? */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000781 debug("Drive implements ATA2\n");
Marek Vasutb18eabf2011-08-20 09:15:13 +0000782 if (iop.capability & 8) { /* drive supports use_iordy? */
783 cycle_time = iop.eide_pio_iordy;
wdenkc6097192002-11-03 00:24:07 +0000784 } else {
Marek Vasutb18eabf2011-08-20 09:15:13 +0000785 cycle_time = iop.eide_pio;
wdenkc6097192002-11-03 00:24:07 +0000786 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000787 debug("cycle time = %d\n", cycle_time);
wdenkc6097192002-11-03 00:24:07 +0000788 mode = 4;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000789 if (cycle_time > 120)
790 mode = 3; /* 120 ns for PIO mode 4 */
791 if (cycle_time > 180)
792 mode = 2; /* 180 ns for PIO mode 3 */
793 if (cycle_time > 240)
794 mode = 1; /* 240 ns for PIO mode 4 */
795 if (cycle_time > 383)
796 mode = 0; /* 383 ns for PIO mode 4 */
wdenkc6097192002-11-03 00:24:07 +0000797 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000798 printf("PIO mode to use: PIO %d\n", mode);
wdenkc6097192002-11-03 00:24:07 +0000799#endif /* 0 */
800
801#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000802 if (dev_desc->if_type == IF_TYPE_ATAPI) {
wdenkc6097192002-11-03 00:24:07 +0000803 atapi_inquiry(dev_desc);
804 return;
805 }
806#endif /* CONFIG_ATAPI */
807
wdenkc3f9d492004-03-14 00:59:59 +0000808#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +0000809 /* swap shorts */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000810 dev_desc->lba = (iop.lba_capacity << 16) | (iop.lba_capacity >> 16);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000811#else /* ! __BIG_ENDIAN */
wdenkc3f9d492004-03-14 00:59:59 +0000812 /*
813 * do not swap shorts on little endian
814 *
815 * See CF+ and CompactFlash Specification Revision 2.0:
816 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
817 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000818 dev_desc->lba = iop.lba_capacity;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000819#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +0000820
wdenk42dfe7a2004-03-14 22:25:36 +0000821#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000822 if (iop.command_set_2 & 0x0400) { /* LBA 48 support */
wdenk6e592382004-04-18 17:39:38 +0000823 dev_desc->lba48 = 1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000824 dev_desc->lba = (unsigned long long) iop.lba48_capacity[0] |
825 ((unsigned long long) iop.lba48_capacity[1] << 16) |
826 ((unsigned long long) iop.lba48_capacity[2] << 32) |
827 ((unsigned long long) iop.lba48_capacity[3] << 48);
wdenkc40b2952004-03-13 23:29:43 +0000828 } else {
wdenkc40b2952004-03-13 23:29:43 +0000829 dev_desc->lba48 = 0;
830 }
831#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +0000832 /* assuming HD */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000833 dev_desc->type = DEV_TYPE_HARDDISK;
834 dev_desc->blksz = ATA_BLOCKSIZE;
835 dev_desc->lun = 0; /* just to fill something in... */
wdenkc6097192002-11-03 00:24:07 +0000836
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000837#if 0 /* only used to test the powersaving mode,
838 * if enabled, the drive goes after 5 sec
839 * in standby mode */
840 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
841 c = ide_wait(device, IDE_TIME_OUT);
842 ide_outb(device, ATA_SECT_CNT, 1);
843 ide_outb(device, ATA_LBA_LOW, 0);
844 ide_outb(device, ATA_LBA_MID, 0);
845 ide_outb(device, ATA_LBA_HIGH, 0);
846 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
847 ide_outb(device, ATA_COMMAND, 0xe3);
848 udelay(50);
849 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000850#endif
851}
852
853
854/* ------------------------------------------------------------------------- */
855
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000856ulong ide_read(int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +0000857{
858 ulong n = 0;
859 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000860 unsigned char pwrsave = 0; /* power save */
861
wdenk42dfe7a2004-03-14 22:25:36 +0000862#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000863 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +0000864
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200865 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +0000866 /* more than 28 bits used, use 48bit mode */
867 lba48 = 1;
868 }
869#endif
Marek Vasut5bbe10d2011-10-25 11:39:15 +0200870 debug("ide_read dev %d start %lX, blocks %lX buffer at %lX\n",
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000871 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +0000872
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000873 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000874
875 /* Select device
876 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000877 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
878 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000879
880 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000881 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000882 goto IDE_READ_E;
883 }
884
885 /* first check if the drive is in Powersaving mode, if yes,
886 * increase the timeout value */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000887 ide_outb(device, ATA_COMMAND, ATA_CMD_CHK_PWR);
888 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000889
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000890 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000891
892 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000893 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000894 goto IDE_READ_E;
895 }
896 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000897 printf("No Powersaving mode %X\n", c);
wdenkc6097192002-11-03 00:24:07 +0000898 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000899 c = ide_inb(device, ATA_SECT_CNT);
900 debug("Powersaving %02X\n", c);
901 if (c == 0)
902 pwrsave = 1;
wdenkc6097192002-11-03 00:24:07 +0000903 }
904
905
906 while (blkcnt-- > 0) {
907
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000908 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000909
910 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000911 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000912 break;
913 }
wdenk42dfe7a2004-03-14 22:25:36 +0000914#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000915 if (lba48) {
916 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000917 ide_outb(device, ATA_SECT_CNT, 0);
918 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200919#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000920 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
921 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200922#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000923 ide_outb(device, ATA_LBA_MID, 0);
924 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200925#endif
wdenkc40b2952004-03-13 23:29:43 +0000926 }
927#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000928 ide_outb(device, ATA_SECT_CNT, 1);
929 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
930 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
931 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +0000932
wdenk42dfe7a2004-03-14 22:25:36 +0000933#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000934 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000935 ide_outb(device, ATA_DEV_HD,
936 ATA_LBA | ATA_DEVICE(device));
937 ide_outb(device, ATA_COMMAND, ATA_CMD_READ_EXT);
wdenkc40b2952004-03-13 23:29:43 +0000938
939 } else
940#endif
941 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000942 ide_outb(device, ATA_DEV_HD, ATA_LBA |
943 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
944 ide_outb(device, ATA_COMMAND, ATA_CMD_READ);
wdenkc40b2952004-03-13 23:29:43 +0000945 }
wdenkc6097192002-11-03 00:24:07 +0000946
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000947 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000948
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000949 if (pwrsave) {
950 /* may take up to 4 sec */
951 c = ide_wait(device, IDE_SPIN_UP_TIME_OUT);
952 pwrsave = 0;
wdenkc6097192002-11-03 00:24:07 +0000953 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000954 /* can't take over 500 ms */
955 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000956 }
957
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000958 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
959 ATA_STAT_DRQ) {
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100960#if defined(CONFIG_SYS_64BIT_LBA)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000961 printf("Error (no IRQ) dev %d blk %lld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +0000962 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +0000963#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000964 printf("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
965 device, (ulong) blknr, c);
wdenkc40b2952004-03-13 23:29:43 +0000966#endif
wdenkc6097192002-11-03 00:24:07 +0000967 break;
968 }
969
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000970 ide_input_data(device, buffer, ATA_SECTORWORDS);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000971 (void) ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +0000972
973 ++n;
974 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +0200975 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +0000976 }
977IDE_READ_E:
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000978 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000979 return (n);
980}
981
982/* ------------------------------------------------------------------------- */
983
984
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000985ulong ide_write(int device, lbaint_t blknr, ulong blkcnt, const void *buffer)
wdenkc6097192002-11-03 00:24:07 +0000986{
987 ulong n = 0;
988 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000989
wdenk42dfe7a2004-03-14 22:25:36 +0000990#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000991 unsigned char lba48 = 0;
992
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200993 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +0000994 /* more than 28 bits used, use 48bit mode */
995 lba48 = 1;
996 }
997#endif
wdenkc6097192002-11-03 00:24:07 +0000998
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000999 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001000
1001 /* Select device
1002 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001003 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001004
1005 while (blkcnt-- > 0) {
1006
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001007 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001008
1009 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001010 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +00001011 goto WR_OUT;
1012 }
wdenk42dfe7a2004-03-14 22:25:36 +00001013#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001014 if (lba48) {
1015 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001016 ide_outb(device, ATA_SECT_CNT, 0);
1017 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001018#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001019 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1020 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001021#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001022 ide_outb(device, ATA_LBA_MID, 0);
1023 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001024#endif
wdenkc40b2952004-03-13 23:29:43 +00001025 }
1026#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001027 ide_outb(device, ATA_SECT_CNT, 1);
1028 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1029 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1030 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001031
wdenk42dfe7a2004-03-14 22:25:36 +00001032#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001033 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001034 ide_outb(device, ATA_DEV_HD,
1035 ATA_LBA | ATA_DEVICE(device));
1036 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
wdenkc40b2952004-03-13 23:29:43 +00001037
1038 } else
1039#endif
1040 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001041 ide_outb(device, ATA_DEV_HD, ATA_LBA |
1042 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
1043 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE);
wdenkc40b2952004-03-13 23:29:43 +00001044 }
wdenkc6097192002-11-03 00:24:07 +00001045
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001046 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001047
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001048 /* can't take over 500 ms */
1049 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001050
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001051 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
1052 ATA_STAT_DRQ) {
Heiko Schocher4b142fe2009-12-03 11:21:21 +01001053#if defined(CONFIG_SYS_64BIT_LBA)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001054 printf("Error (no IRQ) dev %d blk %lld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001055 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001056#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001057 printf("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1058 device, (ulong) blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001059#endif
wdenkc6097192002-11-03 00:24:07 +00001060 goto WR_OUT;
1061 }
1062
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001063 ide_output_data(device, buffer, ATA_SECTORWORDS);
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001064 c = ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001065 ++n;
1066 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001067 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001068 }
1069WR_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001070 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001071 return (n);
1072}
1073
1074/* ------------------------------------------------------------------------- */
1075
1076/*
1077 * copy src to dest, skipping leading and trailing blanks and null
1078 * terminate the string
wdenk7d7ce412004-03-17 01:13:07 +00001079 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +00001080 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001081static void ident_cpy(unsigned char *dst, unsigned char *src,
1082 unsigned int len)
wdenkc6097192002-11-03 00:24:07 +00001083{
wdenk7d7ce412004-03-17 01:13:07 +00001084 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +00001085
wdenk7d7ce412004-03-17 01:13:07 +00001086 last = dst;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001087 end = src + len - 1;
wdenk7d7ce412004-03-17 01:13:07 +00001088
1089 /* reserve space for '\0' */
1090 if (len < 2)
1091 goto OUT;
wdenkefa329c2004-03-23 20:18:25 +00001092
wdenk7d7ce412004-03-17 01:13:07 +00001093 /* skip leading white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001094 while ((*src) && (src < end) && (*src == ' '))
wdenk7d7ce412004-03-17 01:13:07 +00001095 ++src;
1096
1097 /* copy string, omitting trailing white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001098 while ((*src) && (src < end)) {
wdenk7d7ce412004-03-17 01:13:07 +00001099 *dst++ = *src;
1100 if (*src++ != ' ')
1101 last = dst;
wdenkc6097192002-11-03 00:24:07 +00001102 }
wdenk7d7ce412004-03-17 01:13:07 +00001103OUT:
1104 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +00001105}
1106
1107/* ------------------------------------------------------------------------- */
1108
1109/*
1110 * Wait until Busy bit is off, or timeout (in ms)
1111 * Return last status
1112 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001113static uchar ide_wait(int dev, ulong t)
wdenkc6097192002-11-03 00:24:07 +00001114{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001115 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001116 uchar c;
1117
wdenk2262cfe2002-11-18 00:14:45 +00001118 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001119 udelay(100);
1120 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001121 break;
wdenkc6097192002-11-03 00:24:07 +00001122 }
1123 return (c);
1124}
1125
1126/* ------------------------------------------------------------------------- */
1127
1128#ifdef CONFIG_IDE_RESET
1129extern void ide_set_reset(int idereset);
1130
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001131static void ide_reset(void)
wdenkc6097192002-11-03 00:24:07 +00001132{
wdenkc6097192002-11-03 00:24:07 +00001133 int i;
1134
1135 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001136 for (i = 0; i < CONFIG_SYS_IDE_MAXBUS; ++i)
wdenkc6097192002-11-03 00:24:07 +00001137 ide_bus_ok[i] = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001138 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i)
wdenkc6097192002-11-03 00:24:07 +00001139 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1140
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001141 ide_set_reset(1); /* assert reset */
wdenkc6097192002-11-03 00:24:07 +00001142
Martin Krausee175eac2008-04-03 13:37:56 +02001143 /* the reset signal shall be asserted for et least 25 us */
1144 udelay(25);
1145
wdenkc6097192002-11-03 00:24:07 +00001146 WATCHDOG_RESET();
1147
wdenkc6097192002-11-03 00:24:07 +00001148 /* de-assert RESET signal */
1149 ide_set_reset(0);
1150
1151 /* wait 250 ms */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001152 for (i = 0; i < 250; ++i)
1153 udelay(1000);
wdenkc6097192002-11-03 00:24:07 +00001154}
1155
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001156#endif /* CONFIG_IDE_RESET */
wdenkc6097192002-11-03 00:24:07 +00001157
1158/* ------------------------------------------------------------------------- */
1159
Heiko Schocher3887c3f2009-09-23 07:56:08 +02001160#if defined(CONFIG_OF_IDE_FIXUP)
1161int ide_device_present(int dev)
1162{
1163 if (dev >= CONFIG_SYS_IDE_MAXBUS)
1164 return 0;
1165 return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1166}
1167#endif
wdenkc6097192002-11-03 00:24:07 +00001168/* ------------------------------------------------------------------------- */
1169
1170#ifdef CONFIG_ATAPI
1171/****************************************************************************
1172 * ATAPI Support
1173 */
1174
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001175void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
1176 __attribute__ ((weak, alias("__ide_input_data_shorts")));
1177
1178void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
1179 __attribute__ ((weak, alias("__ide_output_data_shorts")));
1180
1181
Albert Aribaudf2a37fc2010-08-08 05:17:05 +05301182#if defined(CONFIG_IDE_SWAP_IO)
wdenkc6097192002-11-03 00:24:07 +00001183/* since ATAPI may use commands with not 4 bytes alligned length
1184 * we have our own transfer functions, 2 bytes alligned */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001185void __ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenkc6097192002-11-03 00:24:07 +00001186{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001187 ushort *dbuf;
1188 volatile ushort *pbuf;
wdenkc6097192002-11-03 00:24:07 +00001189
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001190 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1191 dbuf = (ushort *) sect_buf;
wdenkdb01a2e2004-04-15 23:14:49 +00001192
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001193 debug("in output data shorts base for read is %lx\n",
1194 (unsigned long) pbuf);
wdenkdb01a2e2004-04-15 23:14:49 +00001195
wdenkc6097192002-11-03 00:24:07 +00001196 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001197 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +00001198 *pbuf = *dbuf++;
wdenkc6097192002-11-03 00:24:07 +00001199 }
wdenk1a344f22005-02-03 23:00:49 +00001200}
1201
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001202void __ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk1a344f22005-02-03 23:00:49 +00001203{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001204 ushort *dbuf;
1205 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +00001206
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001207 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1208 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +00001209
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001210 debug("in input data shorts base for read is %lx\n",
1211 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +00001212
1213 while (shorts--) {
1214 EIEIO;
1215 *dbuf++ = *pbuf;
1216 }
wdenkc6097192002-11-03 00:24:07 +00001217}
1218
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001219#else /* ! CONFIG_IDE_SWAP_IO */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001220void __ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001221{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001222 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001223}
1224
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001225void __ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001226{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001227 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001228}
1229
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001230#endif /* CONFIG_IDE_SWAP_IO */
wdenk2262cfe2002-11-18 00:14:45 +00001231
wdenkc6097192002-11-03 00:24:07 +00001232/*
1233 * Wait until (Status & mask) == res, or timeout (in ms)
1234 * Return last status
1235 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1236 * and then they set their DRQ Bit
1237 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001238static uchar atapi_wait_mask(int dev, ulong t, uchar mask, uchar res)
wdenkc6097192002-11-03 00:24:07 +00001239{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001240 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001241 uchar c;
1242
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001243 /* prevents to read the status before valid */
1244 c = ide_inb(dev, ATA_DEV_CTL);
1245
wdenk2262cfe2002-11-18 00:14:45 +00001246 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001247 /* break if error occurs (doesn't make sense to wait more) */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001248 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR)
wdenkc6097192002-11-03 00:24:07 +00001249 break;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001250 udelay(100);
1251 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001252 break;
wdenkc6097192002-11-03 00:24:07 +00001253 }
1254 return (c);
1255}
1256
1257/*
1258 * issue an atapi command
1259 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001260unsigned char atapi_issue(int device, unsigned char *ccb, int ccblen,
1261 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001262{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001263 unsigned char c, err, mask, res;
wdenkc6097192002-11-03 00:24:07 +00001264 int n;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001265
1266 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001267
1268 /* Select device
1269 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001270 mask = ATA_STAT_BUSY | ATA_STAT_DRQ;
wdenkc6097192002-11-03 00:24:07 +00001271 res = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001272 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1273 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001274 if ((c & mask) != res) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001275 printf("ATAPI_ISSUE: device %d not ready status %X\n", device,
1276 c);
1277 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001278 goto AI_OUT;
1279 }
1280 /* write taskfile */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001281 ide_outb(device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1282 ide_outb(device, ATA_SECT_CNT, 0);
1283 ide_outb(device, ATA_SECT_NUM, 0);
1284 ide_outb(device, ATA_CYL_LOW, (unsigned char) (buflen & 0xFF));
1285 ide_outb(device, ATA_CYL_HIGH,
1286 (unsigned char) ((buflen >> 8) & 0xFF));
1287 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001288
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001289 ide_outb(device, ATA_COMMAND, ATAPI_CMD_PACKET);
1290 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001291
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001292 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
wdenkc6097192002-11-03 00:24:07 +00001293 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001294 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001295
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001296 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1297 printf("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",
1298 device, c);
1299 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001300 goto AI_OUT;
1301 }
1302
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001303 /* write command block */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001304 ide_output_data_shorts(device, (unsigned short *) ccb, ccblen / 2);
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001305
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001306 /* ATAPI Command written wait for completition */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001307 udelay(5000); /* device must set bsy */
wdenkc6097192002-11-03 00:24:07 +00001308
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001309 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
1310 /*
1311 * if no data wait for DRQ = 0 BSY = 0
1312 * if data wait for DRQ = 1 BSY = 0
1313 */
1314 res = 0;
1315 if (buflen)
wdenkc6097192002-11-03 00:24:07 +00001316 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001317 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
1318 if ((c & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001319 if (c & ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001320 err = (ide_inb(device, ATA_ERROR_REG)) >> 4;
1321 debug("atapi_issue 1 returned sense key %X status %02X\n",
1322 err, c);
wdenkc6097192002-11-03 00:24:07 +00001323 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001324 printf("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n",
1325 ccb[0], c);
1326 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001327 }
1328 goto AI_OUT;
1329 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001330 n = ide_inb(device, ATA_CYL_HIGH);
1331 n <<= 8;
1332 n += ide_inb(device, ATA_CYL_LOW);
1333 if (n > buflen) {
1334 printf("ERROR, transfer bytes %d requested only %d\n", n,
1335 buflen);
1336 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001337 goto AI_OUT;
1338 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001339 if ((n == 0) && (buflen < 0)) {
1340 printf("ERROR, transfer bytes %d requested %d\n", n, buflen);
1341 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001342 goto AI_OUT;
1343 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001344 if (n != buflen) {
1345 debug("WARNING, transfer bytes %d not equal with requested %d\n",
1346 n, buflen);
wdenkc6097192002-11-03 00:24:07 +00001347 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001348 if (n != 0) { /* data transfer */
1349 debug("ATAPI_ISSUE: %d Bytes to transfer\n", n);
1350 /* we transfer shorts */
1351 n >>= 1;
wdenkc6097192002-11-03 00:24:07 +00001352 /* ok now decide if it is an in or output */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001353 if ((ide_inb(device, ATA_SECT_CNT) & 0x02) == 0) {
1354 debug("Write to device\n");
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001355 ide_output_data_shorts(device,
1356 (unsigned short *) buffer, n);
wdenkc6097192002-11-03 00:24:07 +00001357 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001358 debug("Read from device @ %p shorts %d\n", buffer, n);
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001359 ide_input_data_shorts(device,
1360 (unsigned short *) buffer, n);
wdenkc6097192002-11-03 00:24:07 +00001361 }
1362 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001363 udelay(5000); /* seems that some CD ROMs need this... */
1364 mask = ATA_STAT_BUSY | ATA_STAT_ERR;
1365 res = 0;
1366 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001367 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001368 err = (ide_inb(device, ATA_ERROR_REG) >> 4);
1369 debug("atapi_issue 2 returned sense key %X status %X\n", err,
1370 c);
wdenkc6097192002-11-03 00:24:07 +00001371 } else {
1372 err = 0;
1373 }
1374AI_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001375 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001376 return (err);
1377}
1378
1379/*
1380 * sending the command to atapi_issue. If an status other than good
1381 * returns, an request_sense will be issued
1382 */
1383
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001384#define ATAPI_DRIVE_NOT_READY 100
wdenkc6097192002-11-03 00:24:07 +00001385#define ATAPI_UNIT_ATTN 10
1386
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001387unsigned char atapi_issue_autoreq(int device,
1388 unsigned char *ccb,
1389 int ccblen,
1390 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001391{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001392 unsigned char sense_data[18], sense_ccb[12];
1393 unsigned char res, key, asc, ascq;
1394 int notready, unitattn;
wdenkc6097192002-11-03 00:24:07 +00001395
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001396 unitattn = ATAPI_UNIT_ATTN;
1397 notready = ATAPI_DRIVE_NOT_READY;
wdenkc6097192002-11-03 00:24:07 +00001398
1399retry:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001400 res = atapi_issue(device, ccb, ccblen, buffer, buflen);
1401 if (res == 0)
1402 return 0; /* Ok */
wdenkc6097192002-11-03 00:24:07 +00001403
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001404 if (res == 0xFF)
1405 return 0xFF; /* error */
wdenkc6097192002-11-03 00:24:07 +00001406
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001407 debug("(auto_req)atapi_issue returned sense key %X\n", res);
wdenkc6097192002-11-03 00:24:07 +00001408
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001409 memset(sense_ccb, 0, sizeof(sense_ccb));
1410 memset(sense_data, 0, sizeof(sense_data));
1411 sense_ccb[0] = ATAPI_CMD_REQ_SENSE;
1412 sense_ccb[4] = 18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001413
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001414 res = atapi_issue(device, sense_ccb, 12, sense_data, 18);
1415 key = (sense_data[2] & 0xF);
1416 asc = (sense_data[12]);
1417 ascq = (sense_data[13]);
wdenkc6097192002-11-03 00:24:07 +00001418
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001419 debug("ATAPI_CMD_REQ_SENSE returned %x\n", res);
1420 debug(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1421 sense_data[0], key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001422
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001423 if ((key == 0))
1424 return 0; /* ok device ready */
wdenkc6097192002-11-03 00:24:07 +00001425
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001426 if ((key == 6) || (asc == 0x29) || (asc == 0x28)) { /* Unit Attention */
1427 if (unitattn-- > 0) {
1428 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001429 goto retry;
1430 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001431 printf("Unit Attention, tried %d\n", ATAPI_UNIT_ATTN);
wdenkc6097192002-11-03 00:24:07 +00001432 goto error;
1433 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001434 if ((asc == 0x4) && (ascq == 0x1)) {
1435 /* not ready, but will be ready soon */
1436 if (notready-- > 0) {
1437 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001438 goto retry;
1439 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001440 printf("Drive not ready, tried %d times\n",
1441 ATAPI_DRIVE_NOT_READY);
wdenkc6097192002-11-03 00:24:07 +00001442 goto error;
1443 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001444 if (asc == 0x3a) {
1445 debug("Media not present\n");
wdenkc6097192002-11-03 00:24:07 +00001446 goto error;
1447 }
wdenkc7de8292002-11-19 11:04:11 +00001448
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001449 printf("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n", key, asc,
1450 ascq);
wdenkc6097192002-11-03 00:24:07 +00001451error:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001452 debug("ERROR Sense key %02X ASC %02X ASCQ %02X\n", key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001453 return (0xFF);
1454}
1455
1456
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001457static void atapi_inquiry(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +00001458{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001459 unsigned char ccb[12]; /* Command descriptor block */
1460 unsigned char iobuf[64]; /* temp buf */
wdenkc6097192002-11-03 00:24:07 +00001461 unsigned char c;
1462 int device;
1463
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001464 device = dev_desc->dev;
1465 dev_desc->type = DEV_TYPE_UNKNOWN; /* not yet valid */
1466 dev_desc->block_read = atapi_read;
wdenkc6097192002-11-03 00:24:07 +00001467
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001468 memset(ccb, 0, sizeof(ccb));
1469 memset(iobuf, 0, sizeof(iobuf));
wdenkc6097192002-11-03 00:24:07 +00001470
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001471 ccb[0] = ATAPI_CMD_INQUIRY;
1472 ccb[4] = 40; /* allocation Legnth */
1473 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 40);
wdenkc6097192002-11-03 00:24:07 +00001474
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001475 debug("ATAPI_CMD_INQUIRY returned %x\n", c);
1476 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001477 return;
1478
1479 /* copy device ident strings */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001480 ident_cpy((unsigned char *) dev_desc->vendor, &iobuf[8], 8);
1481 ident_cpy((unsigned char *) dev_desc->product, &iobuf[16], 16);
1482 ident_cpy((unsigned char *) dev_desc->revision, &iobuf[32], 5);
wdenkc6097192002-11-03 00:24:07 +00001483
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001484 dev_desc->lun = 0;
1485 dev_desc->lba = 0;
1486 dev_desc->blksz = 0;
1487 dev_desc->type = iobuf[0] & 0x1f;
wdenkc6097192002-11-03 00:24:07 +00001488
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001489 if ((iobuf[1] & 0x80) == 0x80)
wdenkc6097192002-11-03 00:24:07 +00001490 dev_desc->removable = 1;
1491 else
1492 dev_desc->removable = 0;
1493
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001494 memset(ccb, 0, sizeof(ccb));
1495 memset(iobuf, 0, sizeof(iobuf));
1496 ccb[0] = ATAPI_CMD_START_STOP;
1497 ccb[4] = 0x03; /* start */
wdenkc6097192002-11-03 00:24:07 +00001498
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001499 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001500
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001501 debug("ATAPI_CMD_START_STOP returned %x\n", c);
1502 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001503 return;
1504
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001505 memset(ccb, 0, sizeof(ccb));
1506 memset(iobuf, 0, sizeof(iobuf));
1507 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001508
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001509 debug("ATAPI_CMD_UNIT_TEST_READY returned %x\n", c);
1510 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001511 return;
1512
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001513 memset(ccb, 0, sizeof(ccb));
1514 memset(iobuf, 0, sizeof(iobuf));
1515 ccb[0] = ATAPI_CMD_READ_CAP;
1516 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 8);
1517 debug("ATAPI_CMD_READ_CAP returned %x\n", c);
1518 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001519 return;
1520
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001521 debug("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1522 iobuf[0], iobuf[1], iobuf[2], iobuf[3],
1523 iobuf[4], iobuf[5], iobuf[6], iobuf[7]);
wdenkc6097192002-11-03 00:24:07 +00001524
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001525 dev_desc->lba = ((unsigned long) iobuf[0] << 24) +
1526 ((unsigned long) iobuf[1] << 16) +
1527 ((unsigned long) iobuf[2] << 8) + ((unsigned long) iobuf[3]);
1528 dev_desc->blksz = ((unsigned long) iobuf[4] << 24) +
1529 ((unsigned long) iobuf[5] << 16) +
1530 ((unsigned long) iobuf[6] << 8) + ((unsigned long) iobuf[7]);
wdenk42dfe7a2004-03-14 22:25:36 +00001531#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001532 /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
1533 dev_desc->lba48 = 0;
wdenk42dfe7a2004-03-14 22:25:36 +00001534#endif
wdenkc6097192002-11-03 00:24:07 +00001535 return;
1536}
1537
1538
1539/*
1540 * atapi_read:
1541 * we transfer only one block per command, since the multiple DRQ per
1542 * command is not yet implemented
1543 */
1544#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1545#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001546#define ATAPI_READ_MAX_BLOCK (ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE)
wdenkc6097192002-11-03 00:24:07 +00001547
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001548ulong atapi_read(int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001549{
1550 ulong n = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001551 unsigned char ccb[12]; /* Command descriptor block */
wdenkc6097192002-11-03 00:24:07 +00001552 ulong cnt;
1553
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001554 debug("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1555 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +00001556
1557 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001558 if (blkcnt > ATAPI_READ_MAX_BLOCK)
1559 cnt = ATAPI_READ_MAX_BLOCK;
1560 else
1561 cnt = blkcnt;
wdenkc6097192002-11-03 00:24:07 +00001562
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001563 ccb[0] = ATAPI_CMD_READ_12;
1564 ccb[1] = 0; /* reserved */
1565 ccb[2] = (unsigned char) (blknr >> 24) & 0xFF; /* MSB Block */
1566 ccb[3] = (unsigned char) (blknr >> 16) & 0xFF; /* */
1567 ccb[4] = (unsigned char) (blknr >> 8) & 0xFF;
1568 ccb[5] = (unsigned char) blknr & 0xFF; /* LSB Block */
1569 ccb[6] = (unsigned char) (cnt >> 24) & 0xFF; /* MSB Block cnt */
1570 ccb[7] = (unsigned char) (cnt >> 16) & 0xFF;
1571 ccb[8] = (unsigned char) (cnt >> 8) & 0xFF;
1572 ccb[9] = (unsigned char) cnt & 0xFF; /* LSB Block */
1573 ccb[10] = 0; /* reserved */
1574 ccb[11] = 0; /* reserved */
1575
1576 if (atapi_issue_autoreq(device, ccb, 12,
1577 (unsigned char *) buffer,
1578 cnt * ATAPI_READ_BLOCK_SIZE)
1579 == 0xFF) {
wdenkc6097192002-11-03 00:24:07 +00001580 return (n);
1581 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001582 n += cnt;
1583 blkcnt -= cnt;
1584 blknr += cnt;
1585 buffer += (cnt * ATAPI_READ_BLOCK_SIZE);
wdenkc6097192002-11-03 00:24:07 +00001586 } while (blkcnt > 0);
1587 return (n);
1588}
1589
1590/* ------------------------------------------------------------------------- */
1591
1592#endif /* CONFIG_ATAPI */
1593
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001594U_BOOT_CMD(ide, 5, 1, do_ide,
1595 "IDE sub-system",
1596 "reset - reset IDE controller\n"
1597 "ide info - show available IDE devices\n"
1598 "ide device [dev] - show or set current device\n"
1599 "ide part [dev] - print partition table of one or all IDE devices\n"
1600 "ide read addr blk# cnt\n"
1601 "ide write addr blk# cnt - read/write `cnt'"
1602 " blocks starting at block `blk#'\n"
1603 " to/from memory address `addr'");
wdenk8bde7f72003-06-27 21:31:46 +00001604
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001605U_BOOT_CMD(diskboot, 3, 1, do_diskboot,
1606 "boot from IDE device", "loadAddr dev:part");