blob: f19a7ce42a728895ecb3582bd35d7487c2ef559e [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
8/*
9 * IDE support
10 */
Albert Aribaud113bfe42010-08-08 05:17:06 +053011
wdenkc6097192002-11-03 00:24:07 +000012#include <common.h>
13#include <config.h>
14#include <watchdog.h>
15#include <command.h>
16#include <image.h>
17#include <asm/byteorder.h>
Heiko Schocherf98984c2007-08-28 17:39:14 +020018#include <asm/io.h>
Grant Likely735dd972007-02-20 09:04:34 +010019
wdenkc6097192002-11-03 00:24:07 +000020#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
21# include <pcmcia.h>
22#endif
Grant Likely735dd972007-02-20 09:04:34 +010023
wdenkc6097192002-11-03 00:24:07 +000024#include <ide.h>
25#include <ata.h>
Grant Likely735dd972007-02-20 09:04:34 +010026
wdenkc6097192002-11-03 00:24:07 +000027#ifdef CONFIG_STATUS_LED
28# include <status_led.h>
29#endif
Grant Likely735dd972007-02-20 09:04:34 +010030
wdenk5cf91d62004-04-23 20:32:05 +000031#ifdef __PPC__
32# define EIEIO __asm__ volatile ("eieio")
wdenk1a344f22005-02-03 23:00:49 +000033# define SYNC __asm__ volatile ("sync")
wdenk5cf91d62004-04-23 20:32:05 +000034#else
35# define EIEIO /* nothing */
wdenk1a344f22005-02-03 23:00:49 +000036# define SYNC /* nothing */
wdenkc6097192002-11-03 00:24:07 +000037#endif
38
wdenkc6097192002-11-03 00:24:07 +000039/* ------------------------------------------------------------------------- */
40
41/* Current I/O Device */
42static int curr_device = -1;
43
44/* Current offset for IDE0 / IDE1 bus access */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
46#if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
47 CONFIG_SYS_ATA_IDE0_OFFSET,
wdenkc6097192002-11-03 00:24:07 +000048#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049#if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
50 CONFIG_SYS_ATA_IDE1_OFFSET,
wdenkc6097192002-11-03 00:24:07 +000051#endif
52};
53
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
wdenkc6097192002-11-03 00:24:07 +000055
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020056block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
wdenkc6097192002-11-03 00:24:07 +000057/* ------------------------------------------------------------------------- */
58
wdenkc6097192002-11-03 00:24:07 +000059#ifdef CONFIG_IDE_RESET
60static void ide_reset (void);
61#else
62#define ide_reset() /* dummy */
63#endif
64
65static void ide_ident (block_dev_desc_t *dev_desc);
66static uchar ide_wait (int dev, ulong t);
67
68#define IDE_TIME_OUT 2000 /* 2 sec timeout */
69
70#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
71
72#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
73
wdenkc6097192002-11-03 00:24:07 +000074static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
75
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076#ifndef CONFIG_SYS_ATA_PORT_ADDR
77#define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
Heiko Schocher566a4942007-06-22 19:11:54 +020078#endif
wdenkc6097192002-11-03 00:24:07 +000079
80#ifdef CONFIG_ATAPI
81static void atapi_inquiry(block_dev_desc_t *dev_desc);
Stephen Warren7c4213f2015-12-07 11:38:48 -070082static ulong atapi_read(block_dev_desc_t *block_dev, lbaint_t blknr,
83 lbaint_t blkcnt, void *buffer);
wdenkc6097192002-11-03 00:24:07 +000084#endif
85
86
wdenkc6097192002-11-03 00:24:07 +000087/* ------------------------------------------------------------------------- */
88
Wolfgang Denk34c202c2011-10-29 09:41:40 +000089int do_ide(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +000090{
Wolfgang Denk34c202c2011-10-29 09:41:40 +000091 int rcode = 0;
wdenkc6097192002-11-03 00:24:07 +000092
Wolfgang Denk34c202c2011-10-29 09:41:40 +000093 switch (argc) {
94 case 0:
95 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +000096 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +000097 case 2:
98 if (strncmp(argv[1], "res", 3) == 0) {
99 puts("\nReset IDE"
100#ifdef CONFIG_IDE_8xx_DIRECT
101 " on PCMCIA " PCMCIA_SLOT_MSG
102#endif
103 ": ");
wdenkc6097192002-11-03 00:24:07 +0000104
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000105 ide_init();
106 return 0;
107 } else if (strncmp(argv[1], "inf", 3) == 0) {
108 int i;
109
110 putc('\n');
111
112 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
113 if (ide_dev_desc[i].type == DEV_TYPE_UNKNOWN)
114 continue; /* list only known devices */
115 printf("IDE device %d: ", i);
116 dev_print(&ide_dev_desc[i]);
117 }
118 return 0;
119
120 } else if (strncmp(argv[1], "dev", 3) == 0) {
121 if ((curr_device < 0)
122 || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
123 puts("\nno IDE devices available\n");
124 return 1;
125 }
126 printf("\nIDE device %d: ", curr_device);
127 dev_print(&ide_dev_desc[curr_device]);
128 return 0;
129 } else if (strncmp(argv[1], "part", 4) == 0) {
130 int dev, ok;
131
132 for (ok = 0, dev = 0;
133 dev < CONFIG_SYS_IDE_MAXDEVICE;
134 ++dev) {
135 if (ide_dev_desc[dev].part_type !=
136 PART_TYPE_UNKNOWN) {
137 ++ok;
138 if (dev)
139 putc('\n');
140 print_part(&ide_dev_desc[dev]);
141 }
142 }
143 if (!ok) {
144 puts("\nno IDE devices available\n");
145 rcode++;
146 }
147 return rcode;
148 }
Simon Glass4c12eeb2011-12-10 08:44:01 +0000149 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000150 case 3:
151 if (strncmp(argv[1], "dev", 3) == 0) {
152 int dev = (int) simple_strtoul(argv[2], NULL, 10);
153
154 printf("\nIDE device %d: ", dev);
155 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
156 puts("unknown device\n");
157 return 1;
158 }
159 dev_print(&ide_dev_desc[dev]);
160 /*ide_print (dev); */
161
162 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
163 return 1;
164
165 curr_device = dev;
166
167 puts("... is now current device\n");
168
169 return 0;
170 } else if (strncmp(argv[1], "part", 4) == 0) {
171 int dev = (int) simple_strtoul(argv[2], NULL, 10);
172
173 if (ide_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
174 print_part(&ide_dev_desc[dev]);
175 } else {
176 printf("\nIDE device %d not available\n",
177 dev);
178 rcode = 1;
179 }
180 return rcode;
181 }
182
Simon Glass4c12eeb2011-12-10 08:44:01 +0000183 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000184 default:
185 /* at least 4 args */
186
187 if (strcmp(argv[1], "read") == 0) {
188 ulong addr = simple_strtoul(argv[2], NULL, 16);
189 ulong cnt = simple_strtoul(argv[4], NULL, 16);
Stephen Warren7c4213f2015-12-07 11:38:48 -0700190 block_dev_desc_t *dev_desc;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000191 ulong n;
192
193#ifdef CONFIG_SYS_64BIT_LBA
194 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
195
196 printf("\nIDE read: device %d block # %lld, count %ld ... ",
197 curr_device, blk, cnt);
198#else
199 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
200
201 printf("\nIDE read: device %d block # %ld, count %ld ... ",
202 curr_device, blk, cnt);
203#endif
204
Stephen Warren7c4213f2015-12-07 11:38:48 -0700205 dev_desc = &ide_dev_desc[curr_device];
206 n = dev_desc->block_read(dev_desc, blk, cnt,
207 (ulong *)addr);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000208 /* flush cache after read */
209 flush_cache(addr,
210 cnt * ide_dev_desc[curr_device].blksz);
211
212 printf("%ld blocks read: %s\n",
213 n, (n == cnt) ? "OK" : "ERROR");
214 if (n == cnt)
215 return 0;
216 else
217 return 1;
218 } else if (strcmp(argv[1], "write") == 0) {
219 ulong addr = simple_strtoul(argv[2], NULL, 16);
220 ulong cnt = simple_strtoul(argv[4], NULL, 16);
221 ulong n;
222
223#ifdef CONFIG_SYS_64BIT_LBA
224 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
225
226 printf("\nIDE write: device %d block # %lld, count %ld ... ",
227 curr_device, blk, cnt);
228#else
229 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
230
231 printf("\nIDE write: device %d block # %ld, count %ld ... ",
232 curr_device, blk, cnt);
233#endif
Stephen Warren7c4213f2015-12-07 11:38:48 -0700234 n = ide_write(&ide_dev_desc[curr_device], blk, cnt,
235 (ulong *)addr);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000236
237 printf("%ld blocks written: %s\n",
238 n, (n == cnt) ? "OK" : "ERROR");
239 if (n == cnt)
240 return 0;
241 else
242 return 1;
243 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +0000244 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000245 }
246
247 return rcode;
248 }
wdenkc6097192002-11-03 00:24:07 +0000249}
250
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000251int do_diskboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000252{
Rob Herring7405a132012-09-21 04:02:30 +0000253 return common_diskboot(cmdtp, "ide", argc, argv);
wdenkc6097192002-11-03 00:24:07 +0000254}
255
256/* ------------------------------------------------------------------------- */
257
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200258__weak void ide_led(uchar led, uchar status)
Pavel Herrmann19be2ea2012-10-07 05:56:10 +0000259{
260#if defined(CONFIG_IDE_LED) && defined(PER8_BASE) /* required by LED_PORT */
261 static uchar led_buffer; /* Buffer for current LED status */
262
263 uchar *led_port = LED_PORT;
264
265 if (status) /* switch LED on */
266 led_buffer |= led;
267 else /* switch LED off */
268 led_buffer &= ~led;
269
270 *led_port = led_buffer;
271#endif
272}
273
Pavel Herrmann19be2ea2012-10-07 05:56:10 +0000274#ifndef CONFIG_IDE_LED /* define LED macros, they are not used anyways */
275# define DEVICE_LED(x) 0
276# define LED_IDE1 1
277# define LED_IDE2 2
278#endif
279
280/* ------------------------------------------------------------------------- */
281
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200282__weak void ide_outb(int dev, int port, unsigned char val)
Stefan Roesef2302d42008-08-06 14:05:38 +0200283{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000284 debug("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
285 dev, port, val,
286 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000287
288#if defined(CONFIG_IDE_AHB)
289 if (port) {
290 /* write command */
291 ide_write_register(dev, port, val);
292 } else {
293 /* write data */
294 outb(val, (ATA_CURR_BASE(dev)));
295 }
296#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000297 outb(val, (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000298#endif
Stefan Roesef2302d42008-08-06 14:05:38 +0200299}
Macpaul Lin0abddf82011-04-11 20:45:32 +0000300
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200301__weak unsigned char ide_inb(int dev, int port)
Stefan Roesef2302d42008-08-06 14:05:38 +0200302{
303 uchar val;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000304
305#if defined(CONFIG_IDE_AHB)
306 val = ide_read_register(dev, port);
307#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000308 val = inb((ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000309#endif
310
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000311 debug("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
312 dev, port,
313 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)), val);
Stefan Roesef2302d42008-08-06 14:05:38 +0200314 return val;
315}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000316
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000317void ide_init(void)
wdenkc6097192002-11-03 00:24:07 +0000318{
wdenkc6097192002-11-03 00:24:07 +0000319 unsigned char c;
320 int i, bus;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000321
wdenk9fd5e312003-12-07 23:55:12 +0000322#ifdef CONFIG_IDE_8xx_PCCARD
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000323 extern int ide_devices_found; /* Initialized in check_ide_device() */
324#endif /* CONFIG_IDE_8xx_PCCARD */
wdenk9fd5e312003-12-07 23:55:12 +0000325
326#ifdef CONFIG_IDE_PREINIT
327 WATCHDOG_RESET();
328
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000329 if (ide_preinit()) {
330 puts("ide_preinit failed\n");
wdenk9fd5e312003-12-07 23:55:12 +0000331 return;
332 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000333#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000334
wdenkc6097192002-11-03 00:24:07 +0000335 WATCHDOG_RESET();
336
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000337 /*
338 * Reset the IDE just to be sure.
wdenkc6097192002-11-03 00:24:07 +0000339 * Light LED's to show
340 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000341 ide_led((LED_IDE1 | LED_IDE2), 1); /* LED's on */
342
343 /* ATAPI Drives seems to need a proper IDE Reset */
344 ide_reset();
wdenkc6097192002-11-03 00:24:07 +0000345
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000346#ifdef CONFIG_IDE_INIT_POSTRESET
347 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000348
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000349 if (ide_init_postreset()) {
350 puts("ide_preinit_postreset failed\n");
351 return;
352 }
353#endif /* CONFIG_IDE_INIT_POSTRESET */
wdenkc6097192002-11-03 00:24:07 +0000354
355 /*
356 * Wait for IDE to get ready.
357 * According to spec, this can take up to 31 seconds!
358 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000359 for (bus = 0; bus < CONFIG_SYS_IDE_MAXBUS; ++bus) {
360 int dev =
361 bus * (CONFIG_SYS_IDE_MAXDEVICE /
362 CONFIG_SYS_IDE_MAXBUS);
wdenkc6097192002-11-03 00:24:07 +0000363
wdenk6069ff22003-02-28 00:49:47 +0000364#ifdef CONFIG_IDE_8xx_PCCARD
365 /* Skip non-ide devices from probing */
366 if ((ide_devices_found & (1 << bus)) == 0) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000367 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenk6069ff22003-02-28 00:49:47 +0000368 continue;
369 }
370#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000371 printf("Bus %d: ", bus);
wdenkc6097192002-11-03 00:24:07 +0000372
373 ide_bus_ok[bus] = 0;
374
375 /* Select device
376 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000377 udelay(100000); /* 100 ms */
378 ide_outb(dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
379 udelay(100000); /* 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000380 i = 0;
381 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000382 udelay(10000); /* 10 ms */
wdenkc6097192002-11-03 00:24:07 +0000383
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000384 c = ide_inb(dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000385 i++;
386 if (i > (ATA_RESET_TIME * 100)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000387 puts("** Timeout **\n");
388 /* LED's off */
389 ide_led((LED_IDE1 | LED_IDE2), 0);
wdenkc6097192002-11-03 00:24:07 +0000390 return;
391 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000392 if ((i >= 100) && ((i % 100) == 0))
393 putc('.');
394
wdenkc6097192002-11-03 00:24:07 +0000395 } while (c & ATA_STAT_BUSY);
396
397 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000398 puts("not available ");
399 debug("Status = 0x%02X ", c);
400#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
401 } else if ((c & ATA_STAT_READY) == 0) {
402 puts("not available ");
403 debug("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000404#endif
405 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000406 puts("OK ");
wdenkc6097192002-11-03 00:24:07 +0000407 ide_bus_ok[bus] = 1;
408 }
409 WATCHDOG_RESET();
410 }
wdenkc7de8292002-11-19 11:04:11 +0000411
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000412 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000413
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000414 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc6097192002-11-03 00:24:07 +0000415
416 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000417 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
wdenkc6097192002-11-03 00:24:07 +0000418 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000419 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
420 ide_dev_desc[i].if_type = IF_TYPE_IDE;
421 ide_dev_desc[i].dev = i;
422 ide_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
423 ide_dev_desc[i].blksz = 0;
Egbert Eich0472fbf2013-04-09 21:11:56 +0000424 ide_dev_desc[i].log2blksz =
425 LOG2_INVALID(typeof(ide_dev_desc[i].log2blksz));
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000426 ide_dev_desc[i].lba = 0;
427 ide_dev_desc[i].block_read = ide_read;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000428 ide_dev_desc[i].block_write = ide_write;
wdenkc6097192002-11-03 00:24:07 +0000429 if (!ide_bus_ok[IDE_BUS(i)])
430 continue;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000431 ide_led(led, 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000432 ide_ident(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000433 ide_led(led, 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000434 dev_print(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000435
wdenkc6097192002-11-03 00:24:07 +0000436 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000437 /* initialize partition type */
438 init_part(&ide_dev_desc[i]);
wdenkc6097192002-11-03 00:24:07 +0000439 if (curr_device < 0)
440 curr_device = i;
441 }
442 }
443 WATCHDOG_RESET();
444}
445
446/* ------------------------------------------------------------------------- */
447
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000448#ifdef CONFIG_PARTITIONS
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000449block_dev_desc_t *ide_get_dev(int dev)
wdenkc6097192002-11-03 00:24:07 +0000450{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200451 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
wdenkc6097192002-11-03 00:24:07 +0000452}
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000453#endif
wdenkc6097192002-11-03 00:24:07 +0000454
wdenkc6097192002-11-03 00:24:07 +0000455/* ------------------------------------------------------------------------- */
456
wdenk5da627a2003-10-09 20:09:04 +0000457/* We only need to swap data if we are running on a big endian cpu. */
Pavel Herrmann4d1361d2012-10-09 07:10:08 +0000458#if defined(__LITTLE_ENDIAN)
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200459__weak void ide_input_swap_data(int dev, ulong *sect_buf, int words)
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000460{
461 ide_input_data(dev, sect_buf, words);
462}
wdenk5da627a2003-10-09 20:09:04 +0000463#else
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200464__weak void ide_input_swap_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000465{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000466 volatile ushort *pbuf =
467 (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
468 ushort *dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000469
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000470 debug("in input swap data base for read is %lx\n",
471 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +0000472
473 while (words--) {
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200474#ifdef __MIPS__
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000475 *dbuf++ = swab16p((u16 *) pbuf);
476 *dbuf++ = swab16p((u16 *) pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200477#else
wdenk1a344f22005-02-03 23:00:49 +0000478 *dbuf++ = ld_le16(pbuf);
479 *dbuf++ = ld_le16(pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200480#endif /* !MIPS */
wdenk1a344f22005-02-03 23:00:49 +0000481 }
wdenkc6097192002-11-03 00:24:07 +0000482}
Pavel Herrmann4d1361d2012-10-09 07:10:08 +0000483#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +0000484
wdenk2262cfe2002-11-18 00:14:45 +0000485
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530486#if defined(CONFIG_IDE_SWAP_IO)
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200487__weak void ide_output_data(int dev, const ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000488{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000489 ushort *dbuf;
490 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000491
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000492 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
493 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000494 while (words--) {
495 EIEIO;
496 *pbuf = *dbuf++;
497 EIEIO;
498 *pbuf = *dbuf++;
499 }
wdenkc6097192002-11-03 00:24:07 +0000500}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000501#else /* ! CONFIG_IDE_SWAP_IO */
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200502__weak void ide_output_data(int dev, const ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000503{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000504#if defined(CONFIG_IDE_AHB)
505 ide_write_data(dev, sect_buf, words);
506#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000507 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000508#endif
wdenk2262cfe2002-11-18 00:14:45 +0000509}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000510#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000511
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530512#if defined(CONFIG_IDE_SWAP_IO)
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200513__weak void ide_input_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000514{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000515 ushort *dbuf;
516 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000517
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000518 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
519 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000520
521 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
522
523 while (words--) {
524 EIEIO;
525 *dbuf++ = *pbuf;
526 EIEIO;
527 *dbuf++ = *pbuf;
528 }
wdenkc6097192002-11-03 00:24:07 +0000529}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000530#else /* ! CONFIG_IDE_SWAP_IO */
Jeroen Hofstee288afdc2014-07-12 15:07:19 +0200531__weak void ide_input_data(int dev, ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000532{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000533#if defined(CONFIG_IDE_AHB)
534 ide_read_data(dev, sect_buf, words);
535#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000536 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000537#endif
wdenk2262cfe2002-11-18 00:14:45 +0000538}
539
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000540#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000541
542/* -------------------------------------------------------------------------
543 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000544static void ide_ident(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +0000545{
wdenkc6097192002-11-03 00:24:07 +0000546 unsigned char c;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000547 hd_driveid_t iop;
wdenkc6097192002-11-03 00:24:07 +0000548
wdenk64f70be2004-09-28 20:34:50 +0000549#ifdef CONFIG_ATAPI
550 int retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000551#endif
wdenkc6097192002-11-03 00:24:07 +0000552 int device;
wdenkc6097192002-11-03 00:24:07 +0000553
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000554 device = dev_desc->dev;
555 printf(" Device %d: ", device);
556
557 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000558 /* Select device
559 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000560 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
561 dev_desc->if_type = IF_TYPE_IDE;
wdenkc6097192002-11-03 00:24:07 +0000562#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +0000563
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000564 retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000565
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000566 /* Warning: This will be tricky to read */
567 while (retries <= 1) {
568 /* check signature */
569 if ((ide_inb(device, ATA_SECT_CNT) == 0x01) &&
570 (ide_inb(device, ATA_SECT_NUM) == 0x01) &&
571 (ide_inb(device, ATA_CYL_LOW) == 0x14) &&
572 (ide_inb(device, ATA_CYL_HIGH) == 0xEB)) {
573 /* ATAPI Signature found */
574 dev_desc->if_type = IF_TYPE_ATAPI;
575 /*
576 * Start Ident Command
577 */
578 ide_outb(device, ATA_COMMAND, ATAPI_CMD_IDENT);
579 /*
580 * Wait for completion - ATAPI devices need more time
581 * to become ready
582 */
583 c = ide_wait(device, ATAPI_TIME_OUT);
584 } else
wdenkc6097192002-11-03 00:24:07 +0000585#endif
wdenk1a344f22005-02-03 23:00:49 +0000586 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000587 /*
588 * Start Ident Command
589 */
590 ide_outb(device, ATA_COMMAND, ATA_CMD_IDENT);
591
592 /*
593 * Wait for completion
594 */
595 c = ide_wait(device, IDE_TIME_OUT);
wdenk1a344f22005-02-03 23:00:49 +0000596 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000597 ide_led(DEVICE_LED(device), 0); /* LED off */
598
599 if (((c & ATA_STAT_DRQ) == 0) ||
600 ((c & (ATA_STAT_FAULT | ATA_STAT_ERR)) != 0)) {
wdenk64f70be2004-09-28 20:34:50 +0000601#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000602 {
603 /*
604 * Need to soft reset the device
605 * in case it's an ATAPI...
606 */
607 debug("Retrying...\n");
608 ide_outb(device, ATA_DEV_HD,
609 ATA_LBA | ATA_DEVICE(device));
610 udelay(100000);
611 ide_outb(device, ATA_COMMAND, 0x08);
612 udelay(500000); /* 500 ms */
613 }
614 /*
615 * Select device
616 */
617 ide_outb(device, ATA_DEV_HD,
618 ATA_LBA | ATA_DEVICE(device));
619 retries++;
620#else
621 return;
622#endif
623 }
624#ifdef CONFIG_ATAPI
625 else
626 break;
627 } /* see above - ugly to read */
wdenk64f70be2004-09-28 20:34:50 +0000628
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000629 if (retries == 2) /* Not found */
wdenk64f70be2004-09-28 20:34:50 +0000630 return;
631#endif
wdenkc7de8292002-11-19 11:04:11 +0000632
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000633 ide_input_swap_data(device, (ulong *)&iop, ATA_SECTORWORDS);
wdenkc6097192002-11-03 00:24:07 +0000634
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000635 ident_cpy((unsigned char *) dev_desc->revision, iop.fw_rev,
636 sizeof(dev_desc->revision));
637 ident_cpy((unsigned char *) dev_desc->vendor, iop.model,
638 sizeof(dev_desc->vendor));
639 ident_cpy((unsigned char *) dev_desc->product, iop.serial_no,
640 sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +0000641#ifdef __LITTLE_ENDIAN
642 /*
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500643 * firmware revision, model, and serial number have Big Endian Byte
644 * order in Word. Convert all three to little endian.
wdenkc3f9d492004-03-14 00:59:59 +0000645 *
646 * See CF+ and CompactFlash Specification Revision 2.0:
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500647 * 6.2.1.6: Identify Drive, Table 39 for more details
wdenkc3f9d492004-03-14 00:59:59 +0000648 */
649
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000650 strswab(dev_desc->revision);
651 strswab(dev_desc->vendor);
652 strswab(dev_desc->product);
wdenkc3f9d492004-03-14 00:59:59 +0000653#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +0000654
Marek Vasutb18eabf2011-08-20 09:15:13 +0000655 if ((iop.config & 0x0080) == 0x0080)
wdenkc6097192002-11-03 00:24:07 +0000656 dev_desc->removable = 1;
657 else
658 dev_desc->removable = 0;
659
wdenkc6097192002-11-03 00:24:07 +0000660#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000661 if (dev_desc->if_type == IF_TYPE_ATAPI) {
wdenkc6097192002-11-03 00:24:07 +0000662 atapi_inquiry(dev_desc);
663 return;
664 }
665#endif /* CONFIG_ATAPI */
666
wdenkc3f9d492004-03-14 00:59:59 +0000667#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +0000668 /* swap shorts */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000669 dev_desc->lba = (iop.lba_capacity << 16) | (iop.lba_capacity >> 16);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000670#else /* ! __BIG_ENDIAN */
wdenkc3f9d492004-03-14 00:59:59 +0000671 /*
672 * do not swap shorts on little endian
673 *
674 * See CF+ and CompactFlash Specification Revision 2.0:
675 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
676 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000677 dev_desc->lba = iop.lba_capacity;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000678#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +0000679
wdenk42dfe7a2004-03-14 22:25:36 +0000680#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000681 if (iop.command_set_2 & 0x0400) { /* LBA 48 support */
wdenk6e592382004-04-18 17:39:38 +0000682 dev_desc->lba48 = 1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000683 dev_desc->lba = (unsigned long long) iop.lba48_capacity[0] |
684 ((unsigned long long) iop.lba48_capacity[1] << 16) |
685 ((unsigned long long) iop.lba48_capacity[2] << 32) |
686 ((unsigned long long) iop.lba48_capacity[3] << 48);
wdenkc40b2952004-03-13 23:29:43 +0000687 } else {
wdenkc40b2952004-03-13 23:29:43 +0000688 dev_desc->lba48 = 0;
689 }
690#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +0000691 /* assuming HD */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000692 dev_desc->type = DEV_TYPE_HARDDISK;
693 dev_desc->blksz = ATA_BLOCKSIZE;
Egbert Eich0472fbf2013-04-09 21:11:56 +0000694 dev_desc->log2blksz = LOG2(dev_desc->blksz);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000695 dev_desc->lun = 0; /* just to fill something in... */
wdenkc6097192002-11-03 00:24:07 +0000696
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000697#if 0 /* only used to test the powersaving mode,
698 * if enabled, the drive goes after 5 sec
699 * in standby mode */
700 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
701 c = ide_wait(device, IDE_TIME_OUT);
702 ide_outb(device, ATA_SECT_CNT, 1);
703 ide_outb(device, ATA_LBA_LOW, 0);
704 ide_outb(device, ATA_LBA_MID, 0);
705 ide_outb(device, ATA_LBA_HIGH, 0);
706 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
707 ide_outb(device, ATA_COMMAND, 0xe3);
708 udelay(50);
709 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000710#endif
711}
712
713
714/* ------------------------------------------------------------------------- */
715
Stephen Warren7c4213f2015-12-07 11:38:48 -0700716ulong ide_read(block_dev_desc_t *block_dev, lbaint_t blknr, lbaint_t blkcnt,
717 void *buffer)
wdenkc6097192002-11-03 00:24:07 +0000718{
Stephen Warren7c4213f2015-12-07 11:38:48 -0700719 int device = block_dev->dev;
wdenkc6097192002-11-03 00:24:07 +0000720 ulong n = 0;
721 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000722 unsigned char pwrsave = 0; /* power save */
723
wdenk42dfe7a2004-03-14 22:25:36 +0000724#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000725 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +0000726
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200727 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +0000728 /* more than 28 bits used, use 48bit mode */
729 lba48 = 1;
730 }
731#endif
Sascha Silbeff8fef52013-06-14 13:07:25 +0200732 debug("ide_read dev %d start " LBAF ", blocks " LBAF " buffer at %lX\n",
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000733 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +0000734
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000735 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000736
737 /* Select device
738 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000739 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
740 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000741
742 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000743 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000744 goto IDE_READ_E;
745 }
746
747 /* first check if the drive is in Powersaving mode, if yes,
748 * increase the timeout value */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000749 ide_outb(device, ATA_COMMAND, ATA_CMD_CHK_PWR);
750 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000751
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000752 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000753
754 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000755 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000756 goto IDE_READ_E;
757 }
758 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000759 printf("No Powersaving mode %X\n", c);
wdenkc6097192002-11-03 00:24:07 +0000760 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000761 c = ide_inb(device, ATA_SECT_CNT);
762 debug("Powersaving %02X\n", c);
763 if (c == 0)
764 pwrsave = 1;
wdenkc6097192002-11-03 00:24:07 +0000765 }
766
767
768 while (blkcnt-- > 0) {
769
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000770 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000771
772 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000773 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000774 break;
775 }
wdenk42dfe7a2004-03-14 22:25:36 +0000776#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000777 if (lba48) {
778 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000779 ide_outb(device, ATA_SECT_CNT, 0);
780 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200781#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000782 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
783 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200784#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000785 ide_outb(device, ATA_LBA_MID, 0);
786 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200787#endif
wdenkc40b2952004-03-13 23:29:43 +0000788 }
789#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000790 ide_outb(device, ATA_SECT_CNT, 1);
791 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
792 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
793 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +0000794
wdenk42dfe7a2004-03-14 22:25:36 +0000795#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000796 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000797 ide_outb(device, ATA_DEV_HD,
798 ATA_LBA | ATA_DEVICE(device));
799 ide_outb(device, ATA_COMMAND, ATA_CMD_READ_EXT);
wdenkc40b2952004-03-13 23:29:43 +0000800
801 } else
802#endif
803 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000804 ide_outb(device, ATA_DEV_HD, ATA_LBA |
805 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
806 ide_outb(device, ATA_COMMAND, ATA_CMD_READ);
wdenkc40b2952004-03-13 23:29:43 +0000807 }
wdenkc6097192002-11-03 00:24:07 +0000808
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000809 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000810
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000811 if (pwrsave) {
812 /* may take up to 4 sec */
813 c = ide_wait(device, IDE_SPIN_UP_TIME_OUT);
814 pwrsave = 0;
wdenkc6097192002-11-03 00:24:07 +0000815 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000816 /* can't take over 500 ms */
817 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000818 }
819
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000820 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
821 ATA_STAT_DRQ) {
Sascha Silbeff8fef52013-06-14 13:07:25 +0200822 printf("Error (no IRQ) dev %d blk " LBAF ": status "
823 "%#02x\n", device, blknr, c);
wdenkc6097192002-11-03 00:24:07 +0000824 break;
825 }
826
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000827 ide_input_data(device, buffer, ATA_SECTORWORDS);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000828 (void) ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +0000829
830 ++n;
831 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +0200832 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +0000833 }
834IDE_READ_E:
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000835 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000836 return (n);
837}
838
839/* ------------------------------------------------------------------------- */
840
841
Stephen Warren7c4213f2015-12-07 11:38:48 -0700842ulong ide_write(block_dev_desc_t *block_dev, lbaint_t blknr, lbaint_t blkcnt,
843 const void *buffer)
wdenkc6097192002-11-03 00:24:07 +0000844{
Stephen Warren7c4213f2015-12-07 11:38:48 -0700845 int device = block_dev->dev;
wdenkc6097192002-11-03 00:24:07 +0000846 ulong n = 0;
847 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000848
wdenk42dfe7a2004-03-14 22:25:36 +0000849#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000850 unsigned char lba48 = 0;
851
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200852 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +0000853 /* more than 28 bits used, use 48bit mode */
854 lba48 = 1;
855 }
856#endif
wdenkc6097192002-11-03 00:24:07 +0000857
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000858 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000859
860 /* Select device
861 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000862 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +0000863
864 while (blkcnt-- > 0) {
865
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000866 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000867
868 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000869 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000870 goto WR_OUT;
871 }
wdenk42dfe7a2004-03-14 22:25:36 +0000872#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000873 if (lba48) {
874 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000875 ide_outb(device, ATA_SECT_CNT, 0);
876 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200877#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000878 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
879 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200880#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000881 ide_outb(device, ATA_LBA_MID, 0);
882 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200883#endif
wdenkc40b2952004-03-13 23:29:43 +0000884 }
885#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000886 ide_outb(device, ATA_SECT_CNT, 1);
887 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
888 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
889 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +0000890
wdenk42dfe7a2004-03-14 22:25:36 +0000891#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000892 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000893 ide_outb(device, ATA_DEV_HD,
894 ATA_LBA | ATA_DEVICE(device));
895 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
wdenkc40b2952004-03-13 23:29:43 +0000896
897 } else
898#endif
899 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000900 ide_outb(device, ATA_DEV_HD, ATA_LBA |
901 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
902 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE);
wdenkc40b2952004-03-13 23:29:43 +0000903 }
wdenkc6097192002-11-03 00:24:07 +0000904
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000905 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000906
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000907 /* can't take over 500 ms */
908 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000909
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000910 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
911 ATA_STAT_DRQ) {
Sascha Silbeff8fef52013-06-14 13:07:25 +0200912 printf("Error (no IRQ) dev %d blk " LBAF ": status "
913 "%#02x\n", device, blknr, c);
wdenkc6097192002-11-03 00:24:07 +0000914 goto WR_OUT;
915 }
916
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000917 ide_output_data(device, buffer, ATA_SECTORWORDS);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000918 c = ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +0000919 ++n;
920 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +0200921 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +0000922 }
923WR_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000924 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000925 return (n);
926}
927
928/* ------------------------------------------------------------------------- */
929
930/*
931 * copy src to dest, skipping leading and trailing blanks and null
932 * terminate the string
wdenk7d7ce412004-03-17 01:13:07 +0000933 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +0000934 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000935static void ident_cpy(unsigned char *dst, unsigned char *src,
936 unsigned int len)
wdenkc6097192002-11-03 00:24:07 +0000937{
wdenk7d7ce412004-03-17 01:13:07 +0000938 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +0000939
wdenk7d7ce412004-03-17 01:13:07 +0000940 last = dst;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000941 end = src + len - 1;
wdenk7d7ce412004-03-17 01:13:07 +0000942
943 /* reserve space for '\0' */
944 if (len < 2)
945 goto OUT;
wdenkefa329c2004-03-23 20:18:25 +0000946
wdenk7d7ce412004-03-17 01:13:07 +0000947 /* skip leading white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000948 while ((*src) && (src < end) && (*src == ' '))
wdenk7d7ce412004-03-17 01:13:07 +0000949 ++src;
950
951 /* copy string, omitting trailing white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000952 while ((*src) && (src < end)) {
wdenk7d7ce412004-03-17 01:13:07 +0000953 *dst++ = *src;
954 if (*src++ != ' ')
955 last = dst;
wdenkc6097192002-11-03 00:24:07 +0000956 }
wdenk7d7ce412004-03-17 01:13:07 +0000957OUT:
958 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +0000959}
960
961/* ------------------------------------------------------------------------- */
962
963/*
964 * Wait until Busy bit is off, or timeout (in ms)
965 * Return last status
966 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000967static uchar ide_wait(int dev, ulong t)
wdenkc6097192002-11-03 00:24:07 +0000968{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000969 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +0000970 uchar c;
971
wdenk2262cfe2002-11-18 00:14:45 +0000972 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000973 udelay(100);
974 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +0000975 break;
wdenkc6097192002-11-03 00:24:07 +0000976 }
977 return (c);
978}
979
980/* ------------------------------------------------------------------------- */
981
982#ifdef CONFIG_IDE_RESET
983extern void ide_set_reset(int idereset);
984
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000985static void ide_reset(void)
wdenkc6097192002-11-03 00:24:07 +0000986{
wdenkc6097192002-11-03 00:24:07 +0000987 int i;
988
989 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000990 for (i = 0; i < CONFIG_SYS_IDE_MAXBUS; ++i)
wdenkc6097192002-11-03 00:24:07 +0000991 ide_bus_ok[i] = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000992 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i)
wdenkc6097192002-11-03 00:24:07 +0000993 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
994
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000995 ide_set_reset(1); /* assert reset */
wdenkc6097192002-11-03 00:24:07 +0000996
Martin Krausee175eac2008-04-03 13:37:56 +0200997 /* the reset signal shall be asserted for et least 25 us */
998 udelay(25);
999
wdenkc6097192002-11-03 00:24:07 +00001000 WATCHDOG_RESET();
1001
wdenkc6097192002-11-03 00:24:07 +00001002 /* de-assert RESET signal */
1003 ide_set_reset(0);
1004
1005 /* wait 250 ms */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001006 for (i = 0; i < 250; ++i)
1007 udelay(1000);
wdenkc6097192002-11-03 00:24:07 +00001008}
1009
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001010#endif /* CONFIG_IDE_RESET */
wdenkc6097192002-11-03 00:24:07 +00001011
1012/* ------------------------------------------------------------------------- */
1013
Heiko Schocher3887c3f2009-09-23 07:56:08 +02001014#if defined(CONFIG_OF_IDE_FIXUP)
1015int ide_device_present(int dev)
1016{
1017 if (dev >= CONFIG_SYS_IDE_MAXBUS)
1018 return 0;
1019 return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1020}
1021#endif
wdenkc6097192002-11-03 00:24:07 +00001022/* ------------------------------------------------------------------------- */
1023
1024#ifdef CONFIG_ATAPI
1025/****************************************************************************
1026 * ATAPI Support
1027 */
1028
Albert Aribaudf2a37fc2010-08-08 05:17:05 +05301029#if defined(CONFIG_IDE_SWAP_IO)
wdenkc6097192002-11-03 00:24:07 +00001030/* since ATAPI may use commands with not 4 bytes alligned length
1031 * we have our own transfer functions, 2 bytes alligned */
Jeroen Hofstee288afdc2014-07-12 15:07:19 +02001032__weak void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenkc6097192002-11-03 00:24:07 +00001033{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001034 ushort *dbuf;
1035 volatile ushort *pbuf;
wdenkc6097192002-11-03 00:24:07 +00001036
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001037 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1038 dbuf = (ushort *) sect_buf;
wdenkdb01a2e2004-04-15 23:14:49 +00001039
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001040 debug("in output data shorts base for read is %lx\n",
1041 (unsigned long) pbuf);
wdenkdb01a2e2004-04-15 23:14:49 +00001042
wdenkc6097192002-11-03 00:24:07 +00001043 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001044 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +00001045 *pbuf = *dbuf++;
wdenkc6097192002-11-03 00:24:07 +00001046 }
wdenk1a344f22005-02-03 23:00:49 +00001047}
1048
Jeroen Hofstee288afdc2014-07-12 15:07:19 +02001049__weak void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk1a344f22005-02-03 23:00:49 +00001050{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001051 ushort *dbuf;
1052 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +00001053
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001054 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1055 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +00001056
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001057 debug("in input data shorts base for read is %lx\n",
1058 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +00001059
1060 while (shorts--) {
1061 EIEIO;
1062 *dbuf++ = *pbuf;
1063 }
wdenkc6097192002-11-03 00:24:07 +00001064}
1065
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001066#else /* ! CONFIG_IDE_SWAP_IO */
Jeroen Hofstee288afdc2014-07-12 15:07:19 +02001067__weak void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001068{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001069 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001070}
1071
Jeroen Hofstee288afdc2014-07-12 15:07:19 +02001072__weak void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001073{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001074 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001075}
1076
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001077#endif /* CONFIG_IDE_SWAP_IO */
wdenk2262cfe2002-11-18 00:14:45 +00001078
wdenkc6097192002-11-03 00:24:07 +00001079/*
1080 * Wait until (Status & mask) == res, or timeout (in ms)
1081 * Return last status
1082 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1083 * and then they set their DRQ Bit
1084 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001085static uchar atapi_wait_mask(int dev, ulong t, uchar mask, uchar res)
wdenkc6097192002-11-03 00:24:07 +00001086{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001087 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001088 uchar c;
1089
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001090 /* prevents to read the status before valid */
1091 c = ide_inb(dev, ATA_DEV_CTL);
1092
wdenk2262cfe2002-11-18 00:14:45 +00001093 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001094 /* break if error occurs (doesn't make sense to wait more) */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001095 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR)
wdenkc6097192002-11-03 00:24:07 +00001096 break;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001097 udelay(100);
1098 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001099 break;
wdenkc6097192002-11-03 00:24:07 +00001100 }
1101 return (c);
1102}
1103
1104/*
1105 * issue an atapi command
1106 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001107unsigned char atapi_issue(int device, unsigned char *ccb, int ccblen,
1108 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001109{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001110 unsigned char c, err, mask, res;
wdenkc6097192002-11-03 00:24:07 +00001111 int n;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001112
1113 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001114
1115 /* Select device
1116 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001117 mask = ATA_STAT_BUSY | ATA_STAT_DRQ;
wdenkc6097192002-11-03 00:24:07 +00001118 res = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001119 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1120 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001121 if ((c & mask) != res) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001122 printf("ATAPI_ISSUE: device %d not ready status %X\n", device,
1123 c);
1124 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001125 goto AI_OUT;
1126 }
1127 /* write taskfile */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001128 ide_outb(device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1129 ide_outb(device, ATA_SECT_CNT, 0);
1130 ide_outb(device, ATA_SECT_NUM, 0);
1131 ide_outb(device, ATA_CYL_LOW, (unsigned char) (buflen & 0xFF));
1132 ide_outb(device, ATA_CYL_HIGH,
1133 (unsigned char) ((buflen >> 8) & 0xFF));
1134 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001135
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001136 ide_outb(device, ATA_COMMAND, ATAPI_CMD_PACKET);
1137 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001138
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001139 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
wdenkc6097192002-11-03 00:24:07 +00001140 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001141 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001142
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001143 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1144 printf("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",
1145 device, c);
1146 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001147 goto AI_OUT;
1148 }
1149
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001150 /* write command block */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001151 ide_output_data_shorts(device, (unsigned short *) ccb, ccblen / 2);
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001152
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001153 /* ATAPI Command written wait for completition */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001154 udelay(5000); /* device must set bsy */
wdenkc6097192002-11-03 00:24:07 +00001155
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001156 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
1157 /*
1158 * if no data wait for DRQ = 0 BSY = 0
1159 * if data wait for DRQ = 1 BSY = 0
1160 */
1161 res = 0;
1162 if (buflen)
wdenkc6097192002-11-03 00:24:07 +00001163 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001164 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
1165 if ((c & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001166 if (c & ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001167 err = (ide_inb(device, ATA_ERROR_REG)) >> 4;
1168 debug("atapi_issue 1 returned sense key %X status %02X\n",
1169 err, c);
wdenkc6097192002-11-03 00:24:07 +00001170 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001171 printf("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n",
1172 ccb[0], c);
1173 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001174 }
1175 goto AI_OUT;
1176 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001177 n = ide_inb(device, ATA_CYL_HIGH);
1178 n <<= 8;
1179 n += ide_inb(device, ATA_CYL_LOW);
1180 if (n > buflen) {
1181 printf("ERROR, transfer bytes %d requested only %d\n", n,
1182 buflen);
1183 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001184 goto AI_OUT;
1185 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001186 if ((n == 0) && (buflen < 0)) {
1187 printf("ERROR, transfer bytes %d requested %d\n", n, buflen);
1188 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001189 goto AI_OUT;
1190 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001191 if (n != buflen) {
1192 debug("WARNING, transfer bytes %d not equal with requested %d\n",
1193 n, buflen);
wdenkc6097192002-11-03 00:24:07 +00001194 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001195 if (n != 0) { /* data transfer */
1196 debug("ATAPI_ISSUE: %d Bytes to transfer\n", n);
1197 /* we transfer shorts */
1198 n >>= 1;
wdenkc6097192002-11-03 00:24:07 +00001199 /* ok now decide if it is an in or output */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001200 if ((ide_inb(device, ATA_SECT_CNT) & 0x02) == 0) {
1201 debug("Write to device\n");
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001202 ide_output_data_shorts(device,
1203 (unsigned short *) buffer, n);
wdenkc6097192002-11-03 00:24:07 +00001204 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001205 debug("Read from device @ %p shorts %d\n", buffer, n);
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001206 ide_input_data_shorts(device,
1207 (unsigned short *) buffer, n);
wdenkc6097192002-11-03 00:24:07 +00001208 }
1209 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001210 udelay(5000); /* seems that some CD ROMs need this... */
1211 mask = ATA_STAT_BUSY | ATA_STAT_ERR;
1212 res = 0;
1213 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001214 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001215 err = (ide_inb(device, ATA_ERROR_REG) >> 4);
1216 debug("atapi_issue 2 returned sense key %X status %X\n", err,
1217 c);
wdenkc6097192002-11-03 00:24:07 +00001218 } else {
1219 err = 0;
1220 }
1221AI_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001222 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001223 return (err);
1224}
1225
1226/*
1227 * sending the command to atapi_issue. If an status other than good
1228 * returns, an request_sense will be issued
1229 */
1230
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001231#define ATAPI_DRIVE_NOT_READY 100
wdenkc6097192002-11-03 00:24:07 +00001232#define ATAPI_UNIT_ATTN 10
1233
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001234unsigned char atapi_issue_autoreq(int device,
1235 unsigned char *ccb,
1236 int ccblen,
1237 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001238{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001239 unsigned char sense_data[18], sense_ccb[12];
1240 unsigned char res, key, asc, ascq;
1241 int notready, unitattn;
wdenkc6097192002-11-03 00:24:07 +00001242
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001243 unitattn = ATAPI_UNIT_ATTN;
1244 notready = ATAPI_DRIVE_NOT_READY;
wdenkc6097192002-11-03 00:24:07 +00001245
1246retry:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001247 res = atapi_issue(device, ccb, ccblen, buffer, buflen);
1248 if (res == 0)
1249 return 0; /* Ok */
wdenkc6097192002-11-03 00:24:07 +00001250
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001251 if (res == 0xFF)
1252 return 0xFF; /* error */
wdenkc6097192002-11-03 00:24:07 +00001253
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001254 debug("(auto_req)atapi_issue returned sense key %X\n", res);
wdenkc6097192002-11-03 00:24:07 +00001255
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001256 memset(sense_ccb, 0, sizeof(sense_ccb));
1257 memset(sense_data, 0, sizeof(sense_data));
1258 sense_ccb[0] = ATAPI_CMD_REQ_SENSE;
1259 sense_ccb[4] = 18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001260
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001261 res = atapi_issue(device, sense_ccb, 12, sense_data, 18);
1262 key = (sense_data[2] & 0xF);
1263 asc = (sense_data[12]);
1264 ascq = (sense_data[13]);
wdenkc6097192002-11-03 00:24:07 +00001265
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001266 debug("ATAPI_CMD_REQ_SENSE returned %x\n", res);
1267 debug(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1268 sense_data[0], key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001269
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001270 if ((key == 0))
1271 return 0; /* ok device ready */
wdenkc6097192002-11-03 00:24:07 +00001272
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001273 if ((key == 6) || (asc == 0x29) || (asc == 0x28)) { /* Unit Attention */
1274 if (unitattn-- > 0) {
1275 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001276 goto retry;
1277 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001278 printf("Unit Attention, tried %d\n", ATAPI_UNIT_ATTN);
wdenkc6097192002-11-03 00:24:07 +00001279 goto error;
1280 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001281 if ((asc == 0x4) && (ascq == 0x1)) {
1282 /* not ready, but will be ready soon */
1283 if (notready-- > 0) {
1284 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001285 goto retry;
1286 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001287 printf("Drive not ready, tried %d times\n",
1288 ATAPI_DRIVE_NOT_READY);
wdenkc6097192002-11-03 00:24:07 +00001289 goto error;
1290 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001291 if (asc == 0x3a) {
1292 debug("Media not present\n");
wdenkc6097192002-11-03 00:24:07 +00001293 goto error;
1294 }
wdenkc7de8292002-11-19 11:04:11 +00001295
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001296 printf("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n", key, asc,
1297 ascq);
wdenkc6097192002-11-03 00:24:07 +00001298error:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001299 debug("ERROR Sense key %02X ASC %02X ASCQ %02X\n", key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001300 return (0xFF);
1301}
1302
1303
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001304static void atapi_inquiry(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +00001305{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001306 unsigned char ccb[12]; /* Command descriptor block */
1307 unsigned char iobuf[64]; /* temp buf */
wdenkc6097192002-11-03 00:24:07 +00001308 unsigned char c;
1309 int device;
1310
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001311 device = dev_desc->dev;
1312 dev_desc->type = DEV_TYPE_UNKNOWN; /* not yet valid */
1313 dev_desc->block_read = atapi_read;
wdenkc6097192002-11-03 00:24:07 +00001314
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001315 memset(ccb, 0, sizeof(ccb));
1316 memset(iobuf, 0, sizeof(iobuf));
wdenkc6097192002-11-03 00:24:07 +00001317
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001318 ccb[0] = ATAPI_CMD_INQUIRY;
1319 ccb[4] = 40; /* allocation Legnth */
1320 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 40);
wdenkc6097192002-11-03 00:24:07 +00001321
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001322 debug("ATAPI_CMD_INQUIRY returned %x\n", c);
1323 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001324 return;
1325
1326 /* copy device ident strings */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001327 ident_cpy((unsigned char *) dev_desc->vendor, &iobuf[8], 8);
1328 ident_cpy((unsigned char *) dev_desc->product, &iobuf[16], 16);
1329 ident_cpy((unsigned char *) dev_desc->revision, &iobuf[32], 5);
wdenkc6097192002-11-03 00:24:07 +00001330
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001331 dev_desc->lun = 0;
1332 dev_desc->lba = 0;
1333 dev_desc->blksz = 0;
Egbert Eich0472fbf2013-04-09 21:11:56 +00001334 dev_desc->log2blksz = LOG2_INVALID(typeof(dev_desc->log2blksz));
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001335 dev_desc->type = iobuf[0] & 0x1f;
wdenkc6097192002-11-03 00:24:07 +00001336
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001337 if ((iobuf[1] & 0x80) == 0x80)
wdenkc6097192002-11-03 00:24:07 +00001338 dev_desc->removable = 1;
1339 else
1340 dev_desc->removable = 0;
1341
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001342 memset(ccb, 0, sizeof(ccb));
1343 memset(iobuf, 0, sizeof(iobuf));
1344 ccb[0] = ATAPI_CMD_START_STOP;
1345 ccb[4] = 0x03; /* start */
wdenkc6097192002-11-03 00:24:07 +00001346
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001347 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001348
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001349 debug("ATAPI_CMD_START_STOP returned %x\n", c);
1350 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001351 return;
1352
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001353 memset(ccb, 0, sizeof(ccb));
1354 memset(iobuf, 0, sizeof(iobuf));
1355 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001356
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001357 debug("ATAPI_CMD_UNIT_TEST_READY returned %x\n", c);
1358 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001359 return;
1360
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001361 memset(ccb, 0, sizeof(ccb));
1362 memset(iobuf, 0, sizeof(iobuf));
1363 ccb[0] = ATAPI_CMD_READ_CAP;
1364 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 8);
1365 debug("ATAPI_CMD_READ_CAP returned %x\n", c);
1366 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001367 return;
1368
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001369 debug("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1370 iobuf[0], iobuf[1], iobuf[2], iobuf[3],
1371 iobuf[4], iobuf[5], iobuf[6], iobuf[7]);
wdenkc6097192002-11-03 00:24:07 +00001372
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001373 dev_desc->lba = ((unsigned long) iobuf[0] << 24) +
1374 ((unsigned long) iobuf[1] << 16) +
1375 ((unsigned long) iobuf[2] << 8) + ((unsigned long) iobuf[3]);
1376 dev_desc->blksz = ((unsigned long) iobuf[4] << 24) +
1377 ((unsigned long) iobuf[5] << 16) +
1378 ((unsigned long) iobuf[6] << 8) + ((unsigned long) iobuf[7]);
Egbert Eich0472fbf2013-04-09 21:11:56 +00001379 dev_desc->log2blksz = LOG2(dev_desc->blksz);
wdenk42dfe7a2004-03-14 22:25:36 +00001380#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001381 /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
1382 dev_desc->lba48 = 0;
wdenk42dfe7a2004-03-14 22:25:36 +00001383#endif
wdenkc6097192002-11-03 00:24:07 +00001384 return;
1385}
1386
1387
1388/*
1389 * atapi_read:
1390 * we transfer only one block per command, since the multiple DRQ per
1391 * command is not yet implemented
1392 */
1393#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1394#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001395#define ATAPI_READ_MAX_BLOCK (ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE)
wdenkc6097192002-11-03 00:24:07 +00001396
Stephen Warren7c4213f2015-12-07 11:38:48 -07001397ulong atapi_read(block_dev_desc_t *block_dev, lbaint_t blknr, lbaint_t blkcnt,
1398 void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001399{
Stephen Warren7c4213f2015-12-07 11:38:48 -07001400 int device = block_dev->dev;
wdenkc6097192002-11-03 00:24:07 +00001401 ulong n = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001402 unsigned char ccb[12]; /* Command descriptor block */
wdenkc6097192002-11-03 00:24:07 +00001403 ulong cnt;
1404
Bin Meng77c2b212015-05-16 09:33:17 +08001405 debug("atapi_read dev %d start " LBAF " blocks " LBAF " buffer at %lX\n",
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001406 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +00001407
1408 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001409 if (blkcnt > ATAPI_READ_MAX_BLOCK)
1410 cnt = ATAPI_READ_MAX_BLOCK;
1411 else
1412 cnt = blkcnt;
wdenkc6097192002-11-03 00:24:07 +00001413
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001414 ccb[0] = ATAPI_CMD_READ_12;
1415 ccb[1] = 0; /* reserved */
1416 ccb[2] = (unsigned char) (blknr >> 24) & 0xFF; /* MSB Block */
1417 ccb[3] = (unsigned char) (blknr >> 16) & 0xFF; /* */
1418 ccb[4] = (unsigned char) (blknr >> 8) & 0xFF;
1419 ccb[5] = (unsigned char) blknr & 0xFF; /* LSB Block */
1420 ccb[6] = (unsigned char) (cnt >> 24) & 0xFF; /* MSB Block cnt */
1421 ccb[7] = (unsigned char) (cnt >> 16) & 0xFF;
1422 ccb[8] = (unsigned char) (cnt >> 8) & 0xFF;
1423 ccb[9] = (unsigned char) cnt & 0xFF; /* LSB Block */
1424 ccb[10] = 0; /* reserved */
1425 ccb[11] = 0; /* reserved */
1426
1427 if (atapi_issue_autoreq(device, ccb, 12,
1428 (unsigned char *) buffer,
1429 cnt * ATAPI_READ_BLOCK_SIZE)
1430 == 0xFF) {
wdenkc6097192002-11-03 00:24:07 +00001431 return (n);
1432 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001433 n += cnt;
1434 blkcnt -= cnt;
1435 blknr += cnt;
1436 buffer += (cnt * ATAPI_READ_BLOCK_SIZE);
wdenkc6097192002-11-03 00:24:07 +00001437 } while (blkcnt > 0);
1438 return (n);
1439}
1440
1441/* ------------------------------------------------------------------------- */
1442
1443#endif /* CONFIG_ATAPI */
1444
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001445U_BOOT_CMD(ide, 5, 1, do_ide,
1446 "IDE sub-system",
1447 "reset - reset IDE controller\n"
1448 "ide info - show available IDE devices\n"
1449 "ide device [dev] - show or set current device\n"
1450 "ide part [dev] - print partition table of one or all IDE devices\n"
1451 "ide read addr blk# cnt\n"
1452 "ide write addr blk# cnt - read/write `cnt'"
1453 " blocks starting at block `blk#'\n"
1454 " to/from memory address `addr'");
wdenk8bde7f72003-06-27 21:31:46 +00001455
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001456U_BOOT_CMD(diskboot, 3, 1, do_diskboot,
1457 "boot from IDE device", "loadAddr dev:part");