]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/block/ata_piix.c
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / drivers / block / ata_piix.c
1 /*
2  * Copyright (C) Procsys. All rights reserved.
3  * Author: Mushtaq Khan <mushtaq_k@procsys.com>
4  *                      <mushtaqk_921@yahoo.co.in>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19  * MA 02111-1307 USA
20  *
21  * with the reference to ata_piix driver in kernel 2.4.32
22  */
23
24 /*
25  * This file contains SATA controller and SATA drive initialization functions
26  */
27
28 #include <common.h>
29 #include <asm/io.h>
30 #include <pci.h>
31 #include <command.h>
32 #include <config.h>
33 #include <asm/byteorder.h>
34 #include <part.h>
35 #include <ide.h>
36 #include <ata.h>
37 #include <sata.h>
38
39 #define DEBUG_SATA 0            /* For debug prints set DEBUG_SATA to 1 */
40
41 #define SATA_DECL
42 #define DRV_DECL                /* For file specific declarations */
43 #include "ata_piix.h"
44
45 /* Macros realted to PCI */
46 #define PCI_SATA_BUS    0x00
47 #define PCI_SATA_DEV    0x1f
48 #define PCI_SATA_FUNC   0x02
49
50 #define PCI_SATA_BASE1 0x10
51 #define PCI_SATA_BASE2 0x14
52 #define PCI_SATA_BASE3 0x18
53 #define PCI_SATA_BASE4 0x1c
54 #define PCI_SATA_BASE5 0x20
55 #define PCI_PMR         0x90
56 #define PCI_PI          0x09
57 #define PCI_PCS         0x92
58 #define PCI_DMA_CTL     0x48
59
60 #define PORT_PRESENT (1<<0)
61 #define PORT_ENABLED (1<<4)
62
63 u32 bdf;
64 u32 iobase1;            /* Primary cmd block */
65 u32 iobase2;            /* Primary ctl block */
66 u32 iobase3;            /* Sec cmd block */
67 u32 iobase4;            /* sec ctl block */
68 u32 iobase5;            /* BMDMA*/
69
70 int pci_sata_init(void)
71 {
72         u32 bus = PCI_SATA_BUS;
73         u32 dev = PCI_SATA_DEV;
74         u32 fun = PCI_SATA_FUNC;
75         u16 cmd = 0;
76         u8 lat = 0, pcibios_max_latency = 0xff;
77         u8 pmr; /* Port mapping reg */
78         u8 pi; /* Prgming Interface reg */
79
80         bdf = PCI_BDF(bus, dev, fun);
81         pci_read_config_dword(bdf, PCI_SATA_BASE1, &iobase1);
82         pci_read_config_dword(bdf, PCI_SATA_BASE2, &iobase2);
83         pci_read_config_dword(bdf, PCI_SATA_BASE3, &iobase3);
84         pci_read_config_dword(bdf, PCI_SATA_BASE4, &iobase4);
85         pci_read_config_dword(bdf, PCI_SATA_BASE5, &iobase5);
86
87         if ((iobase1 == 0xFFFFFFFF) || (iobase2 == 0xFFFFFFFF) ||
88             (iobase3 == 0xFFFFFFFF) || (iobase4 == 0xFFFFFFFF) ||
89             (iobase5 == 0xFFFFFFFF)) {
90                 /* ERROR */
91                 printf("error no base addr for SATA controller\n");
92                 return 1;
93         }
94
95         iobase1 &= 0xFFFFFFFE;
96         iobase2 &= 0xFFFFFFFE;
97         iobase3 &= 0xFFFFFFFE;
98         iobase4 &= 0xFFFFFFFE;
99         iobase5 &= 0xFFFFFFFE;
100
101         /* check for mode */
102         pci_read_config_byte(bdf, PCI_PMR, &pmr);
103         if (pmr > 1) {
104                 puts("combined mode not supported\n");
105                 return 1;
106         }
107
108         pci_read_config_byte(bdf, PCI_PI, &pi);
109         if ((pi & 0x05) != 0x05) {
110                 puts("Sata is in Legacy mode\n");
111                 return 1;
112         } else
113                 puts("sata is in Native mode\n");
114
115         /* MASTER CFG AND IO CFG */
116         pci_read_config_word(bdf, PCI_COMMAND, &cmd);
117         cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_IO;
118         pci_write_config_word(bdf, PCI_COMMAND, cmd);
119         pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
120
121         if (lat < 16)
122                 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
123         else if (lat > pcibios_max_latency)
124                 lat = pcibios_max_latency;
125         pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
126
127         return 0;
128 }
129
130 int sata_bus_probe(int port_no)
131 {
132         int orig_mask, mask;
133         u16 pcs;
134
135         mask = (PORT_PRESENT << port_no);
136         pci_read_config_word(bdf, PCI_PCS, &pcs);
137         orig_mask = (int) pcs & 0xff;
138         if ((orig_mask & mask) != mask)
139                 return 0;
140         else
141                 return 1;
142 }
143
144 int init_sata(int dev)
145 {
146         static int done;
147         u8 i, rv = 0;
148
149         if (!done)
150                 done = 1;
151         else
152                 return 0;
153
154         rv = pci_sata_init();
155         if (rv == 1) {
156                 puts("pci initialization failed\n");
157                 return 1;
158         }
159
160         port[0].port_no = 0;
161         port[0].ioaddr.cmd_addr = iobase1;
162         port[0].ioaddr.altstatus_addr = port[0].ioaddr.ctl_addr =
163             iobase2 | ATA_PCI_CTL_OFS;
164         port[0].ioaddr.bmdma_addr = iobase5;
165
166         port[1].port_no = 1;
167         port[1].ioaddr.cmd_addr = iobase3;
168         port[1].ioaddr.altstatus_addr = port[1].ioaddr.ctl_addr =
169             iobase4 | ATA_PCI_CTL_OFS;
170         port[1].ioaddr.bmdma_addr = iobase5 + 0x8;
171
172         for (i = 0; i < CONFIG_SYS_SATA_MAXBUS; i++)
173                 sata_port(&port[i].ioaddr);
174
175         for (i = 0; i < CONFIG_SYS_SATA_MAXBUS; i++) {
176                 if (!(sata_bus_probe(i))) {
177                         port[i].port_state = 0;
178                         printf("SATA#%d port is not present\n", i);
179                 } else {
180                         printf("SATA#%d port is present\n", i);
181                         if (sata_bus_softreset(i))
182                                 port[i].port_state = 0;
183                         else
184                                 port[i].port_state = 1;
185                 }
186         }
187
188         for (i = 0; i < CONFIG_SYS_SATA_MAXBUS; i++) {
189                 u8 j, devno;
190
191                 if (port[i].port_state == 0)
192                         continue;
193                 for (j = 0; j < CONFIG_SYS_SATA_DEVS_PER_BUS; j++) {
194                         sata_identify(i, j);
195                         set_Feature_cmd(i, j);
196                         devno = i * CONFIG_SYS_SATA_DEVS_PER_BUS + j;
197                         if ((sata_dev_desc[devno].lba > 0) &&
198                             (sata_dev_desc[devno].blksz > 0)) {
199                                 dev_print(&sata_dev_desc[devno]);
200                                 /* initialize partition type */
201                                 init_part(&sata_dev_desc[devno]);
202                         }
203                 }
204         }
205         return 0;
206 }
207
208 static inline u8 sata_inb(unsigned long ioaddr)
209 {
210         return inb(ioaddr);
211 }
212
213 static inline void sata_outb(unsigned char val, unsigned long ioaddr)
214 {
215         outb(val, ioaddr);
216 }
217
218 static void output_data(struct sata_ioports *ioaddr, ulong * sect_buf,
219                 int words)
220 {
221         outsw(ioaddr->data_addr, sect_buf, words << 1);
222 }
223
224 static int input_data(struct sata_ioports *ioaddr, ulong * sect_buf, int words)
225 {
226         insw(ioaddr->data_addr, sect_buf, words << 1);
227         return 0;
228 }
229
230 static void sata_cpy(unsigned char *dst, unsigned char *src, unsigned int len)
231 {
232         unsigned char *end, *last;
233
234         last = dst;
235         end = src + len - 1;
236
237         /* reserve space for '\0' */
238         if (len < 2)
239                 goto OUT;
240
241         /* skip leading white space */
242         while ((*src) && (src < end) && (*src == ' '))
243                 ++src;
244
245         /* copy string, omitting trailing white space */
246         while ((*src) && (src < end)) {
247                 *dst++ = *src;
248                 if (*src++ != ' ')
249                         last = dst;
250         }
251 OUT:
252         *last = '\0';
253 }
254
255 int sata_bus_softreset(int num)
256 {
257         u8 dev = 0, status = 0, i;
258
259         port[num].dev_mask = 0;
260
261         for (i = 0; i < CONFIG_SYS_SATA_DEVS_PER_BUS; i++) {
262                 if (!(sata_devchk(&port[num].ioaddr, i))) {
263                         debug("dev_chk failed for dev#%d\n", i);
264                 } else {
265                         port[num].dev_mask |= (1 << i);
266                         debug("dev_chk passed for dev#%d\n", i);
267                 }
268         }
269
270         if (!(port[num].dev_mask)) {
271                 printf("no devices on port%d\n", num);
272                 return 1;
273         }
274
275         dev_select(&port[num].ioaddr, dev);
276
277         port[num].ctl_reg = 0x08;       /* Default value of control reg */
278         sata_outb(port[num].ctl_reg, port[num].ioaddr.ctl_addr);
279         udelay(10);
280         sata_outb(port[num].ctl_reg | ATA_SRST, port[num].ioaddr.ctl_addr);
281         udelay(10);
282         sata_outb(port[num].ctl_reg, port[num].ioaddr.ctl_addr);
283
284         /*
285          * spec mandates ">= 2ms" before checking status.
286          * We wait 150ms, because that was the magic delay used for
287          * ATAPI devices in Hale Landis's ATADRVR, for the period of time
288          * between when the ATA command register is written, and then
289          * status is checked.  Because waiting for "a while" before
290          * checking status is fine, post SRST, we perform this magic
291          * delay here as well.
292          */
293         mdelay(150);
294         status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 300);
295         while ((status & ATA_BUSY)) {
296                 mdelay(100);
297                 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 3);
298         }
299
300         if (status & ATA_BUSY)
301                 printf("ata%u is slow to respond,plz be patient\n", num);
302
303         while ((status & ATA_BUSY)) {
304                 mdelay(100);
305                 status = sata_chk_status(&port[num].ioaddr);
306         }
307
308         if (status & ATA_BUSY) {
309                 printf("ata%u failed to respond : bus reset failed\n", num);
310                 return 1;
311         }
312         return 0;
313 }
314
315 void sata_identify(int num, int dev)
316 {
317         u8 cmd = 0, status = 0;
318         u8 devno = num * CONFIG_SYS_SATA_DEVS_PER_BUS + dev;
319         u16 iobuf[ATA_SECT_SIZE];
320         u64 n_sectors = 0;
321         u8 mask = 0;
322
323         memset(iobuf, 0, sizeof(iobuf));
324         hd_driveid_t *iop = (hd_driveid_t *) iobuf;
325
326         if (dev == 0)
327                 mask = 0x01;
328         else
329                 mask = 0x02;
330
331         if (!(port[num].dev_mask & mask)) {
332                 printf("dev%d is not present on port#%d\n", dev, num);
333                 return;
334         }
335
336         printf("port=%d dev=%d\n", num, dev);
337
338         dev_select(&port[num].ioaddr, dev);
339
340         status = 0;
341         cmd = ATA_CMD_IDENT;    /* Device Identify Command */
342         sata_outb(cmd, port[num].ioaddr.command_addr);
343         sata_inb(port[num].ioaddr.altstatus_addr);
344         udelay(10);
345
346         status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 1000);
347         if (status & ATA_ERR) {
348                 puts("\ndevice not responding\n");
349                 port[num].dev_mask &= ~mask;
350                 return;
351         }
352
353         input_data(&port[num].ioaddr, (ulong *) iobuf, ATA_SECTORWORDS);
354
355         debug("\nata%u: dev %u cfg 49:%04x 82:%04x 83:%04x 84:%04x85:%04x"
356                 "86:%04x" "87:%04x 88:%04x\n", num, dev, iobuf[49],
357                 iobuf[82], iobuf[83], iobuf[84], iobuf[85], iobuf[86],
358                 iobuf[87], iobuf[88]);
359
360         /* we require LBA and DMA support (bits 8 & 9 of word 49) */
361         if (!ata_id_has_dma(iobuf) || !ata_id_has_lba(iobuf))
362                 debug("ata%u: no dma/lba\n", num);
363         ata_dump_id(iobuf);
364
365         if (ata_id_has_lba48(iobuf))
366                 n_sectors = ata_id_u64(iobuf, 100);
367         else
368                 n_sectors = ata_id_u32(iobuf, 60);
369         debug("no. of sectors %u\n", ata_id_u64(iobuf, 100));
370         debug("no. of sectors %u\n", ata_id_u32(iobuf, 60));
371
372         if (n_sectors == 0) {
373                 port[num].dev_mask &= ~mask;
374                 return;
375         }
376
377         sata_cpy((unsigned char *)sata_dev_desc[devno].revision, iop->fw_rev,
378                   sizeof(sata_dev_desc[devno].revision));
379         sata_cpy((unsigned char *)sata_dev_desc[devno].vendor, iop->model,
380                   sizeof(sata_dev_desc[devno].vendor));
381         sata_cpy((unsigned char *)sata_dev_desc[devno].product, iop->serial_no,
382                   sizeof(sata_dev_desc[devno].product));
383         strswab(sata_dev_desc[devno].revision);
384         strswab(sata_dev_desc[devno].vendor);
385
386         if ((iop->config & 0x0080) == 0x0080)
387                 sata_dev_desc[devno].removable = 1;
388         else
389                 sata_dev_desc[devno].removable = 0;
390
391         sata_dev_desc[devno].lba = iop->lba_capacity;
392         debug("lba=0x%x", sata_dev_desc[devno].lba);
393
394 #ifdef CONFIG_LBA48
395         if (iop->command_set_2 & 0x0400) {
396                 sata_dev_desc[devno].lba48 = 1;
397                 lba = (unsigned long long) iop->lba48_capacity[0] |
398                     ((unsigned long long) iop->lba48_capacity[1] << 16) |
399                     ((unsigned long long) iop->lba48_capacity[2] << 32) |
400                     ((unsigned long long) iop->lba48_capacity[3] << 48);
401         } else {
402                 sata_dev_desc[devno].lba48 = 0;
403         }
404 #endif
405
406         /* assuming HD */
407         sata_dev_desc[devno].type = DEV_TYPE_HARDDISK;
408         sata_dev_desc[devno].blksz = ATA_BLOCKSIZE;
409         sata_dev_desc[devno].lun = 0;   /* just to fill something in... */
410 }
411
412 void set_Feature_cmd(int num, int dev)
413 {
414         u8 mask = 0x00, status = 0;
415
416         if (dev == 0)
417                 mask = 0x01;
418         else
419                 mask = 0x02;
420
421         if (!(port[num].dev_mask & mask)) {
422                 debug("dev%d is not present on port#%d\n", dev, num);
423                 return;
424         }
425
426         dev_select(&port[num].ioaddr, dev);
427
428         sata_outb(SETFEATURES_XFER, port[num].ioaddr.feature_addr);
429         sata_outb(XFER_PIO_4, port[num].ioaddr.nsect_addr);
430         sata_outb(0, port[num].ioaddr.lbal_addr);
431         sata_outb(0, port[num].ioaddr.lbam_addr);
432         sata_outb(0, port[num].ioaddr.lbah_addr);
433
434         sata_outb(ATA_DEVICE_OBS, port[num].ioaddr.device_addr);
435         sata_outb(ATA_CMD_SETF, port[num].ioaddr.command_addr);
436
437         udelay(50);
438         mdelay(150);
439
440         status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 5000);
441         if ((status & (ATA_STAT_BUSY | ATA_STAT_ERR))) {
442                 printf("Error  : status 0x%02x\n", status);
443                 port[num].dev_mask &= ~mask;
444         }
445 }
446
447 void sata_port(struct sata_ioports *ioport)
448 {
449         ioport->data_addr = ioport->cmd_addr + ATA_REG_DATA;
450         ioport->error_addr = ioport->cmd_addr + ATA_REG_ERR;
451         ioport->feature_addr = ioport->cmd_addr + ATA_REG_FEATURE;
452         ioport->nsect_addr = ioport->cmd_addr + ATA_REG_NSECT;
453         ioport->lbal_addr = ioport->cmd_addr + ATA_REG_LBAL;
454         ioport->lbam_addr = ioport->cmd_addr + ATA_REG_LBAM;
455         ioport->lbah_addr = ioport->cmd_addr + ATA_REG_LBAH;
456         ioport->device_addr = ioport->cmd_addr + ATA_REG_DEVICE;
457         ioport->status_addr = ioport->cmd_addr + ATA_REG_STATUS;
458         ioport->command_addr = ioport->cmd_addr + ATA_REG_CMD;
459 }
460
461 int sata_devchk(struct sata_ioports *ioaddr, int dev)
462 {
463         u8 nsect, lbal;
464
465         dev_select(ioaddr, dev);
466
467         sata_outb(0x55, ioaddr->nsect_addr);
468         sata_outb(0xaa, ioaddr->lbal_addr);
469
470         sata_outb(0xaa, ioaddr->nsect_addr);
471         sata_outb(0x55, ioaddr->lbal_addr);
472
473         sata_outb(0x55, ioaddr->nsect_addr);
474         sata_outb(0xaa, ioaddr->lbal_addr);
475
476         nsect = sata_inb(ioaddr->nsect_addr);
477         lbal = sata_inb(ioaddr->lbal_addr);
478
479         if ((nsect == 0x55) && (lbal == 0xaa))
480                 return 1;       /* we found a device */
481         else
482                 return 0;       /* nothing found */
483 }
484
485 void dev_select(struct sata_ioports *ioaddr, int dev)
486 {
487         u8 tmp = 0;
488
489         if (dev == 0)
490                 tmp = ATA_DEVICE_OBS;
491         else
492                 tmp = ATA_DEVICE_OBS | ATA_DEV1;
493
494         sata_outb(tmp, ioaddr->device_addr);
495         sata_inb(ioaddr->altstatus_addr);
496         udelay(5);
497 }
498
499 u8 sata_busy_wait(struct sata_ioports *ioaddr, int bits, unsigned int max)
500 {
501         u8 status;
502
503         do {
504                 udelay(1000);
505                 status = sata_chk_status(ioaddr);
506                 max--;
507         } while ((status & bits) && (max > 0));
508
509         return status;
510 }
511
512 u8 sata_chk_status(struct sata_ioports *ioaddr)
513 {
514         return sata_inb(ioaddr->status_addr);
515 }
516
517
518 ulong sata_read(int device, ulong blknr, lbaint_t blkcnt, void *buff)
519 {
520         ulong n = 0, *buffer = (ulong *)buff;
521         u8 dev = 0, num = 0, mask = 0, status = 0;
522
523 #ifdef CONFIG_LBA48
524         unsigned char lba48 = 0;
525
526         if (blknr & 0x0000fffff0000000) {
527                 if (!sata_dev_desc[devno].lba48) {
528                         printf("Drive doesn't support 48-bit addressing\n");
529                         return 0;
530                 }
531                 /* more than 28 bits used, use 48bit mode */
532                 lba48 = 1;
533         }
534 #endif
535         /* Port Number */
536         num = device / CONFIG_SYS_SATA_DEVS_PER_BUS;
537         /* dev on the port */
538         if (device >= CONFIG_SYS_SATA_DEVS_PER_BUS)
539                 dev = device - CONFIG_SYS_SATA_DEVS_PER_BUS;
540         else
541                 dev = device;
542
543         if (dev == 0)
544                 mask = 0x01;
545         else
546                 mask = 0x02;
547
548         if (!(port[num].dev_mask & mask)) {
549                 printf("dev%d is not present on port#%d\n", dev, num);
550                 return 0;
551         }
552
553         /* Select device */
554         dev_select(&port[num].ioaddr, dev);
555
556         status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
557         if (status & ATA_BUSY) {
558                 printf("ata%u failed to respond\n", port[num].port_no);
559                 return n;
560         }
561         while (blkcnt-- > 0) {
562                 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
563                 if (status & ATA_BUSY) {
564                         printf("ata%u failed to respond\n", 0);
565                         return n;
566                 }
567 #ifdef CONFIG_LBA48
568                 if (lba48) {
569                         /* write high bits */
570                         sata_outb(0, port[num].ioaddr.nsect_addr);
571                         sata_outb((blknr >> 24) & 0xFF,
572                                    port[num].ioaddr.lbal_addr);
573                         sata_outb((blknr >> 32) & 0xFF,
574                                    port[num].ioaddr.lbam_addr);
575                         sata_outb((blknr >> 40) & 0xFF,
576                                    port[num].ioaddr.lbah_addr);
577                 }
578 #endif
579                 sata_outb(1, port[num].ioaddr.nsect_addr);
580                 sata_outb(((blknr) >> 0) & 0xFF,
581                            port[num].ioaddr.lbal_addr);
582                 sata_outb((blknr >> 8) & 0xFF, port[num].ioaddr.lbam_addr);
583                 sata_outb((blknr >> 16) & 0xFF, port[num].ioaddr.lbah_addr);
584
585 #ifdef CONFIG_LBA48
586                 if (lba48) {
587                         sata_outb(ATA_LBA, port[num].ioaddr.device_addr);
588                         sata_outb(ATA_CMD_READ_EXT,
589                                    port[num].ioaddr.command_addr);
590                 } else
591 #endif
592                 {
593                         sata_outb(ATA_LBA | ((blknr >> 24) & 0xF),
594                                    port[num].ioaddr.device_addr);
595                         sata_outb(ATA_CMD_READ,
596                                    port[num].ioaddr.command_addr);
597                 }
598
599                 mdelay(50);
600                 /* may take up to 4 sec */
601                 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 4000);
602
603                 if ((status & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR))
604                     != ATA_STAT_DRQ) {
605                         u8 err = 0;
606
607                         printf("Error no DRQ dev %d blk %ld: sts 0x%02x\n",
608                                 device, (ulong) blknr, status);
609                         err = sata_inb(port[num].ioaddr.error_addr);
610                         printf("Error reg = 0x%x\n", err);
611                         return n;
612                 }
613                 input_data(&port[num].ioaddr, buffer, ATA_SECTORWORDS);
614                 sata_inb(port[num].ioaddr.altstatus_addr);
615                 udelay(50);
616
617                 ++n;
618                 ++blknr;
619                 buffer += ATA_SECTORWORDS;
620         }
621         return n;
622 }
623
624 ulong sata_write(int device, ulong blknr, lbaint_t blkcnt, const void *buff)
625 {
626         ulong n = 0, *buffer = (ulong *)buff;
627         unsigned char status = 0, num = 0, dev = 0, mask = 0;
628
629 #ifdef CONFIG_LBA48
630         unsigned char lba48 = 0;
631
632         if (blknr & 0x0000fffff0000000) {
633                 if (!sata_dev_desc[devno].lba48) {
634                         printf("Drive doesn't support 48-bit addressing\n");
635                         return 0;
636                 }
637                 /* more than 28 bits used, use 48bit mode */
638                 lba48 = 1;
639         }
640 #endif
641         /* Port Number */
642         num = device / CONFIG_SYS_SATA_DEVS_PER_BUS;
643         /* dev on the Port */
644         if (device >= CONFIG_SYS_SATA_DEVS_PER_BUS)
645                 dev = device - CONFIG_SYS_SATA_DEVS_PER_BUS;
646         else
647                 dev = device;
648
649         if (dev == 0)
650                 mask = 0x01;
651         else
652                 mask = 0x02;
653
654         /* Select device */
655         dev_select(&port[num].ioaddr, dev);
656
657         status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
658         if (status & ATA_BUSY) {
659                 printf("ata%u failed to respond\n", port[num].port_no);
660                 return n;
661         }
662
663         while (blkcnt-- > 0) {
664                 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
665                 if (status & ATA_BUSY) {
666                         printf("ata%u failed to respond\n",
667                                 port[num].port_no);
668                         return n;
669                 }
670 #ifdef CONFIG_LBA48
671                 if (lba48) {
672                         /* write high bits */
673                         sata_outb(0, port[num].ioaddr.nsect_addr);
674                         sata_outb((blknr >> 24) & 0xFF,
675                                    port[num].ioaddr.lbal_addr);
676                         sata_outb((blknr >> 32) & 0xFF,
677                                    port[num].ioaddr.lbam_addr);
678                         sata_outb((blknr >> 40) & 0xFF,
679                                    port[num].ioaddr.lbah_addr);
680                 }
681 #endif
682                 sata_outb(1, port[num].ioaddr.nsect_addr);
683                 sata_outb((blknr >> 0) & 0xFF, port[num].ioaddr.lbal_addr);
684                 sata_outb((blknr >> 8) & 0xFF, port[num].ioaddr.lbam_addr);
685                 sata_outb((blknr >> 16) & 0xFF, port[num].ioaddr.lbah_addr);
686 #ifdef CONFIG_LBA48
687                 if (lba48) {
688                         sata_outb(ATA_LBA, port[num].ioaddr.device_addr);
689                         sata_outb(ATA_CMD_WRITE_EXT,
690                                    port[num].ioaddr.command_addr);
691                 } else
692 #endif
693                 {
694                         sata_outb(ATA_LBA | ((blknr >> 24) & 0xF),
695                                    port[num].ioaddr.device_addr);
696                         sata_outb(ATA_CMD_WRITE,
697                                    port[num].ioaddr.command_addr);
698                 }
699
700                 mdelay(50);
701                 /* may take up to 4 sec */
702                 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 4000);
703                 if ((status & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR))
704                     != ATA_STAT_DRQ) {
705                         printf("Error no DRQ dev %d blk %ld: sts 0x%02x\n",
706                                 device, (ulong) blknr, status);
707                         return n;
708                 }
709
710                 output_data(&port[num].ioaddr, buffer, ATA_SECTORWORDS);
711                 sata_inb(port[num].ioaddr.altstatus_addr);
712                 udelay(50);
713
714                 ++n;
715                 ++blknr;
716                 buffer += ATA_SECTORWORDS;
717         }
718         return n;
719 }
720
721 int scan_sata(int dev)
722 {
723         return 0;
724 }