blob: 6b4813e4a9e3b64c18dd0ffd95585c825a723f8d [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
84#ifdef CONFIG_IDE_LED
Wolfgang Denk953b7e62010-06-13 18:28:54 +020085# if !defined(CONFIG_BMS2003) && \
86 !defined(CONFIG_CPC45) && \
87 !defined(CONFIG_KUP4K) && \
88 !defined(CONFIG_KUP4X)
wdenkc6097192002-11-03 00:24:07 +000089static void ide_led (uchar led, uchar status);
90#else
wdenk1f53a412002-12-04 23:39:58 +000091extern void ide_led (uchar led, uchar status);
92#endif
93#else
wdenkc6097192002-11-03 00:24:07 +000094#define ide_led(a,b) /* dummy */
95#endif
96
97#ifdef CONFIG_IDE_RESET
98static void ide_reset (void);
99#else
100#define ide_reset() /* dummy */
101#endif
102
103static void ide_ident (block_dev_desc_t *dev_desc);
104static uchar ide_wait (int dev, ulong t);
105
106#define IDE_TIME_OUT 2000 /* 2 sec timeout */
107
108#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
109
110#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
111
wdenkc6097192002-11-03 00:24:07 +0000112static void input_data(int dev, ulong *sect_buf, int words);
Wolfgang Denk96d04c32011-04-30 23:29:55 +0200113static void output_data(int dev, const ulong *sect_buf, int words);
wdenkc6097192002-11-03 00:24:07 +0000114static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
115
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116#ifndef CONFIG_SYS_ATA_PORT_ADDR
117#define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
Heiko Schocher566a4942007-06-22 19:11:54 +0200118#endif
wdenkc6097192002-11-03 00:24:07 +0000119
120#ifdef CONFIG_ATAPI
121static void atapi_inquiry(block_dev_desc_t *dev_desc);
Grant Likelyeb867a72007-02-20 09:05:45 +0100122ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer);
wdenkc6097192002-11-03 00:24:07 +0000123#endif
124
125
wdenkc6097192002-11-03 00:24:07 +0000126/* ------------------------------------------------------------------------- */
127
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000128int do_ide(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000129{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000130 int rcode = 0;
wdenkc6097192002-11-03 00:24:07 +0000131
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000132 switch (argc) {
133 case 0:
134 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000135 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000136 case 2:
137 if (strncmp(argv[1], "res", 3) == 0) {
138 puts("\nReset IDE"
139#ifdef CONFIG_IDE_8xx_DIRECT
140 " on PCMCIA " PCMCIA_SLOT_MSG
141#endif
142 ": ");
wdenkc6097192002-11-03 00:24:07 +0000143
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000144 ide_init();
145 return 0;
146 } else if (strncmp(argv[1], "inf", 3) == 0) {
147 int i;
148
149 putc('\n');
150
151 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
152 if (ide_dev_desc[i].type == DEV_TYPE_UNKNOWN)
153 continue; /* list only known devices */
154 printf("IDE device %d: ", i);
155 dev_print(&ide_dev_desc[i]);
156 }
157 return 0;
158
159 } else if (strncmp(argv[1], "dev", 3) == 0) {
160 if ((curr_device < 0)
161 || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
162 puts("\nno IDE devices available\n");
163 return 1;
164 }
165 printf("\nIDE device %d: ", curr_device);
166 dev_print(&ide_dev_desc[curr_device]);
167 return 0;
168 } else if (strncmp(argv[1], "part", 4) == 0) {
169 int dev, ok;
170
171 for (ok = 0, dev = 0;
172 dev < CONFIG_SYS_IDE_MAXDEVICE;
173 ++dev) {
174 if (ide_dev_desc[dev].part_type !=
175 PART_TYPE_UNKNOWN) {
176 ++ok;
177 if (dev)
178 putc('\n');
179 print_part(&ide_dev_desc[dev]);
180 }
181 }
182 if (!ok) {
183 puts("\nno IDE devices available\n");
184 rcode++;
185 }
186 return rcode;
187 }
Simon Glass4c12eeb2011-12-10 08:44:01 +0000188 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000189 case 3:
190 if (strncmp(argv[1], "dev", 3) == 0) {
191 int dev = (int) simple_strtoul(argv[2], NULL, 10);
192
193 printf("\nIDE device %d: ", dev);
194 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
195 puts("unknown device\n");
196 return 1;
197 }
198 dev_print(&ide_dev_desc[dev]);
199 /*ide_print (dev); */
200
201 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
202 return 1;
203
204 curr_device = dev;
205
206 puts("... is now current device\n");
207
208 return 0;
209 } else if (strncmp(argv[1], "part", 4) == 0) {
210 int dev = (int) simple_strtoul(argv[2], NULL, 10);
211
212 if (ide_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
213 print_part(&ide_dev_desc[dev]);
214 } else {
215 printf("\nIDE device %d not available\n",
216 dev);
217 rcode = 1;
218 }
219 return rcode;
220 }
221
Simon Glass4c12eeb2011-12-10 08:44:01 +0000222 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000223 default:
224 /* at least 4 args */
225
226 if (strcmp(argv[1], "read") == 0) {
227 ulong addr = simple_strtoul(argv[2], NULL, 16);
228 ulong cnt = simple_strtoul(argv[4], NULL, 16);
229 ulong n;
230
231#ifdef CONFIG_SYS_64BIT_LBA
232 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
233
234 printf("\nIDE read: device %d block # %lld, count %ld ... ",
235 curr_device, blk, cnt);
236#else
237 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
238
239 printf("\nIDE read: device %d block # %ld, count %ld ... ",
240 curr_device, blk, cnt);
241#endif
242
243 n = ide_dev_desc[curr_device].block_read(curr_device,
244 blk, cnt,
245 (ulong *)addr);
246 /* flush cache after read */
247 flush_cache(addr,
248 cnt * ide_dev_desc[curr_device].blksz);
249
250 printf("%ld blocks read: %s\n",
251 n, (n == cnt) ? "OK" : "ERROR");
252 if (n == cnt)
253 return 0;
254 else
255 return 1;
256 } else if (strcmp(argv[1], "write") == 0) {
257 ulong addr = simple_strtoul(argv[2], NULL, 16);
258 ulong cnt = simple_strtoul(argv[4], NULL, 16);
259 ulong n;
260
261#ifdef CONFIG_SYS_64BIT_LBA
262 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
263
264 printf("\nIDE write: device %d block # %lld, count %ld ... ",
265 curr_device, blk, cnt);
266#else
267 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
268
269 printf("\nIDE write: device %d block # %ld, count %ld ... ",
270 curr_device, blk, cnt);
271#endif
272 n = ide_write(curr_device, blk, cnt, (ulong *) addr);
273
274 printf("%ld blocks written: %s\n",
275 n, (n == cnt) ? "OK" : "ERROR");
276 if (n == cnt)
277 return 0;
278 else
279 return 1;
280 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +0000281 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000282 }
283
284 return rcode;
285 }
wdenkc6097192002-11-03 00:24:07 +0000286}
287
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000288int do_diskboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000289{
Rob Herring7405a132012-09-21 04:02:30 +0000290 return common_diskboot(cmdtp, "ide", argc, argv);
wdenkc6097192002-11-03 00:24:07 +0000291}
292
293/* ------------------------------------------------------------------------- */
294
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000295inline void __ide_outb(int dev, int port, unsigned char val)
Stefan Roesef2302d42008-08-06 14:05:38 +0200296{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000297 debug("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
298 dev, port, val,
299 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000300
301#if defined(CONFIG_IDE_AHB)
302 if (port) {
303 /* write command */
304 ide_write_register(dev, port, val);
305 } else {
306 /* write data */
307 outb(val, (ATA_CURR_BASE(dev)));
308 }
309#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000310 outb(val, (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000311#endif
Stefan Roesef2302d42008-08-06 14:05:38 +0200312}
Macpaul Lin0abddf82011-04-11 20:45:32 +0000313
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000314void ide_outb(int dev, int port, unsigned char val)
315 __attribute__ ((weak, alias("__ide_outb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200316
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000317inline unsigned char __ide_inb(int dev, int port)
Stefan Roesef2302d42008-08-06 14:05:38 +0200318{
319 uchar val;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000320
321#if defined(CONFIG_IDE_AHB)
322 val = ide_read_register(dev, port);
323#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000324 val = inb((ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000325#endif
326
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000327 debug("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
328 dev, port,
329 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)), val);
Stefan Roesef2302d42008-08-06 14:05:38 +0200330 return val;
331}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000332
Kim Phillips2df72b82009-05-19 12:53:36 -0500333unsigned char ide_inb(int dev, int port)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000334 __attribute__ ((weak, alias("__ide_inb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200335
Steven A. Falco36c2d302008-08-15 15:34:10 -0400336#ifdef CONFIG_TUNE_PIO
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000337inline int __ide_set_piomode(int pio_mode)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400338{
339 return 0;
340}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000341
342inline int ide_set_piomode(int pio_mode)
343 __attribute__ ((weak, alias("__ide_set_piomode")));
Steven A. Falco36c2d302008-08-15 15:34:10 -0400344#endif
345
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000346void ide_init(void)
wdenkc6097192002-11-03 00:24:07 +0000347{
wdenkc6097192002-11-03 00:24:07 +0000348 unsigned char c;
349 int i, bus;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000350
wdenk9fd5e312003-12-07 23:55:12 +0000351#ifdef CONFIG_IDE_8xx_PCCARD
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000352 extern int ide_devices_found; /* Initialized in check_ide_device() */
353#endif /* CONFIG_IDE_8xx_PCCARD */
wdenk9fd5e312003-12-07 23:55:12 +0000354
355#ifdef CONFIG_IDE_PREINIT
356 WATCHDOG_RESET();
357
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000358 if (ide_preinit()) {
359 puts("ide_preinit failed\n");
wdenk9fd5e312003-12-07 23:55:12 +0000360 return;
361 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000362#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000363
wdenkc6097192002-11-03 00:24:07 +0000364 WATCHDOG_RESET();
365
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000366 /*
367 * Reset the IDE just to be sure.
wdenkc6097192002-11-03 00:24:07 +0000368 * Light LED's to show
369 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000370 ide_led((LED_IDE1 | LED_IDE2), 1); /* LED's on */
371
372 /* ATAPI Drives seems to need a proper IDE Reset */
373 ide_reset();
wdenkc6097192002-11-03 00:24:07 +0000374
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000375#ifdef CONFIG_IDE_INIT_POSTRESET
376 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000377
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000378 if (ide_init_postreset()) {
379 puts("ide_preinit_postreset failed\n");
380 return;
381 }
382#endif /* CONFIG_IDE_INIT_POSTRESET */
wdenkc6097192002-11-03 00:24:07 +0000383
384 /*
385 * Wait for IDE to get ready.
386 * According to spec, this can take up to 31 seconds!
387 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000388 for (bus = 0; bus < CONFIG_SYS_IDE_MAXBUS; ++bus) {
389 int dev =
390 bus * (CONFIG_SYS_IDE_MAXDEVICE /
391 CONFIG_SYS_IDE_MAXBUS);
wdenkc6097192002-11-03 00:24:07 +0000392
wdenk6069ff22003-02-28 00:49:47 +0000393#ifdef CONFIG_IDE_8xx_PCCARD
394 /* Skip non-ide devices from probing */
395 if ((ide_devices_found & (1 << bus)) == 0) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000396 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenk6069ff22003-02-28 00:49:47 +0000397 continue;
398 }
399#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000400 printf("Bus %d: ", bus);
wdenkc6097192002-11-03 00:24:07 +0000401
402 ide_bus_ok[bus] = 0;
403
404 /* Select device
405 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000406 udelay(100000); /* 100 ms */
407 ide_outb(dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
408 udelay(100000); /* 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000409 i = 0;
410 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000411 udelay(10000); /* 10 ms */
wdenkc6097192002-11-03 00:24:07 +0000412
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000413 c = ide_inb(dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000414 i++;
415 if (i > (ATA_RESET_TIME * 100)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000416 puts("** Timeout **\n");
417 /* LED's off */
418 ide_led((LED_IDE1 | LED_IDE2), 0);
wdenkc6097192002-11-03 00:24:07 +0000419 return;
420 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000421 if ((i >= 100) && ((i % 100) == 0))
422 putc('.');
423
wdenkc6097192002-11-03 00:24:07 +0000424 } while (c & ATA_STAT_BUSY);
425
426 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000427 puts("not available ");
428 debug("Status = 0x%02X ", c);
429#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
430 } else if ((c & ATA_STAT_READY) == 0) {
431 puts("not available ");
432 debug("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000433#endif
434 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000435 puts("OK ");
wdenkc6097192002-11-03 00:24:07 +0000436 ide_bus_ok[bus] = 1;
437 }
438 WATCHDOG_RESET();
439 }
wdenkc7de8292002-11-19 11:04:11 +0000440
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000441 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000442
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000443 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc6097192002-11-03 00:24:07 +0000444
445 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000446 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
wdenkc6097192002-11-03 00:24:07 +0000447#ifdef CONFIG_IDE_LED
448 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
449#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000450 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
451 ide_dev_desc[i].if_type = IF_TYPE_IDE;
452 ide_dev_desc[i].dev = i;
453 ide_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
454 ide_dev_desc[i].blksz = 0;
455 ide_dev_desc[i].lba = 0;
456 ide_dev_desc[i].block_read = ide_read;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000457 ide_dev_desc[i].block_write = ide_write;
wdenkc6097192002-11-03 00:24:07 +0000458 if (!ide_bus_ok[IDE_BUS(i)])
459 continue;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000460 ide_led(led, 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000461 ide_ident(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000462 ide_led(led, 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000463 dev_print(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000464
wdenkc6097192002-11-03 00:24:07 +0000465 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000466 /* initialize partition type */
467 init_part(&ide_dev_desc[i]);
wdenkc6097192002-11-03 00:24:07 +0000468 if (curr_device < 0)
469 curr_device = i;
470 }
471 }
472 WATCHDOG_RESET();
473}
474
475/* ------------------------------------------------------------------------- */
476
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000477#ifdef CONFIG_PARTITIONS
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000478block_dev_desc_t *ide_get_dev(int dev)
wdenkc6097192002-11-03 00:24:07 +0000479{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200480 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
wdenkc6097192002-11-03 00:24:07 +0000481}
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000482#endif
wdenkc6097192002-11-03 00:24:07 +0000483
wdenkc6097192002-11-03 00:24:07 +0000484/* ------------------------------------------------------------------------- */
485
wdenk5da627a2003-10-09 20:09:04 +0000486/* We only need to swap data if we are running on a big endian cpu. */
487/* But Au1x00 cpu:s already swaps data in big endian mode! */
Tom Rini61c0d6a2012-09-26 15:20:33 -0700488#if defined(__LITTLE_ENDIAN) || defined(CONFIG_SOC_AU1X00)
wdenk5da627a2003-10-09 20:09:04 +0000489#define input_swap_data(x,y,z) input_data(x,y,z)
490#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000491static void input_swap_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000492{
Wolfgang Denk77efe352010-09-19 21:28:25 +0200493#if defined(CONFIG_CPC45)
wdenka522fa02004-01-04 22:51:12 +0000494 uchar i;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000495 volatile uchar *pbuf_even =
496 (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
497 volatile uchar *pbuf_odd =
498 (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
499 ushort *dbuf = (ushort *) sect_buf;
wdenka522fa02004-01-04 22:51:12 +0000500
501 while (words--) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000502 for (i = 0; i < 2; i++) {
503 *(((uchar *) (dbuf)) + 1) = *pbuf_even;
504 *(uchar *) dbuf = *pbuf_odd;
505 dbuf += 1;
wdenka522fa02004-01-04 22:51:12 +0000506 }
507 }
wdenkf4733a02005-03-06 01:21:30 +0000508#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000509 volatile ushort *pbuf =
510 (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
511 ushort *dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000512
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000513 debug("in input swap data base for read is %lx\n",
514 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +0000515
516 while (words--) {
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200517#ifdef __MIPS__
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000518 *dbuf++ = swab16p((u16 *) pbuf);
519 *dbuf++ = swab16p((u16 *) pbuf);
Heiko Schocher566a4942007-06-22 19:11:54 +0200520#elif defined(CONFIG_PCS440EP)
521 *dbuf++ = *pbuf;
522 *dbuf++ = *pbuf;
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200523#else
wdenk1a344f22005-02-03 23:00:49 +0000524 *dbuf++ = ld_le16(pbuf);
525 *dbuf++ = ld_le16(pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200526#endif /* !MIPS */
wdenk1a344f22005-02-03 23:00:49 +0000527 }
528#endif
wdenkc6097192002-11-03 00:24:07 +0000529}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000530#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000531
wdenk2262cfe2002-11-18 00:14:45 +0000532
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530533#if defined(CONFIG_IDE_SWAP_IO)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000534static void output_data(int dev, const ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000535{
Wolfgang Denk77efe352010-09-19 21:28:25 +0200536#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000537 uchar *dbuf;
538 volatile uchar *pbuf_even;
539 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +0000540
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000541 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
542 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
543 dbuf = (uchar *) sect_buf;
wdenka522fa02004-01-04 22:51:12 +0000544 while (words--) {
wdenk5cf91d62004-04-23 20:32:05 +0000545 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000546 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000547 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000548 *pbuf_odd = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000549 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000550 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000551 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000552 *pbuf_odd = *dbuf++;
553 }
wdenk1a344f22005-02-03 23:00:49 +0000554#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000555 ushort *dbuf;
556 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000557
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000558 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
559 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000560 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200561#if defined(CONFIG_PCS440EP)
562 /* not tested, because CF was write protected */
563 EIEIO;
564 *pbuf = ld_le16(dbuf++);
565 EIEIO;
566 *pbuf = ld_le16(dbuf++);
567#else
wdenk1a344f22005-02-03 23:00:49 +0000568 EIEIO;
569 *pbuf = *dbuf++;
570 EIEIO;
571 *pbuf = *dbuf++;
Heiko Schocher566a4942007-06-22 19:11:54 +0200572#endif
wdenk1a344f22005-02-03 23:00:49 +0000573 }
574#endif
wdenkc6097192002-11-03 00:24:07 +0000575}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000576#else /* ! CONFIG_IDE_SWAP_IO */
577static void output_data(int dev, const ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000578{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000579#if defined(CONFIG_IDE_AHB)
580 ide_write_data(dev, sect_buf, words);
581#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000582 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000583#endif
wdenk2262cfe2002-11-18 00:14:45 +0000584}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000585#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000586
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530587#if defined(CONFIG_IDE_SWAP_IO)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000588static void input_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000589{
Wolfgang Denk77efe352010-09-19 21:28:25 +0200590#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000591 uchar *dbuf;
592 volatile uchar *pbuf_even;
593 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +0000594
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000595 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
596 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
597 dbuf = (uchar *) sect_buf;
wdenka522fa02004-01-04 22:51:12 +0000598 while (words--) {
wdenka522fa02004-01-04 22:51:12 +0000599 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +0000600 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000601 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000602 *dbuf++ = *pbuf_odd;
wdenk5cf91d62004-04-23 20:32:05 +0000603 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000604 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000605 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +0000606 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000607 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000608 *dbuf++ = *pbuf_odd;
wdenk1a344f22005-02-03 23:00:49 +0000609 EIEIO;
610 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000611 }
wdenk1a344f22005-02-03 23:00:49 +0000612#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000613 ushort *dbuf;
614 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000615
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000616 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
617 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000618
619 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
620
621 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200622#if defined(CONFIG_PCS440EP)
623 EIEIO;
624 *dbuf++ = ld_le16(pbuf);
625 EIEIO;
626 *dbuf++ = ld_le16(pbuf);
627#else
wdenk1a344f22005-02-03 23:00:49 +0000628 EIEIO;
629 *dbuf++ = *pbuf;
630 EIEIO;
631 *dbuf++ = *pbuf;
Heiko Schocher566a4942007-06-22 19:11:54 +0200632#endif
wdenk1a344f22005-02-03 23:00:49 +0000633 }
634#endif
wdenkc6097192002-11-03 00:24:07 +0000635}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000636#else /* ! CONFIG_IDE_SWAP_IO */
637static void input_data(int dev, ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000638{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000639#if defined(CONFIG_IDE_AHB)
640 ide_read_data(dev, sect_buf, words);
641#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000642 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000643#endif
wdenk2262cfe2002-11-18 00:14:45 +0000644}
645
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000646#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000647
648/* -------------------------------------------------------------------------
649 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000650static void ide_ident(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +0000651{
wdenkc6097192002-11-03 00:24:07 +0000652 unsigned char c;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000653 hd_driveid_t iop;
wdenkc6097192002-11-03 00:24:07 +0000654
wdenk64f70be2004-09-28 20:34:50 +0000655#ifdef CONFIG_ATAPI
656 int retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000657#endif
658
Steven A. Falco36c2d302008-08-15 15:34:10 -0400659#ifdef CONFIG_TUNE_PIO
660 int pio_mode;
661#endif
662
wdenkc6097192002-11-03 00:24:07 +0000663#if 0
664 int mode, cycle_time;
665#endif
666 int device;
wdenkc6097192002-11-03 00:24:07 +0000667
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000668 device = dev_desc->dev;
669 printf(" Device %d: ", device);
670
671 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000672 /* Select device
673 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000674 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
675 dev_desc->if_type = IF_TYPE_IDE;
wdenkc6097192002-11-03 00:24:07 +0000676#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +0000677
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000678 retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000679
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000680 /* Warning: This will be tricky to read */
681 while (retries <= 1) {
682 /* check signature */
683 if ((ide_inb(device, ATA_SECT_CNT) == 0x01) &&
684 (ide_inb(device, ATA_SECT_NUM) == 0x01) &&
685 (ide_inb(device, ATA_CYL_LOW) == 0x14) &&
686 (ide_inb(device, ATA_CYL_HIGH) == 0xEB)) {
687 /* ATAPI Signature found */
688 dev_desc->if_type = IF_TYPE_ATAPI;
689 /*
690 * Start Ident Command
691 */
692 ide_outb(device, ATA_COMMAND, ATAPI_CMD_IDENT);
693 /*
694 * Wait for completion - ATAPI devices need more time
695 * to become ready
696 */
697 c = ide_wait(device, ATAPI_TIME_OUT);
698 } else
wdenkc6097192002-11-03 00:24:07 +0000699#endif
wdenk1a344f22005-02-03 23:00:49 +0000700 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000701 /*
702 * Start Ident Command
703 */
704 ide_outb(device, ATA_COMMAND, ATA_CMD_IDENT);
705
706 /*
707 * Wait for completion
708 */
709 c = ide_wait(device, IDE_TIME_OUT);
wdenk1a344f22005-02-03 23:00:49 +0000710 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000711 ide_led(DEVICE_LED(device), 0); /* LED off */
712
713 if (((c & ATA_STAT_DRQ) == 0) ||
714 ((c & (ATA_STAT_FAULT | ATA_STAT_ERR)) != 0)) {
wdenk64f70be2004-09-28 20:34:50 +0000715#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000716 {
717 /*
718 * Need to soft reset the device
719 * in case it's an ATAPI...
720 */
721 debug("Retrying...\n");
722 ide_outb(device, ATA_DEV_HD,
723 ATA_LBA | ATA_DEVICE(device));
724 udelay(100000);
725 ide_outb(device, ATA_COMMAND, 0x08);
726 udelay(500000); /* 500 ms */
727 }
728 /*
729 * Select device
730 */
731 ide_outb(device, ATA_DEV_HD,
732 ATA_LBA | ATA_DEVICE(device));
733 retries++;
734#else
735 return;
736#endif
737 }
738#ifdef CONFIG_ATAPI
739 else
740 break;
741 } /* see above - ugly to read */
wdenk64f70be2004-09-28 20:34:50 +0000742
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000743 if (retries == 2) /* Not found */
wdenk64f70be2004-09-28 20:34:50 +0000744 return;
745#endif
wdenkc7de8292002-11-19 11:04:11 +0000746
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000747 input_swap_data(device, (ulong *)&iop, ATA_SECTORWORDS);
wdenkc6097192002-11-03 00:24:07 +0000748
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000749 ident_cpy((unsigned char *) dev_desc->revision, iop.fw_rev,
750 sizeof(dev_desc->revision));
751 ident_cpy((unsigned char *) dev_desc->vendor, iop.model,
752 sizeof(dev_desc->vendor));
753 ident_cpy((unsigned char *) dev_desc->product, iop.serial_no,
754 sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +0000755#ifdef __LITTLE_ENDIAN
756 /*
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500757 * firmware revision, model, and serial number have Big Endian Byte
758 * order in Word. Convert all three to little endian.
wdenkc3f9d492004-03-14 00:59:59 +0000759 *
760 * See CF+ and CompactFlash Specification Revision 2.0:
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500761 * 6.2.1.6: Identify Drive, Table 39 for more details
wdenkc3f9d492004-03-14 00:59:59 +0000762 */
763
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000764 strswab(dev_desc->revision);
765 strswab(dev_desc->vendor);
766 strswab(dev_desc->product);
wdenkc3f9d492004-03-14 00:59:59 +0000767#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +0000768
Marek Vasutb18eabf2011-08-20 09:15:13 +0000769 if ((iop.config & 0x0080) == 0x0080)
wdenkc6097192002-11-03 00:24:07 +0000770 dev_desc->removable = 1;
771 else
772 dev_desc->removable = 0;
773
Steven A. Falco36c2d302008-08-15 15:34:10 -0400774#ifdef CONFIG_TUNE_PIO
775 /* Mode 0 - 2 only, are directly determined by word 51. */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000776 pio_mode = iop.tPIO;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400777 if (pio_mode > 2) {
778 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000779 /* Force it to dead slow, and hope for the best... */
780 pio_mode = 0;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400781 }
782
783 /* Any CompactFlash Storage Card that supports PIO mode 3 or above
784 * shall set bit 1 of word 53 to one and support the fields contained
785 * in words 64 through 70.
786 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000787 if (iop.field_valid & 0x02) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000788 /*
789 * Mode 3 and above are possible. Check in order from slow
Steven A. Falco36c2d302008-08-15 15:34:10 -0400790 * to fast, so we wind up with the highest mode allowed.
791 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000792 if (iop.eide_pio_modes & 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400793 pio_mode = 3;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000794 if (iop.eide_pio_modes & 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400795 pio_mode = 4;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000796 if (ata_id_is_cfa((u16 *)&iop)) {
797 if ((iop.cf_advanced_caps & 0x07) == 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400798 pio_mode = 5;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000799 if ((iop.cf_advanced_caps & 0x07) == 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400800 pio_mode = 6;
801 }
802 }
803
804 /* System-specific, depends on bus speeds, etc. */
805 ide_set_piomode(pio_mode);
806#endif /* CONFIG_TUNE_PIO */
807
wdenkc6097192002-11-03 00:24:07 +0000808#if 0
809 /*
810 * Drive PIO mode autoselection
811 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000812 mode = iop.tPIO;
wdenkc6097192002-11-03 00:24:07 +0000813
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000814 printf("tPIO = 0x%02x = %d\n", mode, mode);
wdenkc6097192002-11-03 00:24:07 +0000815 if (mode > 2) { /* 2 is maximum allowed tPIO value */
816 mode = 2;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000817 debug("Override tPIO -> 2\n");
wdenkc6097192002-11-03 00:24:07 +0000818 }
Marek Vasutb18eabf2011-08-20 09:15:13 +0000819 if (iop.field_valid & 2) { /* drive implements ATA2? */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000820 debug("Drive implements ATA2\n");
Marek Vasutb18eabf2011-08-20 09:15:13 +0000821 if (iop.capability & 8) { /* drive supports use_iordy? */
822 cycle_time = iop.eide_pio_iordy;
wdenkc6097192002-11-03 00:24:07 +0000823 } else {
Marek Vasutb18eabf2011-08-20 09:15:13 +0000824 cycle_time = iop.eide_pio;
wdenkc6097192002-11-03 00:24:07 +0000825 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000826 debug("cycle time = %d\n", cycle_time);
wdenkc6097192002-11-03 00:24:07 +0000827 mode = 4;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000828 if (cycle_time > 120)
829 mode = 3; /* 120 ns for PIO mode 4 */
830 if (cycle_time > 180)
831 mode = 2; /* 180 ns for PIO mode 3 */
832 if (cycle_time > 240)
833 mode = 1; /* 240 ns for PIO mode 4 */
834 if (cycle_time > 383)
835 mode = 0; /* 383 ns for PIO mode 4 */
wdenkc6097192002-11-03 00:24:07 +0000836 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000837 printf("PIO mode to use: PIO %d\n", mode);
wdenkc6097192002-11-03 00:24:07 +0000838#endif /* 0 */
839
840#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000841 if (dev_desc->if_type == IF_TYPE_ATAPI) {
wdenkc6097192002-11-03 00:24:07 +0000842 atapi_inquiry(dev_desc);
843 return;
844 }
845#endif /* CONFIG_ATAPI */
846
wdenkc3f9d492004-03-14 00:59:59 +0000847#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +0000848 /* swap shorts */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000849 dev_desc->lba = (iop.lba_capacity << 16) | (iop.lba_capacity >> 16);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000850#else /* ! __BIG_ENDIAN */
wdenkc3f9d492004-03-14 00:59:59 +0000851 /*
852 * do not swap shorts on little endian
853 *
854 * See CF+ and CompactFlash Specification Revision 2.0:
855 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
856 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000857 dev_desc->lba = iop.lba_capacity;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000858#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +0000859
wdenk42dfe7a2004-03-14 22:25:36 +0000860#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000861 if (iop.command_set_2 & 0x0400) { /* LBA 48 support */
wdenk6e592382004-04-18 17:39:38 +0000862 dev_desc->lba48 = 1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000863 dev_desc->lba = (unsigned long long) iop.lba48_capacity[0] |
864 ((unsigned long long) iop.lba48_capacity[1] << 16) |
865 ((unsigned long long) iop.lba48_capacity[2] << 32) |
866 ((unsigned long long) iop.lba48_capacity[3] << 48);
wdenkc40b2952004-03-13 23:29:43 +0000867 } else {
wdenkc40b2952004-03-13 23:29:43 +0000868 dev_desc->lba48 = 0;
869 }
870#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +0000871 /* assuming HD */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000872 dev_desc->type = DEV_TYPE_HARDDISK;
873 dev_desc->blksz = ATA_BLOCKSIZE;
874 dev_desc->lun = 0; /* just to fill something in... */
wdenkc6097192002-11-03 00:24:07 +0000875
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000876#if 0 /* only used to test the powersaving mode,
877 * if enabled, the drive goes after 5 sec
878 * in standby mode */
879 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
880 c = ide_wait(device, IDE_TIME_OUT);
881 ide_outb(device, ATA_SECT_CNT, 1);
882 ide_outb(device, ATA_LBA_LOW, 0);
883 ide_outb(device, ATA_LBA_MID, 0);
884 ide_outb(device, ATA_LBA_HIGH, 0);
885 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
886 ide_outb(device, ATA_COMMAND, 0xe3);
887 udelay(50);
888 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000889#endif
890}
891
892
893/* ------------------------------------------------------------------------- */
894
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000895ulong ide_read(int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +0000896{
897 ulong n = 0;
898 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000899 unsigned char pwrsave = 0; /* power save */
900
wdenk42dfe7a2004-03-14 22:25:36 +0000901#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000902 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +0000903
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200904 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +0000905 /* more than 28 bits used, use 48bit mode */
906 lba48 = 1;
907 }
908#endif
Marek Vasut5bbe10d2011-10-25 11:39:15 +0200909 debug("ide_read dev %d start %lX, blocks %lX buffer at %lX\n",
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000910 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +0000911
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000912 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000913
914 /* Select device
915 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000916 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
917 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000918
919 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000920 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000921 goto IDE_READ_E;
922 }
923
924 /* first check if the drive is in Powersaving mode, if yes,
925 * increase the timeout value */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000926 ide_outb(device, ATA_COMMAND, ATA_CMD_CHK_PWR);
927 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000928
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000929 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000930
931 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000932 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000933 goto IDE_READ_E;
934 }
935 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000936 printf("No Powersaving mode %X\n", c);
wdenkc6097192002-11-03 00:24:07 +0000937 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000938 c = ide_inb(device, ATA_SECT_CNT);
939 debug("Powersaving %02X\n", c);
940 if (c == 0)
941 pwrsave = 1;
wdenkc6097192002-11-03 00:24:07 +0000942 }
943
944
945 while (blkcnt-- > 0) {
946
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000947 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000948
949 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000950 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000951 break;
952 }
wdenk42dfe7a2004-03-14 22:25:36 +0000953#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000954 if (lba48) {
955 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000956 ide_outb(device, ATA_SECT_CNT, 0);
957 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200958#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000959 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
960 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200961#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000962 ide_outb(device, ATA_LBA_MID, 0);
963 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200964#endif
wdenkc40b2952004-03-13 23:29:43 +0000965 }
966#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000967 ide_outb(device, ATA_SECT_CNT, 1);
968 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
969 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
970 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +0000971
wdenk42dfe7a2004-03-14 22:25:36 +0000972#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000973 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000974 ide_outb(device, ATA_DEV_HD,
975 ATA_LBA | ATA_DEVICE(device));
976 ide_outb(device, ATA_COMMAND, ATA_CMD_READ_EXT);
wdenkc40b2952004-03-13 23:29:43 +0000977
978 } else
979#endif
980 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000981 ide_outb(device, ATA_DEV_HD, ATA_LBA |
982 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
983 ide_outb(device, ATA_COMMAND, ATA_CMD_READ);
wdenkc40b2952004-03-13 23:29:43 +0000984 }
wdenkc6097192002-11-03 00:24:07 +0000985
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000986 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000987
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000988 if (pwrsave) {
989 /* may take up to 4 sec */
990 c = ide_wait(device, IDE_SPIN_UP_TIME_OUT);
991 pwrsave = 0;
wdenkc6097192002-11-03 00:24:07 +0000992 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000993 /* can't take over 500 ms */
994 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000995 }
996
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000997 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
998 ATA_STAT_DRQ) {
Heiko Schocher4b142fe2009-12-03 11:21:21 +0100999#if defined(CONFIG_SYS_64BIT_LBA)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001000 printf("Error (no IRQ) dev %d blk %lld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001001 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001002#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001003 printf("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1004 device, (ulong) blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001005#endif
wdenkc6097192002-11-03 00:24:07 +00001006 break;
1007 }
1008
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001009 input_data(device, buffer, ATA_SECTORWORDS);
1010 (void) ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001011
1012 ++n;
1013 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001014 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001015 }
1016IDE_READ_E:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001017 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001018 return (n);
1019}
1020
1021/* ------------------------------------------------------------------------- */
1022
1023
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001024ulong ide_write(int device, lbaint_t blknr, ulong blkcnt, const void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001025{
1026 ulong n = 0;
1027 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001028
wdenk42dfe7a2004-03-14 22:25:36 +00001029#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001030 unsigned char lba48 = 0;
1031
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001032 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +00001033 /* more than 28 bits used, use 48bit mode */
1034 lba48 = 1;
1035 }
1036#endif
wdenkc6097192002-11-03 00:24:07 +00001037
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001038 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001039
1040 /* Select device
1041 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001042 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001043
1044 while (blkcnt-- > 0) {
1045
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001046 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001047
1048 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001049 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +00001050 goto WR_OUT;
1051 }
wdenk42dfe7a2004-03-14 22:25:36 +00001052#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001053 if (lba48) {
1054 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001055 ide_outb(device, ATA_SECT_CNT, 0);
1056 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001057#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001058 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1059 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001060#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001061 ide_outb(device, ATA_LBA_MID, 0);
1062 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001063#endif
wdenkc40b2952004-03-13 23:29:43 +00001064 }
1065#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001066 ide_outb(device, ATA_SECT_CNT, 1);
1067 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1068 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1069 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001070
wdenk42dfe7a2004-03-14 22:25:36 +00001071#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001072 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001073 ide_outb(device, ATA_DEV_HD,
1074 ATA_LBA | ATA_DEVICE(device));
1075 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
wdenkc40b2952004-03-13 23:29:43 +00001076
1077 } else
1078#endif
1079 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001080 ide_outb(device, ATA_DEV_HD, ATA_LBA |
1081 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
1082 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE);
wdenkc40b2952004-03-13 23:29:43 +00001083 }
wdenkc6097192002-11-03 00:24:07 +00001084
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001085 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001086
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001087 /* can't take over 500 ms */
1088 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001089
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001090 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
1091 ATA_STAT_DRQ) {
Heiko Schocher4b142fe2009-12-03 11:21:21 +01001092#if defined(CONFIG_SYS_64BIT_LBA)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001093 printf("Error (no IRQ) dev %d blk %lld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001094 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001095#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001096 printf("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1097 device, (ulong) blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001098#endif
wdenkc6097192002-11-03 00:24:07 +00001099 goto WR_OUT;
1100 }
1101
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001102 output_data(device, buffer, ATA_SECTORWORDS);
1103 c = ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001104 ++n;
1105 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001106 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001107 }
1108WR_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001109 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001110 return (n);
1111}
1112
1113/* ------------------------------------------------------------------------- */
1114
1115/*
1116 * copy src to dest, skipping leading and trailing blanks and null
1117 * terminate the string
wdenk7d7ce412004-03-17 01:13:07 +00001118 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +00001119 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001120static void ident_cpy(unsigned char *dst, unsigned char *src,
1121 unsigned int len)
wdenkc6097192002-11-03 00:24:07 +00001122{
wdenk7d7ce412004-03-17 01:13:07 +00001123 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +00001124
wdenk7d7ce412004-03-17 01:13:07 +00001125 last = dst;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001126 end = src + len - 1;
wdenk7d7ce412004-03-17 01:13:07 +00001127
1128 /* reserve space for '\0' */
1129 if (len < 2)
1130 goto OUT;
wdenkefa329c2004-03-23 20:18:25 +00001131
wdenk7d7ce412004-03-17 01:13:07 +00001132 /* skip leading white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001133 while ((*src) && (src < end) && (*src == ' '))
wdenk7d7ce412004-03-17 01:13:07 +00001134 ++src;
1135
1136 /* copy string, omitting trailing white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001137 while ((*src) && (src < end)) {
wdenk7d7ce412004-03-17 01:13:07 +00001138 *dst++ = *src;
1139 if (*src++ != ' ')
1140 last = dst;
wdenkc6097192002-11-03 00:24:07 +00001141 }
wdenk7d7ce412004-03-17 01:13:07 +00001142OUT:
1143 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +00001144}
1145
1146/* ------------------------------------------------------------------------- */
1147
1148/*
1149 * Wait until Busy bit is off, or timeout (in ms)
1150 * Return last status
1151 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001152static uchar ide_wait(int dev, ulong t)
wdenkc6097192002-11-03 00:24:07 +00001153{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001154 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001155 uchar c;
1156
wdenk2262cfe2002-11-18 00:14:45 +00001157 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001158 udelay(100);
1159 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001160 break;
wdenkc6097192002-11-03 00:24:07 +00001161 }
1162 return (c);
1163}
1164
1165/* ------------------------------------------------------------------------- */
1166
1167#ifdef CONFIG_IDE_RESET
1168extern void ide_set_reset(int idereset);
1169
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001170static void ide_reset(void)
wdenkc6097192002-11-03 00:24:07 +00001171{
wdenkc6097192002-11-03 00:24:07 +00001172 int i;
1173
1174 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001175 for (i = 0; i < CONFIG_SYS_IDE_MAXBUS; ++i)
wdenkc6097192002-11-03 00:24:07 +00001176 ide_bus_ok[i] = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001177 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i)
wdenkc6097192002-11-03 00:24:07 +00001178 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1179
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001180 ide_set_reset(1); /* assert reset */
wdenkc6097192002-11-03 00:24:07 +00001181
Martin Krausee175eac2008-04-03 13:37:56 +02001182 /* the reset signal shall be asserted for et least 25 us */
1183 udelay(25);
1184
wdenkc6097192002-11-03 00:24:07 +00001185 WATCHDOG_RESET();
1186
wdenkc6097192002-11-03 00:24:07 +00001187 /* de-assert RESET signal */
1188 ide_set_reset(0);
1189
1190 /* wait 250 ms */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001191 for (i = 0; i < 250; ++i)
1192 udelay(1000);
wdenkc6097192002-11-03 00:24:07 +00001193}
1194
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001195#endif /* CONFIG_IDE_RESET */
wdenkc6097192002-11-03 00:24:07 +00001196
1197/* ------------------------------------------------------------------------- */
1198
wdenke2ffd592004-12-31 09:32:47 +00001199#if defined(CONFIG_IDE_LED) && \
wdenke2ffd592004-12-31 09:32:47 +00001200 !defined(CONFIG_CPC45) && \
wdenke2ffd592004-12-31 09:32:47 +00001201 !defined(CONFIG_KUP4K) && \
1202 !defined(CONFIG_KUP4X)
wdenkc6097192002-11-03 00:24:07 +00001203
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001204static uchar led_buffer; /* Buffer for current LED status */
wdenkc6097192002-11-03 00:24:07 +00001205
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001206static void ide_led(uchar led, uchar status)
wdenkc6097192002-11-03 00:24:07 +00001207{
1208 uchar *led_port = LED_PORT;
1209
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001210 if (status) /* switch LED on */
1211 led_buffer |= led;
1212 else /* switch LED off */
wdenkc6097192002-11-03 00:24:07 +00001213 led_buffer &= ~led;
wdenkc6097192002-11-03 00:24:07 +00001214
1215 *led_port = led_buffer;
1216}
1217
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001218#endif /* CONFIG_IDE_LED */
wdenkc6097192002-11-03 00:24:07 +00001219
Heiko Schocher3887c3f2009-09-23 07:56:08 +02001220#if defined(CONFIG_OF_IDE_FIXUP)
1221int ide_device_present(int dev)
1222{
1223 if (dev >= CONFIG_SYS_IDE_MAXBUS)
1224 return 0;
1225 return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1226}
1227#endif
wdenkc6097192002-11-03 00:24:07 +00001228/* ------------------------------------------------------------------------- */
1229
1230#ifdef CONFIG_ATAPI
1231/****************************************************************************
1232 * ATAPI Support
1233 */
1234
Albert Aribaudf2a37fc2010-08-08 05:17:05 +05301235#if defined(CONFIG_IDE_SWAP_IO)
wdenkc6097192002-11-03 00:24:07 +00001236/* since ATAPI may use commands with not 4 bytes alligned length
1237 * we have our own transfer functions, 2 bytes alligned */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001238static void output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenkc6097192002-11-03 00:24:07 +00001239{
Wolfgang Denk77efe352010-09-19 21:28:25 +02001240#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001241 uchar *dbuf;
1242 volatile uchar *pbuf_even;
1243 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +00001244
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001245 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
1246 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
wdenka522fa02004-01-04 22:51:12 +00001247 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001248 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001249 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +00001250 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001251 *pbuf_odd = *dbuf++;
1252 }
wdenk1a344f22005-02-03 23:00:49 +00001253#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001254 ushort *dbuf;
1255 volatile ushort *pbuf;
wdenkc6097192002-11-03 00:24:07 +00001256
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001257 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1258 dbuf = (ushort *) sect_buf;
wdenkdb01a2e2004-04-15 23:14:49 +00001259
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001260 debug("in output data shorts base for read is %lx\n",
1261 (unsigned long) pbuf);
wdenkdb01a2e2004-04-15 23:14:49 +00001262
wdenkc6097192002-11-03 00:24:07 +00001263 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001264 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +00001265 *pbuf = *dbuf++;
wdenkc6097192002-11-03 00:24:07 +00001266 }
wdenk1a344f22005-02-03 23:00:49 +00001267#endif
1268}
1269
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001270static void input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk1a344f22005-02-03 23:00:49 +00001271{
Wolfgang Denk77efe352010-09-19 21:28:25 +02001272#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001273 uchar *dbuf;
1274 volatile uchar *pbuf_even;
1275 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +00001276
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001277 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
1278 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
wdenka522fa02004-01-04 22:51:12 +00001279 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001280 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001281 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +00001282 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001283 *dbuf++ = *pbuf_odd;
1284 }
wdenk1a344f22005-02-03 23:00:49 +00001285#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001286 ushort *dbuf;
1287 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +00001288
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001289 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1290 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +00001291
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001292 debug("in input data shorts base for read is %lx\n",
1293 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +00001294
1295 while (shorts--) {
1296 EIEIO;
1297 *dbuf++ = *pbuf;
1298 }
1299#endif
wdenkc6097192002-11-03 00:24:07 +00001300}
1301
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001302#else /* ! CONFIG_IDE_SWAP_IO */
1303static void output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001304{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001305 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001306}
1307
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001308static void input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001309{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001310 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001311}
1312
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001313#endif /* CONFIG_IDE_SWAP_IO */
wdenk2262cfe2002-11-18 00:14:45 +00001314
wdenkc6097192002-11-03 00:24:07 +00001315/*
1316 * Wait until (Status & mask) == res, or timeout (in ms)
1317 * Return last status
1318 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1319 * and then they set their DRQ Bit
1320 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001321static uchar atapi_wait_mask(int dev, ulong t, uchar mask, uchar res)
wdenkc6097192002-11-03 00:24:07 +00001322{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001323 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001324 uchar c;
1325
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001326 /* prevents to read the status before valid */
1327 c = ide_inb(dev, ATA_DEV_CTL);
1328
wdenk2262cfe2002-11-18 00:14:45 +00001329 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001330 /* break if error occurs (doesn't make sense to wait more) */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001331 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR)
wdenkc6097192002-11-03 00:24:07 +00001332 break;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001333 udelay(100);
1334 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001335 break;
wdenkc6097192002-11-03 00:24:07 +00001336 }
1337 return (c);
1338}
1339
1340/*
1341 * issue an atapi command
1342 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001343unsigned char atapi_issue(int device, unsigned char *ccb, int ccblen,
1344 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001345{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001346 unsigned char c, err, mask, res;
wdenkc6097192002-11-03 00:24:07 +00001347 int n;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001348
1349 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001350
1351 /* Select device
1352 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001353 mask = ATA_STAT_BUSY | ATA_STAT_DRQ;
wdenkc6097192002-11-03 00:24:07 +00001354 res = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001355 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1356 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001357 if ((c & mask) != res) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001358 printf("ATAPI_ISSUE: device %d not ready status %X\n", device,
1359 c);
1360 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001361 goto AI_OUT;
1362 }
1363 /* write taskfile */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001364 ide_outb(device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1365 ide_outb(device, ATA_SECT_CNT, 0);
1366 ide_outb(device, ATA_SECT_NUM, 0);
1367 ide_outb(device, ATA_CYL_LOW, (unsigned char) (buflen & 0xFF));
1368 ide_outb(device, ATA_CYL_HIGH,
1369 (unsigned char) ((buflen >> 8) & 0xFF));
1370 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001371
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001372 ide_outb(device, ATA_COMMAND, ATAPI_CMD_PACKET);
1373 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001374
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001375 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
wdenkc6097192002-11-03 00:24:07 +00001376 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001377 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001378
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001379 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1380 printf("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",
1381 device, c);
1382 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001383 goto AI_OUT;
1384 }
1385
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001386 /* write command block */
1387 output_data_shorts(device, (unsigned short *) ccb, ccblen / 2);
1388
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001389 /* ATAPI Command written wait for completition */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001390 udelay(5000); /* device must set bsy */
wdenkc6097192002-11-03 00:24:07 +00001391
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001392 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
1393 /*
1394 * if no data wait for DRQ = 0 BSY = 0
1395 * if data wait for DRQ = 1 BSY = 0
1396 */
1397 res = 0;
1398 if (buflen)
wdenkc6097192002-11-03 00:24:07 +00001399 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001400 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
1401 if ((c & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001402 if (c & ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001403 err = (ide_inb(device, ATA_ERROR_REG)) >> 4;
1404 debug("atapi_issue 1 returned sense key %X status %02X\n",
1405 err, c);
wdenkc6097192002-11-03 00:24:07 +00001406 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001407 printf("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n",
1408 ccb[0], c);
1409 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001410 }
1411 goto AI_OUT;
1412 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001413 n = ide_inb(device, ATA_CYL_HIGH);
1414 n <<= 8;
1415 n += ide_inb(device, ATA_CYL_LOW);
1416 if (n > buflen) {
1417 printf("ERROR, transfer bytes %d requested only %d\n", n,
1418 buflen);
1419 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001420 goto AI_OUT;
1421 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001422 if ((n == 0) && (buflen < 0)) {
1423 printf("ERROR, transfer bytes %d requested %d\n", n, buflen);
1424 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001425 goto AI_OUT;
1426 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001427 if (n != buflen) {
1428 debug("WARNING, transfer bytes %d not equal with requested %d\n",
1429 n, buflen);
wdenkc6097192002-11-03 00:24:07 +00001430 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001431 if (n != 0) { /* data transfer */
1432 debug("ATAPI_ISSUE: %d Bytes to transfer\n", n);
1433 /* we transfer shorts */
1434 n >>= 1;
wdenkc6097192002-11-03 00:24:07 +00001435 /* ok now decide if it is an in or output */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001436 if ((ide_inb(device, ATA_SECT_CNT) & 0x02) == 0) {
1437 debug("Write to device\n");
1438 output_data_shorts(device, (unsigned short *) buffer,
1439 n);
wdenkc6097192002-11-03 00:24:07 +00001440 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001441 debug("Read from device @ %p shorts %d\n", buffer, n);
1442 input_data_shorts(device, (unsigned short *) buffer,
1443 n);
wdenkc6097192002-11-03 00:24:07 +00001444 }
1445 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001446 udelay(5000); /* seems that some CD ROMs need this... */
1447 mask = ATA_STAT_BUSY | ATA_STAT_ERR;
1448 res = 0;
1449 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001450 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001451 err = (ide_inb(device, ATA_ERROR_REG) >> 4);
1452 debug("atapi_issue 2 returned sense key %X status %X\n", err,
1453 c);
wdenkc6097192002-11-03 00:24:07 +00001454 } else {
1455 err = 0;
1456 }
1457AI_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001458 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001459 return (err);
1460}
1461
1462/*
1463 * sending the command to atapi_issue. If an status other than good
1464 * returns, an request_sense will be issued
1465 */
1466
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001467#define ATAPI_DRIVE_NOT_READY 100
wdenkc6097192002-11-03 00:24:07 +00001468#define ATAPI_UNIT_ATTN 10
1469
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001470unsigned char atapi_issue_autoreq(int device,
1471 unsigned char *ccb,
1472 int ccblen,
1473 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001474{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001475 unsigned char sense_data[18], sense_ccb[12];
1476 unsigned char res, key, asc, ascq;
1477 int notready, unitattn;
wdenkc6097192002-11-03 00:24:07 +00001478
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001479 unitattn = ATAPI_UNIT_ATTN;
1480 notready = ATAPI_DRIVE_NOT_READY;
wdenkc6097192002-11-03 00:24:07 +00001481
1482retry:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001483 res = atapi_issue(device, ccb, ccblen, buffer, buflen);
1484 if (res == 0)
1485 return 0; /* Ok */
wdenkc6097192002-11-03 00:24:07 +00001486
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001487 if (res == 0xFF)
1488 return 0xFF; /* error */
wdenkc6097192002-11-03 00:24:07 +00001489
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001490 debug("(auto_req)atapi_issue returned sense key %X\n", res);
wdenkc6097192002-11-03 00:24:07 +00001491
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001492 memset(sense_ccb, 0, sizeof(sense_ccb));
1493 memset(sense_data, 0, sizeof(sense_data));
1494 sense_ccb[0] = ATAPI_CMD_REQ_SENSE;
1495 sense_ccb[4] = 18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001496
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001497 res = atapi_issue(device, sense_ccb, 12, sense_data, 18);
1498 key = (sense_data[2] & 0xF);
1499 asc = (sense_data[12]);
1500 ascq = (sense_data[13]);
wdenkc6097192002-11-03 00:24:07 +00001501
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001502 debug("ATAPI_CMD_REQ_SENSE returned %x\n", res);
1503 debug(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1504 sense_data[0], key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001505
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001506 if ((key == 0))
1507 return 0; /* ok device ready */
wdenkc6097192002-11-03 00:24:07 +00001508
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001509 if ((key == 6) || (asc == 0x29) || (asc == 0x28)) { /* Unit Attention */
1510 if (unitattn-- > 0) {
1511 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001512 goto retry;
1513 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001514 printf("Unit Attention, tried %d\n", ATAPI_UNIT_ATTN);
wdenkc6097192002-11-03 00:24:07 +00001515 goto error;
1516 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001517 if ((asc == 0x4) && (ascq == 0x1)) {
1518 /* not ready, but will be ready soon */
1519 if (notready-- > 0) {
1520 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001521 goto retry;
1522 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001523 printf("Drive not ready, tried %d times\n",
1524 ATAPI_DRIVE_NOT_READY);
wdenkc6097192002-11-03 00:24:07 +00001525 goto error;
1526 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001527 if (asc == 0x3a) {
1528 debug("Media not present\n");
wdenkc6097192002-11-03 00:24:07 +00001529 goto error;
1530 }
wdenkc7de8292002-11-19 11:04:11 +00001531
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001532 printf("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n", key, asc,
1533 ascq);
wdenkc6097192002-11-03 00:24:07 +00001534error:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001535 debug("ERROR Sense key %02X ASC %02X ASCQ %02X\n", key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001536 return (0xFF);
1537}
1538
1539
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001540static void atapi_inquiry(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +00001541{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001542 unsigned char ccb[12]; /* Command descriptor block */
1543 unsigned char iobuf[64]; /* temp buf */
wdenkc6097192002-11-03 00:24:07 +00001544 unsigned char c;
1545 int device;
1546
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001547 device = dev_desc->dev;
1548 dev_desc->type = DEV_TYPE_UNKNOWN; /* not yet valid */
1549 dev_desc->block_read = atapi_read;
wdenkc6097192002-11-03 00:24:07 +00001550
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001551 memset(ccb, 0, sizeof(ccb));
1552 memset(iobuf, 0, sizeof(iobuf));
wdenkc6097192002-11-03 00:24:07 +00001553
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001554 ccb[0] = ATAPI_CMD_INQUIRY;
1555 ccb[4] = 40; /* allocation Legnth */
1556 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 40);
wdenkc6097192002-11-03 00:24:07 +00001557
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001558 debug("ATAPI_CMD_INQUIRY returned %x\n", c);
1559 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001560 return;
1561
1562 /* copy device ident strings */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001563 ident_cpy((unsigned char *) dev_desc->vendor, &iobuf[8], 8);
1564 ident_cpy((unsigned char *) dev_desc->product, &iobuf[16], 16);
1565 ident_cpy((unsigned char *) dev_desc->revision, &iobuf[32], 5);
wdenkc6097192002-11-03 00:24:07 +00001566
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001567 dev_desc->lun = 0;
1568 dev_desc->lba = 0;
1569 dev_desc->blksz = 0;
1570 dev_desc->type = iobuf[0] & 0x1f;
wdenkc6097192002-11-03 00:24:07 +00001571
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001572 if ((iobuf[1] & 0x80) == 0x80)
wdenkc6097192002-11-03 00:24:07 +00001573 dev_desc->removable = 1;
1574 else
1575 dev_desc->removable = 0;
1576
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001577 memset(ccb, 0, sizeof(ccb));
1578 memset(iobuf, 0, sizeof(iobuf));
1579 ccb[0] = ATAPI_CMD_START_STOP;
1580 ccb[4] = 0x03; /* start */
wdenkc6097192002-11-03 00:24:07 +00001581
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001582 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001583
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001584 debug("ATAPI_CMD_START_STOP returned %x\n", c);
1585 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001586 return;
1587
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001588 memset(ccb, 0, sizeof(ccb));
1589 memset(iobuf, 0, sizeof(iobuf));
1590 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001591
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001592 debug("ATAPI_CMD_UNIT_TEST_READY returned %x\n", c);
1593 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001594 return;
1595
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001596 memset(ccb, 0, sizeof(ccb));
1597 memset(iobuf, 0, sizeof(iobuf));
1598 ccb[0] = ATAPI_CMD_READ_CAP;
1599 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 8);
1600 debug("ATAPI_CMD_READ_CAP returned %x\n", c);
1601 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001602 return;
1603
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001604 debug("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1605 iobuf[0], iobuf[1], iobuf[2], iobuf[3],
1606 iobuf[4], iobuf[5], iobuf[6], iobuf[7]);
wdenkc6097192002-11-03 00:24:07 +00001607
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001608 dev_desc->lba = ((unsigned long) iobuf[0] << 24) +
1609 ((unsigned long) iobuf[1] << 16) +
1610 ((unsigned long) iobuf[2] << 8) + ((unsigned long) iobuf[3]);
1611 dev_desc->blksz = ((unsigned long) iobuf[4] << 24) +
1612 ((unsigned long) iobuf[5] << 16) +
1613 ((unsigned long) iobuf[6] << 8) + ((unsigned long) iobuf[7]);
wdenk42dfe7a2004-03-14 22:25:36 +00001614#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001615 /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
1616 dev_desc->lba48 = 0;
wdenk42dfe7a2004-03-14 22:25:36 +00001617#endif
wdenkc6097192002-11-03 00:24:07 +00001618 return;
1619}
1620
1621
1622/*
1623 * atapi_read:
1624 * we transfer only one block per command, since the multiple DRQ per
1625 * command is not yet implemented
1626 */
1627#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1628#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001629#define ATAPI_READ_MAX_BLOCK (ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE)
wdenkc6097192002-11-03 00:24:07 +00001630
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001631ulong atapi_read(int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001632{
1633 ulong n = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001634 unsigned char ccb[12]; /* Command descriptor block */
wdenkc6097192002-11-03 00:24:07 +00001635 ulong cnt;
1636
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001637 debug("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1638 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +00001639
1640 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001641 if (blkcnt > ATAPI_READ_MAX_BLOCK)
1642 cnt = ATAPI_READ_MAX_BLOCK;
1643 else
1644 cnt = blkcnt;
wdenkc6097192002-11-03 00:24:07 +00001645
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001646 ccb[0] = ATAPI_CMD_READ_12;
1647 ccb[1] = 0; /* reserved */
1648 ccb[2] = (unsigned char) (blknr >> 24) & 0xFF; /* MSB Block */
1649 ccb[3] = (unsigned char) (blknr >> 16) & 0xFF; /* */
1650 ccb[4] = (unsigned char) (blknr >> 8) & 0xFF;
1651 ccb[5] = (unsigned char) blknr & 0xFF; /* LSB Block */
1652 ccb[6] = (unsigned char) (cnt >> 24) & 0xFF; /* MSB Block cnt */
1653 ccb[7] = (unsigned char) (cnt >> 16) & 0xFF;
1654 ccb[8] = (unsigned char) (cnt >> 8) & 0xFF;
1655 ccb[9] = (unsigned char) cnt & 0xFF; /* LSB Block */
1656 ccb[10] = 0; /* reserved */
1657 ccb[11] = 0; /* reserved */
1658
1659 if (atapi_issue_autoreq(device, ccb, 12,
1660 (unsigned char *) buffer,
1661 cnt * ATAPI_READ_BLOCK_SIZE)
1662 == 0xFF) {
wdenkc6097192002-11-03 00:24:07 +00001663 return (n);
1664 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001665 n += cnt;
1666 blkcnt -= cnt;
1667 blknr += cnt;
1668 buffer += (cnt * ATAPI_READ_BLOCK_SIZE);
wdenkc6097192002-11-03 00:24:07 +00001669 } while (blkcnt > 0);
1670 return (n);
1671}
1672
1673/* ------------------------------------------------------------------------- */
1674
1675#endif /* CONFIG_ATAPI */
1676
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001677U_BOOT_CMD(ide, 5, 1, do_ide,
1678 "IDE sub-system",
1679 "reset - reset IDE controller\n"
1680 "ide info - show available IDE devices\n"
1681 "ide device [dev] - show or set current device\n"
1682 "ide part [dev] - print partition table of one or all IDE devices\n"
1683 "ide read addr blk# cnt\n"
1684 "ide write addr blk# cnt - read/write `cnt'"
1685 " blocks starting at block `blk#'\n"
1686 " to/from memory address `addr'");
wdenk8bde7f72003-06-27 21:31:46 +00001687
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001688U_BOOT_CMD(diskboot, 3, 1, do_diskboot,
1689 "boot from IDE device", "loadAddr dev:part");