wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 2 | * (C) Copyright 2000-2005 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 3 | * 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 Aribaud | 113bfe4 | 2010-08-08 05:17:06 +0530 | [diff] [blame] | 28 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 29 | #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 Schocher | f98984c | 2007-08-28 17:39:14 +0200 | [diff] [blame] | 35 | #include <asm/io.h> |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 36 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 37 | #if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA) |
| 38 | # include <pcmcia.h> |
| 39 | #endif |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 40 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 41 | #ifdef CONFIG_8xx |
| 42 | # include <mpc8xx.h> |
| 43 | #endif |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 44 | |
wdenk | 132ba5f | 2004-02-27 08:20:54 +0000 | [diff] [blame] | 45 | #ifdef CONFIG_MPC5xxx |
| 46 | #include <mpc5xxx.h> |
| 47 | #endif |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 48 | |
Albert Aribaud | 113bfe4 | 2010-08-08 05:17:06 +0530 | [diff] [blame] | 49 | #ifdef CONFIG_ORION5X |
| 50 | #include <asm/arch/orion5x.h> |
Prafulla Wadaskar | 5f30500 | 2010-08-07 17:29:44 +0530 | [diff] [blame] | 51 | #elif defined CONFIG_KIRKWOOD |
| 52 | #include <asm/arch/kirkwood.h> |
Albert Aribaud | 113bfe4 | 2010-08-08 05:17:06 +0530 | [diff] [blame] | 53 | #endif |
| 54 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 55 | #include <ide.h> |
| 56 | #include <ata.h> |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 57 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 58 | #ifdef CONFIG_STATUS_LED |
| 59 | # include <status_led.h> |
| 60 | #endif |
Grant Likely | 735dd97 | 2007-02-20 09:04:34 +0100 | [diff] [blame] | 61 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 62 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 63 | DECLARE_GLOBAL_DATA_PTR; |
| 64 | #endif |
| 65 | |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 66 | #ifdef __PPC__ |
| 67 | # define EIEIO __asm__ volatile ("eieio") |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 68 | # define SYNC __asm__ volatile ("sync") |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 69 | #else |
| 70 | # define EIEIO /* nothing */ |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 71 | # define SYNC /* nothing */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 72 | #endif |
| 73 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 74 | #ifdef CONFIG_IDE_8xx_DIRECT |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 75 | /* Timings for IDE Interface |
| 76 | * |
| 77 | * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk |
| 78 | * 70 165 30 PIO-Mode 0, [ns] |
| 79 | * 4 9 2 [Cycles] |
| 80 | * 50 125 20 PIO-Mode 1, [ns] |
| 81 | * 3 7 2 [Cycles] |
| 82 | * 30 100 15 PIO-Mode 2, [ns] |
| 83 | * 2 6 1 [Cycles] |
| 84 | * 30 80 10 PIO-Mode 3, [ns] |
| 85 | * 2 5 1 [Cycles] |
| 86 | * 25 70 10 PIO-Mode 4, [ns] |
| 87 | * 2 4 1 [Cycles] |
| 88 | */ |
| 89 | |
| 90 | const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] = |
| 91 | { |
| 92 | /* Setup Length Hold */ |
| 93 | { 70, 165, 30 }, /* PIO-Mode 0, [ns] */ |
| 94 | { 50, 125, 20 }, /* PIO-Mode 1, [ns] */ |
| 95 | { 30, 101, 15 }, /* PIO-Mode 2, [ns] */ |
| 96 | { 30, 80, 10 }, /* PIO-Mode 3, [ns] */ |
| 97 | { 25, 70, 10 }, /* PIO-Mode 4, [ns] */ |
| 98 | }; |
| 99 | |
| 100 | static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1]; |
| 101 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 102 | #ifndef CONFIG_SYS_PIO_MODE |
| 103 | #define CONFIG_SYS_PIO_MODE 0 /* use a relaxed default */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 104 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | static int pio_mode = CONFIG_SYS_PIO_MODE; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 106 | |
| 107 | /* Make clock cycles and always round up */ |
| 108 | |
| 109 | #define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U ) |
| 110 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 111 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
| 112 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 113 | /* ------------------------------------------------------------------------- */ |
| 114 | |
| 115 | /* Current I/O Device */ |
| 116 | static int curr_device = -1; |
| 117 | |
| 118 | /* Current offset for IDE0 / IDE1 bus access */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 119 | ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = { |
| 120 | #if defined(CONFIG_SYS_ATA_IDE0_OFFSET) |
| 121 | CONFIG_SYS_ATA_IDE0_OFFSET, |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 122 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 123 | #if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1) |
| 124 | CONFIG_SYS_ATA_IDE1_OFFSET, |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 125 | #endif |
| 126 | }; |
| 127 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 128 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS]; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 130 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 131 | block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE]; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 132 | /* ------------------------------------------------------------------------- */ |
| 133 | |
| 134 | #ifdef CONFIG_IDE_LED |
Wolfgang Denk | 953b7e6 | 2010-06-13 18:28:54 +0200 | [diff] [blame] | 135 | # if !defined(CONFIG_BMS2003) && \ |
| 136 | !defined(CONFIG_CPC45) && \ |
| 137 | !defined(CONFIG_KUP4K) && \ |
| 138 | !defined(CONFIG_KUP4X) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 139 | static void ide_led (uchar led, uchar status); |
| 140 | #else |
wdenk | 1f53a41 | 2002-12-04 23:39:58 +0000 | [diff] [blame] | 141 | extern void ide_led (uchar led, uchar status); |
| 142 | #endif |
| 143 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 144 | #define ide_led(a,b) /* dummy */ |
| 145 | #endif |
| 146 | |
| 147 | #ifdef CONFIG_IDE_RESET |
| 148 | static void ide_reset (void); |
| 149 | #else |
| 150 | #define ide_reset() /* dummy */ |
| 151 | #endif |
| 152 | |
| 153 | static void ide_ident (block_dev_desc_t *dev_desc); |
| 154 | static uchar ide_wait (int dev, ulong t); |
| 155 | |
| 156 | #define IDE_TIME_OUT 2000 /* 2 sec timeout */ |
| 157 | |
| 158 | #define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */ |
| 159 | |
| 160 | #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */ |
| 161 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 162 | static void input_data(int dev, ulong *sect_buf, int words); |
Wolfgang Denk | 96d04c3 | 2011-04-30 23:29:55 +0200 | [diff] [blame] | 163 | static void output_data(int dev, const ulong *sect_buf, int words); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 164 | static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len); |
| 165 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 166 | #ifndef CONFIG_SYS_ATA_PORT_ADDR |
| 167 | #define CONFIG_SYS_ATA_PORT_ADDR(port) (port) |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 168 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 169 | |
| 170 | #ifdef CONFIG_ATAPI |
| 171 | static void atapi_inquiry(block_dev_desc_t *dev_desc); |
Grant Likely | eb867a7 | 2007-02-20 09:05:45 +0100 | [diff] [blame] | 172 | ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 173 | #endif |
| 174 | |
| 175 | |
| 176 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 177 | static void set_pcmcia_timing (int pmode); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 178 | #endif |
| 179 | |
| 180 | /* ------------------------------------------------------------------------- */ |
| 181 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 182 | int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 183 | { |
| 184 | int rcode = 0; |
| 185 | |
| 186 | switch (argc) { |
| 187 | case 0: |
| 188 | case 1: |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 189 | return cmd_usage(cmdtp); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 190 | case 2: |
| 191 | if (strncmp(argv[1],"res",3) == 0) { |
| 192 | puts ("\nReset IDE" |
| 193 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 194 | " on PCMCIA " PCMCIA_SLOT_MSG |
| 195 | #endif |
| 196 | ": "); |
| 197 | |
| 198 | ide_init (); |
| 199 | return 0; |
| 200 | } else if (strncmp(argv[1],"inf",3) == 0) { |
| 201 | int i; |
| 202 | |
| 203 | putc ('\n'); |
| 204 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 205 | for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 206 | if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN) |
| 207 | continue; /* list only known devices */ |
| 208 | printf ("IDE device %d: ", i); |
| 209 | dev_print(&ide_dev_desc[i]); |
| 210 | } |
| 211 | return 0; |
| 212 | |
| 213 | } else if (strncmp(argv[1],"dev",3) == 0) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 214 | if ((curr_device < 0) || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 215 | puts ("\nno IDE devices available\n"); |
| 216 | return 1; |
| 217 | } |
| 218 | printf ("\nIDE device %d: ", curr_device); |
| 219 | dev_print(&ide_dev_desc[curr_device]); |
| 220 | return 0; |
| 221 | } else if (strncmp(argv[1],"part",4) == 0) { |
| 222 | int dev, ok; |
| 223 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 224 | for (ok=0, dev=0; dev<CONFIG_SYS_IDE_MAXDEVICE; ++dev) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 225 | if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) { |
| 226 | ++ok; |
| 227 | if (dev) |
| 228 | putc ('\n'); |
| 229 | print_part(&ide_dev_desc[dev]); |
| 230 | } |
| 231 | } |
| 232 | if (!ok) { |
| 233 | puts ("\nno IDE devices available\n"); |
| 234 | rcode ++; |
| 235 | } |
| 236 | return rcode; |
| 237 | } |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 238 | return cmd_usage(cmdtp); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 239 | case 3: |
| 240 | if (strncmp(argv[1],"dev",3) == 0) { |
| 241 | int dev = (int)simple_strtoul(argv[2], NULL, 10); |
| 242 | |
| 243 | printf ("\nIDE device %d: ", dev); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 244 | if (dev >= CONFIG_SYS_IDE_MAXDEVICE) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 245 | puts ("unknown device\n"); |
| 246 | return 1; |
| 247 | } |
| 248 | dev_print(&ide_dev_desc[dev]); |
| 249 | /*ide_print (dev);*/ |
| 250 | |
| 251 | if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) { |
| 252 | return 1; |
| 253 | } |
| 254 | |
| 255 | curr_device = dev; |
| 256 | |
| 257 | puts ("... is now current device\n"); |
| 258 | |
| 259 | return 0; |
| 260 | } else if (strncmp(argv[1],"part",4) == 0) { |
| 261 | int dev = (int)simple_strtoul(argv[2], NULL, 10); |
| 262 | |
| 263 | if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) { |
| 264 | print_part(&ide_dev_desc[dev]); |
| 265 | } else { |
| 266 | printf ("\nIDE device %d not available\n", dev); |
| 267 | rcode = 1; |
| 268 | } |
| 269 | return rcode; |
| 270 | #if 0 |
| 271 | } else if (strncmp(argv[1],"pio",4) == 0) { |
| 272 | int mode = (int)simple_strtoul(argv[2], NULL, 10); |
| 273 | |
| 274 | if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) { |
| 275 | puts ("\nSetting "); |
| 276 | pio_mode = mode; |
| 277 | ide_init (); |
| 278 | } else { |
| 279 | printf ("\nInvalid PIO mode %d (0 ... %d only)\n", |
| 280 | mode, IDE_MAX_PIO_MODE); |
| 281 | } |
| 282 | return; |
| 283 | #endif |
| 284 | } |
| 285 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 286 | return cmd_usage(cmdtp); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 287 | default: |
| 288 | /* at least 4 args */ |
| 289 | |
| 290 | if (strcmp(argv[1],"read") == 0) { |
| 291 | ulong addr = simple_strtoul(argv[2], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 292 | ulong cnt = simple_strtoul(argv[4], NULL, 16); |
| 293 | ulong n; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 294 | #ifdef CONFIG_SYS_64BIT_LBA |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 295 | lbaint_t blk = simple_strtoull(argv[3], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 296 | |
Mike Frysinger | 6c6166f | 2009-02-16 23:21:36 -0500 | [diff] [blame] | 297 | printf ("\nIDE read: device %d block # %Ld, count %ld ... ", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 298 | curr_device, blk, cnt); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 299 | #else |
| 300 | lbaint_t blk = simple_strtoul(argv[3], NULL, 16); |
| 301 | |
| 302 | printf ("\nIDE read: device %d block # %ld, count %ld ... ", |
| 303 | curr_device, blk, cnt); |
| 304 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 305 | |
| 306 | n = ide_dev_desc[curr_device].block_read (curr_device, |
| 307 | blk, cnt, |
| 308 | (ulong *)addr); |
| 309 | /* flush cache after read */ |
| 310 | flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz); |
| 311 | |
| 312 | printf ("%ld blocks read: %s\n", |
| 313 | n, (n==cnt) ? "OK" : "ERROR"); |
| 314 | if (n==cnt) { |
| 315 | return 0; |
| 316 | } else { |
| 317 | return 1; |
| 318 | } |
| 319 | } else if (strcmp(argv[1],"write") == 0) { |
| 320 | ulong addr = simple_strtoul(argv[2], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 321 | ulong cnt = simple_strtoul(argv[4], NULL, 16); |
| 322 | ulong n; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 323 | #ifdef CONFIG_SYS_64BIT_LBA |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 324 | lbaint_t blk = simple_strtoull(argv[3], NULL, 16); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 325 | |
Mike Frysinger | 6c6166f | 2009-02-16 23:21:36 -0500 | [diff] [blame] | 326 | printf ("\nIDE write: device %d block # %Ld, count %ld ... ", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 327 | curr_device, blk, cnt); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 328 | #else |
| 329 | lbaint_t blk = simple_strtoul(argv[3], NULL, 16); |
| 330 | |
| 331 | printf ("\nIDE write: device %d block # %ld, count %ld ... ", |
| 332 | curr_device, blk, cnt); |
| 333 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 334 | |
| 335 | n = ide_write (curr_device, blk, cnt, (ulong *)addr); |
| 336 | |
| 337 | printf ("%ld blocks written: %s\n", |
| 338 | n, (n==cnt) ? "OK" : "ERROR"); |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 339 | if (n==cnt) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 340 | return 0; |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 341 | else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 342 | return 1; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 343 | } else { |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 344 | return cmd_usage(cmdtp); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | return rcode; |
| 348 | } |
| 349 | } |
| 350 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 351 | int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 352 | { |
| 353 | char *boot_device = NULL; |
| 354 | char *ep; |
| 355 | int dev, part = 0; |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 356 | ulong addr, cnt; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 357 | disk_partition_t info; |
| 358 | image_header_t *hdr; |
Marian Balakowicz | 09475f7 | 2008-03-12 10:33:01 +0100 | [diff] [blame] | 359 | #if defined(CONFIG_FIT) |
Marian Balakowicz | 3bab76a | 2008-06-06 23:07:40 +0200 | [diff] [blame] | 360 | const void *fit_hdr = NULL; |
Marian Balakowicz | 09475f7 | 2008-03-12 10:33:01 +0100 | [diff] [blame] | 361 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 362 | |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 363 | show_boot_progress (41); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 364 | switch (argc) { |
| 365 | case 1: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 366 | addr = CONFIG_SYS_LOAD_ADDR; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 367 | boot_device = getenv ("bootdevice"); |
| 368 | break; |
| 369 | case 2: |
| 370 | addr = simple_strtoul(argv[1], NULL, 16); |
| 371 | boot_device = getenv ("bootdevice"); |
| 372 | break; |
| 373 | case 3: |
| 374 | addr = simple_strtoul(argv[1], NULL, 16); |
| 375 | boot_device = argv[2]; |
| 376 | break; |
| 377 | default: |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 378 | show_boot_progress (-42); |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 379 | return cmd_usage(cmdtp); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 380 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 381 | show_boot_progress (42); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 382 | |
| 383 | if (!boot_device) { |
| 384 | puts ("\n** No boot device **\n"); |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 385 | show_boot_progress (-43); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 386 | return 1; |
| 387 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 388 | show_boot_progress (43); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 389 | |
| 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 Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 394 | show_boot_progress (-44); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 395 | return 1; |
| 396 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 397 | show_boot_progress (44); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 398 | |
| 399 | if (*ep) { |
| 400 | if (*ep != ':') { |
| 401 | puts ("\n** Invalid boot device, use `dev[:part]' **\n"); |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 402 | show_boot_progress (-45); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 403 | return 1; |
| 404 | } |
| 405 | part = simple_strtoul(++ep, NULL, 16); |
| 406 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 407 | show_boot_progress (45); |
Denis Peter | 7882751 | 2007-04-13 09:13:33 +0200 | [diff] [blame] | 408 | if (get_partition_info (&ide_dev_desc[dev], part, &info)) { |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 409 | show_boot_progress (-46); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 410 | return 1; |
| 411 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 412 | show_boot_progress (46); |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 413 | if ((strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) && |
| 414 | (strncmp((char *)info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 415 | printf ("\n** Invalid partition type \"%.32s\"" |
| 416 | " (expect \"" BOOT_PART_TYPE "\")\n", |
| 417 | info.type); |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 418 | show_boot_progress (-47); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 419 | return 1; |
| 420 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 421 | show_boot_progress (47); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 422 | |
| 423 | printf ("\nLoading from IDE device %d, partition %d: " |
| 424 | "Name: %.32s Type: %.32s\n", |
| 425 | dev, part, info.name, info.type); |
| 426 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 427 | debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 428 | 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 Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 432 | show_boot_progress (-48); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 433 | return 1; |
| 434 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 435 | show_boot_progress (48); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 436 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 437 | switch (genimg_get_format ((void *)addr)) { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 438 | case IMAGE_FORMAT_LEGACY: |
| 439 | hdr = (image_header_t *)addr; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 440 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 441 | 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); |
| 449 | |
| 450 | 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 Balakowicz | 09475f7 | 2008-03-12 10:33:01 +0100 | [diff] [blame] | 456 | fit_hdr = (const void *)addr; |
Marian Balakowicz | 09475f7 | 2008-03-12 10:33:01 +0100 | [diff] [blame] | 457 | puts ("Fit image detected...\n"); |
| 458 | |
| 459 | cnt = fit_get_size (fit_hdr); |
| 460 | break; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 461 | #endif |
| 462 | default: |
Marian Balakowicz | 09475f7 | 2008-03-12 10:33:01 +0100 | [diff] [blame] | 463 | show_boot_progress (-49); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 464 | puts ("** Unknown image type\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 465 | return 1; |
| 466 | } |
| 467 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 468 | cnt += info.blksz - 1; |
| 469 | cnt /= info.blksz; |
| 470 | cnt -= 1; |
| 471 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 472 | 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 Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 475 | show_boot_progress (-51); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 476 | return 1; |
| 477 | } |
Heiko Schocher | fad6340 | 2007-07-13 09:54:17 +0200 | [diff] [blame] | 478 | show_boot_progress (51); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 479 | |
Marian Balakowicz | 09475f7 | 2008-03-12 10:33:01 +0100 | [diff] [blame] | 480 | #if defined(CONFIG_FIT) |
| 481 | /* This cannot be done earlier, we need complete FIT image in RAM first */ |
Marian Balakowicz | 3bab76a | 2008-06-06 23:07:40 +0200 | [diff] [blame] | 482 | 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 Balakowicz | 09475f7 | 2008-03-12 10:33:01 +0100 | [diff] [blame] | 491 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 492 | |
| 493 | /* Loading ok, update default load address */ |
| 494 | |
| 495 | load_addr = addr; |
| 496 | |
Mike Frysinger | 67d668b | 2011-06-05 13:43:02 +0000 | [diff] [blame] | 497 | return bootm_maybe_autostart(cmdtp, argv[0]); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | /* ------------------------------------------------------------------------- */ |
| 501 | |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 502 | void inline |
| 503 | __ide_outb(int dev, int port, unsigned char val) |
| 504 | { |
| 505 | debug ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 506 | dev, port, val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port))); |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 507 | |
| 508 | #if defined(CONFIG_IDE_AHB) |
| 509 | if (port) { |
| 510 | /* write command */ |
| 511 | ide_write_register(dev, port, val); |
| 512 | } else { |
| 513 | /* write data */ |
| 514 | outb(val, (ATA_CURR_BASE(dev))); |
| 515 | } |
| 516 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 517 | outb(val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port))); |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 518 | #endif |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 519 | } |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 520 | |
Kim Phillips | 2df72b8 | 2009-05-19 12:53:36 -0500 | [diff] [blame] | 521 | void ide_outb (int dev, int port, unsigned char val) |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 522 | __attribute__((weak, alias("__ide_outb"))); |
| 523 | |
| 524 | unsigned char inline |
| 525 | __ide_inb(int dev, int port) |
| 526 | { |
| 527 | uchar val; |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 528 | |
| 529 | #if defined(CONFIG_IDE_AHB) |
| 530 | val = ide_read_register(dev, port); |
| 531 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 532 | val = inb((ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port))); |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 533 | #endif |
| 534 | |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 535 | debug ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 536 | dev, port, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)), val); |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 537 | return val; |
| 538 | } |
Kim Phillips | 2df72b8 | 2009-05-19 12:53:36 -0500 | [diff] [blame] | 539 | unsigned char ide_inb(int dev, int port) |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 540 | __attribute__((weak, alias("__ide_inb"))); |
| 541 | |
Steven A. Falco | 36c2d30 | 2008-08-15 15:34:10 -0400 | [diff] [blame] | 542 | #ifdef CONFIG_TUNE_PIO |
| 543 | int inline |
| 544 | __ide_set_piomode(int pio_mode) |
| 545 | { |
| 546 | return 0; |
| 547 | } |
| 548 | int inline ide_set_piomode(int pio_mode) |
| 549 | __attribute__((weak, alias("__ide_set_piomode"))); |
| 550 | #endif |
| 551 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 552 | void ide_init (void) |
| 553 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 554 | |
| 555 | #ifdef CONFIG_IDE_8xx_DIRECT |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 556 | volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 557 | volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia); |
| 558 | #endif |
| 559 | unsigned char c; |
| 560 | int i, bus; |
Wolfgang Denk | 953b7e6 | 2010-06-13 18:28:54 +0200 | [diff] [blame] | 561 | #if defined(CONFIG_SC3) |
Wolfgang Denk | 9045f33 | 2007-06-08 10:24:58 +0200 | [diff] [blame] | 562 | unsigned int ata_reset_time = ATA_RESET_TIME; |
Wolfgang Denk | 51056dd | 2007-04-11 17:22:55 +0200 | [diff] [blame] | 563 | #endif |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 564 | #ifdef CONFIG_IDE_8xx_PCCARD |
| 565 | extern int pcmcia_on (void); |
| 566 | extern int ide_devices_found; /* Initialized in check_ide_device() */ |
| 567 | #endif /* CONFIG_IDE_8xx_PCCARD */ |
| 568 | |
| 569 | #ifdef CONFIG_IDE_PREINIT |
wdenk | 4d13cba | 2004-03-14 14:09:05 +0000 | [diff] [blame] | 570 | extern int ide_preinit (void); |
wdenk | 9fd5e31 | 2003-12-07 23:55:12 +0000 | [diff] [blame] | 571 | WATCHDOG_RESET(); |
| 572 | |
| 573 | if (ide_preinit ()) { |
| 574 | puts ("ide_preinit failed\n"); |
| 575 | return; |
| 576 | } |
| 577 | #endif /* CONFIG_IDE_PREINIT */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 578 | |
| 579 | #ifdef CONFIG_IDE_8xx_PCCARD |
| 580 | extern int pcmcia_on (void); |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 581 | extern int ide_devices_found; /* Initialized in check_ide_device() */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 582 | |
| 583 | WATCHDOG_RESET(); |
| 584 | |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 585 | ide_devices_found = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 586 | /* initialize the PCMCIA IDE adapter card */ |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 587 | pcmcia_on(); |
| 588 | if (!ide_devices_found) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 589 | return; |
| 590 | udelay (1000000); /* 1 s */ |
| 591 | #endif /* CONFIG_IDE_8xx_PCCARD */ |
| 592 | |
| 593 | WATCHDOG_RESET(); |
| 594 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 595 | #ifdef CONFIG_IDE_8xx_DIRECT |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 596 | /* Initialize PIO timing tables */ |
| 597 | for (i=0; i <= IDE_MAX_PIO_MODE; ++i) { |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 598 | pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup, |
| 599 | gd->bus_clk); |
| 600 | pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length, |
| 601 | gd->bus_clk); |
| 602 | pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold, |
| 603 | gd->bus_clk); |
| 604 | debug ( "PIO Mode %d: setup=%2d ns/%d clk" |
| 605 | " len=%3d ns/%d clk" |
| 606 | " hold=%2d ns/%d clk\n", |
| 607 | i, |
| 608 | pio_config_ns[i].t_setup, pio_config_clk[i].t_setup, |
| 609 | pio_config_ns[i].t_length, pio_config_clk[i].t_length, |
| 610 | pio_config_ns[i].t_hold, pio_config_clk[i].t_hold); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 611 | } |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 612 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 613 | |
| 614 | /* Reset the IDE just to be sure. |
| 615 | * Light LED's to show |
| 616 | */ |
| 617 | ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */ |
| 618 | ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */ |
| 619 | |
| 620 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 621 | /* PCMCIA / IDE initialization for common mem space */ |
| 622 | pcmp->pcmc_pgcrb = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 623 | |
| 624 | /* start in PIO mode 0 - most relaxed timings */ |
| 625 | pio_mode = 0; |
| 626 | set_pcmcia_timing (pio_mode); |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 627 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 628 | |
| 629 | /* |
| 630 | * Wait for IDE to get ready. |
| 631 | * According to spec, this can take up to 31 seconds! |
| 632 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 633 | for (bus=0; bus<CONFIG_SYS_IDE_MAXBUS; ++bus) { |
| 634 | int dev = bus * (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 635 | |
wdenk | 6069ff2 | 2003-02-28 00:49:47 +0000 | [diff] [blame] | 636 | #ifdef CONFIG_IDE_8xx_PCCARD |
| 637 | /* Skip non-ide devices from probing */ |
| 638 | if ((ide_devices_found & (1 << bus)) == 0) { |
| 639 | ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */ |
| 640 | continue; |
| 641 | } |
| 642 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 643 | printf ("Bus %d: ", bus); |
| 644 | |
| 645 | ide_bus_ok[bus] = 0; |
| 646 | |
| 647 | /* Select device |
| 648 | */ |
| 649 | udelay (100000); /* 100 ms */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 650 | ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 651 | udelay (100000); /* 100 ms */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 652 | i = 0; |
| 653 | do { |
| 654 | udelay (10000); /* 10 ms */ |
| 655 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 656 | c = ide_inb (dev, ATA_STATUS); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 657 | i++; |
Wolfgang Denk | 953b7e6 | 2010-06-13 18:28:54 +0200 | [diff] [blame] | 658 | #if defined(CONFIG_SC3) |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 659 | if (i > (ata_reset_time * 100)) { |
| 660 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 661 | if (i > (ATA_RESET_TIME * 100)) { |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 662 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 663 | puts ("** Timeout **\n"); |
| 664 | ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */ |
| 665 | return; |
| 666 | } |
| 667 | if ((i >= 100) && ((i%100)==0)) { |
| 668 | putc ('.'); |
| 669 | } |
| 670 | } while (c & ATA_STAT_BUSY); |
| 671 | |
| 672 | if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) { |
| 673 | puts ("not available "); |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 674 | debug ("Status = 0x%02X ", c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 675 | #ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */ |
| 676 | } else if ((c & ATA_STAT_READY) == 0) { |
| 677 | puts ("not available "); |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 678 | debug ("Status = 0x%02X ", c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 679 | #endif |
| 680 | } else { |
| 681 | puts ("OK "); |
| 682 | ide_bus_ok[bus] = 1; |
| 683 | } |
| 684 | WATCHDOG_RESET(); |
| 685 | } |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 686 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 687 | putc ('\n'); |
| 688 | |
| 689 | ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */ |
| 690 | |
| 691 | curr_device = -1; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 692 | for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 693 | #ifdef CONFIG_IDE_LED |
| 694 | int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2; |
| 695 | #endif |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 696 | ide_dev_desc[i].type=DEV_TYPE_UNKNOWN; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 697 | ide_dev_desc[i].if_type=IF_TYPE_IDE; |
| 698 | ide_dev_desc[i].dev=i; |
| 699 | ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN; |
| 700 | ide_dev_desc[i].blksz=0; |
| 701 | ide_dev_desc[i].lba=0; |
| 702 | ide_dev_desc[i].block_read=ide_read; |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 703 | ide_dev_desc[i].block_write = ide_write; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 704 | if (!ide_bus_ok[IDE_BUS(i)]) |
| 705 | continue; |
| 706 | ide_led (led, 1); /* LED on */ |
| 707 | ide_ident(&ide_dev_desc[i]); |
| 708 | ide_led (led, 0); /* LED off */ |
| 709 | dev_print(&ide_dev_desc[i]); |
| 710 | /* ide_print (i); */ |
| 711 | if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) { |
| 712 | init_part (&ide_dev_desc[i]); /* initialize partition type */ |
| 713 | if (curr_device < 0) |
| 714 | curr_device = i; |
| 715 | } |
| 716 | } |
| 717 | WATCHDOG_RESET(); |
| 718 | } |
| 719 | |
| 720 | /* ------------------------------------------------------------------------- */ |
| 721 | |
Matthew McClintock | df3fc52 | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 722 | #ifdef CONFIG_PARTITIONS |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 723 | block_dev_desc_t * ide_get_dev(int dev) |
| 724 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 725 | return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 726 | } |
Matthew McClintock | df3fc52 | 2011-05-24 05:31:19 +0000 | [diff] [blame] | 727 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 728 | |
| 729 | |
| 730 | #ifdef CONFIG_IDE_8xx_DIRECT |
| 731 | |
| 732 | static void |
| 733 | set_pcmcia_timing (int pmode) |
| 734 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 735 | volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 736 | volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia); |
| 737 | ulong timings; |
| 738 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 739 | debug ("Set timing for PIO Mode %d\n", pmode); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 740 | |
| 741 | timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold) |
| 742 | | PCMCIA_SST(pio_config_clk[pmode].t_setup) |
| 743 | | PCMCIA_SL (pio_config_clk[pmode].t_length) |
| 744 | ; |
| 745 | |
| 746 | /* IDE 0 |
| 747 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 748 | pcmp->pcmc_pbr0 = CONFIG_SYS_PCMCIA_PBR0; |
| 749 | pcmp->pcmc_por0 = CONFIG_SYS_PCMCIA_POR0 |
| 750 | #if (CONFIG_SYS_PCMCIA_POR0 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 751 | | timings |
| 752 | #endif |
| 753 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 754 | debug ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 755 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 756 | pcmp->pcmc_pbr1 = CONFIG_SYS_PCMCIA_PBR1; |
| 757 | pcmp->pcmc_por1 = CONFIG_SYS_PCMCIA_POR1 |
| 758 | #if (CONFIG_SYS_PCMCIA_POR1 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 759 | | timings |
| 760 | #endif |
| 761 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 762 | debug ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 763 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 764 | pcmp->pcmc_pbr2 = CONFIG_SYS_PCMCIA_PBR2; |
| 765 | pcmp->pcmc_por2 = CONFIG_SYS_PCMCIA_POR2 |
| 766 | #if (CONFIG_SYS_PCMCIA_POR2 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 767 | | timings |
| 768 | #endif |
| 769 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 770 | debug ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 771 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 772 | pcmp->pcmc_pbr3 = CONFIG_SYS_PCMCIA_PBR3; |
| 773 | pcmp->pcmc_por3 = CONFIG_SYS_PCMCIA_POR3 |
| 774 | #if (CONFIG_SYS_PCMCIA_POR3 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 775 | | timings |
| 776 | #endif |
| 777 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 778 | debug ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 779 | |
| 780 | /* IDE 1 |
| 781 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 782 | pcmp->pcmc_pbr4 = CONFIG_SYS_PCMCIA_PBR4; |
| 783 | pcmp->pcmc_por4 = CONFIG_SYS_PCMCIA_POR4 |
| 784 | #if (CONFIG_SYS_PCMCIA_POR4 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 785 | | timings |
| 786 | #endif |
| 787 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 788 | debug ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 789 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 790 | pcmp->pcmc_pbr5 = CONFIG_SYS_PCMCIA_PBR5; |
| 791 | pcmp->pcmc_por5 = CONFIG_SYS_PCMCIA_POR5 |
| 792 | #if (CONFIG_SYS_PCMCIA_POR5 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 793 | | timings |
| 794 | #endif |
| 795 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 796 | debug ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 797 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 798 | pcmp->pcmc_pbr6 = CONFIG_SYS_PCMCIA_PBR6; |
| 799 | pcmp->pcmc_por6 = CONFIG_SYS_PCMCIA_POR6 |
| 800 | #if (CONFIG_SYS_PCMCIA_POR6 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 801 | | timings |
| 802 | #endif |
| 803 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 804 | debug ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 805 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 806 | pcmp->pcmc_pbr7 = CONFIG_SYS_PCMCIA_PBR7; |
| 807 | pcmp->pcmc_por7 = CONFIG_SYS_PCMCIA_POR7 |
| 808 | #if (CONFIG_SYS_PCMCIA_POR7 != 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 809 | | timings |
| 810 | #endif |
| 811 | ; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 812 | debug ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 813 | |
| 814 | } |
| 815 | |
| 816 | #endif /* CONFIG_IDE_8xx_DIRECT */ |
| 817 | |
| 818 | /* ------------------------------------------------------------------------- */ |
| 819 | |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 820 | /* We only need to swap data if we are running on a big endian cpu. */ |
| 821 | /* But Au1x00 cpu:s already swaps data in big endian mode! */ |
Shinya Kuribayashi | c6dc8a7 | 2011-02-05 19:07:00 +0900 | [diff] [blame] | 822 | #if defined(__LITTLE_ENDIAN) || \ |
| 823 | (defined(CONFIG_SOC_AU1X00) && !defined(CONFIG_GTH2)) |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 824 | #define input_swap_data(x,y,z) input_data(x,y,z) |
| 825 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 826 | static void |
| 827 | input_swap_data(int dev, ulong *sect_buf, int words) |
| 828 | { |
Wolfgang Denk | 77efe35 | 2010-09-19 21:28:25 +0200 | [diff] [blame] | 829 | #if defined(CONFIG_CPC45) |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 830 | uchar i; |
| 831 | volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 832 | volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 833 | ushort *dbuf = (ushort *)sect_buf; |
| 834 | |
| 835 | while (words--) { |
| 836 | for (i=0; i<2; i++) { |
| 837 | *(((uchar *)(dbuf)) + 1) = *pbuf_even; |
| 838 | *(uchar *)dbuf = *pbuf_odd; |
| 839 | dbuf+=1; |
| 840 | } |
| 841 | } |
wdenk | f4733a0 | 2005-03-06 01:21:30 +0000 | [diff] [blame] | 842 | #else |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 843 | volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 844 | ushort *dbuf = (ushort *)sect_buf; |
| 845 | |
| 846 | debug("in input swap data base for read is %lx\n", (unsigned long) pbuf); |
| 847 | |
| 848 | while (words--) { |
Wolfgang Denk | 0c32d96 | 2006-06-16 17:32:31 +0200 | [diff] [blame] | 849 | #ifdef __MIPS__ |
| 850 | *dbuf++ = swab16p((u16*)pbuf); |
| 851 | *dbuf++ = swab16p((u16*)pbuf); |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 852 | #elif defined(CONFIG_PCS440EP) |
| 853 | *dbuf++ = *pbuf; |
| 854 | *dbuf++ = *pbuf; |
Wolfgang Denk | 0c32d96 | 2006-06-16 17:32:31 +0200 | [diff] [blame] | 855 | #else |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 856 | *dbuf++ = ld_le16(pbuf); |
| 857 | *dbuf++ = ld_le16(pbuf); |
Wolfgang Denk | 0c32d96 | 2006-06-16 17:32:31 +0200 | [diff] [blame] | 858 | #endif /* !MIPS */ |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 859 | } |
| 860 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 861 | } |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 862 | #endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 863 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 864 | |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 865 | #if defined(CONFIG_IDE_SWAP_IO) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 866 | static void |
Wolfgang Denk | 96d04c3 | 2011-04-30 23:29:55 +0200 | [diff] [blame] | 867 | output_data(int dev, const ulong *sect_buf, int words) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 868 | { |
Wolfgang Denk | 77efe35 | 2010-09-19 21:28:25 +0200 | [diff] [blame] | 869 | #if defined(CONFIG_CPC45) |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 870 | uchar *dbuf; |
| 871 | volatile uchar *pbuf_even; |
| 872 | volatile uchar *pbuf_odd; |
| 873 | |
| 874 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 875 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 876 | dbuf = (uchar *)sect_buf; |
| 877 | while (words--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 878 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 879 | *pbuf_even = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 880 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 881 | *pbuf_odd = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 882 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 883 | *pbuf_even = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 884 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 885 | *pbuf_odd = *dbuf++; |
| 886 | } |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 887 | #else |
| 888 | ushort *dbuf; |
| 889 | volatile ushort *pbuf; |
| 890 | |
| 891 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 892 | dbuf = (ushort *)sect_buf; |
| 893 | while (words--) { |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 894 | #if defined(CONFIG_PCS440EP) |
| 895 | /* not tested, because CF was write protected */ |
| 896 | EIEIO; |
| 897 | *pbuf = ld_le16(dbuf++); |
| 898 | EIEIO; |
| 899 | *pbuf = ld_le16(dbuf++); |
| 900 | #else |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 901 | EIEIO; |
| 902 | *pbuf = *dbuf++; |
| 903 | EIEIO; |
| 904 | *pbuf = *dbuf++; |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 905 | #endif |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 906 | } |
| 907 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 908 | } |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 909 | #else /* ! CONFIG_IDE_SWAP_IO */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 910 | static void |
Wolfgang Denk | 96d04c3 | 2011-04-30 23:29:55 +0200 | [diff] [blame] | 911 | output_data(int dev, const ulong *sect_buf, int words) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 912 | { |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 913 | #if defined(CONFIG_IDE_AHB) |
| 914 | ide_write_data(dev, sect_buf, words); |
| 915 | #else |
| 916 | outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1); |
| 917 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 918 | } |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 919 | #endif /* CONFIG_IDE_SWAP_IO */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 920 | |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 921 | #if defined(CONFIG_IDE_SWAP_IO) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 922 | static void |
| 923 | input_data(int dev, ulong *sect_buf, int words) |
| 924 | { |
Wolfgang Denk | 77efe35 | 2010-09-19 21:28:25 +0200 | [diff] [blame] | 925 | #if defined(CONFIG_CPC45) |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 926 | uchar *dbuf; |
| 927 | volatile uchar *pbuf_even; |
| 928 | volatile uchar *pbuf_odd; |
| 929 | |
| 930 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 931 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 932 | dbuf = (uchar *)sect_buf; |
| 933 | while (words--) { |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 934 | *dbuf++ = *pbuf_even; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 935 | EIEIO; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 936 | SYNC; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 937 | *dbuf++ = *pbuf_odd; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 938 | EIEIO; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 939 | SYNC; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 940 | *dbuf++ = *pbuf_even; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 941 | EIEIO; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 942 | SYNC; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 943 | *dbuf++ = *pbuf_odd; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 944 | EIEIO; |
| 945 | SYNC; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 946 | } |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 947 | #else |
| 948 | ushort *dbuf; |
| 949 | volatile ushort *pbuf; |
| 950 | |
| 951 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 952 | dbuf = (ushort *)sect_buf; |
| 953 | |
| 954 | debug("in input data base for read is %lx\n", (unsigned long) pbuf); |
| 955 | |
| 956 | while (words--) { |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 957 | #if defined(CONFIG_PCS440EP) |
| 958 | EIEIO; |
| 959 | *dbuf++ = ld_le16(pbuf); |
| 960 | EIEIO; |
| 961 | *dbuf++ = ld_le16(pbuf); |
| 962 | #else |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 963 | EIEIO; |
| 964 | *dbuf++ = *pbuf; |
| 965 | EIEIO; |
| 966 | *dbuf++ = *pbuf; |
Heiko Schocher | 566a494 | 2007-06-22 19:11:54 +0200 | [diff] [blame] | 967 | #endif |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 968 | } |
| 969 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 970 | } |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 971 | #else /* ! CONFIG_IDE_SWAP_IO */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 972 | static void |
| 973 | input_data(int dev, ulong *sect_buf, int words) |
| 974 | { |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 975 | #if defined(CONFIG_IDE_AHB) |
| 976 | ide_read_data(dev, sect_buf, words); |
| 977 | #else |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 978 | insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1); |
Macpaul Lin | 0abddf8 | 2011-04-11 20:45:32 +0000 | [diff] [blame] | 979 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 980 | } |
| 981 | |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 982 | #endif /* CONFIG_IDE_SWAP_IO */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 983 | |
| 984 | /* ------------------------------------------------------------------------- |
| 985 | */ |
| 986 | static void ide_ident (block_dev_desc_t *dev_desc) |
| 987 | { |
| 988 | ulong iobuf[ATA_SECTORWORDS]; |
| 989 | unsigned char c; |
| 990 | hd_driveid_t *iop = (hd_driveid_t *)iobuf; |
| 991 | |
wdenk | 64f70be | 2004-09-28 20:34:50 +0000 | [diff] [blame] | 992 | #ifdef CONFIG_ATAPI |
| 993 | int retries = 0; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 994 | int do_retry = 0; |
| 995 | #endif |
| 996 | |
Steven A. Falco | 36c2d30 | 2008-08-15 15:34:10 -0400 | [diff] [blame] | 997 | #ifdef CONFIG_TUNE_PIO |
| 998 | int pio_mode; |
| 999 | #endif |
| 1000 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1001 | #if 0 |
| 1002 | int mode, cycle_time; |
| 1003 | #endif |
| 1004 | int device; |
| 1005 | device=dev_desc->dev; |
| 1006 | printf (" Device %d: ", device); |
| 1007 | |
| 1008 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1009 | /* Select device |
| 1010 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1011 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1012 | dev_desc->if_type=IF_TYPE_IDE; |
| 1013 | #ifdef CONFIG_ATAPI |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1014 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1015 | do_retry = 0; |
| 1016 | retries = 0; |
| 1017 | |
| 1018 | /* Warning: This will be tricky to read */ |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1019 | while (retries <= 1) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1020 | /* check signature */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1021 | if ((ide_inb(device,ATA_SECT_CNT) == 0x01) && |
| 1022 | (ide_inb(device,ATA_SECT_NUM) == 0x01) && |
| 1023 | (ide_inb(device,ATA_CYL_LOW) == 0x14) && |
| 1024 | (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1025 | /* ATAPI Signature found */ |
| 1026 | dev_desc->if_type=IF_TYPE_ATAPI; |
| 1027 | /* Start Ident Command |
| 1028 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1029 | ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1030 | /* |
| 1031 | * Wait for completion - ATAPI devices need more time |
| 1032 | * to become ready |
| 1033 | */ |
| 1034 | c = ide_wait (device, ATAPI_TIME_OUT); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1035 | } else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1036 | #endif |
| 1037 | { |
| 1038 | /* Start Ident Command |
| 1039 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1040 | ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1041 | |
| 1042 | /* Wait for completion |
| 1043 | */ |
| 1044 | c = ide_wait (device, IDE_TIME_OUT); |
| 1045 | } |
| 1046 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1047 | |
| 1048 | if (((c & ATA_STAT_DRQ) == 0) || |
| 1049 | ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) { |
wdenk | 64f70be | 2004-09-28 20:34:50 +0000 | [diff] [blame] | 1050 | #ifdef CONFIG_ATAPI |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1051 | { |
| 1052 | /* Need to soft reset the device in case it's an ATAPI... */ |
| 1053 | debug ("Retrying...\n"); |
| 1054 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 1055 | udelay(100000); |
| 1056 | ide_outb (device, ATA_COMMAND, 0x08); |
| 1057 | udelay (500000); /* 500 ms */ |
| 1058 | } |
wdenk | 64f70be | 2004-09-28 20:34:50 +0000 | [diff] [blame] | 1059 | /* Select device |
| 1060 | */ |
| 1061 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 1062 | retries++; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1063 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1064 | return; |
wdenk | 64f70be | 2004-09-28 20:34:50 +0000 | [diff] [blame] | 1065 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1066 | } |
wdenk | 64f70be | 2004-09-28 20:34:50 +0000 | [diff] [blame] | 1067 | #ifdef CONFIG_ATAPI |
| 1068 | else |
| 1069 | break; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1070 | } /* see above - ugly to read */ |
wdenk | 64f70be | 2004-09-28 20:34:50 +0000 | [diff] [blame] | 1071 | |
| 1072 | if (retries == 2) /* Not found */ |
| 1073 | return; |
| 1074 | #endif |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1075 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1076 | input_swap_data (device, iobuf, ATA_SECTORWORDS); |
| 1077 | |
Jean-Christophe PLAGNIOL-VILLARD | 7a60ee7 | 2007-11-07 08:19:19 +0100 | [diff] [blame] | 1078 | ident_cpy ((unsigned char*)dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision)); |
| 1079 | ident_cpy ((unsigned char*)dev_desc->vendor, iop->model, sizeof(dev_desc->vendor)); |
| 1080 | ident_cpy ((unsigned char*)dev_desc->product, iop->serial_no, sizeof(dev_desc->product)); |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1081 | #ifdef __LITTLE_ENDIAN |
| 1082 | /* |
Richard Retanubun | bcdf1d2 | 2008-11-06 14:01:51 -0500 | [diff] [blame] | 1083 | * firmware revision, model, and serial number have Big Endian Byte |
| 1084 | * order in Word. Convert all three to little endian. |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1085 | * |
| 1086 | * See CF+ and CompactFlash Specification Revision 2.0: |
Richard Retanubun | bcdf1d2 | 2008-11-06 14:01:51 -0500 | [diff] [blame] | 1087 | * 6.2.1.6: Identify Drive, Table 39 for more details |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1088 | */ |
| 1089 | |
| 1090 | strswab (dev_desc->revision); |
| 1091 | strswab (dev_desc->vendor); |
Richard Retanubun | bcdf1d2 | 2008-11-06 14:01:51 -0500 | [diff] [blame] | 1092 | strswab (dev_desc->product); |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1093 | #endif /* __LITTLE_ENDIAN */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1094 | |
| 1095 | if ((iop->config & 0x0080)==0x0080) |
| 1096 | dev_desc->removable = 1; |
| 1097 | else |
| 1098 | dev_desc->removable = 0; |
| 1099 | |
Steven A. Falco | 36c2d30 | 2008-08-15 15:34:10 -0400 | [diff] [blame] | 1100 | #ifdef CONFIG_TUNE_PIO |
| 1101 | /* Mode 0 - 2 only, are directly determined by word 51. */ |
| 1102 | pio_mode = iop->tPIO; |
| 1103 | if (pio_mode > 2) { |
| 1104 | printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode); |
| 1105 | pio_mode = 0; /* Force it to dead slow, and hope for the best... */ |
| 1106 | } |
| 1107 | |
| 1108 | /* Any CompactFlash Storage Card that supports PIO mode 3 or above |
| 1109 | * shall set bit 1 of word 53 to one and support the fields contained |
| 1110 | * in words 64 through 70. |
| 1111 | */ |
| 1112 | if (iop->field_valid & 0x02) { |
| 1113 | /* Mode 3 and above are possible. Check in order from slow |
| 1114 | * to fast, so we wind up with the highest mode allowed. |
| 1115 | */ |
| 1116 | if (iop->eide_pio_modes & 0x01) |
| 1117 | pio_mode = 3; |
| 1118 | if (iop->eide_pio_modes & 0x02) |
| 1119 | pio_mode = 4; |
| 1120 | if (ata_id_is_cfa((u16 *)iop)) { |
| 1121 | if ((iop->cf_advanced_caps & 0x07) == 0x01) |
| 1122 | pio_mode = 5; |
| 1123 | if ((iop->cf_advanced_caps & 0x07) == 0x02) |
| 1124 | pio_mode = 6; |
| 1125 | } |
| 1126 | } |
| 1127 | |
| 1128 | /* System-specific, depends on bus speeds, etc. */ |
| 1129 | ide_set_piomode(pio_mode); |
| 1130 | #endif /* CONFIG_TUNE_PIO */ |
| 1131 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1132 | #if 0 |
| 1133 | /* |
| 1134 | * Drive PIO mode autoselection |
| 1135 | */ |
| 1136 | mode = iop->tPIO; |
| 1137 | |
| 1138 | printf ("tPIO = 0x%02x = %d\n",mode, mode); |
| 1139 | if (mode > 2) { /* 2 is maximum allowed tPIO value */ |
| 1140 | mode = 2; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1141 | debug ("Override tPIO -> 2\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1142 | } |
| 1143 | if (iop->field_valid & 2) { /* drive implements ATA2? */ |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1144 | debug ("Drive implements ATA2\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1145 | if (iop->capability & 8) { /* drive supports use_iordy? */ |
| 1146 | cycle_time = iop->eide_pio_iordy; |
| 1147 | } else { |
| 1148 | cycle_time = iop->eide_pio; |
| 1149 | } |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1150 | debug ("cycle time = %d\n", cycle_time); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1151 | mode = 4; |
| 1152 | if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */ |
| 1153 | if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */ |
| 1154 | if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */ |
| 1155 | if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */ |
| 1156 | } |
| 1157 | printf ("PIO mode to use: PIO %d\n", mode); |
| 1158 | #endif /* 0 */ |
| 1159 | |
| 1160 | #ifdef CONFIG_ATAPI |
| 1161 | if (dev_desc->if_type==IF_TYPE_ATAPI) { |
| 1162 | atapi_inquiry(dev_desc); |
| 1163 | return; |
| 1164 | } |
| 1165 | #endif /* CONFIG_ATAPI */ |
| 1166 | |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1167 | #ifdef __BIG_ENDIAN |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1168 | /* swap shorts */ |
| 1169 | dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16); |
wdenk | c3f9d49 | 2004-03-14 00:59:59 +0000 | [diff] [blame] | 1170 | #else /* ! __BIG_ENDIAN */ |
| 1171 | /* |
| 1172 | * do not swap shorts on little endian |
| 1173 | * |
| 1174 | * See CF+ and CompactFlash Specification Revision 2.0: |
| 1175 | * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details. |
| 1176 | */ |
| 1177 | dev_desc->lba = iop->lba_capacity; |
| 1178 | #endif /* __BIG_ENDIAN */ |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1179 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1180 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1181 | if (iop->command_set_2 & 0x0400) { /* LBA 48 support */ |
wdenk | 6e59238 | 2004-04-18 17:39:38 +0000 | [diff] [blame] | 1182 | dev_desc->lba48 = 1; |
| 1183 | dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] | |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1184 | ((unsigned long long)iop->lba48_capacity[1] << 16) | |
| 1185 | ((unsigned long long)iop->lba48_capacity[2] << 32) | |
| 1186 | ((unsigned long long)iop->lba48_capacity[3] << 48); |
| 1187 | } else { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1188 | dev_desc->lba48 = 0; |
| 1189 | } |
| 1190 | #endif /* CONFIG_LBA48 */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1191 | /* assuming HD */ |
| 1192 | dev_desc->type=DEV_TYPE_HARDDISK; |
| 1193 | dev_desc->blksz=ATA_BLOCKSIZE; |
| 1194 | dev_desc->lun=0; /* just to fill something in... */ |
| 1195 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 1196 | #if 0 /* only used to test the powersaving mode, |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1197 | * if enabled, the drive goes after 5 sec |
| 1198 | * in standby mode */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1199 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1200 | c = ide_wait (device, IDE_TIME_OUT); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1201 | ide_outb (device, ATA_SECT_CNT, 1); |
| 1202 | ide_outb (device, ATA_LBA_LOW, 0); |
| 1203 | ide_outb (device, ATA_LBA_MID, 0); |
| 1204 | ide_outb (device, ATA_LBA_HIGH, 0); |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1205 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1206 | ide_outb (device, ATA_COMMAND, 0xe3); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1207 | udelay (50); |
| 1208 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1209 | #endif |
| 1210 | } |
| 1211 | |
| 1212 | |
| 1213 | /* ------------------------------------------------------------------------- */ |
| 1214 | |
Grant Likely | eb867a7 | 2007-02-20 09:05:45 +0100 | [diff] [blame] | 1215 | ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1216 | { |
| 1217 | ulong n = 0; |
| 1218 | unsigned char c; |
| 1219 | unsigned char pwrsave=0; /* power save */ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1220 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1221 | unsigned char lba48 = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1222 | |
Guennadi Liakhovetski | 413bf58 | 2008-04-28 14:36:06 +0200 | [diff] [blame] | 1223 | if (blknr & 0x0000fffff0000000ULL) { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1224 | /* more than 28 bits used, use 48bit mode */ |
| 1225 | lba48 = 1; |
| 1226 | } |
| 1227 | #endif |
Mike Frysinger | 6c6166f | 2009-02-16 23:21:36 -0500 | [diff] [blame] | 1228 | debug ("ide_read dev %d start %LX, blocks %lX buffer at %lX\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1229 | device, blknr, blkcnt, (ulong)buffer); |
| 1230 | |
| 1231 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1232 | |
| 1233 | /* Select device |
| 1234 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1235 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1236 | c = ide_wait (device, IDE_TIME_OUT); |
| 1237 | |
| 1238 | if (c & ATA_STAT_BUSY) { |
| 1239 | printf ("IDE read: device %d not ready\n", device); |
| 1240 | goto IDE_READ_E; |
| 1241 | } |
| 1242 | |
| 1243 | /* first check if the drive is in Powersaving mode, if yes, |
| 1244 | * increase the timeout value */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1245 | ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1246 | udelay (50); |
| 1247 | |
| 1248 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1249 | |
| 1250 | if (c & ATA_STAT_BUSY) { |
| 1251 | printf ("IDE read: device %d not ready\n", device); |
| 1252 | goto IDE_READ_E; |
| 1253 | } |
| 1254 | if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) { |
| 1255 | printf ("No Powersaving mode %X\n", c); |
| 1256 | } else { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1257 | c = ide_inb(device,ATA_SECT_CNT); |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1258 | debug ("Powersaving %02X\n",c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1259 | if(c==0) |
| 1260 | pwrsave=1; |
| 1261 | } |
| 1262 | |
| 1263 | |
| 1264 | while (blkcnt-- > 0) { |
| 1265 | |
| 1266 | c = ide_wait (device, IDE_TIME_OUT); |
| 1267 | |
| 1268 | if (c & ATA_STAT_BUSY) { |
| 1269 | printf ("IDE read: device %d not ready\n", device); |
| 1270 | break; |
| 1271 | } |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1272 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1273 | if (lba48) { |
| 1274 | /* write high bits */ |
| 1275 | ide_outb (device, ATA_SECT_CNT, 0); |
| 1276 | ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1277 | #ifdef CONFIG_SYS_64BIT_LBA |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1278 | ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF); |
| 1279 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF); |
Guennadi Liakhovetski | 413bf58 | 2008-04-28 14:36:06 +0200 | [diff] [blame] | 1280 | #else |
| 1281 | ide_outb (device, ATA_LBA_MID, 0); |
| 1282 | ide_outb (device, ATA_LBA_HIGH, 0); |
| 1283 | #endif |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1284 | } |
| 1285 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1286 | ide_outb (device, ATA_SECT_CNT, 1); |
| 1287 | ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF); |
| 1288 | ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF); |
| 1289 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1290 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1291 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1292 | if (lba48) { |
| 1293 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) ); |
| 1294 | ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT); |
| 1295 | |
| 1296 | } else |
| 1297 | #endif |
| 1298 | { |
| 1299 | ide_outb (device, ATA_DEV_HD, ATA_LBA | |
| 1300 | ATA_DEVICE(device) | |
| 1301 | ((blknr >> 24) & 0xF) ); |
| 1302 | ide_outb (device, ATA_COMMAND, ATA_CMD_READ); |
| 1303 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1304 | |
| 1305 | udelay (50); |
| 1306 | |
| 1307 | if(pwrsave) { |
| 1308 | c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */ |
| 1309 | pwrsave=0; |
| 1310 | } else { |
| 1311 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1312 | } |
| 1313 | |
| 1314 | if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) { |
Heiko Schocher | 4b142fe | 2009-12-03 11:21:21 +0100 | [diff] [blame] | 1315 | #if defined(CONFIG_SYS_64BIT_LBA) |
Mike Frysinger | 6c6166f | 2009-02-16 23:21:36 -0500 | [diff] [blame] | 1316 | printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1317 | device, blknr, c); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1318 | #else |
| 1319 | printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n", |
| 1320 | device, (ulong)blknr, c); |
| 1321 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1322 | break; |
| 1323 | } |
| 1324 | |
| 1325 | input_data (device, buffer, ATA_SECTORWORDS); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1326 | (void) ide_inb (device, ATA_STATUS); /* clear IRQ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1327 | |
| 1328 | ++n; |
| 1329 | ++blknr; |
Greg Lopp | 0b94504 | 2007-04-13 08:02:24 +0200 | [diff] [blame] | 1330 | buffer += ATA_BLOCKSIZE; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1331 | } |
| 1332 | IDE_READ_E: |
| 1333 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1334 | return (n); |
| 1335 | } |
| 1336 | |
| 1337 | /* ------------------------------------------------------------------------- */ |
| 1338 | |
| 1339 | |
Wolfgang Denk | 96d04c3 | 2011-04-30 23:29:55 +0200 | [diff] [blame] | 1340 | ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, const void *buffer) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1341 | { |
| 1342 | ulong n = 0; |
| 1343 | unsigned char c; |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1344 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1345 | unsigned char lba48 = 0; |
| 1346 | |
Guennadi Liakhovetski | 413bf58 | 2008-04-28 14:36:06 +0200 | [diff] [blame] | 1347 | if (blknr & 0x0000fffff0000000ULL) { |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1348 | /* more than 28 bits used, use 48bit mode */ |
| 1349 | lba48 = 1; |
| 1350 | } |
| 1351 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1352 | |
| 1353 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1354 | |
| 1355 | /* Select device |
| 1356 | */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1357 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1358 | |
| 1359 | while (blkcnt-- > 0) { |
| 1360 | |
| 1361 | c = ide_wait (device, IDE_TIME_OUT); |
| 1362 | |
| 1363 | if (c & ATA_STAT_BUSY) { |
| 1364 | printf ("IDE read: device %d not ready\n", device); |
| 1365 | goto WR_OUT; |
| 1366 | } |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1367 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1368 | if (lba48) { |
| 1369 | /* write high bits */ |
| 1370 | ide_outb (device, ATA_SECT_CNT, 0); |
| 1371 | ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1372 | #ifdef CONFIG_SYS_64BIT_LBA |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1373 | ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF); |
| 1374 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF); |
Guennadi Liakhovetski | 413bf58 | 2008-04-28 14:36:06 +0200 | [diff] [blame] | 1375 | #else |
| 1376 | ide_outb (device, ATA_LBA_MID, 0); |
| 1377 | ide_outb (device, ATA_LBA_HIGH, 0); |
| 1378 | #endif |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1379 | } |
| 1380 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1381 | ide_outb (device, ATA_SECT_CNT, 1); |
| 1382 | ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF); |
| 1383 | ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF); |
| 1384 | ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1385 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1386 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1387 | if (lba48) { |
| 1388 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) ); |
| 1389 | ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT); |
| 1390 | |
| 1391 | } else |
| 1392 | #endif |
| 1393 | { |
| 1394 | ide_outb (device, ATA_DEV_HD, ATA_LBA | |
| 1395 | ATA_DEVICE(device) | |
| 1396 | ((blknr >> 24) & 0xF) ); |
| 1397 | ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE); |
| 1398 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1399 | |
| 1400 | udelay (50); |
| 1401 | |
| 1402 | c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 1403 | |
| 1404 | if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) { |
Heiko Schocher | 4b142fe | 2009-12-03 11:21:21 +0100 | [diff] [blame] | 1405 | #if defined(CONFIG_SYS_64BIT_LBA) |
Mike Frysinger | 6c6166f | 2009-02-16 23:21:36 -0500 | [diff] [blame] | 1406 | printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1407 | device, blknr, c); |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1408 | #else |
| 1409 | printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n", |
| 1410 | device, (ulong)blknr, c); |
| 1411 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1412 | goto WR_OUT; |
| 1413 | } |
| 1414 | |
| 1415 | output_data (device, buffer, ATA_SECTORWORDS); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1416 | c = ide_inb (device, ATA_STATUS); /* clear IRQ */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1417 | ++n; |
| 1418 | ++blknr; |
Greg Lopp | 0b94504 | 2007-04-13 08:02:24 +0200 | [diff] [blame] | 1419 | buffer += ATA_BLOCKSIZE; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1420 | } |
| 1421 | WR_OUT: |
| 1422 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1423 | return (n); |
| 1424 | } |
| 1425 | |
| 1426 | /* ------------------------------------------------------------------------- */ |
| 1427 | |
| 1428 | /* |
| 1429 | * copy src to dest, skipping leading and trailing blanks and null |
| 1430 | * terminate the string |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1431 | * "len" is the size of available memory including the terminating '\0' |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1432 | */ |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1433 | static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1434 | { |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1435 | unsigned char *end, *last; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1436 | |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1437 | last = dst; |
wdenk | 6fb6af6 | 2004-03-23 23:20:24 +0000 | [diff] [blame] | 1438 | end = src + len - 1; |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1439 | |
| 1440 | /* reserve space for '\0' */ |
| 1441 | if (len < 2) |
| 1442 | goto OUT; |
wdenk | efa329c | 2004-03-23 20:18:25 +0000 | [diff] [blame] | 1443 | |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1444 | /* skip leading white space */ |
| 1445 | while ((*src) && (src<end) && (*src==' ')) |
| 1446 | ++src; |
| 1447 | |
| 1448 | /* copy string, omitting trailing white space */ |
| 1449 | while ((*src) && (src<end)) { |
| 1450 | *dst++ = *src; |
| 1451 | if (*src++ != ' ') |
| 1452 | last = dst; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1453 | } |
wdenk | 7d7ce41 | 2004-03-17 01:13:07 +0000 | [diff] [blame] | 1454 | OUT: |
| 1455 | *last = '\0'; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | /* ------------------------------------------------------------------------- */ |
| 1459 | |
| 1460 | /* |
| 1461 | * Wait until Busy bit is off, or timeout (in ms) |
| 1462 | * Return last status |
| 1463 | */ |
| 1464 | static uchar ide_wait (int dev, ulong t) |
| 1465 | { |
| 1466 | ulong delay = 10 * t; /* poll every 100 us */ |
| 1467 | uchar c; |
| 1468 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1469 | while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1470 | udelay (100); |
| 1471 | if (delay-- == 0) { |
| 1472 | break; |
| 1473 | } |
| 1474 | } |
| 1475 | return (c); |
| 1476 | } |
| 1477 | |
| 1478 | /* ------------------------------------------------------------------------- */ |
| 1479 | |
| 1480 | #ifdef CONFIG_IDE_RESET |
| 1481 | extern void ide_set_reset(int idereset); |
| 1482 | |
| 1483 | static void ide_reset (void) |
| 1484 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1485 | #if defined(CONFIG_SYS_PB_12V_ENABLE) || defined(CONFIG_SYS_PB_IDE_MOTOR) |
| 1486 | volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1487 | #endif |
| 1488 | int i; |
| 1489 | |
| 1490 | curr_device = -1; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1491 | for (i=0; i<CONFIG_SYS_IDE_MAXBUS; ++i) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1492 | ide_bus_ok[i] = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1493 | for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1494 | ide_dev_desc[i].type = DEV_TYPE_UNKNOWN; |
| 1495 | |
| 1496 | ide_set_reset (1); /* assert reset */ |
| 1497 | |
Martin Krause | e175eac | 2008-04-03 13:37:56 +0200 | [diff] [blame] | 1498 | /* the reset signal shall be asserted for et least 25 us */ |
| 1499 | udelay(25); |
| 1500 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1501 | WATCHDOG_RESET(); |
| 1502 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1503 | #ifdef CONFIG_SYS_PB_12V_ENABLE |
| 1504 | immr->im_cpm.cp_pbdat &= ~(CONFIG_SYS_PB_12V_ENABLE); /* 12V Enable output OFF */ |
| 1505 | immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_12V_ENABLE); |
| 1506 | immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_12V_ENABLE); |
| 1507 | immr->im_cpm.cp_pbdir |= CONFIG_SYS_PB_12V_ENABLE; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1508 | |
| 1509 | /* wait 500 ms for the voltage to stabilize |
| 1510 | */ |
| 1511 | for (i=0; i<500; ++i) { |
| 1512 | udelay (1000); |
| 1513 | } |
| 1514 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1515 | immr->im_cpm.cp_pbdat |= CONFIG_SYS_PB_12V_ENABLE; /* 12V Enable output ON */ |
| 1516 | #endif /* CONFIG_SYS_PB_12V_ENABLE */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1517 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1518 | #ifdef CONFIG_SYS_PB_IDE_MOTOR |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1519 | /* configure IDE Motor voltage monitor pin as input */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1520 | immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_IDE_MOTOR); |
| 1521 | immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_IDE_MOTOR); |
| 1522 | immr->im_cpm.cp_pbdir &= ~(CONFIG_SYS_PB_IDE_MOTOR); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1523 | |
| 1524 | /* wait up to 1 s for the motor voltage to stabilize |
| 1525 | */ |
| 1526 | for (i=0; i<1000; ++i) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1527 | if ((immr->im_cpm.cp_pbdat & CONFIG_SYS_PB_IDE_MOTOR) != 0) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1528 | break; |
| 1529 | } |
| 1530 | udelay (1000); |
| 1531 | } |
| 1532 | |
| 1533 | if (i == 1000) { /* Timeout */ |
| 1534 | printf ("\nWarning: 5V for IDE Motor missing\n"); |
| 1535 | # ifdef CONFIG_STATUS_LED |
| 1536 | # ifdef STATUS_LED_YELLOW |
| 1537 | status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON ); |
| 1538 | # endif |
| 1539 | # ifdef STATUS_LED_GREEN |
| 1540 | status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF); |
| 1541 | # endif |
| 1542 | # endif /* CONFIG_STATUS_LED */ |
| 1543 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1544 | #endif /* CONFIG_SYS_PB_IDE_MOTOR */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1545 | |
| 1546 | WATCHDOG_RESET(); |
| 1547 | |
| 1548 | /* de-assert RESET signal */ |
| 1549 | ide_set_reset(0); |
| 1550 | |
| 1551 | /* wait 250 ms */ |
| 1552 | for (i=0; i<250; ++i) { |
| 1553 | udelay (1000); |
| 1554 | } |
| 1555 | } |
| 1556 | |
| 1557 | #endif /* CONFIG_IDE_RESET */ |
| 1558 | |
| 1559 | /* ------------------------------------------------------------------------- */ |
| 1560 | |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 1561 | #if defined(CONFIG_IDE_LED) && \ |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 1562 | !defined(CONFIG_CPC45) && \ |
wdenk | e2ffd59 | 2004-12-31 09:32:47 +0000 | [diff] [blame] | 1563 | !defined(CONFIG_KUP4K) && \ |
| 1564 | !defined(CONFIG_KUP4X) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1565 | |
| 1566 | static uchar led_buffer = 0; /* Buffer for current LED status */ |
| 1567 | |
| 1568 | static void ide_led (uchar led, uchar status) |
| 1569 | { |
| 1570 | uchar *led_port = LED_PORT; |
| 1571 | |
| 1572 | if (status) { /* switch LED on */ |
| 1573 | led_buffer |= led; |
| 1574 | } else { /* switch LED off */ |
| 1575 | led_buffer &= ~led; |
| 1576 | } |
| 1577 | |
| 1578 | *led_port = led_buffer; |
| 1579 | } |
| 1580 | |
| 1581 | #endif /* CONFIG_IDE_LED */ |
| 1582 | |
Heiko Schocher | 3887c3f | 2009-09-23 07:56:08 +0200 | [diff] [blame] | 1583 | #if defined(CONFIG_OF_IDE_FIXUP) |
| 1584 | int ide_device_present(int dev) |
| 1585 | { |
| 1586 | if (dev >= CONFIG_SYS_IDE_MAXBUS) |
| 1587 | return 0; |
| 1588 | return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1); |
| 1589 | } |
| 1590 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1591 | /* ------------------------------------------------------------------------- */ |
| 1592 | |
| 1593 | #ifdef CONFIG_ATAPI |
| 1594 | /**************************************************************************** |
| 1595 | * ATAPI Support |
| 1596 | */ |
| 1597 | |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 1598 | #if defined(CONFIG_IDE_SWAP_IO) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1599 | /* since ATAPI may use commands with not 4 bytes alligned length |
| 1600 | * we have our own transfer functions, 2 bytes alligned */ |
| 1601 | static void |
| 1602 | output_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1603 | { |
Wolfgang Denk | 77efe35 | 2010-09-19 21:28:25 +0200 | [diff] [blame] | 1604 | #if defined(CONFIG_CPC45) |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1605 | uchar *dbuf; |
| 1606 | volatile uchar *pbuf_even; |
| 1607 | volatile uchar *pbuf_odd; |
| 1608 | |
| 1609 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 1610 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 1611 | while (shorts--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1612 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1613 | *pbuf_even = *dbuf++; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1614 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1615 | *pbuf_odd = *dbuf++; |
| 1616 | } |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1617 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1618 | ushort *dbuf; |
| 1619 | volatile ushort *pbuf; |
| 1620 | |
| 1621 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 1622 | dbuf = (ushort *)sect_buf; |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1623 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1624 | debug ("in output data shorts base for read is %lx\n", (unsigned long) pbuf); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1625 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1626 | while (shorts--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1627 | EIEIO; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1628 | *pbuf = *dbuf++; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1629 | } |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1630 | #endif |
| 1631 | } |
| 1632 | |
| 1633 | static void |
| 1634 | input_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1635 | { |
Wolfgang Denk | 77efe35 | 2010-09-19 21:28:25 +0200 | [diff] [blame] | 1636 | #if defined(CONFIG_CPC45) |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1637 | uchar *dbuf; |
| 1638 | volatile uchar *pbuf_even; |
| 1639 | volatile uchar *pbuf_odd; |
| 1640 | |
| 1641 | pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN); |
| 1642 | pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD); |
| 1643 | while (shorts--) { |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1644 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1645 | *dbuf++ = *pbuf_even; |
wdenk | 5cf91d6 | 2004-04-23 20:32:05 +0000 | [diff] [blame] | 1646 | EIEIO; |
wdenk | a522fa0 | 2004-01-04 22:51:12 +0000 | [diff] [blame] | 1647 | *dbuf++ = *pbuf_odd; |
| 1648 | } |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1649 | #else |
| 1650 | ushort *dbuf; |
| 1651 | volatile ushort *pbuf; |
| 1652 | |
| 1653 | pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG); |
| 1654 | dbuf = (ushort *)sect_buf; |
| 1655 | |
| 1656 | debug("in input data shorts base for read is %lx\n", (unsigned long) pbuf); |
| 1657 | |
| 1658 | while (shorts--) { |
| 1659 | EIEIO; |
| 1660 | *dbuf++ = *pbuf; |
| 1661 | } |
| 1662 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1663 | } |
| 1664 | |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 1665 | #else /* ! CONFIG_IDE_SWAP_IO */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1666 | static void |
| 1667 | output_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1668 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1669 | outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1670 | } |
| 1671 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1672 | static void |
| 1673 | input_data_shorts(int dev, ushort *sect_buf, int shorts) |
| 1674 | { |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 1675 | insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1676 | } |
| 1677 | |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 1678 | #endif /* CONFIG_IDE_SWAP_IO */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1679 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1680 | /* |
| 1681 | * Wait until (Status & mask) == res, or timeout (in ms) |
| 1682 | * Return last status |
| 1683 | * This is used since some ATAPI CD ROMs clears their Busy Bit first |
| 1684 | * and then they set their DRQ Bit |
| 1685 | */ |
| 1686 | static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res) |
| 1687 | { |
| 1688 | ulong delay = 10 * t; /* poll every 100 us */ |
| 1689 | uchar c; |
| 1690 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1691 | c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */ |
| 1692 | while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1693 | /* break if error occurs (doesn't make sense to wait more) */ |
| 1694 | if((c & ATA_STAT_ERR)==ATA_STAT_ERR) |
| 1695 | break; |
| 1696 | udelay (100); |
| 1697 | if (delay-- == 0) { |
| 1698 | break; |
| 1699 | } |
| 1700 | } |
| 1701 | return (c); |
| 1702 | } |
| 1703 | |
| 1704 | /* |
| 1705 | * issue an atapi command |
| 1706 | */ |
| 1707 | unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen) |
| 1708 | { |
| 1709 | unsigned char c,err,mask,res; |
| 1710 | int n; |
| 1711 | ide_led (DEVICE_LED(device), 1); /* LED on */ |
| 1712 | |
| 1713 | /* Select device |
| 1714 | */ |
| 1715 | mask = ATA_STAT_BUSY|ATA_STAT_DRQ; |
| 1716 | res = 0; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1717 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1718 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1719 | if ((c & mask) != res) { |
| 1720 | printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c); |
| 1721 | err=0xFF; |
| 1722 | goto AI_OUT; |
| 1723 | } |
| 1724 | /* write taskfile */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1725 | ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */ |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1726 | ide_outb (device, ATA_SECT_CNT, 0); |
| 1727 | ide_outb (device, ATA_SECT_NUM, 0); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1728 | ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF)); |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1729 | ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF)); |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1730 | ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1731 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1732 | ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1733 | udelay (50); |
| 1734 | |
| 1735 | mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR; |
| 1736 | res = ATA_STAT_DRQ; |
| 1737 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1738 | |
| 1739 | if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */ |
Steven A. Falco | 4afbef9 | 2008-08-15 15:37:31 -0400 | [diff] [blame] | 1740 | printf ("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1741 | err=0xFF; |
| 1742 | goto AI_OUT; |
| 1743 | } |
| 1744 | |
| 1745 | output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 1746 | /* ATAPI Command written wait for completition */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1747 | udelay (5000); /* device must set bsy */ |
| 1748 | |
| 1749 | mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR; |
| 1750 | /* if no data wait for DRQ = 0 BSY = 0 |
| 1751 | * if data wait for DRQ = 1 BSY = 0 */ |
| 1752 | res=0; |
| 1753 | if(buflen) |
| 1754 | res = ATA_STAT_DRQ; |
| 1755 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1756 | if ((c & mask) != res ) { |
| 1757 | if (c & ATA_STAT_ERR) { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1758 | err=(ide_inb(device,ATA_ERROR_REG))>>4; |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1759 | debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1760 | } else { |
Steven A. Falco | 4afbef9 | 2008-08-15 15:37:31 -0400 | [diff] [blame] | 1761 | printf ("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1762 | err=0xFF; |
| 1763 | } |
| 1764 | goto AI_OUT; |
| 1765 | } |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1766 | n=ide_inb(device, ATA_CYL_HIGH); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1767 | n<<=8; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1768 | n+=ide_inb(device, ATA_CYL_LOW); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1769 | if(n>buflen) { |
| 1770 | printf("ERROR, transfer bytes %d requested only %d\n",n,buflen); |
| 1771 | err=0xff; |
| 1772 | goto AI_OUT; |
| 1773 | } |
| 1774 | if((n==0)&&(buflen<0)) { |
| 1775 | printf("ERROR, transfer bytes %d requested %d\n",n,buflen); |
| 1776 | err=0xff; |
| 1777 | goto AI_OUT; |
| 1778 | } |
| 1779 | if(n!=buflen) { |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1780 | debug ("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1781 | } |
| 1782 | if(n!=0) { /* data transfer */ |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1783 | debug ("ATAPI_ISSUE: %d Bytes to transfer\n",n); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1784 | /* we transfer shorts */ |
| 1785 | n>>=1; |
| 1786 | /* ok now decide if it is an in or output */ |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1787 | if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) { |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1788 | debug ("Write to device\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1789 | output_data_shorts(device,(unsigned short *)buffer,n); |
| 1790 | } else { |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1791 | debug ("Read from device @ %p shorts %d\n",buffer,n); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1792 | input_data_shorts(device,(unsigned short *)buffer,n); |
| 1793 | } |
| 1794 | } |
| 1795 | udelay(5000); /* seems that some CD ROMs need this... */ |
| 1796 | mask = ATA_STAT_BUSY|ATA_STAT_ERR; |
| 1797 | res=0; |
| 1798 | c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res); |
| 1799 | if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) { |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1800 | err=(ide_inb(device,ATA_ERROR_REG) >> 4); |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1801 | debug ("atapi_issue 2 returned sense key %X status %X\n",err,c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1802 | } else { |
| 1803 | err = 0; |
| 1804 | } |
| 1805 | AI_OUT: |
| 1806 | ide_led (DEVICE_LED(device), 0); /* LED off */ |
| 1807 | return (err); |
| 1808 | } |
| 1809 | |
| 1810 | /* |
| 1811 | * sending the command to atapi_issue. If an status other than good |
| 1812 | * returns, an request_sense will be issued |
| 1813 | */ |
| 1814 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 1815 | #define ATAPI_DRIVE_NOT_READY 100 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1816 | #define ATAPI_UNIT_ATTN 10 |
| 1817 | |
| 1818 | unsigned char atapi_issue_autoreq (int device, |
| 1819 | unsigned char* ccb, |
| 1820 | int ccblen, |
| 1821 | unsigned char *buffer, |
| 1822 | int buflen) |
| 1823 | { |
| 1824 | unsigned char sense_data[18],sense_ccb[12]; |
| 1825 | unsigned char res,key,asc,ascq; |
| 1826 | int notready,unitattn; |
| 1827 | |
| 1828 | unitattn=ATAPI_UNIT_ATTN; |
| 1829 | notready=ATAPI_DRIVE_NOT_READY; |
| 1830 | |
| 1831 | retry: |
| 1832 | res= atapi_issue(device,ccb,ccblen,buffer,buflen); |
| 1833 | if (res==0) |
| 1834 | return (0); /* Ok */ |
| 1835 | |
| 1836 | if (res==0xFF) |
| 1837 | return (0xFF); /* error */ |
| 1838 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1839 | debug ("(auto_req)atapi_issue returned sense key %X\n",res); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1840 | |
| 1841 | memset(sense_ccb,0,sizeof(sense_ccb)); |
| 1842 | memset(sense_data,0,sizeof(sense_data)); |
| 1843 | sense_ccb[0]=ATAPI_CMD_REQ_SENSE; |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1844 | sense_ccb[4]=18; /* allocation Length */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1845 | |
| 1846 | res=atapi_issue(device,sense_ccb,12,sense_data,18); |
| 1847 | key=(sense_data[2]&0xF); |
| 1848 | asc=(sense_data[12]); |
| 1849 | ascq=(sense_data[13]); |
| 1850 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1851 | debug ("ATAPI_CMD_REQ_SENSE returned %x\n",res); |
| 1852 | debug (" Sense page: %02X key %02X ASC %02X ASCQ %02X\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1853 | sense_data[0], |
| 1854 | key, |
| 1855 | asc, |
| 1856 | ascq); |
| 1857 | |
| 1858 | if((key==0)) |
| 1859 | return 0; /* ok device ready */ |
| 1860 | |
| 1861 | if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */ |
| 1862 | if(unitattn-->0) { |
| 1863 | udelay(200*1000); |
| 1864 | goto retry; |
| 1865 | } |
| 1866 | printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN); |
| 1867 | goto error; |
| 1868 | } |
| 1869 | if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */ |
| 1870 | if (notready-->0) { |
| 1871 | udelay(200*1000); |
| 1872 | goto retry; |
| 1873 | } |
| 1874 | printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY); |
| 1875 | goto error; |
| 1876 | } |
| 1877 | if(asc==0x3a) { |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1878 | debug ("Media not present\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1879 | goto error; |
| 1880 | } |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 1881 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1882 | printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq); |
| 1883 | error: |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1884 | debug ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1885 | return (0xFF); |
| 1886 | } |
| 1887 | |
| 1888 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1889 | static void atapi_inquiry(block_dev_desc_t * dev_desc) |
| 1890 | { |
| 1891 | unsigned char ccb[12]; /* Command descriptor block */ |
| 1892 | unsigned char iobuf[64]; /* temp buf */ |
| 1893 | unsigned char c; |
| 1894 | int device; |
| 1895 | |
| 1896 | device=dev_desc->dev; |
| 1897 | dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */ |
| 1898 | dev_desc->block_read=atapi_read; |
| 1899 | |
| 1900 | memset(ccb,0,sizeof(ccb)); |
| 1901 | memset(iobuf,0,sizeof(iobuf)); |
| 1902 | |
| 1903 | ccb[0]=ATAPI_CMD_INQUIRY; |
| 1904 | ccb[4]=40; /* allocation Legnth */ |
| 1905 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40); |
| 1906 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1907 | debug ("ATAPI_CMD_INQUIRY returned %x\n",c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1908 | if (c!=0) |
| 1909 | return; |
| 1910 | |
| 1911 | /* copy device ident strings */ |
Jean-Christophe PLAGNIOL-VILLARD | 7a60ee7 | 2007-11-07 08:19:19 +0100 | [diff] [blame] | 1912 | ident_cpy((unsigned char*)dev_desc->vendor,&iobuf[8],8); |
| 1913 | ident_cpy((unsigned char*)dev_desc->product,&iobuf[16],16); |
| 1914 | ident_cpy((unsigned char*)dev_desc->revision,&iobuf[32],5); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1915 | |
| 1916 | dev_desc->lun=0; |
| 1917 | dev_desc->lba=0; |
| 1918 | dev_desc->blksz=0; |
| 1919 | dev_desc->type=iobuf[0] & 0x1f; |
| 1920 | |
| 1921 | if ((iobuf[1]&0x80)==0x80) |
| 1922 | dev_desc->removable = 1; |
| 1923 | else |
| 1924 | dev_desc->removable = 0; |
| 1925 | |
| 1926 | memset(ccb,0,sizeof(ccb)); |
| 1927 | memset(iobuf,0,sizeof(iobuf)); |
| 1928 | ccb[0]=ATAPI_CMD_START_STOP; |
| 1929 | ccb[4]=0x03; /* start */ |
| 1930 | |
| 1931 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0); |
| 1932 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1933 | debug ("ATAPI_CMD_START_STOP returned %x\n",c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1934 | if (c!=0) |
| 1935 | return; |
| 1936 | |
| 1937 | memset(ccb,0,sizeof(ccb)); |
| 1938 | memset(iobuf,0,sizeof(iobuf)); |
| 1939 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0); |
| 1940 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1941 | debug ("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1942 | if (c!=0) |
| 1943 | return; |
| 1944 | |
| 1945 | memset(ccb,0,sizeof(ccb)); |
| 1946 | memset(iobuf,0,sizeof(iobuf)); |
| 1947 | ccb[0]=ATAPI_CMD_READ_CAP; |
| 1948 | c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8); |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1949 | debug ("ATAPI_CMD_READ_CAP returned %x\n",c); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1950 | if (c!=0) |
| 1951 | return; |
| 1952 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1953 | debug ("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1954 | iobuf[0],iobuf[1],iobuf[2],iobuf[3], |
| 1955 | iobuf[4],iobuf[5],iobuf[6],iobuf[7]); |
| 1956 | |
| 1957 | dev_desc->lba =((unsigned long)iobuf[0]<<24) + |
| 1958 | ((unsigned long)iobuf[1]<<16) + |
| 1959 | ((unsigned long)iobuf[2]<< 8) + |
| 1960 | ((unsigned long)iobuf[3]); |
| 1961 | dev_desc->blksz=((unsigned long)iobuf[4]<<24) + |
| 1962 | ((unsigned long)iobuf[5]<<16) + |
| 1963 | ((unsigned long)iobuf[6]<< 8) + |
| 1964 | ((unsigned long)iobuf[7]); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1965 | #ifdef CONFIG_LBA48 |
wdenk | c40b295 | 2004-03-13 23:29:43 +0000 | [diff] [blame] | 1966 | dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */ |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 1967 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1968 | return; |
| 1969 | } |
| 1970 | |
| 1971 | |
| 1972 | /* |
| 1973 | * atapi_read: |
| 1974 | * we transfer only one block per command, since the multiple DRQ per |
| 1975 | * command is not yet implemented |
| 1976 | */ |
| 1977 | #define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */ |
| 1978 | #define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */ |
| 1979 | #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */ |
| 1980 | |
Grant Likely | eb867a7 | 2007-02-20 09:05:45 +0100 | [diff] [blame] | 1981 | ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1982 | { |
| 1983 | ulong n = 0; |
| 1984 | unsigned char ccb[12]; /* Command descriptor block */ |
| 1985 | ulong cnt; |
| 1986 | |
wdenk | 1a344f2 | 2005-02-03 23:00:49 +0000 | [diff] [blame] | 1987 | debug ("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1988 | device, blknr, blkcnt, (ulong)buffer); |
| 1989 | |
| 1990 | do { |
| 1991 | if (blkcnt>ATAPI_READ_MAX_BLOCK) { |
| 1992 | cnt=ATAPI_READ_MAX_BLOCK; |
| 1993 | } else { |
| 1994 | cnt=blkcnt; |
| 1995 | } |
| 1996 | ccb[0]=ATAPI_CMD_READ_12; |
| 1997 | ccb[1]=0; /* reserved */ |
| 1998 | ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */ |
| 1999 | ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */ |
| 2000 | ccb[4]=(unsigned char) (blknr>> 8) & 0xFF; |
| 2001 | ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */ |
| 2002 | ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */ |
| 2003 | ccb[7]=(unsigned char) (cnt >>16) & 0xFF; |
| 2004 | ccb[8]=(unsigned char) (cnt >> 8) & 0xFF; |
| 2005 | ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */ |
| 2006 | ccb[10]=0; /* reserved */ |
| 2007 | ccb[11]=0; /* reserved */ |
| 2008 | |
| 2009 | if (atapi_issue_autoreq(device,ccb,12, |
| 2010 | (unsigned char *)buffer, |
| 2011 | cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) { |
| 2012 | return (n); |
| 2013 | } |
| 2014 | n+=cnt; |
| 2015 | blkcnt-=cnt; |
| 2016 | blknr+=cnt; |
Greg Lopp | 0b94504 | 2007-04-13 08:02:24 +0200 | [diff] [blame] | 2017 | buffer+=(cnt*ATAPI_READ_BLOCK_SIZE); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2018 | } while (blkcnt > 0); |
| 2019 | return (n); |
| 2020 | } |
| 2021 | |
| 2022 | /* ------------------------------------------------------------------------- */ |
| 2023 | |
| 2024 | #endif /* CONFIG_ATAPI */ |
| 2025 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 2026 | U_BOOT_CMD( |
| 2027 | ide, 5, 1, do_ide, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 2028 | "IDE sub-system", |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2029 | "reset - reset IDE controller\n" |
| 2030 | "ide info - show available IDE devices\n" |
| 2031 | "ide device [dev] - show or set current device\n" |
| 2032 | "ide part [dev] - print partition table of one or all IDE devices\n" |
| 2033 | "ide read addr blk# cnt\n" |
| 2034 | "ide write addr blk# cnt - read/write `cnt'" |
| 2035 | " blocks starting at block `blk#'\n" |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 2036 | " to/from memory address `addr'" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2037 | ); |
| 2038 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 2039 | U_BOOT_CMD( |
| 2040 | diskboot, 3, 1, do_diskboot, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 2041 | "boot from IDE device", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 2042 | "loadAddr dev:part" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 2043 | ); |