blob: 6e1e5680a2cb94154c34082f263e2fe7f3a58b47 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk34c202c2011-10-29 09:41:40 +00002 * (C) Copyright 2000-2011
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25/*
26 * IDE support
27 */
Albert Aribaud113bfe42010-08-08 05:17:06 +053028
wdenkc6097192002-11-03 00:24:07 +000029#include <common.h>
30#include <config.h>
31#include <watchdog.h>
32#include <command.h>
33#include <image.h>
34#include <asm/byteorder.h>
Heiko Schocherf98984c2007-08-28 17:39:14 +020035#include <asm/io.h>
Grant Likely735dd972007-02-20 09:04:34 +010036
wdenkc6097192002-11-03 00:24:07 +000037#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
38# include <pcmcia.h>
39#endif
Grant Likely735dd972007-02-20 09:04:34 +010040
wdenkc6097192002-11-03 00:24:07 +000041#ifdef CONFIG_8xx
42# include <mpc8xx.h>
43#endif
Grant Likely735dd972007-02-20 09:04:34 +010044
wdenk132ba5f2004-02-27 08:20:54 +000045#ifdef CONFIG_MPC5xxx
46#include <mpc5xxx.h>
47#endif
Grant Likely735dd972007-02-20 09:04:34 +010048
wdenkc6097192002-11-03 00:24:07 +000049#include <ide.h>
50#include <ata.h>
Grant Likely735dd972007-02-20 09:04:34 +010051
wdenkc6097192002-11-03 00:24:07 +000052#ifdef CONFIG_STATUS_LED
53# include <status_led.h>
54#endif
Grant Likely735dd972007-02-20 09:04:34 +010055
Wolfgang Denkd87080b2006-03-31 18:32:53 +020056#ifdef CONFIG_IDE_8xx_DIRECT
57DECLARE_GLOBAL_DATA_PTR;
58#endif
59
wdenk5cf91d62004-04-23 20:32:05 +000060#ifdef __PPC__
61# define EIEIO __asm__ volatile ("eieio")
wdenk1a344f22005-02-03 23:00:49 +000062# define SYNC __asm__ volatile ("sync")
wdenk5cf91d62004-04-23 20:32:05 +000063#else
64# define EIEIO /* nothing */
wdenk1a344f22005-02-03 23:00:49 +000065# define SYNC /* nothing */
wdenkc6097192002-11-03 00:24:07 +000066#endif
67
wdenk15647dc2003-10-09 19:00:25 +000068#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +000069/* Timings for IDE Interface
70 *
71 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
72 * 70 165 30 PIO-Mode 0, [ns]
73 * 4 9 2 [Cycles]
74 * 50 125 20 PIO-Mode 1, [ns]
75 * 3 7 2 [Cycles]
76 * 30 100 15 PIO-Mode 2, [ns]
77 * 2 6 1 [Cycles]
78 * 30 80 10 PIO-Mode 3, [ns]
79 * 2 5 1 [Cycles]
80 * 25 70 10 PIO-Mode 4, [ns]
81 * 2 4 1 [Cycles]
82 */
83
84const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
85{
86 /* Setup Length Hold */
87 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
88 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
89 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
90 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
91 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
92};
93
94static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
95
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096#ifndef CONFIG_SYS_PIO_MODE
97#define CONFIG_SYS_PIO_MODE 0 /* use a relaxed default */
wdenkc6097192002-11-03 00:24:07 +000098#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099static int pio_mode = CONFIG_SYS_PIO_MODE;
wdenkc6097192002-11-03 00:24:07 +0000100
101/* Make clock cycles and always round up */
102
103#define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
104
wdenk15647dc2003-10-09 19:00:25 +0000105#endif /* CONFIG_IDE_8xx_DIRECT */
106
wdenkc6097192002-11-03 00:24:07 +0000107/* ------------------------------------------------------------------------- */
108
109/* Current I/O Device */
110static int curr_device = -1;
111
112/* Current offset for IDE0 / IDE1 bus access */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
114#if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
115 CONFIG_SYS_ATA_IDE0_OFFSET,
wdenkc6097192002-11-03 00:24:07 +0000116#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200117#if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
118 CONFIG_SYS_ATA_IDE1_OFFSET,
wdenkc6097192002-11-03 00:24:07 +0000119#endif
120};
121
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
wdenkc6097192002-11-03 00:24:07 +0000123
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-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 Denk953b7e62010-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
wdenk1f53a412002-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);
Wolfgang Denk96d04c32011-04-30 23:29:55 +0200156static void output_data(int dev, const ulong *sect_buf, int words);
wdenkc6097192002-11-03 00:24:07 +0000157static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
158
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200159#ifndef CONFIG_SYS_ATA_PORT_ADDR
160#define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
Heiko Schocher566a4942007-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 Likelyeb867a72007-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
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000175int do_ide(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000176{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000177 int rcode = 0;
wdenkc6097192002-11-03 00:24:07 +0000178
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000179 switch (argc) {
180 case 0:
181 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000182 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000183 case 2:
184 if (strncmp(argv[1], "res", 3) == 0) {
185 puts("\nReset IDE"
186#ifdef CONFIG_IDE_8xx_DIRECT
187 " on PCMCIA " PCMCIA_SLOT_MSG
188#endif
189 ": ");
wdenkc6097192002-11-03 00:24:07 +0000190
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000191 ide_init();
192 return 0;
193 } else if (strncmp(argv[1], "inf", 3) == 0) {
194 int i;
195
196 putc('\n');
197
198 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
199 if (ide_dev_desc[i].type == DEV_TYPE_UNKNOWN)
200 continue; /* list only known devices */
201 printf("IDE device %d: ", i);
202 dev_print(&ide_dev_desc[i]);
203 }
204 return 0;
205
206 } else if (strncmp(argv[1], "dev", 3) == 0) {
207 if ((curr_device < 0)
208 || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
209 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
218 for (ok = 0, dev = 0;
219 dev < CONFIG_SYS_IDE_MAXDEVICE;
220 ++dev) {
221 if (ide_dev_desc[dev].part_type !=
222 PART_TYPE_UNKNOWN) {
223 ++ok;
224 if (dev)
225 putc('\n');
226 print_part(&ide_dev_desc[dev]);
227 }
228 }
229 if (!ok) {
230 puts("\nno IDE devices available\n");
231 rcode++;
232 }
233 return rcode;
234 }
Simon Glass4c12eeb2011-12-10 08:44:01 +0000235 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000236 case 3:
237 if (strncmp(argv[1], "dev", 3) == 0) {
238 int dev = (int) simple_strtoul(argv[2], NULL, 10);
239
240 printf("\nIDE device %d: ", dev);
241 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
242 puts("unknown device\n");
243 return 1;
244 }
245 dev_print(&ide_dev_desc[dev]);
246 /*ide_print (dev); */
247
248 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
249 return 1;
250
251 curr_device = dev;
252
253 puts("... is now current device\n");
254
255 return 0;
256 } else if (strncmp(argv[1], "part", 4) == 0) {
257 int dev = (int) simple_strtoul(argv[2], NULL, 10);
258
259 if (ide_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
260 print_part(&ide_dev_desc[dev]);
261 } else {
262 printf("\nIDE device %d not available\n",
263 dev);
264 rcode = 1;
265 }
266 return rcode;
267 }
268
Simon Glass4c12eeb2011-12-10 08:44:01 +0000269 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000270 default:
271 /* at least 4 args */
272
273 if (strcmp(argv[1], "read") == 0) {
274 ulong addr = simple_strtoul(argv[2], NULL, 16);
275 ulong cnt = simple_strtoul(argv[4], NULL, 16);
276 ulong n;
277
278#ifdef CONFIG_SYS_64BIT_LBA
279 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
280
281 printf("\nIDE read: device %d block # %lld, count %ld ... ",
282 curr_device, blk, cnt);
283#else
284 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
285
286 printf("\nIDE read: device %d block # %ld, count %ld ... ",
287 curr_device, blk, cnt);
288#endif
289
290 n = ide_dev_desc[curr_device].block_read(curr_device,
291 blk, cnt,
292 (ulong *)addr);
293 /* flush cache after read */
294 flush_cache(addr,
295 cnt * ide_dev_desc[curr_device].blksz);
296
297 printf("%ld blocks read: %s\n",
298 n, (n == cnt) ? "OK" : "ERROR");
299 if (n == cnt)
300 return 0;
301 else
302 return 1;
303 } else if (strcmp(argv[1], "write") == 0) {
304 ulong addr = simple_strtoul(argv[2], NULL, 16);
305 ulong cnt = simple_strtoul(argv[4], NULL, 16);
306 ulong n;
307
308#ifdef CONFIG_SYS_64BIT_LBA
309 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
310
311 printf("\nIDE write: device %d block # %lld, count %ld ... ",
312 curr_device, blk, cnt);
313#else
314 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
315
316 printf("\nIDE write: device %d block # %ld, count %ld ... ",
317 curr_device, blk, cnt);
318#endif
319 n = ide_write(curr_device, blk, cnt, (ulong *) addr);
320
321 printf("%ld blocks written: %s\n",
322 n, (n == cnt) ? "OK" : "ERROR");
323 if (n == cnt)
324 return 0;
325 else
326 return 1;
327 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +0000328 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000329 }
330
331 return rcode;
332 }
wdenkc6097192002-11-03 00:24:07 +0000333}
334
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000335int do_diskboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000336{
Rob Herring7405a132012-09-21 04:02:30 +0000337 return common_diskboot(cmdtp, "ide", argc, argv);
wdenkc6097192002-11-03 00:24:07 +0000338}
339
340/* ------------------------------------------------------------------------- */
341
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000342inline void __ide_outb(int dev, int port, unsigned char val)
Stefan Roesef2302d42008-08-06 14:05:38 +0200343{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000344 debug("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
345 dev, port, val,
346 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000347
348#if defined(CONFIG_IDE_AHB)
349 if (port) {
350 /* write command */
351 ide_write_register(dev, port, val);
352 } else {
353 /* write data */
354 outb(val, (ATA_CURR_BASE(dev)));
355 }
356#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000357 outb(val, (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000358#endif
Stefan Roesef2302d42008-08-06 14:05:38 +0200359}
Macpaul Lin0abddf82011-04-11 20:45:32 +0000360
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000361void ide_outb(int dev, int port, unsigned char val)
362 __attribute__ ((weak, alias("__ide_outb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200363
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000364inline unsigned char __ide_inb(int dev, int port)
Stefan Roesef2302d42008-08-06 14:05:38 +0200365{
366 uchar val;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000367
368#if defined(CONFIG_IDE_AHB)
369 val = ide_read_register(dev, port);
370#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000371 val = inb((ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000372#endif
373
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000374 debug("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
375 dev, port,
376 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)), val);
Stefan Roesef2302d42008-08-06 14:05:38 +0200377 return val;
378}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000379
Kim Phillips2df72b82009-05-19 12:53:36 -0500380unsigned char ide_inb(int dev, int port)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000381 __attribute__ ((weak, alias("__ide_inb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200382
Steven A. Falco36c2d302008-08-15 15:34:10 -0400383#ifdef CONFIG_TUNE_PIO
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000384inline int __ide_set_piomode(int pio_mode)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400385{
386 return 0;
387}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000388
389inline int ide_set_piomode(int pio_mode)
390 __attribute__ ((weak, alias("__ide_set_piomode")));
Steven A. Falco36c2d302008-08-15 15:34:10 -0400391#endif
392
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000393void ide_init(void)
wdenkc6097192002-11-03 00:24:07 +0000394{
wdenkc6097192002-11-03 00:24:07 +0000395
396#ifdef CONFIG_IDE_8xx_DIRECT
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000397 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +0000398 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
399#endif
400 unsigned char c;
401 int i, bus;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000402
Wolfgang Denk953b7e62010-06-13 18:28:54 +0200403#if defined(CONFIG_SC3)
Wolfgang Denk9045f332007-06-08 10:24:58 +0200404 unsigned int ata_reset_time = ATA_RESET_TIME;
Wolfgang Denk51056dd2007-04-11 17:22:55 +0200405#endif
wdenk9fd5e312003-12-07 23:55:12 +0000406#ifdef CONFIG_IDE_8xx_PCCARD
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000407 extern int pcmcia_on(void);
408 extern int ide_devices_found; /* Initialized in check_ide_device() */
409#endif /* CONFIG_IDE_8xx_PCCARD */
wdenk9fd5e312003-12-07 23:55:12 +0000410
411#ifdef CONFIG_IDE_PREINIT
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000412 extern int ide_preinit(void);
413
wdenk9fd5e312003-12-07 23:55:12 +0000414 WATCHDOG_RESET();
415
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000416 if (ide_preinit()) {
417 puts("ide_preinit failed\n");
wdenk9fd5e312003-12-07 23:55:12 +0000418 return;
419 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000420#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000421
422#ifdef CONFIG_IDE_8xx_PCCARD
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000423 extern int pcmcia_on(void);
424 extern int ide_devices_found; /* Initialized in check_ide_device() */
wdenkc6097192002-11-03 00:24:07 +0000425
426 WATCHDOG_RESET();
427
wdenk6069ff22003-02-28 00:49:47 +0000428 ide_devices_found = 0;
wdenkc6097192002-11-03 00:24:07 +0000429 /* initialize the PCMCIA IDE adapter card */
wdenk6069ff22003-02-28 00:49:47 +0000430 pcmcia_on();
431 if (!ide_devices_found)
wdenkc6097192002-11-03 00:24:07 +0000432 return;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000433 udelay(1000000); /* 1 s */
434#endif /* CONFIG_IDE_8xx_PCCARD */
wdenkc6097192002-11-03 00:24:07 +0000435
436 WATCHDOG_RESET();
437
wdenk15647dc2003-10-09 19:00:25 +0000438#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +0000439 /* Initialize PIO timing tables */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000440 for (i = 0; i <= IDE_MAX_PIO_MODE; ++i) {
441 pio_config_clk[i].t_setup =
442 PCMCIA_MK_CLKS(pio_config_ns[i].t_setup, gd->bus_clk);
443 pio_config_clk[i].t_length =
444 PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
445 gd->bus_clk);
446 pio_config_clk[i].t_hold =
447 PCMCIA_MK_CLKS(pio_config_ns[i].t_hold, gd->bus_clk);
448 debug("PIO Mode %d: setup=%2d ns/%d clk" " len=%3d ns/%d clk"
449 " hold=%2d ns/%d clk\n", i, pio_config_ns[i].t_setup,
450 pio_config_clk[i].t_setup, pio_config_ns[i].t_length,
451 pio_config_clk[i].t_length, pio_config_ns[i].t_hold,
452 pio_config_clk[i].t_hold);
wdenkc6097192002-11-03 00:24:07 +0000453 }
wdenk15647dc2003-10-09 19:00:25 +0000454#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000455
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000456 /*
457 * Reset the IDE just to be sure.
wdenkc6097192002-11-03 00:24:07 +0000458 * Light LED's to show
459 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000460 ide_led((LED_IDE1 | LED_IDE2), 1); /* LED's on */
461
462 /* ATAPI Drives seems to need a proper IDE Reset */
463 ide_reset();
wdenkc6097192002-11-03 00:24:07 +0000464
465#ifdef CONFIG_IDE_8xx_DIRECT
466 /* PCMCIA / IDE initialization for common mem space */
467 pcmp->pcmc_pgcrb = 0;
wdenkc6097192002-11-03 00:24:07 +0000468
469 /* start in PIO mode 0 - most relaxed timings */
470 pio_mode = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000471 set_pcmcia_timing(pio_mode);
wdenk15647dc2003-10-09 19:00:25 +0000472#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000473
474 /*
475 * Wait for IDE to get ready.
476 * According to spec, this can take up to 31 seconds!
477 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000478 for (bus = 0; bus < CONFIG_SYS_IDE_MAXBUS; ++bus) {
479 int dev =
480 bus * (CONFIG_SYS_IDE_MAXDEVICE /
481 CONFIG_SYS_IDE_MAXBUS);
wdenkc6097192002-11-03 00:24:07 +0000482
wdenk6069ff22003-02-28 00:49:47 +0000483#ifdef CONFIG_IDE_8xx_PCCARD
484 /* Skip non-ide devices from probing */
485 if ((ide_devices_found & (1 << bus)) == 0) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000486 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenk6069ff22003-02-28 00:49:47 +0000487 continue;
488 }
489#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000490 printf("Bus %d: ", bus);
wdenkc6097192002-11-03 00:24:07 +0000491
492 ide_bus_ok[bus] = 0;
493
494 /* Select device
495 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000496 udelay(100000); /* 100 ms */
497 ide_outb(dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
498 udelay(100000); /* 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000499 i = 0;
500 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000501 udelay(10000); /* 10 ms */
wdenkc6097192002-11-03 00:24:07 +0000502
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000503 c = ide_inb(dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000504 i++;
Wolfgang Denk953b7e62010-06-13 18:28:54 +0200505#if defined(CONFIG_SC3)
wdenkc7de8292002-11-19 11:04:11 +0000506 if (i > (ata_reset_time * 100)) {
507#else
wdenkc6097192002-11-03 00:24:07 +0000508 if (i > (ATA_RESET_TIME * 100)) {
wdenkc7de8292002-11-19 11:04:11 +0000509#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000510 puts("** Timeout **\n");
511 /* LED's off */
512 ide_led((LED_IDE1 | LED_IDE2), 0);
wdenkc6097192002-11-03 00:24:07 +0000513 return;
514 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000515 if ((i >= 100) && ((i % 100) == 0))
516 putc('.');
517
wdenkc6097192002-11-03 00:24:07 +0000518 } while (c & ATA_STAT_BUSY);
519
520 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000521 puts("not available ");
522 debug("Status = 0x%02X ", c);
523#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
524 } else if ((c & ATA_STAT_READY) == 0) {
525 puts("not available ");
526 debug("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000527#endif
528 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000529 puts("OK ");
wdenkc6097192002-11-03 00:24:07 +0000530 ide_bus_ok[bus] = 1;
531 }
532 WATCHDOG_RESET();
533 }
wdenkc7de8292002-11-19 11:04:11 +0000534
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000535 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000536
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000537 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc6097192002-11-03 00:24:07 +0000538
539 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000540 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
wdenkc6097192002-11-03 00:24:07 +0000541#ifdef CONFIG_IDE_LED
542 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
543#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000544 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
545 ide_dev_desc[i].if_type = IF_TYPE_IDE;
546 ide_dev_desc[i].dev = i;
547 ide_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
548 ide_dev_desc[i].blksz = 0;
549 ide_dev_desc[i].lba = 0;
550 ide_dev_desc[i].block_read = ide_read;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000551 ide_dev_desc[i].block_write = ide_write;
wdenkc6097192002-11-03 00:24:07 +0000552 if (!ide_bus_ok[IDE_BUS(i)])
553 continue;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000554 ide_led(led, 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000555 ide_ident(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000556 ide_led(led, 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000557 dev_print(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000558
wdenkc6097192002-11-03 00:24:07 +0000559 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000560 /* initialize partition type */
561 init_part(&ide_dev_desc[i]);
wdenkc6097192002-11-03 00:24:07 +0000562 if (curr_device < 0)
563 curr_device = i;
564 }
565 }
566 WATCHDOG_RESET();
567}
568
569/* ------------------------------------------------------------------------- */
570
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000571#ifdef CONFIG_PARTITIONS
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000572block_dev_desc_t *ide_get_dev(int dev)
wdenkc6097192002-11-03 00:24:07 +0000573{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200574 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
wdenkc6097192002-11-03 00:24:07 +0000575}
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000576#endif
wdenkc6097192002-11-03 00:24:07 +0000577
578
579#ifdef CONFIG_IDE_8xx_DIRECT
580
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000581static void set_pcmcia_timing(int pmode)
wdenkc6097192002-11-03 00:24:07 +0000582{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000583 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +0000584 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
585 ulong timings;
586
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000587 debug("Set timing for PIO Mode %d\n", pmode);
wdenkc6097192002-11-03 00:24:07 +0000588
589 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
590 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000591 | PCMCIA_SL(pio_config_clk[pmode].t_length);
wdenkc6097192002-11-03 00:24:07 +0000592
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000593 /*
594 * IDE 0
wdenkc6097192002-11-03 00:24:07 +0000595 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200596 pcmp->pcmc_pbr0 = CONFIG_SYS_PCMCIA_PBR0;
597 pcmp->pcmc_por0 = CONFIG_SYS_PCMCIA_POR0
598#if (CONFIG_SYS_PCMCIA_POR0 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000599 | timings
wdenkc6097192002-11-03 00:24:07 +0000600#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000601 ;
602 debug("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
wdenkc6097192002-11-03 00:24:07 +0000603
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200604 pcmp->pcmc_pbr1 = CONFIG_SYS_PCMCIA_PBR1;
605 pcmp->pcmc_por1 = CONFIG_SYS_PCMCIA_POR1
606#if (CONFIG_SYS_PCMCIA_POR1 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000607 | timings
wdenkc6097192002-11-03 00:24:07 +0000608#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000609 ;
610 debug("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
wdenkc6097192002-11-03 00:24:07 +0000611
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200612 pcmp->pcmc_pbr2 = CONFIG_SYS_PCMCIA_PBR2;
613 pcmp->pcmc_por2 = CONFIG_SYS_PCMCIA_POR2
614#if (CONFIG_SYS_PCMCIA_POR2 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000615 | timings
wdenkc6097192002-11-03 00:24:07 +0000616#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000617 ;
618 debug("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
wdenkc6097192002-11-03 00:24:07 +0000619
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200620 pcmp->pcmc_pbr3 = CONFIG_SYS_PCMCIA_PBR3;
621 pcmp->pcmc_por3 = CONFIG_SYS_PCMCIA_POR3
622#if (CONFIG_SYS_PCMCIA_POR3 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000623 | timings
wdenkc6097192002-11-03 00:24:07 +0000624#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000625 ;
626 debug("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
wdenkc6097192002-11-03 00:24:07 +0000627
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000628 /*
629 * IDE 1
wdenkc6097192002-11-03 00:24:07 +0000630 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200631 pcmp->pcmc_pbr4 = CONFIG_SYS_PCMCIA_PBR4;
632 pcmp->pcmc_por4 = CONFIG_SYS_PCMCIA_POR4
633#if (CONFIG_SYS_PCMCIA_POR4 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000634 | timings
wdenkc6097192002-11-03 00:24:07 +0000635#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000636 ;
637 debug("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
wdenkc6097192002-11-03 00:24:07 +0000638
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200639 pcmp->pcmc_pbr5 = CONFIG_SYS_PCMCIA_PBR5;
640 pcmp->pcmc_por5 = CONFIG_SYS_PCMCIA_POR5
641#if (CONFIG_SYS_PCMCIA_POR5 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000642 | timings
wdenkc6097192002-11-03 00:24:07 +0000643#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000644 ;
645 debug("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
wdenkc6097192002-11-03 00:24:07 +0000646
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200647 pcmp->pcmc_pbr6 = CONFIG_SYS_PCMCIA_PBR6;
648 pcmp->pcmc_por6 = CONFIG_SYS_PCMCIA_POR6
649#if (CONFIG_SYS_PCMCIA_POR6 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000650 | timings
wdenkc6097192002-11-03 00:24:07 +0000651#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000652 ;
653 debug("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
wdenkc6097192002-11-03 00:24:07 +0000654
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200655 pcmp->pcmc_pbr7 = CONFIG_SYS_PCMCIA_PBR7;
656 pcmp->pcmc_por7 = CONFIG_SYS_PCMCIA_POR7
657#if (CONFIG_SYS_PCMCIA_POR7 != 0)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000658 | timings
wdenkc6097192002-11-03 00:24:07 +0000659#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000660 ;
661 debug("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
wdenkc6097192002-11-03 00:24:07 +0000662
663}
664
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000665#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000666
667/* ------------------------------------------------------------------------- */
668
wdenk5da627a2003-10-09 20:09:04 +0000669/* We only need to swap data if we are running on a big endian cpu. */
670/* But Au1x00 cpu:s already swaps data in big endian mode! */
Shinya Kuribayashic6dc8a72011-02-05 19:07:00 +0900671#if defined(__LITTLE_ENDIAN) || \
672 (defined(CONFIG_SOC_AU1X00) && !defined(CONFIG_GTH2))
wdenk5da627a2003-10-09 20:09:04 +0000673#define input_swap_data(x,y,z) input_data(x,y,z)
674#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000675static void input_swap_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000676{
Wolfgang Denk77efe352010-09-19 21:28:25 +0200677#if defined(CONFIG_CPC45)
wdenka522fa02004-01-04 22:51:12 +0000678 uchar i;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000679 volatile uchar *pbuf_even =
680 (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
681 volatile uchar *pbuf_odd =
682 (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
683 ushort *dbuf = (ushort *) sect_buf;
wdenka522fa02004-01-04 22:51:12 +0000684
685 while (words--) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000686 for (i = 0; i < 2; i++) {
687 *(((uchar *) (dbuf)) + 1) = *pbuf_even;
688 *(uchar *) dbuf = *pbuf_odd;
689 dbuf += 1;
wdenka522fa02004-01-04 22:51:12 +0000690 }
691 }
wdenkf4733a02005-03-06 01:21:30 +0000692#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000693 volatile ushort *pbuf =
694 (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
695 ushort *dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000696
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000697 debug("in input swap data base for read is %lx\n",
698 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +0000699
700 while (words--) {
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200701#ifdef __MIPS__
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000702 *dbuf++ = swab16p((u16 *) pbuf);
703 *dbuf++ = swab16p((u16 *) pbuf);
Heiko Schocher566a4942007-06-22 19:11:54 +0200704#elif defined(CONFIG_PCS440EP)
705 *dbuf++ = *pbuf;
706 *dbuf++ = *pbuf;
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200707#else
wdenk1a344f22005-02-03 23:00:49 +0000708 *dbuf++ = ld_le16(pbuf);
709 *dbuf++ = ld_le16(pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200710#endif /* !MIPS */
wdenk1a344f22005-02-03 23:00:49 +0000711 }
712#endif
wdenkc6097192002-11-03 00:24:07 +0000713}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000714#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000715
wdenk2262cfe2002-11-18 00:14:45 +0000716
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530717#if defined(CONFIG_IDE_SWAP_IO)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000718static void output_data(int dev, const ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000719{
Wolfgang Denk77efe352010-09-19 21:28:25 +0200720#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000721 uchar *dbuf;
722 volatile uchar *pbuf_even;
723 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +0000724
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000725 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
726 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
727 dbuf = (uchar *) sect_buf;
wdenka522fa02004-01-04 22:51:12 +0000728 while (words--) {
wdenk5cf91d62004-04-23 20:32:05 +0000729 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000730 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000731 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000732 *pbuf_odd = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000733 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000734 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +0000735 EIEIO;
wdenka522fa02004-01-04 22:51:12 +0000736 *pbuf_odd = *dbuf++;
737 }
wdenk1a344f22005-02-03 23:00:49 +0000738#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000739 ushort *dbuf;
740 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000741
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000742 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
743 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000744 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200745#if defined(CONFIG_PCS440EP)
746 /* not tested, because CF was write protected */
747 EIEIO;
748 *pbuf = ld_le16(dbuf++);
749 EIEIO;
750 *pbuf = ld_le16(dbuf++);
751#else
wdenk1a344f22005-02-03 23:00:49 +0000752 EIEIO;
753 *pbuf = *dbuf++;
754 EIEIO;
755 *pbuf = *dbuf++;
Heiko Schocher566a4942007-06-22 19:11:54 +0200756#endif
wdenk1a344f22005-02-03 23:00:49 +0000757 }
758#endif
wdenkc6097192002-11-03 00:24:07 +0000759}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000760#else /* ! CONFIG_IDE_SWAP_IO */
761static void output_data(int dev, const ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000762{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000763#if defined(CONFIG_IDE_AHB)
764 ide_write_data(dev, sect_buf, words);
765#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000766 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000767#endif
wdenk2262cfe2002-11-18 00:14:45 +0000768}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000769#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000770
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530771#if defined(CONFIG_IDE_SWAP_IO)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000772static void input_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000773{
Wolfgang Denk77efe352010-09-19 21:28:25 +0200774#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000775 uchar *dbuf;
776 volatile uchar *pbuf_even;
777 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +0000778
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000779 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
780 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
781 dbuf = (uchar *) sect_buf;
wdenka522fa02004-01-04 22:51:12 +0000782 while (words--) {
wdenka522fa02004-01-04 22:51:12 +0000783 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +0000784 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000785 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000786 *dbuf++ = *pbuf_odd;
wdenk5cf91d62004-04-23 20:32:05 +0000787 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000788 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000789 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +0000790 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +0000791 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000792 *dbuf++ = *pbuf_odd;
wdenk1a344f22005-02-03 23:00:49 +0000793 EIEIO;
794 SYNC;
wdenka522fa02004-01-04 22:51:12 +0000795 }
wdenk1a344f22005-02-03 23:00:49 +0000796#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000797 ushort *dbuf;
798 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000799
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000800 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
801 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000802
803 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
804
805 while (words--) {
Heiko Schocher566a4942007-06-22 19:11:54 +0200806#if defined(CONFIG_PCS440EP)
807 EIEIO;
808 *dbuf++ = ld_le16(pbuf);
809 EIEIO;
810 *dbuf++ = ld_le16(pbuf);
811#else
wdenk1a344f22005-02-03 23:00:49 +0000812 EIEIO;
813 *dbuf++ = *pbuf;
814 EIEIO;
815 *dbuf++ = *pbuf;
Heiko Schocher566a4942007-06-22 19:11:54 +0200816#endif
wdenk1a344f22005-02-03 23:00:49 +0000817 }
818#endif
wdenkc6097192002-11-03 00:24:07 +0000819}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000820#else /* ! CONFIG_IDE_SWAP_IO */
821static void input_data(int dev, ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000822{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000823#if defined(CONFIG_IDE_AHB)
824 ide_read_data(dev, sect_buf, words);
825#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000826 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000827#endif
wdenk2262cfe2002-11-18 00:14:45 +0000828}
829
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000830#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000831
832/* -------------------------------------------------------------------------
833 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000834static void ide_ident(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +0000835{
wdenkc6097192002-11-03 00:24:07 +0000836 unsigned char c;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000837 hd_driveid_t iop;
wdenkc6097192002-11-03 00:24:07 +0000838
wdenk64f70be2004-09-28 20:34:50 +0000839#ifdef CONFIG_ATAPI
840 int retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000841#endif
842
Steven A. Falco36c2d302008-08-15 15:34:10 -0400843#ifdef CONFIG_TUNE_PIO
844 int pio_mode;
845#endif
846
wdenkc6097192002-11-03 00:24:07 +0000847#if 0
848 int mode, cycle_time;
849#endif
850 int device;
wdenkc6097192002-11-03 00:24:07 +0000851
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000852 device = dev_desc->dev;
853 printf(" Device %d: ", device);
854
855 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000856 /* Select device
857 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000858 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
859 dev_desc->if_type = IF_TYPE_IDE;
wdenkc6097192002-11-03 00:24:07 +0000860#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +0000861
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000862 retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000863
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000864 /* Warning: This will be tricky to read */
865 while (retries <= 1) {
866 /* check signature */
867 if ((ide_inb(device, ATA_SECT_CNT) == 0x01) &&
868 (ide_inb(device, ATA_SECT_NUM) == 0x01) &&
869 (ide_inb(device, ATA_CYL_LOW) == 0x14) &&
870 (ide_inb(device, ATA_CYL_HIGH) == 0xEB)) {
871 /* ATAPI Signature found */
872 dev_desc->if_type = IF_TYPE_ATAPI;
873 /*
874 * Start Ident Command
875 */
876 ide_outb(device, ATA_COMMAND, ATAPI_CMD_IDENT);
877 /*
878 * Wait for completion - ATAPI devices need more time
879 * to become ready
880 */
881 c = ide_wait(device, ATAPI_TIME_OUT);
882 } else
wdenkc6097192002-11-03 00:24:07 +0000883#endif
wdenk1a344f22005-02-03 23:00:49 +0000884 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000885 /*
886 * Start Ident Command
887 */
888 ide_outb(device, ATA_COMMAND, ATA_CMD_IDENT);
889
890 /*
891 * Wait for completion
892 */
893 c = ide_wait(device, IDE_TIME_OUT);
wdenk1a344f22005-02-03 23:00:49 +0000894 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000895 ide_led(DEVICE_LED(device), 0); /* LED off */
896
897 if (((c & ATA_STAT_DRQ) == 0) ||
898 ((c & (ATA_STAT_FAULT | ATA_STAT_ERR)) != 0)) {
wdenk64f70be2004-09-28 20:34:50 +0000899#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000900 {
901 /*
902 * Need to soft reset the device
903 * in case it's an ATAPI...
904 */
905 debug("Retrying...\n");
906 ide_outb(device, ATA_DEV_HD,
907 ATA_LBA | ATA_DEVICE(device));
908 udelay(100000);
909 ide_outb(device, ATA_COMMAND, 0x08);
910 udelay(500000); /* 500 ms */
911 }
912 /*
913 * Select device
914 */
915 ide_outb(device, ATA_DEV_HD,
916 ATA_LBA | ATA_DEVICE(device));
917 retries++;
918#else
919 return;
920#endif
921 }
922#ifdef CONFIG_ATAPI
923 else
924 break;
925 } /* see above - ugly to read */
wdenk64f70be2004-09-28 20:34:50 +0000926
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000927 if (retries == 2) /* Not found */
wdenk64f70be2004-09-28 20:34:50 +0000928 return;
929#endif
wdenkc7de8292002-11-19 11:04:11 +0000930
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000931 input_swap_data(device, (ulong *)&iop, ATA_SECTORWORDS);
wdenkc6097192002-11-03 00:24:07 +0000932
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000933 ident_cpy((unsigned char *) dev_desc->revision, iop.fw_rev,
934 sizeof(dev_desc->revision));
935 ident_cpy((unsigned char *) dev_desc->vendor, iop.model,
936 sizeof(dev_desc->vendor));
937 ident_cpy((unsigned char *) dev_desc->product, iop.serial_no,
938 sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +0000939#ifdef __LITTLE_ENDIAN
940 /*
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500941 * firmware revision, model, and serial number have Big Endian Byte
942 * order in Word. Convert all three to little endian.
wdenkc3f9d492004-03-14 00:59:59 +0000943 *
944 * See CF+ and CompactFlash Specification Revision 2.0:
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500945 * 6.2.1.6: Identify Drive, Table 39 for more details
wdenkc3f9d492004-03-14 00:59:59 +0000946 */
947
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000948 strswab(dev_desc->revision);
949 strswab(dev_desc->vendor);
950 strswab(dev_desc->product);
wdenkc3f9d492004-03-14 00:59:59 +0000951#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +0000952
Marek Vasutb18eabf2011-08-20 09:15:13 +0000953 if ((iop.config & 0x0080) == 0x0080)
wdenkc6097192002-11-03 00:24:07 +0000954 dev_desc->removable = 1;
955 else
956 dev_desc->removable = 0;
957
Steven A. Falco36c2d302008-08-15 15:34:10 -0400958#ifdef CONFIG_TUNE_PIO
959 /* Mode 0 - 2 only, are directly determined by word 51. */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000960 pio_mode = iop.tPIO;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400961 if (pio_mode > 2) {
962 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000963 /* Force it to dead slow, and hope for the best... */
964 pio_mode = 0;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400965 }
966
967 /* Any CompactFlash Storage Card that supports PIO mode 3 or above
968 * shall set bit 1 of word 53 to one and support the fields contained
969 * in words 64 through 70.
970 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000971 if (iop.field_valid & 0x02) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000972 /*
973 * Mode 3 and above are possible. Check in order from slow
Steven A. Falco36c2d302008-08-15 15:34:10 -0400974 * to fast, so we wind up with the highest mode allowed.
975 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000976 if (iop.eide_pio_modes & 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400977 pio_mode = 3;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000978 if (iop.eide_pio_modes & 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400979 pio_mode = 4;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000980 if (ata_id_is_cfa((u16 *)&iop)) {
981 if ((iop.cf_advanced_caps & 0x07) == 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400982 pio_mode = 5;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000983 if ((iop.cf_advanced_caps & 0x07) == 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400984 pio_mode = 6;
985 }
986 }
987
988 /* System-specific, depends on bus speeds, etc. */
989 ide_set_piomode(pio_mode);
990#endif /* CONFIG_TUNE_PIO */
991
wdenkc6097192002-11-03 00:24:07 +0000992#if 0
993 /*
994 * Drive PIO mode autoselection
995 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000996 mode = iop.tPIO;
wdenkc6097192002-11-03 00:24:07 +0000997
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000998 printf("tPIO = 0x%02x = %d\n", mode, mode);
wdenkc6097192002-11-03 00:24:07 +0000999 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1000 mode = 2;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001001 debug("Override tPIO -> 2\n");
wdenkc6097192002-11-03 00:24:07 +00001002 }
Marek Vasutb18eabf2011-08-20 09:15:13 +00001003 if (iop.field_valid & 2) { /* drive implements ATA2? */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001004 debug("Drive implements ATA2\n");
Marek Vasutb18eabf2011-08-20 09:15:13 +00001005 if (iop.capability & 8) { /* drive supports use_iordy? */
1006 cycle_time = iop.eide_pio_iordy;
wdenkc6097192002-11-03 00:24:07 +00001007 } else {
Marek Vasutb18eabf2011-08-20 09:15:13 +00001008 cycle_time = iop.eide_pio;
wdenkc6097192002-11-03 00:24:07 +00001009 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001010 debug("cycle time = %d\n", cycle_time);
wdenkc6097192002-11-03 00:24:07 +00001011 mode = 4;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001012 if (cycle_time > 120)
1013 mode = 3; /* 120 ns for PIO mode 4 */
1014 if (cycle_time > 180)
1015 mode = 2; /* 180 ns for PIO mode 3 */
1016 if (cycle_time > 240)
1017 mode = 1; /* 240 ns for PIO mode 4 */
1018 if (cycle_time > 383)
1019 mode = 0; /* 383 ns for PIO mode 4 */
wdenkc6097192002-11-03 00:24:07 +00001020 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001021 printf("PIO mode to use: PIO %d\n", mode);
wdenkc6097192002-11-03 00:24:07 +00001022#endif /* 0 */
1023
1024#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001025 if (dev_desc->if_type == IF_TYPE_ATAPI) {
wdenkc6097192002-11-03 00:24:07 +00001026 atapi_inquiry(dev_desc);
1027 return;
1028 }
1029#endif /* CONFIG_ATAPI */
1030
wdenkc3f9d492004-03-14 00:59:59 +00001031#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +00001032 /* swap shorts */
Marek Vasutb18eabf2011-08-20 09:15:13 +00001033 dev_desc->lba = (iop.lba_capacity << 16) | (iop.lba_capacity >> 16);
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001034#else /* ! __BIG_ENDIAN */
wdenkc3f9d492004-03-14 00:59:59 +00001035 /*
1036 * do not swap shorts on little endian
1037 *
1038 * See CF+ and CompactFlash Specification Revision 2.0:
1039 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1040 */
Marek Vasutb18eabf2011-08-20 09:15:13 +00001041 dev_desc->lba = iop.lba_capacity;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001042#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +00001043
wdenk42dfe7a2004-03-14 22:25:36 +00001044#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001045 if (iop.command_set_2 & 0x0400) { /* LBA 48 support */
wdenk6e592382004-04-18 17:39:38 +00001046 dev_desc->lba48 = 1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001047 dev_desc->lba = (unsigned long long) iop.lba48_capacity[0] |
1048 ((unsigned long long) iop.lba48_capacity[1] << 16) |
1049 ((unsigned long long) iop.lba48_capacity[2] << 32) |
1050 ((unsigned long long) iop.lba48_capacity[3] << 48);
wdenkc40b2952004-03-13 23:29:43 +00001051 } else {
wdenkc40b2952004-03-13 23:29:43 +00001052 dev_desc->lba48 = 0;
1053 }
1054#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +00001055 /* assuming HD */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001056 dev_desc->type = DEV_TYPE_HARDDISK;
1057 dev_desc->blksz = ATA_BLOCKSIZE;
1058 dev_desc->lun = 0; /* just to fill something in... */
wdenkc6097192002-11-03 00:24:07 +00001059
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001060#if 0 /* only used to test the powersaving mode,
1061 * if enabled, the drive goes after 5 sec
1062 * in standby mode */
1063 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1064 c = ide_wait(device, IDE_TIME_OUT);
1065 ide_outb(device, ATA_SECT_CNT, 1);
1066 ide_outb(device, ATA_LBA_LOW, 0);
1067 ide_outb(device, ATA_LBA_MID, 0);
1068 ide_outb(device, ATA_LBA_HIGH, 0);
1069 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1070 ide_outb(device, ATA_COMMAND, 0xe3);
1071 udelay(50);
1072 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +00001073#endif
1074}
1075
1076
1077/* ------------------------------------------------------------------------- */
1078
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001079ulong ide_read(int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001080{
1081 ulong n = 0;
1082 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001083 unsigned char pwrsave = 0; /* power save */
1084
wdenk42dfe7a2004-03-14 22:25:36 +00001085#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001086 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +00001087
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001088 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +00001089 /* more than 28 bits used, use 48bit mode */
1090 lba48 = 1;
1091 }
1092#endif
Marek Vasut5bbe10d2011-10-25 11:39:15 +02001093 debug("ide_read dev %d start %lX, blocks %lX buffer at %lX\n",
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001094 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +00001095
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001096 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001097
1098 /* Select device
1099 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001100 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1101 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001102
1103 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001104 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +00001105 goto IDE_READ_E;
1106 }
1107
1108 /* first check if the drive is in Powersaving mode, if yes,
1109 * increase the timeout value */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001110 ide_outb(device, ATA_COMMAND, ATA_CMD_CHK_PWR);
1111 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001112
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001113 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +00001114
1115 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001116 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +00001117 goto IDE_READ_E;
1118 }
1119 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001120 printf("No Powersaving mode %X\n", c);
wdenkc6097192002-11-03 00:24:07 +00001121 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001122 c = ide_inb(device, ATA_SECT_CNT);
1123 debug("Powersaving %02X\n", c);
1124 if (c == 0)
1125 pwrsave = 1;
wdenkc6097192002-11-03 00:24:07 +00001126 }
1127
1128
1129 while (blkcnt-- > 0) {
1130
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001131 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001132
1133 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001134 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +00001135 break;
1136 }
wdenk42dfe7a2004-03-14 22:25:36 +00001137#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001138 if (lba48) {
1139 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001140 ide_outb(device, ATA_SECT_CNT, 0);
1141 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001142#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001143 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1144 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001145#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001146 ide_outb(device, ATA_LBA_MID, 0);
1147 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001148#endif
wdenkc40b2952004-03-13 23:29:43 +00001149 }
1150#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001151 ide_outb(device, ATA_SECT_CNT, 1);
1152 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1153 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1154 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001155
wdenk42dfe7a2004-03-14 22:25:36 +00001156#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001157 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001158 ide_outb(device, ATA_DEV_HD,
1159 ATA_LBA | ATA_DEVICE(device));
1160 ide_outb(device, ATA_COMMAND, ATA_CMD_READ_EXT);
wdenkc40b2952004-03-13 23:29:43 +00001161
1162 } else
1163#endif
1164 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001165 ide_outb(device, ATA_DEV_HD, ATA_LBA |
1166 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
1167 ide_outb(device, ATA_COMMAND, ATA_CMD_READ);
wdenkc40b2952004-03-13 23:29:43 +00001168 }
wdenkc6097192002-11-03 00:24:07 +00001169
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001170 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001171
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001172 if (pwrsave) {
1173 /* may take up to 4 sec */
1174 c = ide_wait(device, IDE_SPIN_UP_TIME_OUT);
1175 pwrsave = 0;
wdenkc6097192002-11-03 00:24:07 +00001176 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001177 /* can't take over 500 ms */
1178 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001179 }
1180
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001181 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
1182 ATA_STAT_DRQ) {
Heiko Schocher4b142fe2009-12-03 11:21:21 +01001183#if defined(CONFIG_SYS_64BIT_LBA)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001184 printf("Error (no IRQ) dev %d blk %lld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001185 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001186#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001187 printf("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1188 device, (ulong) blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001189#endif
wdenkc6097192002-11-03 00:24:07 +00001190 break;
1191 }
1192
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001193 input_data(device, buffer, ATA_SECTORWORDS);
1194 (void) ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001195
1196 ++n;
1197 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001198 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001199 }
1200IDE_READ_E:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001201 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001202 return (n);
1203}
1204
1205/* ------------------------------------------------------------------------- */
1206
1207
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001208ulong ide_write(int device, lbaint_t blknr, ulong blkcnt, const void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001209{
1210 ulong n = 0;
1211 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001212
wdenk42dfe7a2004-03-14 22:25:36 +00001213#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001214 unsigned char lba48 = 0;
1215
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001216 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +00001217 /* more than 28 bits used, use 48bit mode */
1218 lba48 = 1;
1219 }
1220#endif
wdenkc6097192002-11-03 00:24:07 +00001221
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001222 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001223
1224 /* Select device
1225 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001226 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001227
1228 while (blkcnt-- > 0) {
1229
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001230 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001231
1232 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001233 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +00001234 goto WR_OUT;
1235 }
wdenk42dfe7a2004-03-14 22:25:36 +00001236#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001237 if (lba48) {
1238 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001239 ide_outb(device, ATA_SECT_CNT, 0);
1240 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001241#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001242 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1243 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001244#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001245 ide_outb(device, ATA_LBA_MID, 0);
1246 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +02001247#endif
wdenkc40b2952004-03-13 23:29:43 +00001248 }
1249#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001250 ide_outb(device, ATA_SECT_CNT, 1);
1251 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1252 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1253 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001254
wdenk42dfe7a2004-03-14 22:25:36 +00001255#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001256 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001257 ide_outb(device, ATA_DEV_HD,
1258 ATA_LBA | ATA_DEVICE(device));
1259 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
wdenkc40b2952004-03-13 23:29:43 +00001260
1261 } else
1262#endif
1263 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001264 ide_outb(device, ATA_DEV_HD, ATA_LBA |
1265 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
1266 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE);
wdenkc40b2952004-03-13 23:29:43 +00001267 }
wdenkc6097192002-11-03 00:24:07 +00001268
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001269 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001270
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001271 /* can't take over 500 ms */
1272 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001273
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001274 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
1275 ATA_STAT_DRQ) {
Heiko Schocher4b142fe2009-12-03 11:21:21 +01001276#if defined(CONFIG_SYS_64BIT_LBA)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001277 printf("Error (no IRQ) dev %d blk %lld: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001278 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001279#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001280 printf("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1281 device, (ulong) blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001282#endif
wdenkc6097192002-11-03 00:24:07 +00001283 goto WR_OUT;
1284 }
1285
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001286 output_data(device, buffer, ATA_SECTORWORDS);
1287 c = ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001288 ++n;
1289 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001290 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001291 }
1292WR_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001293 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001294 return (n);
1295}
1296
1297/* ------------------------------------------------------------------------- */
1298
1299/*
1300 * copy src to dest, skipping leading and trailing blanks and null
1301 * terminate the string
wdenk7d7ce412004-03-17 01:13:07 +00001302 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +00001303 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001304static void ident_cpy(unsigned char *dst, unsigned char *src,
1305 unsigned int len)
wdenkc6097192002-11-03 00:24:07 +00001306{
wdenk7d7ce412004-03-17 01:13:07 +00001307 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +00001308
wdenk7d7ce412004-03-17 01:13:07 +00001309 last = dst;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001310 end = src + len - 1;
wdenk7d7ce412004-03-17 01:13:07 +00001311
1312 /* reserve space for '\0' */
1313 if (len < 2)
1314 goto OUT;
wdenkefa329c2004-03-23 20:18:25 +00001315
wdenk7d7ce412004-03-17 01:13:07 +00001316 /* skip leading white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001317 while ((*src) && (src < end) && (*src == ' '))
wdenk7d7ce412004-03-17 01:13:07 +00001318 ++src;
1319
1320 /* copy string, omitting trailing white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001321 while ((*src) && (src < end)) {
wdenk7d7ce412004-03-17 01:13:07 +00001322 *dst++ = *src;
1323 if (*src++ != ' ')
1324 last = dst;
wdenkc6097192002-11-03 00:24:07 +00001325 }
wdenk7d7ce412004-03-17 01:13:07 +00001326OUT:
1327 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +00001328}
1329
1330/* ------------------------------------------------------------------------- */
1331
1332/*
1333 * Wait until Busy bit is off, or timeout (in ms)
1334 * Return last status
1335 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001336static uchar ide_wait(int dev, ulong t)
wdenkc6097192002-11-03 00:24:07 +00001337{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001338 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001339 uchar c;
1340
wdenk2262cfe2002-11-18 00:14:45 +00001341 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001342 udelay(100);
1343 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001344 break;
wdenkc6097192002-11-03 00:24:07 +00001345 }
1346 return (c);
1347}
1348
1349/* ------------------------------------------------------------------------- */
1350
1351#ifdef CONFIG_IDE_RESET
1352extern void ide_set_reset(int idereset);
1353
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001354static void ide_reset(void)
wdenkc6097192002-11-03 00:24:07 +00001355{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001356#if defined(CONFIG_SYS_PB_12V_ENABLE) || defined(CONFIG_SYS_PB_IDE_MOTOR)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001357 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
wdenkc6097192002-11-03 00:24:07 +00001358#endif
1359 int i;
1360
1361 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001362 for (i = 0; i < CONFIG_SYS_IDE_MAXBUS; ++i)
wdenkc6097192002-11-03 00:24:07 +00001363 ide_bus_ok[i] = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001364 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i)
wdenkc6097192002-11-03 00:24:07 +00001365 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1366
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001367 ide_set_reset(1); /* assert reset */
wdenkc6097192002-11-03 00:24:07 +00001368
Martin Krausee175eac2008-04-03 13:37:56 +02001369 /* the reset signal shall be asserted for et least 25 us */
1370 udelay(25);
1371
wdenkc6097192002-11-03 00:24:07 +00001372 WATCHDOG_RESET();
1373
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001374#ifdef CONFIG_SYS_PB_12V_ENABLE
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001375 /* 12V Enable output OFF */
1376 immr->im_cpm.cp_pbdat &= ~(CONFIG_SYS_PB_12V_ENABLE);
1377
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001378 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_12V_ENABLE);
1379 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_12V_ENABLE);
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001380 immr->im_cpm.cp_pbdir |= CONFIG_SYS_PB_12V_ENABLE;
wdenkc6097192002-11-03 00:24:07 +00001381
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001382 /* wait 500 ms for the voltage to stabilize */
1383 for (i = 0; i < 500; ++i)
1384 udelay(1000);
wdenkc6097192002-11-03 00:24:07 +00001385
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001386 /* 12V Enable output ON */
1387 immr->im_cpm.cp_pbdat |= CONFIG_SYS_PB_12V_ENABLE;
1388#endif /* CONFIG_SYS_PB_12V_ENABLE */
wdenkc6097192002-11-03 00:24:07 +00001389
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001390#ifdef CONFIG_SYS_PB_IDE_MOTOR
wdenkc6097192002-11-03 00:24:07 +00001391 /* configure IDE Motor voltage monitor pin as input */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001392 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1393 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1394 immr->im_cpm.cp_pbdir &= ~(CONFIG_SYS_PB_IDE_MOTOR);
wdenkc6097192002-11-03 00:24:07 +00001395
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001396 /* wait up to 1 s for the motor voltage to stabilize */
1397 for (i = 0; i < 1000; ++i) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001398 if ((immr->im_cpm.cp_pbdat & CONFIG_SYS_PB_IDE_MOTOR) != 0) {
wdenkc6097192002-11-03 00:24:07 +00001399 break;
1400 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001401 udelay(1000);
wdenkc6097192002-11-03 00:24:07 +00001402 }
1403
1404 if (i == 1000) { /* Timeout */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001405 printf("\nWarning: 5V for IDE Motor missing\n");
1406#ifdef CONFIG_STATUS_LED
1407#ifdef STATUS_LED_YELLOW
1408 status_led_set(STATUS_LED_YELLOW, STATUS_LED_ON);
1409#endif
1410#ifdef STATUS_LED_GREEN
1411 status_led_set(STATUS_LED_GREEN, STATUS_LED_OFF);
1412#endif
1413#endif /* CONFIG_STATUS_LED */
wdenkc6097192002-11-03 00:24:07 +00001414 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001415#endif /* CONFIG_SYS_PB_IDE_MOTOR */
wdenkc6097192002-11-03 00:24:07 +00001416
1417 WATCHDOG_RESET();
1418
1419 /* de-assert RESET signal */
1420 ide_set_reset(0);
1421
1422 /* wait 250 ms */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001423 for (i = 0; i < 250; ++i)
1424 udelay(1000);
wdenkc6097192002-11-03 00:24:07 +00001425}
1426
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001427#endif /* CONFIG_IDE_RESET */
wdenkc6097192002-11-03 00:24:07 +00001428
1429/* ------------------------------------------------------------------------- */
1430
wdenke2ffd592004-12-31 09:32:47 +00001431#if defined(CONFIG_IDE_LED) && \
wdenke2ffd592004-12-31 09:32:47 +00001432 !defined(CONFIG_CPC45) && \
wdenke2ffd592004-12-31 09:32:47 +00001433 !defined(CONFIG_KUP4K) && \
1434 !defined(CONFIG_KUP4X)
wdenkc6097192002-11-03 00:24:07 +00001435
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001436static uchar led_buffer; /* Buffer for current LED status */
wdenkc6097192002-11-03 00:24:07 +00001437
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001438static void ide_led(uchar led, uchar status)
wdenkc6097192002-11-03 00:24:07 +00001439{
1440 uchar *led_port = LED_PORT;
1441
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001442 if (status) /* switch LED on */
1443 led_buffer |= led;
1444 else /* switch LED off */
wdenkc6097192002-11-03 00:24:07 +00001445 led_buffer &= ~led;
wdenkc6097192002-11-03 00:24:07 +00001446
1447 *led_port = led_buffer;
1448}
1449
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001450#endif /* CONFIG_IDE_LED */
wdenkc6097192002-11-03 00:24:07 +00001451
Heiko Schocher3887c3f2009-09-23 07:56:08 +02001452#if defined(CONFIG_OF_IDE_FIXUP)
1453int ide_device_present(int dev)
1454{
1455 if (dev >= CONFIG_SYS_IDE_MAXBUS)
1456 return 0;
1457 return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1458}
1459#endif
wdenkc6097192002-11-03 00:24:07 +00001460/* ------------------------------------------------------------------------- */
1461
1462#ifdef CONFIG_ATAPI
1463/****************************************************************************
1464 * ATAPI Support
1465 */
1466
Albert Aribaudf2a37fc2010-08-08 05:17:05 +05301467#if defined(CONFIG_IDE_SWAP_IO)
wdenkc6097192002-11-03 00:24:07 +00001468/* since ATAPI may use commands with not 4 bytes alligned length
1469 * we have our own transfer functions, 2 bytes alligned */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001470static void output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenkc6097192002-11-03 00:24:07 +00001471{
Wolfgang Denk77efe352010-09-19 21:28:25 +02001472#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001473 uchar *dbuf;
1474 volatile uchar *pbuf_even;
1475 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +00001476
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001477 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
1478 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
wdenka522fa02004-01-04 22:51:12 +00001479 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001480 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001481 *pbuf_even = *dbuf++;
wdenk5cf91d62004-04-23 20:32:05 +00001482 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001483 *pbuf_odd = *dbuf++;
1484 }
wdenk1a344f22005-02-03 23:00:49 +00001485#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001486 ushort *dbuf;
1487 volatile ushort *pbuf;
wdenkc6097192002-11-03 00:24:07 +00001488
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001489 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1490 dbuf = (ushort *) sect_buf;
wdenkdb01a2e2004-04-15 23:14:49 +00001491
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001492 debug("in output data shorts base for read is %lx\n",
1493 (unsigned long) pbuf);
wdenkdb01a2e2004-04-15 23:14:49 +00001494
wdenkc6097192002-11-03 00:24:07 +00001495 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001496 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +00001497 *pbuf = *dbuf++;
wdenkc6097192002-11-03 00:24:07 +00001498 }
wdenk1a344f22005-02-03 23:00:49 +00001499#endif
1500}
1501
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001502static void input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk1a344f22005-02-03 23:00:49 +00001503{
Wolfgang Denk77efe352010-09-19 21:28:25 +02001504#if defined(CONFIG_CPC45)
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001505 uchar *dbuf;
1506 volatile uchar *pbuf_even;
1507 volatile uchar *pbuf_odd;
wdenka522fa02004-01-04 22:51:12 +00001508
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001509 pbuf_even = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_EVEN);
1510 pbuf_odd = (uchar *) (ATA_CURR_BASE(dev) + ATA_DATA_ODD);
wdenka522fa02004-01-04 22:51:12 +00001511 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001512 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001513 *dbuf++ = *pbuf_even;
wdenk5cf91d62004-04-23 20:32:05 +00001514 EIEIO;
wdenka522fa02004-01-04 22:51:12 +00001515 *dbuf++ = *pbuf_odd;
1516 }
wdenk1a344f22005-02-03 23:00:49 +00001517#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001518 ushort *dbuf;
1519 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +00001520
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001521 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1522 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +00001523
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001524 debug("in input data shorts base for read is %lx\n",
1525 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +00001526
1527 while (shorts--) {
1528 EIEIO;
1529 *dbuf++ = *pbuf;
1530 }
1531#endif
wdenkc6097192002-11-03 00:24:07 +00001532}
1533
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001534#else /* ! CONFIG_IDE_SWAP_IO */
1535static void output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001536{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001537 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001538}
1539
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001540static void input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001541{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001542 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001543}
1544
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001545#endif /* CONFIG_IDE_SWAP_IO */
wdenk2262cfe2002-11-18 00:14:45 +00001546
wdenkc6097192002-11-03 00:24:07 +00001547/*
1548 * Wait until (Status & mask) == res, or timeout (in ms)
1549 * Return last status
1550 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1551 * and then they set their DRQ Bit
1552 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001553static uchar atapi_wait_mask(int dev, ulong t, uchar mask, uchar res)
wdenkc6097192002-11-03 00:24:07 +00001554{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001555 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001556 uchar c;
1557
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001558 /* prevents to read the status before valid */
1559 c = ide_inb(dev, ATA_DEV_CTL);
1560
wdenk2262cfe2002-11-18 00:14:45 +00001561 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001562 /* break if error occurs (doesn't make sense to wait more) */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001563 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR)
wdenkc6097192002-11-03 00:24:07 +00001564 break;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001565 udelay(100);
1566 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001567 break;
wdenkc6097192002-11-03 00:24:07 +00001568 }
1569 return (c);
1570}
1571
1572/*
1573 * issue an atapi command
1574 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001575unsigned char atapi_issue(int device, unsigned char *ccb, int ccblen,
1576 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001577{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001578 unsigned char c, err, mask, res;
wdenkc6097192002-11-03 00:24:07 +00001579 int n;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001580
1581 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001582
1583 /* Select device
1584 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001585 mask = ATA_STAT_BUSY | ATA_STAT_DRQ;
wdenkc6097192002-11-03 00:24:07 +00001586 res = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001587 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1588 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001589 if ((c & mask) != res) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001590 printf("ATAPI_ISSUE: device %d not ready status %X\n", device,
1591 c);
1592 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001593 goto AI_OUT;
1594 }
1595 /* write taskfile */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001596 ide_outb(device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1597 ide_outb(device, ATA_SECT_CNT, 0);
1598 ide_outb(device, ATA_SECT_NUM, 0);
1599 ide_outb(device, ATA_CYL_LOW, (unsigned char) (buflen & 0xFF));
1600 ide_outb(device, ATA_CYL_HIGH,
1601 (unsigned char) ((buflen >> 8) & 0xFF));
1602 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001603
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001604 ide_outb(device, ATA_COMMAND, ATAPI_CMD_PACKET);
1605 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001606
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001607 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
wdenkc6097192002-11-03 00:24:07 +00001608 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001609 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001610
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001611 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1612 printf("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",
1613 device, c);
1614 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001615 goto AI_OUT;
1616 }
1617
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001618 /* write command block */
1619 output_data_shorts(device, (unsigned short *) ccb, ccblen / 2);
1620
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001621 /* ATAPI Command written wait for completition */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001622 udelay(5000); /* device must set bsy */
wdenkc6097192002-11-03 00:24:07 +00001623
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001624 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
1625 /*
1626 * if no data wait for DRQ = 0 BSY = 0
1627 * if data wait for DRQ = 1 BSY = 0
1628 */
1629 res = 0;
1630 if (buflen)
wdenkc6097192002-11-03 00:24:07 +00001631 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001632 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
1633 if ((c & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001634 if (c & ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001635 err = (ide_inb(device, ATA_ERROR_REG)) >> 4;
1636 debug("atapi_issue 1 returned sense key %X status %02X\n",
1637 err, c);
wdenkc6097192002-11-03 00:24:07 +00001638 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001639 printf("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n",
1640 ccb[0], c);
1641 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001642 }
1643 goto AI_OUT;
1644 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001645 n = ide_inb(device, ATA_CYL_HIGH);
1646 n <<= 8;
1647 n += ide_inb(device, ATA_CYL_LOW);
1648 if (n > buflen) {
1649 printf("ERROR, transfer bytes %d requested only %d\n", n,
1650 buflen);
1651 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001652 goto AI_OUT;
1653 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001654 if ((n == 0) && (buflen < 0)) {
1655 printf("ERROR, transfer bytes %d requested %d\n", n, buflen);
1656 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001657 goto AI_OUT;
1658 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001659 if (n != buflen) {
1660 debug("WARNING, transfer bytes %d not equal with requested %d\n",
1661 n, buflen);
wdenkc6097192002-11-03 00:24:07 +00001662 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001663 if (n != 0) { /* data transfer */
1664 debug("ATAPI_ISSUE: %d Bytes to transfer\n", n);
1665 /* we transfer shorts */
1666 n >>= 1;
wdenkc6097192002-11-03 00:24:07 +00001667 /* ok now decide if it is an in or output */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001668 if ((ide_inb(device, ATA_SECT_CNT) & 0x02) == 0) {
1669 debug("Write to device\n");
1670 output_data_shorts(device, (unsigned short *) buffer,
1671 n);
wdenkc6097192002-11-03 00:24:07 +00001672 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001673 debug("Read from device @ %p shorts %d\n", buffer, n);
1674 input_data_shorts(device, (unsigned short *) buffer,
1675 n);
wdenkc6097192002-11-03 00:24:07 +00001676 }
1677 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001678 udelay(5000); /* seems that some CD ROMs need this... */
1679 mask = ATA_STAT_BUSY | ATA_STAT_ERR;
1680 res = 0;
1681 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001682 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001683 err = (ide_inb(device, ATA_ERROR_REG) >> 4);
1684 debug("atapi_issue 2 returned sense key %X status %X\n", err,
1685 c);
wdenkc6097192002-11-03 00:24:07 +00001686 } else {
1687 err = 0;
1688 }
1689AI_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001690 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001691 return (err);
1692}
1693
1694/*
1695 * sending the command to atapi_issue. If an status other than good
1696 * returns, an request_sense will be issued
1697 */
1698
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001699#define ATAPI_DRIVE_NOT_READY 100
wdenkc6097192002-11-03 00:24:07 +00001700#define ATAPI_UNIT_ATTN 10
1701
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001702unsigned char atapi_issue_autoreq(int device,
1703 unsigned char *ccb,
1704 int ccblen,
1705 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001706{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001707 unsigned char sense_data[18], sense_ccb[12];
1708 unsigned char res, key, asc, ascq;
1709 int notready, unitattn;
wdenkc6097192002-11-03 00:24:07 +00001710
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001711 unitattn = ATAPI_UNIT_ATTN;
1712 notready = ATAPI_DRIVE_NOT_READY;
wdenkc6097192002-11-03 00:24:07 +00001713
1714retry:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001715 res = atapi_issue(device, ccb, ccblen, buffer, buflen);
1716 if (res == 0)
1717 return 0; /* Ok */
wdenkc6097192002-11-03 00:24:07 +00001718
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001719 if (res == 0xFF)
1720 return 0xFF; /* error */
wdenkc6097192002-11-03 00:24:07 +00001721
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001722 debug("(auto_req)atapi_issue returned sense key %X\n", res);
wdenkc6097192002-11-03 00:24:07 +00001723
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001724 memset(sense_ccb, 0, sizeof(sense_ccb));
1725 memset(sense_data, 0, sizeof(sense_data));
1726 sense_ccb[0] = ATAPI_CMD_REQ_SENSE;
1727 sense_ccb[4] = 18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001728
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001729 res = atapi_issue(device, sense_ccb, 12, sense_data, 18);
1730 key = (sense_data[2] & 0xF);
1731 asc = (sense_data[12]);
1732 ascq = (sense_data[13]);
wdenkc6097192002-11-03 00:24:07 +00001733
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001734 debug("ATAPI_CMD_REQ_SENSE returned %x\n", res);
1735 debug(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1736 sense_data[0], key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001737
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001738 if ((key == 0))
1739 return 0; /* ok device ready */
wdenkc6097192002-11-03 00:24:07 +00001740
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001741 if ((key == 6) || (asc == 0x29) || (asc == 0x28)) { /* Unit Attention */
1742 if (unitattn-- > 0) {
1743 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001744 goto retry;
1745 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001746 printf("Unit Attention, tried %d\n", ATAPI_UNIT_ATTN);
wdenkc6097192002-11-03 00:24:07 +00001747 goto error;
1748 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001749 if ((asc == 0x4) && (ascq == 0x1)) {
1750 /* not ready, but will be ready soon */
1751 if (notready-- > 0) {
1752 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001753 goto retry;
1754 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001755 printf("Drive not ready, tried %d times\n",
1756 ATAPI_DRIVE_NOT_READY);
wdenkc6097192002-11-03 00:24:07 +00001757 goto error;
1758 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001759 if (asc == 0x3a) {
1760 debug("Media not present\n");
wdenkc6097192002-11-03 00:24:07 +00001761 goto error;
1762 }
wdenkc7de8292002-11-19 11:04:11 +00001763
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001764 printf("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n", key, asc,
1765 ascq);
wdenkc6097192002-11-03 00:24:07 +00001766error:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001767 debug("ERROR Sense key %02X ASC %02X ASCQ %02X\n", key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001768 return (0xFF);
1769}
1770
1771
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001772static void atapi_inquiry(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +00001773{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001774 unsigned char ccb[12]; /* Command descriptor block */
1775 unsigned char iobuf[64]; /* temp buf */
wdenkc6097192002-11-03 00:24:07 +00001776 unsigned char c;
1777 int device;
1778
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001779 device = dev_desc->dev;
1780 dev_desc->type = DEV_TYPE_UNKNOWN; /* not yet valid */
1781 dev_desc->block_read = atapi_read;
wdenkc6097192002-11-03 00:24:07 +00001782
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001783 memset(ccb, 0, sizeof(ccb));
1784 memset(iobuf, 0, sizeof(iobuf));
wdenkc6097192002-11-03 00:24:07 +00001785
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001786 ccb[0] = ATAPI_CMD_INQUIRY;
1787 ccb[4] = 40; /* allocation Legnth */
1788 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 40);
wdenkc6097192002-11-03 00:24:07 +00001789
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001790 debug("ATAPI_CMD_INQUIRY returned %x\n", c);
1791 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001792 return;
1793
1794 /* copy device ident strings */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001795 ident_cpy((unsigned char *) dev_desc->vendor, &iobuf[8], 8);
1796 ident_cpy((unsigned char *) dev_desc->product, &iobuf[16], 16);
1797 ident_cpy((unsigned char *) dev_desc->revision, &iobuf[32], 5);
wdenkc6097192002-11-03 00:24:07 +00001798
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001799 dev_desc->lun = 0;
1800 dev_desc->lba = 0;
1801 dev_desc->blksz = 0;
1802 dev_desc->type = iobuf[0] & 0x1f;
wdenkc6097192002-11-03 00:24:07 +00001803
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001804 if ((iobuf[1] & 0x80) == 0x80)
wdenkc6097192002-11-03 00:24:07 +00001805 dev_desc->removable = 1;
1806 else
1807 dev_desc->removable = 0;
1808
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001809 memset(ccb, 0, sizeof(ccb));
1810 memset(iobuf, 0, sizeof(iobuf));
1811 ccb[0] = ATAPI_CMD_START_STOP;
1812 ccb[4] = 0x03; /* start */
wdenkc6097192002-11-03 00:24:07 +00001813
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001814 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001815
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001816 debug("ATAPI_CMD_START_STOP returned %x\n", c);
1817 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001818 return;
1819
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001820 memset(ccb, 0, sizeof(ccb));
1821 memset(iobuf, 0, sizeof(iobuf));
1822 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001823
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001824 debug("ATAPI_CMD_UNIT_TEST_READY returned %x\n", c);
1825 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001826 return;
1827
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001828 memset(ccb, 0, sizeof(ccb));
1829 memset(iobuf, 0, sizeof(iobuf));
1830 ccb[0] = ATAPI_CMD_READ_CAP;
1831 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 8);
1832 debug("ATAPI_CMD_READ_CAP returned %x\n", c);
1833 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001834 return;
1835
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001836 debug("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1837 iobuf[0], iobuf[1], iobuf[2], iobuf[3],
1838 iobuf[4], iobuf[5], iobuf[6], iobuf[7]);
wdenkc6097192002-11-03 00:24:07 +00001839
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001840 dev_desc->lba = ((unsigned long) iobuf[0] << 24) +
1841 ((unsigned long) iobuf[1] << 16) +
1842 ((unsigned long) iobuf[2] << 8) + ((unsigned long) iobuf[3]);
1843 dev_desc->blksz = ((unsigned long) iobuf[4] << 24) +
1844 ((unsigned long) iobuf[5] << 16) +
1845 ((unsigned long) iobuf[6] << 8) + ((unsigned long) iobuf[7]);
wdenk42dfe7a2004-03-14 22:25:36 +00001846#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001847 /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
1848 dev_desc->lba48 = 0;
wdenk42dfe7a2004-03-14 22:25:36 +00001849#endif
wdenkc6097192002-11-03 00:24:07 +00001850 return;
1851}
1852
1853
1854/*
1855 * atapi_read:
1856 * we transfer only one block per command, since the multiple DRQ per
1857 * command is not yet implemented
1858 */
1859#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1860#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001861#define ATAPI_READ_MAX_BLOCK (ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE)
wdenkc6097192002-11-03 00:24:07 +00001862
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001863ulong atapi_read(int device, lbaint_t blknr, ulong blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001864{
1865 ulong n = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001866 unsigned char ccb[12]; /* Command descriptor block */
wdenkc6097192002-11-03 00:24:07 +00001867 ulong cnt;
1868
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001869 debug("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1870 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +00001871
1872 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001873 if (blkcnt > ATAPI_READ_MAX_BLOCK)
1874 cnt = ATAPI_READ_MAX_BLOCK;
1875 else
1876 cnt = blkcnt;
wdenkc6097192002-11-03 00:24:07 +00001877
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001878 ccb[0] = ATAPI_CMD_READ_12;
1879 ccb[1] = 0; /* reserved */
1880 ccb[2] = (unsigned char) (blknr >> 24) & 0xFF; /* MSB Block */
1881 ccb[3] = (unsigned char) (blknr >> 16) & 0xFF; /* */
1882 ccb[4] = (unsigned char) (blknr >> 8) & 0xFF;
1883 ccb[5] = (unsigned char) blknr & 0xFF; /* LSB Block */
1884 ccb[6] = (unsigned char) (cnt >> 24) & 0xFF; /* MSB Block cnt */
1885 ccb[7] = (unsigned char) (cnt >> 16) & 0xFF;
1886 ccb[8] = (unsigned char) (cnt >> 8) & 0xFF;
1887 ccb[9] = (unsigned char) cnt & 0xFF; /* LSB Block */
1888 ccb[10] = 0; /* reserved */
1889 ccb[11] = 0; /* reserved */
1890
1891 if (atapi_issue_autoreq(device, ccb, 12,
1892 (unsigned char *) buffer,
1893 cnt * ATAPI_READ_BLOCK_SIZE)
1894 == 0xFF) {
wdenkc6097192002-11-03 00:24:07 +00001895 return (n);
1896 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001897 n += cnt;
1898 blkcnt -= cnt;
1899 blknr += cnt;
1900 buffer += (cnt * ATAPI_READ_BLOCK_SIZE);
wdenkc6097192002-11-03 00:24:07 +00001901 } while (blkcnt > 0);
1902 return (n);
1903}
1904
1905/* ------------------------------------------------------------------------- */
1906
1907#endif /* CONFIG_ATAPI */
1908
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001909U_BOOT_CMD(ide, 5, 1, do_ide,
1910 "IDE sub-system",
1911 "reset - reset IDE controller\n"
1912 "ide info - show available IDE devices\n"
1913 "ide device [dev] - show or set current device\n"
1914 "ide part [dev] - print partition table of one or all IDE devices\n"
1915 "ide read addr blk# cnt\n"
1916 "ide write addr blk# cnt - read/write `cnt'"
1917 " blocks starting at block `blk#'\n"
1918 " to/from memory address `addr'");
wdenk8bde7f72003-06-27 21:31:46 +00001919
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001920U_BOOT_CMD(diskboot, 3, 1, do_diskboot,
1921 "boot from IDE device", "loadAddr dev:part");