blob: 8bd89202e63dbc5215de30ad65b45c41d42c3394 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
wdenkf1276d42005-02-03 23:00:49 +00002 * (C) Copyright 2000-2005
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25/*
26 * IDE support
27 */
28#include <common.h>
29#include <config.h>
30#include <watchdog.h>
31#include <command.h>
32#include <image.h>
33#include <asm/byteorder.h>
Heiko Schocher2559e0f2007-08-28 17:39:14 +020034#include <asm/io.h>
Grant Likelyffc2dd72007-02-20 09:04:34 +010035
wdenkc6097192002-11-03 00:24:07 +000036#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
37# include <pcmcia.h>
38#endif
Grant Likelyffc2dd72007-02-20 09:04:34 +010039
wdenkc6097192002-11-03 00:24:07 +000040#ifdef CONFIG_8xx
41# include <mpc8xx.h>
42#endif
Grant Likelyffc2dd72007-02-20 09:04:34 +010043
wdenk6ea1cf02004-02-27 08:20:54 +000044#ifdef CONFIG_MPC5xxx
45#include <mpc5xxx.h>
46#endif
Grant Likelyffc2dd72007-02-20 09:04:34 +010047
wdenkc6097192002-11-03 00:24:07 +000048#include <ide.h>
49#include <ata.h>
Grant Likelyffc2dd72007-02-20 09:04:34 +010050
wdenkc6097192002-11-03 00:24:07 +000051#ifdef CONFIG_STATUS_LED
52# include <status_led.h>
53#endif
Grant Likelyffc2dd72007-02-20 09:04:34 +010054
Wolfgang Denk6405a152006-03-31 18:32:53 +020055#ifdef CONFIG_IDE_8xx_DIRECT
56DECLARE_GLOBAL_DATA_PTR;
57#endif
58
wdenk20c98a62004-04-23 20:32:05 +000059#ifdef __PPC__
60# define EIEIO __asm__ volatile ("eieio")
wdenkf1276d42005-02-03 23:00:49 +000061# define SYNC __asm__ volatile ("sync")
wdenk20c98a62004-04-23 20:32:05 +000062#else
63# define EIEIO /* nothing */
wdenkf1276d42005-02-03 23:00:49 +000064# define SYNC /* nothing */
wdenk20c98a62004-04-23 20:32:05 +000065#endif
wdenkc6097192002-11-03 00:24:07 +000066
wdenk9f837932003-10-09 19:00:25 +000067#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +000068/* Timings for IDE Interface
69 *
70 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
71 * 70 165 30 PIO-Mode 0, [ns]
72 * 4 9 2 [Cycles]
73 * 50 125 20 PIO-Mode 1, [ns]
74 * 3 7 2 [Cycles]
75 * 30 100 15 PIO-Mode 2, [ns]
76 * 2 6 1 [Cycles]
77 * 30 80 10 PIO-Mode 3, [ns]
78 * 2 5 1 [Cycles]
79 * 25 70 10 PIO-Mode 4, [ns]
80 * 2 4 1 [Cycles]
81 */
82
83const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
84{
85 /* Setup Length Hold */
86 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
87 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
88 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
89 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
90 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
91};
92
93static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
94
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020095#ifndef CONFIG_SYS_PIO_MODE
96#define CONFIG_SYS_PIO_MODE 0 /* use a relaxed default */
wdenkc6097192002-11-03 00:24:07 +000097#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020098static int pio_mode = CONFIG_SYS_PIO_MODE;
wdenkc6097192002-11-03 00:24:07 +000099
100/* Make clock cycles and always round up */
101
102#define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
103
wdenk9f837932003-10-09 19:00:25 +0000104#endif /* CONFIG_IDE_8xx_DIRECT */
105
wdenkc6097192002-11-03 00:24:07 +0000106/* ------------------------------------------------------------------------- */
107
108/* Current I/O Device */
109static int curr_device = -1;
110
111/* Current offset for IDE0 / IDE1 bus access */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200112ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
113#if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
114 CONFIG_SYS_ATA_IDE0_OFFSET,
wdenkc6097192002-11-03 00:24:07 +0000115#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200116#if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
117 CONFIG_SYS_ATA_IDE1_OFFSET,
wdenkc6097192002-11-03 00:24:07 +0000118#endif
119};
120
wdenkc6097192002-11-03 00:24:07 +0000121
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200122static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
wdenkc6097192002-11-03 00:24:07 +0000123
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200124block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
wdenkc6097192002-11-03 00:24:07 +0000125/* ------------------------------------------------------------------------- */
126
127#ifdef CONFIG_IDE_LED
Wolfgang Denkb0b104a2010-06-13 18:28:54 +0200128# if !defined(CONFIG_BMS2003) && \
129 !defined(CONFIG_CPC45) && \
130 !defined(CONFIG_KUP4K) && \
131 !defined(CONFIG_KUP4X)
wdenkc6097192002-11-03 00:24:07 +0000132static void ide_led (uchar led, uchar status);
133#else
wdenk90e7e422002-12-04 23:39:58 +0000134extern void ide_led (uchar led, uchar status);
135#endif
136#else
wdenkc6097192002-11-03 00:24:07 +0000137#define ide_led(a,b) /* dummy */
138#endif
139
140#ifdef CONFIG_IDE_RESET
141static void ide_reset (void);
142#else
143#define ide_reset() /* dummy */
144#endif
145
146static void ide_ident (block_dev_desc_t *dev_desc);
147static uchar ide_wait (int dev, ulong t);
148
149#define IDE_TIME_OUT 2000 /* 2 sec timeout */
150
151#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
152
153#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
154
wdenkc6097192002-11-03 00:24:07 +0000155static void input_data(int dev, ulong *sect_buf, int words);
156static void output_data(int dev, ulong *sect_buf, int words);
157static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
158
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200159#ifndef CONFIG_SYS_ATA_PORT_ADDR
160#define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
Heiko Schocher633e03a2007-06-22 19:11:54 +0200161#endif
wdenkc6097192002-11-03 00:24:07 +0000162
163#ifdef CONFIG_ATAPI
164static void atapi_inquiry(block_dev_desc_t *dev_desc);
Grant Likely2089cab2007-02-20 09:05:45 +0100165ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer);
wdenkc6097192002-11-03 00:24:07 +0000166#endif
167
168
169#ifdef CONFIG_IDE_8xx_DIRECT
170static void set_pcmcia_timing (int pmode);
wdenkc6097192002-11-03 00:24:07 +0000171#endif
172
173/* ------------------------------------------------------------------------- */
174
175int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
176{
177 int rcode = 0;
178
179 switch (argc) {
180 case 0:
181 case 1:
Peter Tyserddb3af92009-01-27 18:03:10 -0600182 cmd_usage(cmdtp);
wdenkc6097192002-11-03 00:24:07 +0000183 return 1;
184 case 2:
185 if (strncmp(argv[1],"res",3) == 0) {
186 puts ("\nReset IDE"
187#ifdef CONFIG_IDE_8xx_DIRECT
188 " on PCMCIA " PCMCIA_SLOT_MSG
189#endif
190 ": ");
191
192 ide_init ();
193 return 0;
194 } else if (strncmp(argv[1],"inf",3) == 0) {
195 int i;
196
197 putc ('\n');
198
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200199 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
wdenkc6097192002-11-03 00:24:07 +0000200 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
201 continue; /* list only known devices */
202 printf ("IDE device %d: ", i);
203 dev_print(&ide_dev_desc[i]);
204 }
205 return 0;
206
207 } else if (strncmp(argv[1],"dev",3) == 0) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200208 if ((curr_device < 0) || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
wdenkc6097192002-11-03 00:24:07 +0000209 puts ("\nno IDE devices available\n");
210 return 1;
211 }
212 printf ("\nIDE device %d: ", curr_device);
213 dev_print(&ide_dev_desc[curr_device]);
214 return 0;
215 } else if (strncmp(argv[1],"part",4) == 0) {
216 int dev, ok;
217
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200218 for (ok=0, dev=0; dev<CONFIG_SYS_IDE_MAXDEVICE; ++dev) {
wdenkc6097192002-11-03 00:24:07 +0000219 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
220 ++ok;
221 if (dev)
222 putc ('\n');
223 print_part(&ide_dev_desc[dev]);
224 }
225 }
226 if (!ok) {
227 puts ("\nno IDE devices available\n");
228 rcode ++;
229 }
230 return rcode;
231 }
Peter Tyserddb3af92009-01-27 18:03:10 -0600232 cmd_usage(cmdtp);
wdenkc6097192002-11-03 00:24:07 +0000233 return 1;
234 case 3:
235 if (strncmp(argv[1],"dev",3) == 0) {
236 int dev = (int)simple_strtoul(argv[2], NULL, 10);
237
238 printf ("\nIDE device %d: ", dev);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200239 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
wdenkc6097192002-11-03 00:24:07 +0000240 puts ("unknown device\n");
241 return 1;
242 }
243 dev_print(&ide_dev_desc[dev]);
244 /*ide_print (dev);*/
245
246 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
247 return 1;
248 }
249
250 curr_device = dev;
251
252 puts ("... is now current device\n");
253
254 return 0;
255 } else if (strncmp(argv[1],"part",4) == 0) {
256 int dev = (int)simple_strtoul(argv[2], NULL, 10);
257
258 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
259 print_part(&ide_dev_desc[dev]);
260 } else {
261 printf ("\nIDE device %d not available\n", dev);
262 rcode = 1;
263 }
264 return rcode;
265#if 0
266 } else if (strncmp(argv[1],"pio",4) == 0) {
267 int mode = (int)simple_strtoul(argv[2], NULL, 10);
268
269 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
270 puts ("\nSetting ");
271 pio_mode = mode;
272 ide_init ();
273 } else {
274 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
275 mode, IDE_MAX_PIO_MODE);
276 }
277 return;
278#endif
279 }
280
Peter Tyserddb3af92009-01-27 18:03:10 -0600281 cmd_usage(cmdtp);
wdenkc6097192002-11-03 00:24:07 +0000282 return 1;
283 default:
284 /* at least 4 args */
285
286 if (strcmp(argv[1],"read") == 0) {
287 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000288 ulong cnt = simple_strtoul(argv[4], NULL, 16);
289 ulong n;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200290#ifdef CONFIG_SYS_64BIT_LBA
wdenkc35ba4e2004-03-14 22:25:36 +0000291 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000292
Mike Frysinger2b745dc2009-02-16 23:21:36 -0500293 printf ("\nIDE read: device %d block # %Ld, count %ld ... ",
wdenkc6097192002-11-03 00:24:07 +0000294 curr_device, blk, cnt);
wdenkc35ba4e2004-03-14 22:25:36 +0000295#else
296 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
297
298 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
299 curr_device, blk, cnt);
300#endif
wdenkc6097192002-11-03 00:24:07 +0000301
302 n = ide_dev_desc[curr_device].block_read (curr_device,
303 blk, cnt,
304 (ulong *)addr);
305 /* flush cache after read */
306 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
307
308 printf ("%ld blocks read: %s\n",
309 n, (n==cnt) ? "OK" : "ERROR");
310 if (n==cnt) {
311 return 0;
312 } else {
313 return 1;
314 }
315 } else if (strcmp(argv[1],"write") == 0) {
316 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000317 ulong cnt = simple_strtoul(argv[4], NULL, 16);
318 ulong n;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200319#ifdef CONFIG_SYS_64BIT_LBA
wdenkc35ba4e2004-03-14 22:25:36 +0000320 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000321
Mike Frysinger2b745dc2009-02-16 23:21:36 -0500322 printf ("\nIDE write: device %d block # %Ld, count %ld ... ",
wdenkc6097192002-11-03 00:24:07 +0000323 curr_device, blk, cnt);
wdenkc35ba4e2004-03-14 22:25:36 +0000324#else
325 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
326
327 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
328 curr_device, blk, cnt);
329#endif
wdenkc6097192002-11-03 00:24:07 +0000330
331 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
332
333 printf ("%ld blocks written: %s\n",
334 n, (n==cnt) ? "OK" : "ERROR");
335 if (n==cnt) {
336 return 0;
337 } else {
338 return 1;
339 }
340 } else {
Peter Tyserddb3af92009-01-27 18:03:10 -0600341 cmd_usage(cmdtp);
wdenkc6097192002-11-03 00:24:07 +0000342 rcode = 1;
343 }
344
345 return rcode;
346 }
347}
348
349int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
350{
351 char *boot_device = NULL;
352 char *ep;
353 int dev, part = 0;
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100354 ulong addr, cnt;
wdenkc6097192002-11-03 00:24:07 +0000355 disk_partition_t info;
356 image_header_t *hdr;
357 int rcode = 0;
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100358#if defined(CONFIG_FIT)
Marian Balakowiczcefb4022008-06-06 23:07:40 +0200359 const void *fit_hdr = NULL;
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100360#endif
wdenkc6097192002-11-03 00:24:07 +0000361
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200362 show_boot_progress (41);
wdenkc6097192002-11-03 00:24:07 +0000363 switch (argc) {
364 case 1:
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200365 addr = CONFIG_SYS_LOAD_ADDR;
wdenkc6097192002-11-03 00:24:07 +0000366 boot_device = getenv ("bootdevice");
367 break;
368 case 2:
369 addr = simple_strtoul(argv[1], NULL, 16);
370 boot_device = getenv ("bootdevice");
371 break;
372 case 3:
373 addr = simple_strtoul(argv[1], NULL, 16);
374 boot_device = argv[2];
375 break;
376 default:
Peter Tyserddb3af92009-01-27 18:03:10 -0600377 cmd_usage(cmdtp);
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200378 show_boot_progress (-42);
wdenkc6097192002-11-03 00:24:07 +0000379 return 1;
380 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200381 show_boot_progress (42);
wdenkc6097192002-11-03 00:24:07 +0000382
383 if (!boot_device) {
384 puts ("\n** No boot device **\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200385 show_boot_progress (-43);
wdenkc6097192002-11-03 00:24:07 +0000386 return 1;
387 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200388 show_boot_progress (43);
wdenkc6097192002-11-03 00:24:07 +0000389
390 dev = simple_strtoul(boot_device, &ep, 16);
391
392 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
393 printf ("\n** Device %d not available\n", dev);
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200394 show_boot_progress (-44);
wdenkc6097192002-11-03 00:24:07 +0000395 return 1;
396 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200397 show_boot_progress (44);
wdenkc6097192002-11-03 00:24:07 +0000398
399 if (*ep) {
400 if (*ep != ':') {
401 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200402 show_boot_progress (-45);
wdenkc6097192002-11-03 00:24:07 +0000403 return 1;
404 }
405 part = simple_strtoul(++ep, NULL, 16);
406 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200407 show_boot_progress (45);
Denis Peter3957bc12007-04-13 09:13:33 +0200408 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200409 show_boot_progress (-46);
wdenkc6097192002-11-03 00:24:07 +0000410 return 1;
411 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200412 show_boot_progress (46);
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200413 if ((strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
414 (strncmp((char *)info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
wdenkc6097192002-11-03 00:24:07 +0000415 printf ("\n** Invalid partition type \"%.32s\""
416 " (expect \"" BOOT_PART_TYPE "\")\n",
417 info.type);
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200418 show_boot_progress (-47);
wdenkc6097192002-11-03 00:24:07 +0000419 return 1;
420 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200421 show_boot_progress (47);
wdenkc6097192002-11-03 00:24:07 +0000422
423 printf ("\nLoading from IDE device %d, partition %d: "
424 "Name: %.32s Type: %.32s\n",
425 dev, part, info.name, info.type);
426
wdenkf1276d42005-02-03 23:00:49 +0000427 debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
wdenkc6097192002-11-03 00:24:07 +0000428 info.start, info.size, info.blksz);
429
430 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
431 printf ("** Read error on %d:%d\n", dev, part);
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200432 show_boot_progress (-48);
wdenkc6097192002-11-03 00:24:07 +0000433 return 1;
434 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200435 show_boot_progress (48);
wdenkc6097192002-11-03 00:24:07 +0000436
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100437 switch (genimg_get_format ((void *)addr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100438 case IMAGE_FORMAT_LEGACY:
439 hdr = (image_header_t *)addr;
wdenkc6097192002-11-03 00:24:07 +0000440
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100441 show_boot_progress (49);
442
443 if (!image_check_hcrc (hdr)) {
444 puts ("\n** Bad Header Checksum **\n");
445 show_boot_progress (-50);
446 return 1;
447 }
448 show_boot_progress (50);
wdenkc6097192002-11-03 00:24:07 +0000449
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100450 image_print_contents (hdr);
451
452 cnt = image_get_image_size (hdr);
453 break;
454#if defined(CONFIG_FIT)
455 case IMAGE_FORMAT_FIT:
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100456 fit_hdr = (const void *)addr;
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100457 puts ("Fit image detected...\n");
458
459 cnt = fit_get_size (fit_hdr);
460 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100461#endif
462 default:
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100463 show_boot_progress (-49);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100464 puts ("** Unknown image type\n");
wdenkf1276d42005-02-03 23:00:49 +0000465 return 1;
466 }
wdenkf1276d42005-02-03 23:00:49 +0000467
wdenkf1276d42005-02-03 23:00:49 +0000468 cnt += info.blksz - 1;
469 cnt /= info.blksz;
470 cnt -= 1;
471
wdenkc6097192002-11-03 00:24:07 +0000472 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
473 (ulong *)(addr+info.blksz)) != cnt) {
474 printf ("** Read error on %d:%d\n", dev, part);
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200475 show_boot_progress (-51);
wdenkc6097192002-11-03 00:24:07 +0000476 return 1;
477 }
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200478 show_boot_progress (51);
wdenkc6097192002-11-03 00:24:07 +0000479
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100480#if defined(CONFIG_FIT)
481 /* This cannot be done earlier, we need complete FIT image in RAM first */
Marian Balakowiczcefb4022008-06-06 23:07:40 +0200482 if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) {
483 if (!fit_check_format (fit_hdr)) {
484 show_boot_progress (-140);
485 puts ("** Bad FIT image format\n");
486 return 1;
487 }
488 show_boot_progress (141);
489 fit_print_contents (fit_hdr);
490 }
Marian Balakowicze6bdd342008-03-12 10:33:01 +0100491#endif
wdenkc6097192002-11-03 00:24:07 +0000492
493 /* Loading ok, update default load address */
494
495 load_addr = addr;
496
497 /* Check if we should attempt an auto-start */
498 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
499 char *local_args[2];
500 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
501
502 local_args[0] = argv[0];
503 local_args[1] = NULL;
504
505 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
506
507 do_bootm (cmdtp, 0, 1, local_args);
508 rcode = 1;
509 }
510 return rcode;
511}
512
513/* ------------------------------------------------------------------------- */
514
Stefan Roese37628252008-08-06 14:05:38 +0200515void inline
516__ide_outb(int dev, int port, unsigned char val)
517{
518 debug ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200519 dev, port, val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
520 outb(val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
Stefan Roese37628252008-08-06 14:05:38 +0200521}
Kim Phillips8167f3c2009-05-19 12:53:36 -0500522void ide_outb (int dev, int port, unsigned char val)
Stefan Roese37628252008-08-06 14:05:38 +0200523 __attribute__((weak, alias("__ide_outb")));
524
525unsigned char inline
526__ide_inb(int dev, int port)
527{
528 uchar val;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200529 val = inb((ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
Stefan Roese37628252008-08-06 14:05:38 +0200530 debug ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200531 dev, port, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)), val);
Stefan Roese37628252008-08-06 14:05:38 +0200532 return val;
533}
Kim Phillips8167f3c2009-05-19 12:53:36 -0500534unsigned char ide_inb(int dev, int port)
Stefan Roese37628252008-08-06 14:05:38 +0200535 __attribute__((weak, alias("__ide_inb")));
536
Steven A. Falco2b7574e2008-08-15 15:34:10 -0400537#ifdef CONFIG_TUNE_PIO
538int inline
539__ide_set_piomode(int pio_mode)
540{
541 return 0;
542}
543int inline ide_set_piomode(int pio_mode)
544 __attribute__((weak, alias("__ide_set_piomode")));
545#endif
546
wdenkc6097192002-11-03 00:24:07 +0000547void ide_init (void)
548{
wdenkc6097192002-11-03 00:24:07 +0000549
550#ifdef CONFIG_IDE_8xx_DIRECT
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200551 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +0000552 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
553#endif
554 unsigned char c;
555 int i, bus;
Wolfgang Denkb0b104a2010-06-13 18:28:54 +0200556#if defined(CONFIG_SC3)
Wolfgang Denkd2a7a742007-06-08 10:24:58 +0200557 unsigned int ata_reset_time = ATA_RESET_TIME;
558 char *s;
Wolfgang Denk15c6b152007-04-11 17:22:55 +0200559#endif
wdenk7f00b942003-12-07 23:55:12 +0000560#ifdef CONFIG_IDE_8xx_PCCARD
561 extern int pcmcia_on (void);
562 extern int ide_devices_found; /* Initialized in check_ide_device() */
563#endif /* CONFIG_IDE_8xx_PCCARD */
564
565#ifdef CONFIG_IDE_PREINIT
wdenk369d43d2004-03-14 14:09:05 +0000566 extern int ide_preinit (void);
wdenk7f00b942003-12-07 23:55:12 +0000567 WATCHDOG_RESET();
568
569 if (ide_preinit ()) {
570 puts ("ide_preinit failed\n");
571 return;
572 }
573#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000574
575#ifdef CONFIG_IDE_8xx_PCCARD
576 extern int pcmcia_on (void);
wdenk4fc95692003-02-28 00:49:47 +0000577 extern int ide_devices_found; /* Initialized in check_ide_device() */
wdenkc6097192002-11-03 00:24:07 +0000578
579 WATCHDOG_RESET();
580
wdenk4fc95692003-02-28 00:49:47 +0000581 ide_devices_found = 0;
wdenkc6097192002-11-03 00:24:07 +0000582 /* initialize the PCMCIA IDE adapter card */
wdenk4fc95692003-02-28 00:49:47 +0000583 pcmcia_on();
584 if (!ide_devices_found)
wdenkc6097192002-11-03 00:24:07 +0000585 return;
586 udelay (1000000); /* 1 s */
587#endif /* CONFIG_IDE_8xx_PCCARD */
588
589 WATCHDOG_RESET();
590
wdenk9f837932003-10-09 19:00:25 +0000591#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +0000592 /* Initialize PIO timing tables */
593 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
wdenkf1276d42005-02-03 23:00:49 +0000594 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
595 gd->bus_clk);
596 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
597 gd->bus_clk);
598 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
599 gd->bus_clk);
600 debug ( "PIO Mode %d: setup=%2d ns/%d clk"
601 " len=%3d ns/%d clk"
602 " hold=%2d ns/%d clk\n",
603 i,
604 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
605 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
606 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
wdenkc6097192002-11-03 00:24:07 +0000607 }
wdenk9f837932003-10-09 19:00:25 +0000608#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000609
610 /* Reset the IDE just to be sure.
611 * Light LED's to show
612 */
613 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
614 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
615
616#ifdef CONFIG_IDE_8xx_DIRECT
617 /* PCMCIA / IDE initialization for common mem space */
618 pcmp->pcmc_pgcrb = 0;
wdenkc6097192002-11-03 00:24:07 +0000619
620 /* start in PIO mode 0 - most relaxed timings */
621 pio_mode = 0;
622 set_pcmcia_timing (pio_mode);
wdenk9f837932003-10-09 19:00:25 +0000623#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000624
625 /*
626 * Wait for IDE to get ready.
627 * According to spec, this can take up to 31 seconds!
628 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200629 for (bus=0; bus<CONFIG_SYS_IDE_MAXBUS; ++bus) {
630 int dev = bus * (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS);
wdenkc6097192002-11-03 00:24:07 +0000631
wdenk4fc95692003-02-28 00:49:47 +0000632#ifdef CONFIG_IDE_8xx_PCCARD
633 /* Skip non-ide devices from probing */
634 if ((ide_devices_found & (1 << bus)) == 0) {
635 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
636 continue;
637 }
638#endif
wdenkc6097192002-11-03 00:24:07 +0000639 printf ("Bus %d: ", bus);
640
641 ide_bus_ok[bus] = 0;
642
643 /* Select device
644 */
645 udelay (100000); /* 100 ms */
wdenk591dda52002-11-18 00:14:45 +0000646 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
wdenkc6097192002-11-03 00:24:07 +0000647 udelay (100000); /* 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000648 i = 0;
649 do {
650 udelay (10000); /* 10 ms */
651
wdenk591dda52002-11-18 00:14:45 +0000652 c = ide_inb (dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000653 i++;
Wolfgang Denkb0b104a2010-06-13 18:28:54 +0200654#if defined(CONFIG_SC3)
wdenk452cfd62002-11-19 11:04:11 +0000655 if (i > (ata_reset_time * 100)) {
656#else
wdenkc6097192002-11-03 00:24:07 +0000657 if (i > (ATA_RESET_TIME * 100)) {
wdenk452cfd62002-11-19 11:04:11 +0000658#endif
wdenkc6097192002-11-03 00:24:07 +0000659 puts ("** Timeout **\n");
660 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
661 return;
662 }
663 if ((i >= 100) && ((i%100)==0)) {
664 putc ('.');
665 }
666 } while (c & ATA_STAT_BUSY);
667
668 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
669 puts ("not available ");
wdenkf1276d42005-02-03 23:00:49 +0000670 debug ("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000671#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
672 } else if ((c & ATA_STAT_READY) == 0) {
673 puts ("not available ");
wdenkf1276d42005-02-03 23:00:49 +0000674 debug ("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000675#endif
676 } else {
677 puts ("OK ");
678 ide_bus_ok[bus] = 1;
679 }
680 WATCHDOG_RESET();
681 }
wdenk452cfd62002-11-19 11:04:11 +0000682
wdenkc6097192002-11-03 00:24:07 +0000683 putc ('\n');
684
685 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
686
687 curr_device = -1;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200688 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
wdenkc6097192002-11-03 00:24:07 +0000689#ifdef CONFIG_IDE_LED
690 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
691#endif
wdenk4b16c2e2003-11-07 13:42:26 +0000692 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
wdenkc6097192002-11-03 00:24:07 +0000693 ide_dev_desc[i].if_type=IF_TYPE_IDE;
694 ide_dev_desc[i].dev=i;
695 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
696 ide_dev_desc[i].blksz=0;
697 ide_dev_desc[i].lba=0;
698 ide_dev_desc[i].block_read=ide_read;
699 if (!ide_bus_ok[IDE_BUS(i)])
700 continue;
701 ide_led (led, 1); /* LED on */
702 ide_ident(&ide_dev_desc[i]);
703 ide_led (led, 0); /* LED off */
704 dev_print(&ide_dev_desc[i]);
705/* ide_print (i); */
706 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
707 init_part (&ide_dev_desc[i]); /* initialize partition type */
708 if (curr_device < 0)
709 curr_device = i;
710 }
711 }
712 WATCHDOG_RESET();
713}
714
715/* ------------------------------------------------------------------------- */
716
717block_dev_desc_t * ide_get_dev(int dev)
718{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200719 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
wdenkc6097192002-11-03 00:24:07 +0000720}
721
722
723#ifdef CONFIG_IDE_8xx_DIRECT
724
725static void
726set_pcmcia_timing (int pmode)
727{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200728 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +0000729 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
730 ulong timings;
731
wdenkf1276d42005-02-03 23:00:49 +0000732 debug ("Set timing for PIO Mode %d\n", pmode);
wdenkc6097192002-11-03 00:24:07 +0000733
734 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
735 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
736 | PCMCIA_SL (pio_config_clk[pmode].t_length)
737 ;
738
739 /* IDE 0
740 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200741 pcmp->pcmc_pbr0 = CONFIG_SYS_PCMCIA_PBR0;
742 pcmp->pcmc_por0 = CONFIG_SYS_PCMCIA_POR0
743#if (CONFIG_SYS_PCMCIA_POR0 != 0)
wdenkc6097192002-11-03 00:24:07 +0000744 | timings
745#endif
746 ;
wdenkf1276d42005-02-03 23:00:49 +0000747 debug ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
wdenkc6097192002-11-03 00:24:07 +0000748
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200749 pcmp->pcmc_pbr1 = CONFIG_SYS_PCMCIA_PBR1;
750 pcmp->pcmc_por1 = CONFIG_SYS_PCMCIA_POR1
751#if (CONFIG_SYS_PCMCIA_POR1 != 0)
wdenkc6097192002-11-03 00:24:07 +0000752 | timings
753#endif
754 ;
wdenkf1276d42005-02-03 23:00:49 +0000755 debug ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
wdenkc6097192002-11-03 00:24:07 +0000756
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200757 pcmp->pcmc_pbr2 = CONFIG_SYS_PCMCIA_PBR2;
758 pcmp->pcmc_por2 = CONFIG_SYS_PCMCIA_POR2
759#if (CONFIG_SYS_PCMCIA_POR2 != 0)
wdenkc6097192002-11-03 00:24:07 +0000760 | timings
761#endif
762 ;
wdenkf1276d42005-02-03 23:00:49 +0000763 debug ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
wdenkc6097192002-11-03 00:24:07 +0000764
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200765 pcmp->pcmc_pbr3 = CONFIG_SYS_PCMCIA_PBR3;
766 pcmp->pcmc_por3 = CONFIG_SYS_PCMCIA_POR3
767#if (CONFIG_SYS_PCMCIA_POR3 != 0)
wdenkc6097192002-11-03 00:24:07 +0000768 | timings
769#endif
770 ;
wdenkf1276d42005-02-03 23:00:49 +0000771 debug ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
wdenkc6097192002-11-03 00:24:07 +0000772
773 /* IDE 1
774 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200775 pcmp->pcmc_pbr4 = CONFIG_SYS_PCMCIA_PBR4;
776 pcmp->pcmc_por4 = CONFIG_SYS_PCMCIA_POR4
777#if (CONFIG_SYS_PCMCIA_POR4 != 0)
wdenkc6097192002-11-03 00:24:07 +0000778 | timings
779#endif
780 ;
wdenkf1276d42005-02-03 23:00:49 +0000781 debug ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
wdenkc6097192002-11-03 00:24:07 +0000782
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200783 pcmp->pcmc_pbr5 = CONFIG_SYS_PCMCIA_PBR5;
784 pcmp->pcmc_por5 = CONFIG_SYS_PCMCIA_POR5
785#if (CONFIG_SYS_PCMCIA_POR5 != 0)
wdenkc6097192002-11-03 00:24:07 +0000786 | timings
787#endif
788 ;
wdenkf1276d42005-02-03 23:00:49 +0000789 debug ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
wdenkc6097192002-11-03 00:24:07 +0000790
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200791 pcmp->pcmc_pbr6 = CONFIG_SYS_PCMCIA_PBR6;
792 pcmp->pcmc_por6 = CONFIG_SYS_PCMCIA_POR6
793#if (CONFIG_SYS_PCMCIA_POR6 != 0)
wdenkc6097192002-11-03 00:24:07 +0000794 | timings
795#endif
796 ;
wdenkf1276d42005-02-03 23:00:49 +0000797 debug ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
wdenkc6097192002-11-03 00:24:07 +0000798
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200799 pcmp->pcmc_pbr7 = CONFIG_SYS_PCMCIA_PBR7;
800 pcmp->pcmc_por7 = CONFIG_SYS_PCMCIA_POR7
801#if (CONFIG_SYS_PCMCIA_POR7 != 0)
wdenkc6097192002-11-03 00:24:07 +0000802 | timings
803#endif
804 ;
wdenkf1276d42005-02-03 23:00:49 +0000805 debug ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
wdenkc6097192002-11-03 00:24:07 +0000806
807}
808
809#endif /* CONFIG_IDE_8xx_DIRECT */
810
811/* ------------------------------------------------------------------------- */
812
wdenk9b7f3842003-10-09 20:09:04 +0000813/* We only need to swap data if we are running on a big endian cpu. */
814/* But Au1x00 cpu:s already swaps data in big endian mode! */
Wolfgang Denk39c76422006-06-16 17:32:31 +0200815#if defined(__LITTLE_ENDIAN) || ( defined(CONFIG_AU1X00) && !defined(CONFIG_GTH2) )
wdenk9b7f3842003-10-09 20:09:04 +0000816#define input_swap_data(x,y,z) input_data(x,y,z)
817#else
wdenkc6097192002-11-03 00:24:07 +0000818static void
819input_swap_data(int dev, ulong *sect_buf, int words)
820{
wdenkf1276d42005-02-03 23:00:49 +0000821#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenk2f99a692004-01-04 22:51:12 +0000822 uchar i;
823 volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
824 volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
825 ushort *dbuf = (ushort *)sect_buf;
826
827 while (words--) {
828 for (i=0; i<2; i++) {
829 *(((uchar *)(dbuf)) + 1) = *pbuf_even;
830 *(uchar *)dbuf = *pbuf_odd;
831 dbuf+=1;
832 }
833 }
wdenkb995b0f2005-03-06 01:21:30 +0000834#else
wdenkf1276d42005-02-03 23:00:49 +0000835 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
836 ushort *dbuf = (ushort *)sect_buf;
837
838 debug("in input swap data base for read is %lx\n", (unsigned long) pbuf);
839
840 while (words--) {
Wolfgang Denk39c76422006-06-16 17:32:31 +0200841#ifdef __MIPS__
842 *dbuf++ = swab16p((u16*)pbuf);
843 *dbuf++ = swab16p((u16*)pbuf);
Heiko Schocher633e03a2007-06-22 19:11:54 +0200844#elif defined(CONFIG_PCS440EP)
845 *dbuf++ = *pbuf;
846 *dbuf++ = *pbuf;
Wolfgang Denk39c76422006-06-16 17:32:31 +0200847#else
wdenkf1276d42005-02-03 23:00:49 +0000848 *dbuf++ = ld_le16(pbuf);
849 *dbuf++ = ld_le16(pbuf);
Wolfgang Denk39c76422006-06-16 17:32:31 +0200850#endif /* !MIPS */
wdenkf1276d42005-02-03 23:00:49 +0000851 }
852#endif
wdenkc6097192002-11-03 00:24:07 +0000853}
wdenk9b7f3842003-10-09 20:09:04 +0000854#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenk591dda52002-11-18 00:14:45 +0000855
856
Nobuhiro Iwamatsu39d90432007-09-23 02:42:38 +0900857#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) || defined(CONFIG_SH)
wdenkc6097192002-11-03 00:24:07 +0000858static void
859output_data(int dev, ulong *sect_buf, int words)
860{
wdenkf1276d42005-02-03 23:00:49 +0000861#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenk2f99a692004-01-04 22:51:12 +0000862 uchar *dbuf;
863 volatile uchar *pbuf_even;
864 volatile uchar *pbuf_odd;
865
866 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
867 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
868 dbuf = (uchar *)sect_buf;
869 while (words--) {
wdenk20c98a62004-04-23 20:32:05 +0000870 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +0000871 *pbuf_even = *dbuf++;
wdenk20c98a62004-04-23 20:32:05 +0000872 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +0000873 *pbuf_odd = *dbuf++;
wdenk20c98a62004-04-23 20:32:05 +0000874 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +0000875 *pbuf_even = *dbuf++;
wdenk20c98a62004-04-23 20:32:05 +0000876 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +0000877 *pbuf_odd = *dbuf++;
878 }
wdenkf1276d42005-02-03 23:00:49 +0000879#else
880 ushort *dbuf;
881 volatile ushort *pbuf;
882
883 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
884 dbuf = (ushort *)sect_buf;
885 while (words--) {
Heiko Schocher633e03a2007-06-22 19:11:54 +0200886#if defined(CONFIG_PCS440EP)
887 /* not tested, because CF was write protected */
888 EIEIO;
889 *pbuf = ld_le16(dbuf++);
890 EIEIO;
891 *pbuf = ld_le16(dbuf++);
892#else
wdenkf1276d42005-02-03 23:00:49 +0000893 EIEIO;
894 *pbuf = *dbuf++;
895 EIEIO;
896 *pbuf = *dbuf++;
Heiko Schocher633e03a2007-06-22 19:11:54 +0200897#endif
wdenkf1276d42005-02-03 23:00:49 +0000898 }
899#endif
wdenkc6097192002-11-03 00:24:07 +0000900}
wdenk591dda52002-11-18 00:14:45 +0000901#else /* ! __PPC__ */
902static void
903output_data(int dev, ulong *sect_buf, int words)
904{
wdenk9f837932003-10-09 19:00:25 +0000905 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
wdenk591dda52002-11-18 00:14:45 +0000906}
907#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000908
Nobuhiro Iwamatsu39d90432007-09-23 02:42:38 +0900909#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) || defined(CONFIG_SH)
wdenkc6097192002-11-03 00:24:07 +0000910static void
911input_data(int dev, ulong *sect_buf, int words)
912{
wdenkf1276d42005-02-03 23:00:49 +0000913#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenk2f99a692004-01-04 22:51:12 +0000914 uchar *dbuf;
915 volatile uchar *pbuf_even;
916 volatile uchar *pbuf_odd;
917
918 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
919 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
920 dbuf = (uchar *)sect_buf;
921 while (words--) {
wdenkf1276d42005-02-03 23:00:49 +0000922 *dbuf++ = *pbuf_even;
wdenk20c98a62004-04-23 20:32:05 +0000923 EIEIO;
wdenkf1276d42005-02-03 23:00:49 +0000924 SYNC;
925 *dbuf++ = *pbuf_odd;
wdenkf6925c72005-01-22 18:26:04 +0000926 EIEIO;
wdenkf1276d42005-02-03 23:00:49 +0000927 SYNC;
wdenk2f99a692004-01-04 22:51:12 +0000928 *dbuf++ = *pbuf_even;
wdenk20c98a62004-04-23 20:32:05 +0000929 EIEIO;
wdenkf1276d42005-02-03 23:00:49 +0000930 SYNC;
wdenk2f99a692004-01-04 22:51:12 +0000931 *dbuf++ = *pbuf_odd;
wdenk20c98a62004-04-23 20:32:05 +0000932 EIEIO;
wdenkf1276d42005-02-03 23:00:49 +0000933 SYNC;
934 }
935#else
936 ushort *dbuf;
937 volatile ushort *pbuf;
938
939 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
940 dbuf = (ushort *)sect_buf;
941
942 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
943
944 while (words--) {
Heiko Schocher633e03a2007-06-22 19:11:54 +0200945#if defined(CONFIG_PCS440EP)
946 EIEIO;
947 *dbuf++ = ld_le16(pbuf);
948 EIEIO;
949 *dbuf++ = ld_le16(pbuf);
950#else
wdenk20c98a62004-04-23 20:32:05 +0000951 EIEIO;
wdenkf1276d42005-02-03 23:00:49 +0000952 *dbuf++ = *pbuf;
wdenkf6925c72005-01-22 18:26:04 +0000953 EIEIO;
wdenkf1276d42005-02-03 23:00:49 +0000954 *dbuf++ = *pbuf;
Heiko Schocher633e03a2007-06-22 19:11:54 +0200955#endif
wdenk2f99a692004-01-04 22:51:12 +0000956 }
wdenkf1276d42005-02-03 23:00:49 +0000957#endif
wdenkc6097192002-11-03 00:24:07 +0000958}
wdenk591dda52002-11-18 00:14:45 +0000959#else /* ! __PPC__ */
960static void
961input_data(int dev, ulong *sect_buf, int words)
962{
wdenk9f837932003-10-09 19:00:25 +0000963 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
wdenk591dda52002-11-18 00:14:45 +0000964}
965
966#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000967
968/* -------------------------------------------------------------------------
969 */
970static void ide_ident (block_dev_desc_t *dev_desc)
971{
972 ulong iobuf[ATA_SECTORWORDS];
973 unsigned char c;
974 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
975
wdenke2d6d742004-09-28 20:34:50 +0000976#ifdef CONFIG_ATAPI
977 int retries = 0;
wdenk452cfd62002-11-19 11:04:11 +0000978 int do_retry = 0;
979#endif
980
Steven A. Falco2b7574e2008-08-15 15:34:10 -0400981#ifdef CONFIG_TUNE_PIO
982 int pio_mode;
983#endif
984
wdenkc6097192002-11-03 00:24:07 +0000985#if 0
986 int mode, cycle_time;
987#endif
988 int device;
989 device=dev_desc->dev;
990 printf (" Device %d: ", device);
991
992 ide_led (DEVICE_LED(device), 1); /* LED on */
993 /* Select device
994 */
wdenk591dda52002-11-18 00:14:45 +0000995 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +0000996 dev_desc->if_type=IF_TYPE_IDE;
997#ifdef CONFIG_ATAPI
wdenk452cfd62002-11-19 11:04:11 +0000998
wdenk452cfd62002-11-19 11:04:11 +0000999 do_retry = 0;
1000 retries = 0;
1001
1002 /* Warning: This will be tricky to read */
wdenkf602aa02004-03-13 23:29:43 +00001003 while (retries <= 1) {
wdenkc6097192002-11-03 00:24:07 +00001004 /* check signature */
wdenk591dda52002-11-18 00:14:45 +00001005 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1006 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1007 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
1008 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
wdenkc6097192002-11-03 00:24:07 +00001009 /* ATAPI Signature found */
1010 dev_desc->if_type=IF_TYPE_ATAPI;
1011 /* Start Ident Command
1012 */
wdenk591dda52002-11-18 00:14:45 +00001013 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001014 /*
1015 * Wait for completion - ATAPI devices need more time
1016 * to become ready
1017 */
1018 c = ide_wait (device, ATAPI_TIME_OUT);
wdenkf602aa02004-03-13 23:29:43 +00001019 } else
wdenkc6097192002-11-03 00:24:07 +00001020#endif
1021 {
1022 /* Start Ident Command
1023 */
wdenk591dda52002-11-18 00:14:45 +00001024 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001025
1026 /* Wait for completion
1027 */
1028 c = ide_wait (device, IDE_TIME_OUT);
1029 }
1030 ide_led (DEVICE_LED(device), 0); /* LED off */
1031
1032 if (((c & ATA_STAT_DRQ) == 0) ||
1033 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
wdenke2d6d742004-09-28 20:34:50 +00001034#ifdef CONFIG_ATAPI
wdenkf1276d42005-02-03 23:00:49 +00001035 {
1036 /* Need to soft reset the device in case it's an ATAPI... */
1037 debug ("Retrying...\n");
1038 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1039 udelay(100000);
1040 ide_outb (device, ATA_COMMAND, 0x08);
1041 udelay (500000); /* 500 ms */
1042 }
wdenke2d6d742004-09-28 20:34:50 +00001043 /* Select device
1044 */
wdenk452cfd62002-11-19 11:04:11 +00001045 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenk452cfd62002-11-19 11:04:11 +00001046 retries++;
wdenke2d6d742004-09-28 20:34:50 +00001047#else
1048 return;
1049#endif
wdenkc6097192002-11-03 00:24:07 +00001050 }
wdenke2d6d742004-09-28 20:34:50 +00001051#ifdef CONFIG_ATAPI
1052 else
1053 break;
wdenk452cfd62002-11-19 11:04:11 +00001054 } /* see above - ugly to read */
wdenke2d6d742004-09-28 20:34:50 +00001055
1056 if (retries == 2) /* Not found */
1057 return;
1058#endif
wdenkc6097192002-11-03 00:24:07 +00001059
1060 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1061
Jean-Christophe PLAGNIOL-VILLARD1fa3e362007-11-07 08:19:19 +01001062 ident_cpy ((unsigned char*)dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1063 ident_cpy ((unsigned char*)dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1064 ident_cpy ((unsigned char*)dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
wdenkacd9b102004-03-14 00:59:59 +00001065#ifdef __LITTLE_ENDIAN
1066 /*
Richard Retanubun54f30622008-11-06 14:01:51 -05001067 * firmware revision, model, and serial number have Big Endian Byte
1068 * order in Word. Convert all three to little endian.
wdenkacd9b102004-03-14 00:59:59 +00001069 *
1070 * See CF+ and CompactFlash Specification Revision 2.0:
Richard Retanubun54f30622008-11-06 14:01:51 -05001071 * 6.2.1.6: Identify Drive, Table 39 for more details
wdenkacd9b102004-03-14 00:59:59 +00001072 */
1073
1074 strswab (dev_desc->revision);
1075 strswab (dev_desc->vendor);
Richard Retanubun54f30622008-11-06 14:01:51 -05001076 strswab (dev_desc->product);
wdenkacd9b102004-03-14 00:59:59 +00001077#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +00001078
1079 if ((iop->config & 0x0080)==0x0080)
1080 dev_desc->removable = 1;
1081 else
1082 dev_desc->removable = 0;
1083
Steven A. Falco2b7574e2008-08-15 15:34:10 -04001084#ifdef CONFIG_TUNE_PIO
1085 /* Mode 0 - 2 only, are directly determined by word 51. */
1086 pio_mode = iop->tPIO;
1087 if (pio_mode > 2) {
1088 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
1089 pio_mode = 0; /* Force it to dead slow, and hope for the best... */
1090 }
1091
1092 /* Any CompactFlash Storage Card that supports PIO mode 3 or above
1093 * shall set bit 1 of word 53 to one and support the fields contained
1094 * in words 64 through 70.
1095 */
1096 if (iop->field_valid & 0x02) {
1097 /* Mode 3 and above are possible. Check in order from slow
1098 * to fast, so we wind up with the highest mode allowed.
1099 */
1100 if (iop->eide_pio_modes & 0x01)
1101 pio_mode = 3;
1102 if (iop->eide_pio_modes & 0x02)
1103 pio_mode = 4;
1104 if (ata_id_is_cfa((u16 *)iop)) {
1105 if ((iop->cf_advanced_caps & 0x07) == 0x01)
1106 pio_mode = 5;
1107 if ((iop->cf_advanced_caps & 0x07) == 0x02)
1108 pio_mode = 6;
1109 }
1110 }
1111
1112 /* System-specific, depends on bus speeds, etc. */
1113 ide_set_piomode(pio_mode);
1114#endif /* CONFIG_TUNE_PIO */
1115
wdenkc6097192002-11-03 00:24:07 +00001116#if 0
1117 /*
1118 * Drive PIO mode autoselection
1119 */
1120 mode = iop->tPIO;
1121
1122 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1123 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1124 mode = 2;
wdenkf1276d42005-02-03 23:00:49 +00001125 debug ("Override tPIO -> 2\n");
wdenkc6097192002-11-03 00:24:07 +00001126 }
1127 if (iop->field_valid & 2) { /* drive implements ATA2? */
wdenkf1276d42005-02-03 23:00:49 +00001128 debug ("Drive implements ATA2\n");
wdenkc6097192002-11-03 00:24:07 +00001129 if (iop->capability & 8) { /* drive supports use_iordy? */
1130 cycle_time = iop->eide_pio_iordy;
1131 } else {
1132 cycle_time = iop->eide_pio;
1133 }
wdenkf1276d42005-02-03 23:00:49 +00001134 debug ("cycle time = %d\n", cycle_time);
wdenkc6097192002-11-03 00:24:07 +00001135 mode = 4;
1136 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1137 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1138 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1139 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1140 }
1141 printf ("PIO mode to use: PIO %d\n", mode);
1142#endif /* 0 */
1143
1144#ifdef CONFIG_ATAPI
1145 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1146 atapi_inquiry(dev_desc);
1147 return;
1148 }
1149#endif /* CONFIG_ATAPI */
1150
wdenkacd9b102004-03-14 00:59:59 +00001151#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +00001152 /* swap shorts */
1153 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
wdenkacd9b102004-03-14 00:59:59 +00001154#else /* ! __BIG_ENDIAN */
1155 /*
1156 * do not swap shorts on little endian
1157 *
1158 * See CF+ and CompactFlash Specification Revision 2.0:
1159 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1160 */
1161 dev_desc->lba = iop->lba_capacity;
1162#endif /* __BIG_ENDIAN */
wdenkf602aa02004-03-13 23:29:43 +00001163
wdenkc35ba4e2004-03-14 22:25:36 +00001164#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001165 if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
wdenk05939202004-04-18 17:39:38 +00001166 dev_desc->lba48 = 1;
1167 dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] |
wdenkf602aa02004-03-13 23:29:43 +00001168 ((unsigned long long)iop->lba48_capacity[1] << 16) |
1169 ((unsigned long long)iop->lba48_capacity[2] << 32) |
1170 ((unsigned long long)iop->lba48_capacity[3] << 48);
1171 } else {
wdenkf602aa02004-03-13 23:29:43 +00001172 dev_desc->lba48 = 0;
1173 }
1174#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +00001175 /* assuming HD */
1176 dev_desc->type=DEV_TYPE_HARDDISK;
1177 dev_desc->blksz=ATA_BLOCKSIZE;
1178 dev_desc->lun=0; /* just to fill something in... */
1179
Wolfgang Denka1be4762008-05-20 16:00:29 +02001180#if 0 /* only used to test the powersaving mode,
wdenkc6097192002-11-03 00:24:07 +00001181 * if enabled, the drive goes after 5 sec
1182 * in standby mode */
wdenk591dda52002-11-18 00:14:45 +00001183 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001184 c = ide_wait (device, IDE_TIME_OUT);
wdenk591dda52002-11-18 00:14:45 +00001185 ide_outb (device, ATA_SECT_CNT, 1);
1186 ide_outb (device, ATA_LBA_LOW, 0);
1187 ide_outb (device, ATA_LBA_MID, 0);
1188 ide_outb (device, ATA_LBA_HIGH, 0);
wdenkf1276d42005-02-03 23:00:49 +00001189 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenk591dda52002-11-18 00:14:45 +00001190 ide_outb (device, ATA_COMMAND, 0xe3);
wdenkc6097192002-11-03 00:24:07 +00001191 udelay (50);
1192 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1193#endif
1194}
1195
1196
1197/* ------------------------------------------------------------------------- */
1198
Grant Likely2089cab2007-02-20 09:05:45 +01001199ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001200{
1201 ulong n = 0;
1202 unsigned char c;
1203 unsigned char pwrsave=0; /* power save */
wdenkc35ba4e2004-03-14 22:25:36 +00001204#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001205 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +00001206
Guennadi Liakhovetskib71f1ca2008-04-28 14:36:06 +02001207 if (blknr & 0x0000fffff0000000ULL) {
wdenkf602aa02004-03-13 23:29:43 +00001208 /* more than 28 bits used, use 48bit mode */
1209 lba48 = 1;
1210 }
1211#endif
Mike Frysinger2b745dc2009-02-16 23:21:36 -05001212 debug ("ide_read dev %d start %LX, blocks %lX buffer at %lX\n",
wdenkc6097192002-11-03 00:24:07 +00001213 device, blknr, blkcnt, (ulong)buffer);
1214
1215 ide_led (DEVICE_LED(device), 1); /* LED on */
1216
1217 /* Select device
1218 */
wdenk591dda52002-11-18 00:14:45 +00001219 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001220 c = ide_wait (device, IDE_TIME_OUT);
1221
1222 if (c & ATA_STAT_BUSY) {
1223 printf ("IDE read: device %d not ready\n", device);
1224 goto IDE_READ_E;
1225 }
1226
1227 /* first check if the drive is in Powersaving mode, if yes,
1228 * increase the timeout value */
wdenk591dda52002-11-18 00:14:45 +00001229 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
wdenkc6097192002-11-03 00:24:07 +00001230 udelay (50);
1231
1232 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1233
1234 if (c & ATA_STAT_BUSY) {
1235 printf ("IDE read: device %d not ready\n", device);
1236 goto IDE_READ_E;
1237 }
1238 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1239 printf ("No Powersaving mode %X\n", c);
1240 } else {
wdenk591dda52002-11-18 00:14:45 +00001241 c = ide_inb(device,ATA_SECT_CNT);
wdenkf1276d42005-02-03 23:00:49 +00001242 debug ("Powersaving %02X\n",c);
wdenkc6097192002-11-03 00:24:07 +00001243 if(c==0)
1244 pwrsave=1;
1245 }
1246
1247
1248 while (blkcnt-- > 0) {
1249
1250 c = ide_wait (device, IDE_TIME_OUT);
1251
1252 if (c & ATA_STAT_BUSY) {
1253 printf ("IDE read: device %d not ready\n", device);
1254 break;
1255 }
wdenkc35ba4e2004-03-14 22:25:36 +00001256#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001257 if (lba48) {
1258 /* write high bits */
1259 ide_outb (device, ATA_SECT_CNT, 0);
1260 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001261#ifdef CONFIG_SYS_64BIT_LBA
wdenkf602aa02004-03-13 23:29:43 +00001262 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1263 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetskib71f1ca2008-04-28 14:36:06 +02001264#else
1265 ide_outb (device, ATA_LBA_MID, 0);
1266 ide_outb (device, ATA_LBA_HIGH, 0);
1267#endif
wdenkf602aa02004-03-13 23:29:43 +00001268 }
1269#endif
wdenk591dda52002-11-18 00:14:45 +00001270 ide_outb (device, ATA_SECT_CNT, 1);
1271 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1272 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1273 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkf602aa02004-03-13 23:29:43 +00001274
wdenkc35ba4e2004-03-14 22:25:36 +00001275#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001276 if (lba48) {
1277 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1278 ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1279
1280 } else
1281#endif
1282 {
1283 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1284 ATA_DEVICE(device) |
1285 ((blknr >> 24) & 0xF) );
1286 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1287 }
wdenkc6097192002-11-03 00:24:07 +00001288
1289 udelay (50);
1290
1291 if(pwrsave) {
1292 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1293 pwrsave=0;
1294 } else {
1295 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1296 }
1297
1298 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
Heiko Schocher0f602e12009-12-03 11:21:21 +01001299#if defined(CONFIG_SYS_64BIT_LBA)
Mike Frysinger2b745dc2009-02-16 23:21:36 -05001300 printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001301 device, blknr, c);
wdenkf602aa02004-03-13 23:29:43 +00001302#else
1303 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1304 device, (ulong)blknr, c);
1305#endif
wdenkc6097192002-11-03 00:24:07 +00001306 break;
1307 }
1308
1309 input_data (device, buffer, ATA_SECTORWORDS);
wdenk591dda52002-11-18 00:14:45 +00001310 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001311
1312 ++n;
1313 ++blknr;
Greg Lopp50abf9f2007-04-13 08:02:24 +02001314 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001315 }
1316IDE_READ_E:
1317 ide_led (DEVICE_LED(device), 0); /* LED off */
1318 return (n);
1319}
1320
1321/* ------------------------------------------------------------------------- */
1322
1323
Grant Likely2089cab2007-02-20 09:05:45 +01001324ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001325{
1326 ulong n = 0;
1327 unsigned char c;
wdenkc35ba4e2004-03-14 22:25:36 +00001328#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001329 unsigned char lba48 = 0;
1330
Guennadi Liakhovetskib71f1ca2008-04-28 14:36:06 +02001331 if (blknr & 0x0000fffff0000000ULL) {
wdenkf602aa02004-03-13 23:29:43 +00001332 /* more than 28 bits used, use 48bit mode */
1333 lba48 = 1;
1334 }
1335#endif
wdenkc6097192002-11-03 00:24:07 +00001336
1337 ide_led (DEVICE_LED(device), 1); /* LED on */
1338
1339 /* Select device
1340 */
wdenk591dda52002-11-18 00:14:45 +00001341 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001342
1343 while (blkcnt-- > 0) {
1344
1345 c = ide_wait (device, IDE_TIME_OUT);
1346
1347 if (c & ATA_STAT_BUSY) {
1348 printf ("IDE read: device %d not ready\n", device);
1349 goto WR_OUT;
1350 }
wdenkc35ba4e2004-03-14 22:25:36 +00001351#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001352 if (lba48) {
1353 /* write high bits */
1354 ide_outb (device, ATA_SECT_CNT, 0);
1355 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001356#ifdef CONFIG_SYS_64BIT_LBA
wdenkf602aa02004-03-13 23:29:43 +00001357 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1358 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetskib71f1ca2008-04-28 14:36:06 +02001359#else
1360 ide_outb (device, ATA_LBA_MID, 0);
1361 ide_outb (device, ATA_LBA_HIGH, 0);
1362#endif
wdenkf602aa02004-03-13 23:29:43 +00001363 }
1364#endif
wdenk591dda52002-11-18 00:14:45 +00001365 ide_outb (device, ATA_SECT_CNT, 1);
1366 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1367 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1368 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkf602aa02004-03-13 23:29:43 +00001369
wdenkc35ba4e2004-03-14 22:25:36 +00001370#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001371 if (lba48) {
1372 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1373 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
1374
1375 } else
1376#endif
1377 {
1378 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1379 ATA_DEVICE(device) |
1380 ((blknr >> 24) & 0xF) );
1381 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1382 }
wdenkc6097192002-11-03 00:24:07 +00001383
1384 udelay (50);
1385
1386 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1387
1388 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
Heiko Schocher0f602e12009-12-03 11:21:21 +01001389#if defined(CONFIG_SYS_64BIT_LBA)
Mike Frysinger2b745dc2009-02-16 23:21:36 -05001390 printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001391 device, blknr, c);
wdenkf602aa02004-03-13 23:29:43 +00001392#else
1393 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1394 device, (ulong)blknr, c);
1395#endif
wdenkc6097192002-11-03 00:24:07 +00001396 goto WR_OUT;
1397 }
1398
1399 output_data (device, buffer, ATA_SECTORWORDS);
wdenk591dda52002-11-18 00:14:45 +00001400 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001401 ++n;
1402 ++blknr;
Greg Lopp50abf9f2007-04-13 08:02:24 +02001403 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001404 }
1405WR_OUT:
1406 ide_led (DEVICE_LED(device), 0); /* LED off */
1407 return (n);
1408}
1409
1410/* ------------------------------------------------------------------------- */
1411
1412/*
1413 * copy src to dest, skipping leading and trailing blanks and null
1414 * terminate the string
wdenk18bd81e2004-03-17 01:13:07 +00001415 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +00001416 */
wdenk18bd81e2004-03-17 01:13:07 +00001417static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
wdenkc6097192002-11-03 00:24:07 +00001418{
wdenk18bd81e2004-03-17 01:13:07 +00001419 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +00001420
wdenk18bd81e2004-03-17 01:13:07 +00001421 last = dst;
wdenkeec9a3d2004-03-23 23:20:24 +00001422 end = src + len - 1;
wdenk18bd81e2004-03-17 01:13:07 +00001423
1424 /* reserve space for '\0' */
1425 if (len < 2)
1426 goto OUT;
wdenkc12081a2004-03-23 20:18:25 +00001427
wdenk18bd81e2004-03-17 01:13:07 +00001428 /* skip leading white space */
1429 while ((*src) && (src<end) && (*src==' '))
1430 ++src;
1431
1432 /* copy string, omitting trailing white space */
1433 while ((*src) && (src<end)) {
1434 *dst++ = *src;
1435 if (*src++ != ' ')
1436 last = dst;
wdenkc6097192002-11-03 00:24:07 +00001437 }
wdenk18bd81e2004-03-17 01:13:07 +00001438OUT:
1439 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +00001440}
1441
1442/* ------------------------------------------------------------------------- */
1443
1444/*
1445 * Wait until Busy bit is off, or timeout (in ms)
1446 * Return last status
1447 */
1448static uchar ide_wait (int dev, ulong t)
1449{
1450 ulong delay = 10 * t; /* poll every 100 us */
1451 uchar c;
1452
wdenk591dda52002-11-18 00:14:45 +00001453 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
wdenkc6097192002-11-03 00:24:07 +00001454 udelay (100);
1455 if (delay-- == 0) {
1456 break;
1457 }
1458 }
1459 return (c);
1460}
1461
1462/* ------------------------------------------------------------------------- */
1463
1464#ifdef CONFIG_IDE_RESET
1465extern void ide_set_reset(int idereset);
1466
1467static void ide_reset (void)
1468{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001469#if defined(CONFIG_SYS_PB_12V_ENABLE) || defined(CONFIG_SYS_PB_IDE_MOTOR)
1470 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +00001471#endif
1472 int i;
1473
1474 curr_device = -1;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001475 for (i=0; i<CONFIG_SYS_IDE_MAXBUS; ++i)
wdenkc6097192002-11-03 00:24:07 +00001476 ide_bus_ok[i] = 0;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001477 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i)
wdenkc6097192002-11-03 00:24:07 +00001478 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1479
1480 ide_set_reset (1); /* assert reset */
1481
Martin Krause7e35caf2008-04-03 13:37:56 +02001482 /* the reset signal shall be asserted for et least 25 us */
1483 udelay(25);
1484
wdenkc6097192002-11-03 00:24:07 +00001485 WATCHDOG_RESET();
1486
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001487#ifdef CONFIG_SYS_PB_12V_ENABLE
1488 immr->im_cpm.cp_pbdat &= ~(CONFIG_SYS_PB_12V_ENABLE); /* 12V Enable output OFF */
1489 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_12V_ENABLE);
1490 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_12V_ENABLE);
1491 immr->im_cpm.cp_pbdir |= CONFIG_SYS_PB_12V_ENABLE;
wdenkc6097192002-11-03 00:24:07 +00001492
1493 /* wait 500 ms for the voltage to stabilize
1494 */
1495 for (i=0; i<500; ++i) {
1496 udelay (1000);
1497 }
1498
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001499 immr->im_cpm.cp_pbdat |= CONFIG_SYS_PB_12V_ENABLE; /* 12V Enable output ON */
1500#endif /* CONFIG_SYS_PB_12V_ENABLE */
wdenkc6097192002-11-03 00:24:07 +00001501
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001502#ifdef CONFIG_SYS_PB_IDE_MOTOR
wdenkc6097192002-11-03 00:24:07 +00001503 /* configure IDE Motor voltage monitor pin as input */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001504 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1505 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1506 immr->im_cpm.cp_pbdir &= ~(CONFIG_SYS_PB_IDE_MOTOR);
wdenkc6097192002-11-03 00:24:07 +00001507
1508 /* wait up to 1 s for the motor voltage to stabilize
1509 */
1510 for (i=0; i<1000; ++i) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001511 if ((immr->im_cpm.cp_pbdat & CONFIG_SYS_PB_IDE_MOTOR) != 0) {
wdenkc6097192002-11-03 00:24:07 +00001512 break;
1513 }
1514 udelay (1000);
1515 }
1516
1517 if (i == 1000) { /* Timeout */
1518 printf ("\nWarning: 5V for IDE Motor missing\n");
1519# ifdef CONFIG_STATUS_LED
1520# ifdef STATUS_LED_YELLOW
1521 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1522# endif
1523# ifdef STATUS_LED_GREEN
1524 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1525# endif
1526# endif /* CONFIG_STATUS_LED */
1527 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001528#endif /* CONFIG_SYS_PB_IDE_MOTOR */
wdenkc6097192002-11-03 00:24:07 +00001529
1530 WATCHDOG_RESET();
1531
1532 /* de-assert RESET signal */
1533 ide_set_reset(0);
1534
1535 /* wait 250 ms */
1536 for (i=0; i<250; ++i) {
1537 udelay (1000);
1538 }
1539}
1540
1541#endif /* CONFIG_IDE_RESET */
1542
1543/* ------------------------------------------------------------------------- */
1544
wdenk54070ab2004-12-31 09:32:47 +00001545#if defined(CONFIG_IDE_LED) && \
wdenk54070ab2004-12-31 09:32:47 +00001546 !defined(CONFIG_CPC45) && \
1547 !defined(CONFIG_HMI10) && \
1548 !defined(CONFIG_KUP4K) && \
1549 !defined(CONFIG_KUP4X)
wdenkc6097192002-11-03 00:24:07 +00001550
1551static uchar led_buffer = 0; /* Buffer for current LED status */
1552
1553static void ide_led (uchar led, uchar status)
1554{
1555 uchar *led_port = LED_PORT;
1556
1557 if (status) { /* switch LED on */
1558 led_buffer |= led;
1559 } else { /* switch LED off */
1560 led_buffer &= ~led;
1561 }
1562
1563 *led_port = led_buffer;
1564}
1565
1566#endif /* CONFIG_IDE_LED */
1567
Heiko Schocherffb293a2009-09-23 07:56:08 +02001568#if defined(CONFIG_OF_IDE_FIXUP)
1569int ide_device_present(int dev)
1570{
1571 if (dev >= CONFIG_SYS_IDE_MAXBUS)
1572 return 0;
1573 return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1574}
1575#endif
wdenkc6097192002-11-03 00:24:07 +00001576/* ------------------------------------------------------------------------- */
1577
1578#ifdef CONFIG_ATAPI
1579/****************************************************************************
1580 * ATAPI Support
1581 */
1582
wdenk634d2f72004-04-15 23:14:49 +00001583#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
wdenkc6097192002-11-03 00:24:07 +00001584/* since ATAPI may use commands with not 4 bytes alligned length
1585 * we have our own transfer functions, 2 bytes alligned */
1586static void
1587output_data_shorts(int dev, ushort *sect_buf, int shorts)
1588{
wdenkf1276d42005-02-03 23:00:49 +00001589#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenk2f99a692004-01-04 22:51:12 +00001590 uchar *dbuf;
1591 volatile uchar *pbuf_even;
1592 volatile uchar *pbuf_odd;
1593
1594 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1595 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1596 while (shorts--) {
wdenk20c98a62004-04-23 20:32:05 +00001597 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +00001598 *pbuf_even = *dbuf++;
wdenk20c98a62004-04-23 20:32:05 +00001599 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +00001600 *pbuf_odd = *dbuf++;
1601 }
wdenkf1276d42005-02-03 23:00:49 +00001602#else
wdenkc6097192002-11-03 00:24:07 +00001603 ushort *dbuf;
1604 volatile ushort *pbuf;
1605
1606 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1607 dbuf = (ushort *)sect_buf;
wdenk634d2f72004-04-15 23:14:49 +00001608
wdenkf1276d42005-02-03 23:00:49 +00001609 debug ("in output data shorts base for read is %lx\n", (unsigned long) pbuf);
wdenk634d2f72004-04-15 23:14:49 +00001610
wdenkc6097192002-11-03 00:24:07 +00001611 while (shorts--) {
wdenk20c98a62004-04-23 20:32:05 +00001612 EIEIO;
wdenkf1276d42005-02-03 23:00:49 +00001613 *pbuf = *dbuf++;
wdenkc6097192002-11-03 00:24:07 +00001614 }
wdenkf1276d42005-02-03 23:00:49 +00001615#endif
1616}
1617
1618static void
1619input_data_shorts(int dev, ushort *sect_buf, int shorts)
1620{
1621#if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
wdenk2f99a692004-01-04 22:51:12 +00001622 uchar *dbuf;
1623 volatile uchar *pbuf_even;
1624 volatile uchar *pbuf_odd;
1625
1626 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1627 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1628 while (shorts--) {
wdenk20c98a62004-04-23 20:32:05 +00001629 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +00001630 *dbuf++ = *pbuf_even;
wdenk20c98a62004-04-23 20:32:05 +00001631 EIEIO;
wdenk2f99a692004-01-04 22:51:12 +00001632 *dbuf++ = *pbuf_odd;
1633 }
wdenkf1276d42005-02-03 23:00:49 +00001634#else
1635 ushort *dbuf;
1636 volatile ushort *pbuf;
1637
1638 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1639 dbuf = (ushort *)sect_buf;
1640
1641 debug("in input data shorts base for read is %lx\n", (unsigned long) pbuf);
1642
1643 while (shorts--) {
1644 EIEIO;
1645 *dbuf++ = *pbuf;
1646 }
1647#endif
wdenkc6097192002-11-03 00:24:07 +00001648}
1649
wdenk591dda52002-11-18 00:14:45 +00001650#else /* ! __PPC__ */
1651static void
1652output_data_shorts(int dev, ushort *sect_buf, int shorts)
1653{
wdenk9f837932003-10-09 19:00:25 +00001654 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk591dda52002-11-18 00:14:45 +00001655}
1656
wdenk591dda52002-11-18 00:14:45 +00001657static void
1658input_data_shorts(int dev, ushort *sect_buf, int shorts)
1659{
wdenk9f837932003-10-09 19:00:25 +00001660 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk591dda52002-11-18 00:14:45 +00001661}
1662
1663#endif /* __PPC__ */
1664
wdenkc6097192002-11-03 00:24:07 +00001665/*
1666 * Wait until (Status & mask) == res, or timeout (in ms)
1667 * Return last status
1668 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1669 * and then they set their DRQ Bit
1670 */
1671static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1672{
1673 ulong delay = 10 * t; /* poll every 100 us */
1674 uchar c;
1675
wdenk591dda52002-11-18 00:14:45 +00001676 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1677 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001678 /* break if error occurs (doesn't make sense to wait more) */
1679 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1680 break;
1681 udelay (100);
1682 if (delay-- == 0) {
1683 break;
1684 }
1685 }
1686 return (c);
1687}
1688
1689/*
1690 * issue an atapi command
1691 */
1692unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1693{
1694 unsigned char c,err,mask,res;
1695 int n;
1696 ide_led (DEVICE_LED(device), 1); /* LED on */
1697
1698 /* Select device
1699 */
1700 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1701 res = 0;
wdenk591dda52002-11-18 00:14:45 +00001702 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001703 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1704 if ((c & mask) != res) {
1705 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1706 err=0xFF;
1707 goto AI_OUT;
1708 }
1709 /* write taskfile */
wdenk591dda52002-11-18 00:14:45 +00001710 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
wdenk452cfd62002-11-19 11:04:11 +00001711 ide_outb (device, ATA_SECT_CNT, 0);
1712 ide_outb (device, ATA_SECT_NUM, 0);
wdenk591dda52002-11-18 00:14:45 +00001713 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
wdenk452cfd62002-11-19 11:04:11 +00001714 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
wdenk591dda52002-11-18 00:14:45 +00001715 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001716
wdenk591dda52002-11-18 00:14:45 +00001717 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
wdenkc6097192002-11-03 00:24:07 +00001718 udelay (50);
1719
1720 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1721 res = ATA_STAT_DRQ;
1722 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1723
1724 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
Steven A. Falco634db892008-08-15 15:37:31 -04001725 printf ("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
wdenkc6097192002-11-03 00:24:07 +00001726 err=0xFF;
1727 goto AI_OUT;
1728 }
1729
1730 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
Wolfgang Denka1be4762008-05-20 16:00:29 +02001731 /* ATAPI Command written wait for completition */
wdenkc6097192002-11-03 00:24:07 +00001732 udelay (5000); /* device must set bsy */
1733
1734 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1735 /* if no data wait for DRQ = 0 BSY = 0
1736 * if data wait for DRQ = 1 BSY = 0 */
1737 res=0;
1738 if(buflen)
1739 res = ATA_STAT_DRQ;
1740 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1741 if ((c & mask) != res ) {
1742 if (c & ATA_STAT_ERR) {
wdenk591dda52002-11-18 00:14:45 +00001743 err=(ide_inb(device,ATA_ERROR_REG))>>4;
wdenkf1276d42005-02-03 23:00:49 +00001744 debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c);
wdenkc6097192002-11-03 00:24:07 +00001745 } else {
Steven A. Falco634db892008-08-15 15:37:31 -04001746 printf ("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
wdenkc6097192002-11-03 00:24:07 +00001747 err=0xFF;
1748 }
1749 goto AI_OUT;
1750 }
wdenk591dda52002-11-18 00:14:45 +00001751 n=ide_inb(device, ATA_CYL_HIGH);
wdenkc6097192002-11-03 00:24:07 +00001752 n<<=8;
wdenk591dda52002-11-18 00:14:45 +00001753 n+=ide_inb(device, ATA_CYL_LOW);
wdenkc6097192002-11-03 00:24:07 +00001754 if(n>buflen) {
1755 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1756 err=0xff;
1757 goto AI_OUT;
1758 }
1759 if((n==0)&&(buflen<0)) {
1760 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1761 err=0xff;
1762 goto AI_OUT;
1763 }
1764 if(n!=buflen) {
wdenkf1276d42005-02-03 23:00:49 +00001765 debug ("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
wdenkc6097192002-11-03 00:24:07 +00001766 }
1767 if(n!=0) { /* data transfer */
wdenkf1276d42005-02-03 23:00:49 +00001768 debug ("ATAPI_ISSUE: %d Bytes to transfer\n",n);
wdenkc6097192002-11-03 00:24:07 +00001769 /* we transfer shorts */
1770 n>>=1;
1771 /* ok now decide if it is an in or output */
wdenk591dda52002-11-18 00:14:45 +00001772 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
wdenkf1276d42005-02-03 23:00:49 +00001773 debug ("Write to device\n");
wdenkc6097192002-11-03 00:24:07 +00001774 output_data_shorts(device,(unsigned short *)buffer,n);
1775 } else {
wdenkf1276d42005-02-03 23:00:49 +00001776 debug ("Read from device @ %p shorts %d\n",buffer,n);
wdenkc6097192002-11-03 00:24:07 +00001777 input_data_shorts(device,(unsigned short *)buffer,n);
1778 }
1779 }
1780 udelay(5000); /* seems that some CD ROMs need this... */
1781 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1782 res=0;
1783 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1784 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
wdenk591dda52002-11-18 00:14:45 +00001785 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
wdenkf1276d42005-02-03 23:00:49 +00001786 debug ("atapi_issue 2 returned sense key %X status %X\n",err,c);
wdenkc6097192002-11-03 00:24:07 +00001787 } else {
1788 err = 0;
1789 }
1790AI_OUT:
1791 ide_led (DEVICE_LED(device), 0); /* LED off */
1792 return (err);
1793}
1794
1795/*
1796 * sending the command to atapi_issue. If an status other than good
1797 * returns, an request_sense will be issued
1798 */
1799
Wolfgang Denka1be4762008-05-20 16:00:29 +02001800#define ATAPI_DRIVE_NOT_READY 100
wdenkc6097192002-11-03 00:24:07 +00001801#define ATAPI_UNIT_ATTN 10
1802
1803unsigned char atapi_issue_autoreq (int device,
1804 unsigned char* ccb,
1805 int ccblen,
1806 unsigned char *buffer,
1807 int buflen)
1808{
1809 unsigned char sense_data[18],sense_ccb[12];
1810 unsigned char res,key,asc,ascq;
1811 int notready,unitattn;
1812
1813 unitattn=ATAPI_UNIT_ATTN;
1814 notready=ATAPI_DRIVE_NOT_READY;
1815
1816retry:
1817 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1818 if (res==0)
1819 return (0); /* Ok */
1820
1821 if (res==0xFF)
1822 return (0xFF); /* error */
1823
wdenkf1276d42005-02-03 23:00:49 +00001824 debug ("(auto_req)atapi_issue returned sense key %X\n",res);
wdenkc6097192002-11-03 00:24:07 +00001825
1826 memset(sense_ccb,0,sizeof(sense_ccb));
1827 memset(sense_data,0,sizeof(sense_data));
1828 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
wdenk452cfd62002-11-19 11:04:11 +00001829 sense_ccb[4]=18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001830
1831 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1832 key=(sense_data[2]&0xF);
1833 asc=(sense_data[12]);
1834 ascq=(sense_data[13]);
1835
wdenkf1276d42005-02-03 23:00:49 +00001836 debug ("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1837 debug (" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
wdenkc6097192002-11-03 00:24:07 +00001838 sense_data[0],
1839 key,
1840 asc,
1841 ascq);
1842
1843 if((key==0))
1844 return 0; /* ok device ready */
1845
1846 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1847 if(unitattn-->0) {
1848 udelay(200*1000);
1849 goto retry;
1850 }
1851 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1852 goto error;
1853 }
1854 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1855 if (notready-->0) {
1856 udelay(200*1000);
1857 goto retry;
1858 }
1859 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1860 goto error;
1861 }
1862 if(asc==0x3a) {
wdenkf1276d42005-02-03 23:00:49 +00001863 debug ("Media not present\n");
wdenkc6097192002-11-03 00:24:07 +00001864 goto error;
1865 }
wdenk452cfd62002-11-19 11:04:11 +00001866
wdenkc6097192002-11-03 00:24:07 +00001867 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1868error:
wdenkf1276d42005-02-03 23:00:49 +00001869 debug ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
wdenkc6097192002-11-03 00:24:07 +00001870 return (0xFF);
1871}
1872
1873
wdenkc6097192002-11-03 00:24:07 +00001874static void atapi_inquiry(block_dev_desc_t * dev_desc)
1875{
1876 unsigned char ccb[12]; /* Command descriptor block */
1877 unsigned char iobuf[64]; /* temp buf */
1878 unsigned char c;
1879 int device;
1880
1881 device=dev_desc->dev;
1882 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1883 dev_desc->block_read=atapi_read;
1884
1885 memset(ccb,0,sizeof(ccb));
1886 memset(iobuf,0,sizeof(iobuf));
1887
1888 ccb[0]=ATAPI_CMD_INQUIRY;
1889 ccb[4]=40; /* allocation Legnth */
1890 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1891
wdenkf1276d42005-02-03 23:00:49 +00001892 debug ("ATAPI_CMD_INQUIRY returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001893 if (c!=0)
1894 return;
1895
1896 /* copy device ident strings */
Jean-Christophe PLAGNIOL-VILLARD1fa3e362007-11-07 08:19:19 +01001897 ident_cpy((unsigned char*)dev_desc->vendor,&iobuf[8],8);
1898 ident_cpy((unsigned char*)dev_desc->product,&iobuf[16],16);
1899 ident_cpy((unsigned char*)dev_desc->revision,&iobuf[32],5);
wdenkc6097192002-11-03 00:24:07 +00001900
1901 dev_desc->lun=0;
1902 dev_desc->lba=0;
1903 dev_desc->blksz=0;
1904 dev_desc->type=iobuf[0] & 0x1f;
1905
1906 if ((iobuf[1]&0x80)==0x80)
1907 dev_desc->removable = 1;
1908 else
1909 dev_desc->removable = 0;
1910
1911 memset(ccb,0,sizeof(ccb));
1912 memset(iobuf,0,sizeof(iobuf));
1913 ccb[0]=ATAPI_CMD_START_STOP;
1914 ccb[4]=0x03; /* start */
1915
1916 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1917
wdenkf1276d42005-02-03 23:00:49 +00001918 debug ("ATAPI_CMD_START_STOP returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001919 if (c!=0)
1920 return;
1921
1922 memset(ccb,0,sizeof(ccb));
1923 memset(iobuf,0,sizeof(iobuf));
1924 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1925
wdenkf1276d42005-02-03 23:00:49 +00001926 debug ("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001927 if (c!=0)
1928 return;
1929
1930 memset(ccb,0,sizeof(ccb));
1931 memset(iobuf,0,sizeof(iobuf));
1932 ccb[0]=ATAPI_CMD_READ_CAP;
1933 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
wdenkf1276d42005-02-03 23:00:49 +00001934 debug ("ATAPI_CMD_READ_CAP returned %x\n",c);
wdenkc6097192002-11-03 00:24:07 +00001935 if (c!=0)
1936 return;
1937
wdenkf1276d42005-02-03 23:00:49 +00001938 debug ("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
wdenkc6097192002-11-03 00:24:07 +00001939 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1940 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1941
1942 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1943 ((unsigned long)iobuf[1]<<16) +
1944 ((unsigned long)iobuf[2]<< 8) +
1945 ((unsigned long)iobuf[3]);
1946 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1947 ((unsigned long)iobuf[5]<<16) +
1948 ((unsigned long)iobuf[6]<< 8) +
1949 ((unsigned long)iobuf[7]);
wdenkc35ba4e2004-03-14 22:25:36 +00001950#ifdef CONFIG_LBA48
wdenkf602aa02004-03-13 23:29:43 +00001951 dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
wdenkc35ba4e2004-03-14 22:25:36 +00001952#endif
wdenkc6097192002-11-03 00:24:07 +00001953 return;
1954}
1955
1956
1957/*
1958 * atapi_read:
1959 * we transfer only one block per command, since the multiple DRQ per
1960 * command is not yet implemented
1961 */
1962#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1963#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
1964#define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1965
Grant Likely2089cab2007-02-20 09:05:45 +01001966ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001967{
1968 ulong n = 0;
1969 unsigned char ccb[12]; /* Command descriptor block */
1970 ulong cnt;
1971
wdenkf1276d42005-02-03 23:00:49 +00001972 debug ("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
wdenkc6097192002-11-03 00:24:07 +00001973 device, blknr, blkcnt, (ulong)buffer);
1974
1975 do {
1976 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1977 cnt=ATAPI_READ_MAX_BLOCK;
1978 } else {
1979 cnt=blkcnt;
1980 }
1981 ccb[0]=ATAPI_CMD_READ_12;
1982 ccb[1]=0; /* reserved */
1983 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
1984 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
1985 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
1986 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
1987 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
1988 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
1989 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
1990 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
1991 ccb[10]=0; /* reserved */
1992 ccb[11]=0; /* reserved */
1993
1994 if (atapi_issue_autoreq(device,ccb,12,
1995 (unsigned char *)buffer,
1996 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
1997 return (n);
1998 }
1999 n+=cnt;
2000 blkcnt-=cnt;
2001 blknr+=cnt;
Greg Lopp50abf9f2007-04-13 08:02:24 +02002002 buffer+=(cnt*ATAPI_READ_BLOCK_SIZE);
wdenkc6097192002-11-03 00:24:07 +00002003 } while (blkcnt > 0);
2004 return (n);
2005}
2006
2007/* ------------------------------------------------------------------------- */
2008
2009#endif /* CONFIG_ATAPI */
2010
wdenkf287a242003-07-01 21:06:45 +00002011U_BOOT_CMD(
2012 ide, 5, 1, do_ide,
Peter Tyserdfb72b82009-01-27 18:03:12 -06002013 "IDE sub-system",
wdenk57b2d802003-06-27 21:31:46 +00002014 "reset - reset IDE controller\n"
2015 "ide info - show available IDE devices\n"
2016 "ide device [dev] - show or set current device\n"
2017 "ide part [dev] - print partition table of one or all IDE devices\n"
2018 "ide read addr blk# cnt\n"
2019 "ide write addr blk# cnt - read/write `cnt'"
2020 " blocks starting at block `blk#'\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02002021 " to/from memory address `addr'"
wdenk57b2d802003-06-27 21:31:46 +00002022);
2023
wdenkf287a242003-07-01 21:06:45 +00002024U_BOOT_CMD(
2025 diskboot, 3, 1, do_diskboot,
Peter Tyserdfb72b82009-01-27 18:03:12 -06002026 "boot from IDE device",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02002027 "loadAddr dev:part"
wdenk57b2d802003-06-27 21:31:46 +00002028);