blob: 0404771ee4c64bef9b7b1519ae21ba6f2a76e90e [file] [log] [blame]
mushtaq khan5651b342007-04-20 14:23:02 +05301/*
Wolfgang Denk142bdbe2007-05-15 23:38:05 +02002 * 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 */
mushtaq khan5651b342007-04-20 14:23:02 +053023
24/*
Wolfgang Denk142bdbe2007-05-15 23:38:05 +020025 * This file contains SATA controller and SATA drive initialization functions
26 */
mushtaq khan5651b342007-04-20 14:23:02 +053027
28#include <common.h>
Dave Liu8b3eaa12008-03-26 22:47:06 +080029#include <asm/io.h>
mushtaq khan5651b342007-04-20 14:23:02 +053030#include <pci.h>
31#include <command.h>
32#include <config.h>
33#include <asm/byteorder.h>
Dave Liu8b3eaa12008-03-26 22:47:06 +080034#include <part.h>
mushtaq khan5651b342007-04-20 14:23:02 +053035#include <ide.h>
36#include <ata.h>
37
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020038extern block_dev_desc_t sata_dev_desc[CONFIG_SYS_SATA_MAX_DEVICE];
Mike Frysingerb6ade252009-06-14 21:35:22 -040039extern int sata_curr_device;
Dave Liua566ebd2008-03-26 22:50:45 +080040
Tom Rini953f90f2012-09-29 07:35:12 -070041#define DEBUG_SATA 0 /* For debug prints set DEBUG_SATA to 1 */
mushtaq khan5651b342007-04-20 14:23:02 +053042
Dave Liu8b3eaa12008-03-26 22:47:06 +080043#define SATA_DECL
Tom Rini953f90f2012-09-29 07:35:12 -070044#define DRV_DECL /* For file specific declarations */
Dave Liuc2302722008-03-26 22:48:18 +080045#include "ata_piix.h"
mushtaq khan5651b342007-04-20 14:23:02 +053046
Tom Rini953f90f2012-09-29 07:35:12 -070047/* Macros realted to PCI */
mushtaq khan5651b342007-04-20 14:23:02 +053048#define PCI_SATA_BUS 0x00
49#define PCI_SATA_DEV 0x1f
50#define PCI_SATA_FUNC 0x02
51
52#define PCI_SATA_BASE1 0x10
53#define PCI_SATA_BASE2 0x14
54#define PCI_SATA_BASE3 0x18
55#define PCI_SATA_BASE4 0x1c
56#define PCI_SATA_BASE5 0x20
57#define PCI_PMR 0x90
58#define PCI_PI 0x09
59#define PCI_PCS 0x92
60#define PCI_DMA_CTL 0x48
61
62#define PORT_PRESENT (1<<0)
63#define PORT_ENABLED (1<<4)
64
65u32 bdf;
Tom Rini953f90f2012-09-29 07:35:12 -070066u32 iobase1; /* Primary cmd block */
67u32 iobase2; /* Primary ctl block */
68u32 iobase3; /* Sec cmd block */
69u32 iobase4; /* sec ctl block */
70u32 iobase5; /* BMDMA*/
71
72int pci_sata_init(void)
mushtaq khan5651b342007-04-20 14:23:02 +053073{
74 u32 bus = PCI_SATA_BUS;
75 u32 dev = PCI_SATA_DEV;
76 u32 fun = PCI_SATA_FUNC;
77 u16 cmd = 0;
78 u8 lat = 0, pcibios_max_latency = 0xff;
Tom Rini953f90f2012-09-29 07:35:12 -070079 u8 pmr; /* Port mapping reg */
80 u8 pi; /* Prgming Interface reg */
mushtaq khan5651b342007-04-20 14:23:02 +053081
Tom Rini953f90f2012-09-29 07:35:12 -070082 bdf = PCI_BDF(bus, dev, fun);
83 pci_read_config_dword(bdf, PCI_SATA_BASE1, &iobase1);
84 pci_read_config_dword(bdf, PCI_SATA_BASE2, &iobase2);
85 pci_read_config_dword(bdf, PCI_SATA_BASE3, &iobase3);
86 pci_read_config_dword(bdf, PCI_SATA_BASE4, &iobase4);
87 pci_read_config_dword(bdf, PCI_SATA_BASE5, &iobase5);
mushtaq khan5651b342007-04-20 14:23:02 +053088
89 if ((iobase1 == 0xFFFFFFFF) || (iobase2 == 0xFFFFFFFF) ||
90 (iobase3 == 0xFFFFFFFF) || (iobase4 == 0xFFFFFFFF) ||
91 (iobase5 == 0xFFFFFFFF)) {
Tom Rini953f90f2012-09-29 07:35:12 -070092 /* ERROR */
93 printf("error no base addr for SATA controller\n");
mushtaq khan5651b342007-04-20 14:23:02 +053094 return 1;
Tom Rini953f90f2012-09-29 07:35:12 -070095 }
mushtaq khan5651b342007-04-20 14:23:02 +053096
97 iobase1 &= 0xFFFFFFFE;
98 iobase2 &= 0xFFFFFFFE;
99 iobase3 &= 0xFFFFFFFE;
100 iobase4 &= 0xFFFFFFFE;
101 iobase5 &= 0xFFFFFFFE;
102
Tom Rini953f90f2012-09-29 07:35:12 -0700103 /* check for mode */
104 pci_read_config_byte(bdf, PCI_PMR, &pmr);
mushtaq khan5651b342007-04-20 14:23:02 +0530105 if (pmr > 1) {
Tom Rini953f90f2012-09-29 07:35:12 -0700106 puts("combined mode not supported\n");
mushtaq khan5651b342007-04-20 14:23:02 +0530107 return 1;
108 }
109
Tom Rini953f90f2012-09-29 07:35:12 -0700110 pci_read_config_byte(bdf, PCI_PI, &pi);
mushtaq khan5651b342007-04-20 14:23:02 +0530111 if ((pi & 0x05) != 0x05) {
Tom Rini953f90f2012-09-29 07:35:12 -0700112 puts("Sata is in Legacy mode\n");
mushtaq khan5651b342007-04-20 14:23:02 +0530113 return 1;
Tom Rini953f90f2012-09-29 07:35:12 -0700114 } else
115 puts("sata is in Native mode\n");
mushtaq khan5651b342007-04-20 14:23:02 +0530116
Tom Rini953f90f2012-09-29 07:35:12 -0700117 /* MASTER CFG AND IO CFG */
118 pci_read_config_word(bdf, PCI_COMMAND, &cmd);
mushtaq khan5651b342007-04-20 14:23:02 +0530119 cmd |= PCI_COMMAND_MASTER | PCI_COMMAND_IO;
Tom Rini953f90f2012-09-29 07:35:12 -0700120 pci_write_config_word(bdf, PCI_COMMAND, cmd);
121 pci_read_config_byte(dev, PCI_LATENCY_TIMER, &lat);
mushtaq khan5651b342007-04-20 14:23:02 +0530122
123 if (lat < 16)
124 lat = (64 <= pcibios_max_latency) ? 64 : pcibios_max_latency;
125 else if (lat > pcibios_max_latency)
126 lat = pcibios_max_latency;
Tom Rini953f90f2012-09-29 07:35:12 -0700127 pci_write_config_byte(dev, PCI_LATENCY_TIMER, lat);
mushtaq khan5651b342007-04-20 14:23:02 +0530128
129 return 0;
130}
131
Tom Rini953f90f2012-09-29 07:35:12 -0700132int sata_bus_probe(int port_no)
mushtaq khan5651b342007-04-20 14:23:02 +0530133{
134 int orig_mask, mask;
135 u16 pcs;
136
137 mask = (PORT_PRESENT << port_no);
Tom Rini953f90f2012-09-29 07:35:12 -0700138 pci_read_config_word(bdf, PCI_PCS, &pcs);
mushtaq khan5651b342007-04-20 14:23:02 +0530139 orig_mask = (int) pcs & 0xff;
140 if ((orig_mask & mask) != mask)
141 return 0;
142 else
143 return 1;
144}
145
Tom Rini953f90f2012-09-29 07:35:12 -0700146int init_sata(int dev)
mushtaq khan5651b342007-04-20 14:23:02 +0530147{
Tom Rini953f90f2012-09-29 07:35:12 -0700148 static int done;
mushtaq khan5651b342007-04-20 14:23:02 +0530149 u8 i, rv = 0;
150
Dave Liua566ebd2008-03-26 22:50:45 +0800151 if (!done)
152 done = 1;
153 else
154 return 0;
mushtaq khan5651b342007-04-20 14:23:02 +0530155
Tom Rini953f90f2012-09-29 07:35:12 -0700156 rv = pci_sata_init();
mushtaq khan5651b342007-04-20 14:23:02 +0530157 if (rv == 1) {
Tom Rini953f90f2012-09-29 07:35:12 -0700158 puts("pci initialization failed\n");
mushtaq khan5651b342007-04-20 14:23:02 +0530159 return 1;
160 }
161
162 port[0].port_no = 0;
163 port[0].ioaddr.cmd_addr = iobase1;
164 port[0].ioaddr.altstatus_addr = port[0].ioaddr.ctl_addr =
165 iobase2 | ATA_PCI_CTL_OFS;
166 port[0].ioaddr.bmdma_addr = iobase5;
167
168 port[1].port_no = 1;
169 port[1].ioaddr.cmd_addr = iobase3;
170 port[1].ioaddr.altstatus_addr = port[1].ioaddr.ctl_addr =
171 iobase4 | ATA_PCI_CTL_OFS;
172 port[1].ioaddr.bmdma_addr = iobase5 + 0x8;
173
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200174 for (i = 0; i < CONFIG_SYS_SATA_MAXBUS; i++)
Tom Rini953f90f2012-09-29 07:35:12 -0700175 sata_port(&port[i].ioaddr);
mushtaq khan5651b342007-04-20 14:23:02 +0530176
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200177 for (i = 0; i < CONFIG_SYS_SATA_MAXBUS; i++) {
Tom Rini953f90f2012-09-29 07:35:12 -0700178 if (!(sata_bus_probe(i))) {
mushtaq khan5651b342007-04-20 14:23:02 +0530179 port[i].port_state = 0;
Tom Rini953f90f2012-09-29 07:35:12 -0700180 printf("SATA#%d port is not present\n", i);
mushtaq khan5651b342007-04-20 14:23:02 +0530181 } else {
Tom Rini953f90f2012-09-29 07:35:12 -0700182 printf("SATA#%d port is present\n", i);
183 if (sata_bus_softreset(i))
mushtaq khan5651b342007-04-20 14:23:02 +0530184 port[i].port_state = 0;
Tom Rini953f90f2012-09-29 07:35:12 -0700185 else
mushtaq khan5651b342007-04-20 14:23:02 +0530186 port[i].port_state = 1;
mushtaq khan5651b342007-04-20 14:23:02 +0530187 }
188 }
189
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200190 for (i = 0; i < CONFIG_SYS_SATA_MAXBUS; i++) {
mushtaq khan5651b342007-04-20 14:23:02 +0530191 u8 j, devno;
192
193 if (port[i].port_state == 0)
194 continue;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200195 for (j = 0; j < CONFIG_SYS_SATA_DEVS_PER_BUS; j++) {
Tom Rini953f90f2012-09-29 07:35:12 -0700196 sata_identify(i, j);
197 set_Feature_cmd(i, j);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200198 devno = i * CONFIG_SYS_SATA_DEVS_PER_BUS + j;
mushtaq khan5651b342007-04-20 14:23:02 +0530199 if ((sata_dev_desc[devno].lba > 0) &&
200 (sata_dev_desc[devno].blksz > 0)) {
Tom Rini953f90f2012-09-29 07:35:12 -0700201 dev_print(&sata_dev_desc[devno]);
mushtaq khan5651b342007-04-20 14:23:02 +0530202 /* initialize partition type */
Tom Rini953f90f2012-09-29 07:35:12 -0700203 init_part(&sata_dev_desc[devno]);
mushtaq khan5651b342007-04-20 14:23:02 +0530204 }
205 }
206 }
207 return 0;
208}
Dave Liu8b3eaa12008-03-26 22:47:06 +0800209
Tom Rini953f90f2012-09-29 07:35:12 -0700210static inline u8 sata_inb(unsigned long ioaddr)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800211{
Tom Rini953f90f2012-09-29 07:35:12 -0700212 return inb(ioaddr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800213}
214
Tom Rini953f90f2012-09-29 07:35:12 -0700215static inline void sata_outb(unsigned char val, unsigned long ioaddr)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800216{
Tom Rini953f90f2012-09-29 07:35:12 -0700217 outb(val, ioaddr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800218}
219
Tom Rini953f90f2012-09-29 07:35:12 -0700220static void output_data(struct sata_ioports *ioaddr, ulong * sect_buf,
221 int words)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800222{
Tom Rini953f90f2012-09-29 07:35:12 -0700223 outsw(ioaddr->data_addr, sect_buf, words << 1);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800224}
225
Tom Rini953f90f2012-09-29 07:35:12 -0700226static int input_data(struct sata_ioports *ioaddr, ulong * sect_buf, int words)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800227{
Tom Rini953f90f2012-09-29 07:35:12 -0700228 insw(ioaddr->data_addr, sect_buf, words << 1);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800229 return 0;
230}
231
Tom Rini953f90f2012-09-29 07:35:12 -0700232static void sata_cpy(unsigned char *dst, unsigned char *src, unsigned int len)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800233{
234 unsigned char *end, *last;
235
236 last = dst;
237 end = src + len - 1;
238
239 /* reserve space for '\0' */
240 if (len < 2)
241 goto OUT;
242
243 /* skip leading white space */
244 while ((*src) && (src < end) && (*src == ' '))
245 ++src;
246
247 /* copy string, omitting trailing white space */
248 while ((*src) && (src < end)) {
249 *dst++ = *src;
250 if (*src++ != ' ')
251 last = dst;
252 }
Tom Rini953f90f2012-09-29 07:35:12 -0700253OUT:
Dave Liu8b3eaa12008-03-26 22:47:06 +0800254 *last = '\0';
255}
256
Tom Rini953f90f2012-09-29 07:35:12 -0700257int sata_bus_softreset(int num)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800258{
259 u8 dev = 0, status = 0, i;
260
261 port[num].dev_mask = 0;
262
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200263 for (i = 0; i < CONFIG_SYS_SATA_DEVS_PER_BUS; i++) {
Tom Rini953f90f2012-09-29 07:35:12 -0700264 if (!(sata_devchk(&port[num].ioaddr, i))) {
265 debug("dev_chk failed for dev#%d\n", i);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800266 } else {
267 port[num].dev_mask |= (1 << i);
Tom Rini953f90f2012-09-29 07:35:12 -0700268 debug("dev_chk passed for dev#%d\n", i);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800269 }
270 }
271
272 if (!(port[num].dev_mask)) {
Tom Rini953f90f2012-09-29 07:35:12 -0700273 printf("no devices on port%d\n", num);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800274 return 1;
275 }
276
Tom Rini953f90f2012-09-29 07:35:12 -0700277 dev_select(&port[num].ioaddr, dev);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800278
Tom Rini953f90f2012-09-29 07:35:12 -0700279 port[num].ctl_reg = 0x08; /* Default value of control reg */
280 sata_outb(port[num].ctl_reg, port[num].ioaddr.ctl_addr);
281 udelay(10);
282 sata_outb(port[num].ctl_reg | ATA_SRST, port[num].ioaddr.ctl_addr);
283 udelay(10);
284 sata_outb(port[num].ctl_reg, port[num].ioaddr.ctl_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800285
Tom Rini953f90f2012-09-29 07:35:12 -0700286 /*
287 * spec mandates ">= 2ms" before checking status.
Dave Liu8b3eaa12008-03-26 22:47:06 +0800288 * We wait 150ms, because that was the magic delay used for
289 * ATAPI devices in Hale Landis's ATADRVR, for the period of time
290 * between when the ATA command register is written, and then
291 * status is checked. Because waiting for "a while" before
292 * checking status is fine, post SRST, we perform this magic
293 * delay here as well.
294 */
Tom Rini953f90f2012-09-29 07:35:12 -0700295 mdelay(150);
296 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 300);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800297 while ((status & ATA_BUSY)) {
Tom Rini953f90f2012-09-29 07:35:12 -0700298 mdelay(100);
299 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 3);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800300 }
301
302 if (status & ATA_BUSY)
Tom Rini953f90f2012-09-29 07:35:12 -0700303 printf("ata%u is slow to respond,plz be patient\n", num);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800304
305 while ((status & ATA_BUSY)) {
Tom Rini953f90f2012-09-29 07:35:12 -0700306 mdelay(100);
307 status = sata_chk_status(&port[num].ioaddr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800308 }
309
310 if (status & ATA_BUSY) {
Tom Rini953f90f2012-09-29 07:35:12 -0700311 printf("ata%u failed to respond : bus reset failed\n", num);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800312 return 1;
313 }
314 return 0;
315}
316
Tom Rini953f90f2012-09-29 07:35:12 -0700317void sata_identify(int num, int dev)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800318{
Tom Rini953f90f2012-09-29 07:35:12 -0700319 u8 cmd = 0, status = 0;
320 u8 devno = num * CONFIG_SYS_SATA_DEVS_PER_BUS + dev;
Dave Liu8b3eaa12008-03-26 22:47:06 +0800321 u16 iobuf[ATA_SECT_SIZE];
322 u64 n_sectors = 0;
323 u8 mask = 0;
324
Tom Rini953f90f2012-09-29 07:35:12 -0700325 memset(iobuf, 0, sizeof(iobuf));
Dave Liu8b3eaa12008-03-26 22:47:06 +0800326 hd_driveid_t *iop = (hd_driveid_t *) iobuf;
327
328 if (dev == 0)
329 mask = 0x01;
330 else
331 mask = 0x02;
332
333 if (!(port[num].dev_mask & mask)) {
Tom Rini953f90f2012-09-29 07:35:12 -0700334 printf("dev%d is not present on port#%d\n", dev, num);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800335 return;
336 }
337
Tom Rini953f90f2012-09-29 07:35:12 -0700338 printf("port=%d dev=%d\n", num, dev);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800339
Tom Rini953f90f2012-09-29 07:35:12 -0700340 dev_select(&port[num].ioaddr, dev);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800341
342 status = 0;
Tom Rini953f90f2012-09-29 07:35:12 -0700343 cmd = ATA_CMD_IDENT; /* Device Identify Command */
344 sata_outb(cmd, port[num].ioaddr.command_addr);
345 sata_inb(port[num].ioaddr.altstatus_addr);
346 udelay(10);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800347
Tom Rini953f90f2012-09-29 07:35:12 -0700348 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 1000);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800349 if (status & ATA_ERR) {
Tom Rini953f90f2012-09-29 07:35:12 -0700350 puts("\ndevice not responding\n");
Dave Liu8b3eaa12008-03-26 22:47:06 +0800351 port[num].dev_mask &= ~mask;
352 return;
353 }
354
Tom Rini953f90f2012-09-29 07:35:12 -0700355 input_data(&port[num].ioaddr, (ulong *) iobuf, ATA_SECTORWORDS);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800356
Tom Rini953f90f2012-09-29 07:35:12 -0700357 debug("\nata%u: dev %u cfg 49:%04x 82:%04x 83:%04x 84:%04x85:%04x"
Dave Liu8b3eaa12008-03-26 22:47:06 +0800358 "86:%04x" "87:%04x 88:%04x\n", num, dev, iobuf[49],
359 iobuf[82], iobuf[83], iobuf[84], iobuf[85], iobuf[86],
360 iobuf[87], iobuf[88]);
361
362 /* we require LBA and DMA support (bits 8 & 9 of word 49) */
Tom Rini953f90f2012-09-29 07:35:12 -0700363 if (!ata_id_has_dma(iobuf) || !ata_id_has_lba(iobuf))
364 debug("ata%u: no dma/lba\n", num);
365 ata_dump_id(iobuf);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800366
Tom Rini953f90f2012-09-29 07:35:12 -0700367 if (ata_id_has_lba48(iobuf))
368 n_sectors = ata_id_u64(iobuf, 100);
369 else
370 n_sectors = ata_id_u32(iobuf, 60);
371 debug("no. of sectors %u\n", ata_id_u64(iobuf, 100));
372 debug("no. of sectors %u\n", ata_id_u32(iobuf, 60));
Dave Liu8b3eaa12008-03-26 22:47:06 +0800373
374 if (n_sectors == 0) {
375 port[num].dev_mask &= ~mask;
376 return;
377 }
378
Tom Rini953f90f2012-09-29 07:35:12 -0700379 sata_cpy((unsigned char *)sata_dev_desc[devno].revision, iop->fw_rev,
380 sizeof(sata_dev_desc[devno].revision));
381 sata_cpy((unsigned char *)sata_dev_desc[devno].vendor, iop->model,
382 sizeof(sata_dev_desc[devno].vendor));
383 sata_cpy((unsigned char *)sata_dev_desc[devno].product, iop->serial_no,
384 sizeof(sata_dev_desc[devno].product));
385 strswab(sata_dev_desc[devno].revision);
386 strswab(sata_dev_desc[devno].vendor);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800387
Tom Rini953f90f2012-09-29 07:35:12 -0700388 if ((iop->config & 0x0080) == 0x0080)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800389 sata_dev_desc[devno].removable = 1;
Tom Rini953f90f2012-09-29 07:35:12 -0700390 else
Dave Liu8b3eaa12008-03-26 22:47:06 +0800391 sata_dev_desc[devno].removable = 0;
Dave Liu8b3eaa12008-03-26 22:47:06 +0800392
393 sata_dev_desc[devno].lba = iop->lba_capacity;
Tom Rini953f90f2012-09-29 07:35:12 -0700394 debug("lba=0x%x", sata_dev_desc[devno].lba);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800395
396#ifdef CONFIG_LBA48
397 if (iop->command_set_2 & 0x0400) {
398 sata_dev_desc[devno].lba48 = 1;
399 lba = (unsigned long long) iop->lba48_capacity[0] |
400 ((unsigned long long) iop->lba48_capacity[1] << 16) |
401 ((unsigned long long) iop->lba48_capacity[2] << 32) |
402 ((unsigned long long) iop->lba48_capacity[3] << 48);
403 } else {
404 sata_dev_desc[devno].lba48 = 0;
405 }
406#endif
407
408 /* assuming HD */
409 sata_dev_desc[devno].type = DEV_TYPE_HARDDISK;
410 sata_dev_desc[devno].blksz = ATA_BLOCKSIZE;
411 sata_dev_desc[devno].lun = 0; /* just to fill something in... */
412}
413
Tom Rini953f90f2012-09-29 07:35:12 -0700414void set_Feature_cmd(int num, int dev)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800415{
416 u8 mask = 0x00, status = 0;
417
418 if (dev == 0)
419 mask = 0x01;
420 else
421 mask = 0x02;
422
423 if (!(port[num].dev_mask & mask)) {
Tom Rini953f90f2012-09-29 07:35:12 -0700424 debug("dev%d is not present on port#%d\n", dev, num);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800425 return;
426 }
427
Tom Rini953f90f2012-09-29 07:35:12 -0700428 dev_select(&port[num].ioaddr, dev);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800429
Tom Rini953f90f2012-09-29 07:35:12 -0700430 sata_outb(SETFEATURES_XFER, port[num].ioaddr.feature_addr);
431 sata_outb(XFER_PIO_4, port[num].ioaddr.nsect_addr);
432 sata_outb(0, port[num].ioaddr.lbal_addr);
433 sata_outb(0, port[num].ioaddr.lbam_addr);
434 sata_outb(0, port[num].ioaddr.lbah_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800435
Tom Rini953f90f2012-09-29 07:35:12 -0700436 sata_outb(ATA_DEVICE_OBS, port[num].ioaddr.device_addr);
437 sata_outb(ATA_CMD_SETF, port[num].ioaddr.command_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800438
Tom Rini953f90f2012-09-29 07:35:12 -0700439 udelay(50);
440 mdelay(150);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800441
Tom Rini953f90f2012-09-29 07:35:12 -0700442 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 5000);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800443 if ((status & (ATA_STAT_BUSY | ATA_STAT_ERR))) {
Tom Rini953f90f2012-09-29 07:35:12 -0700444 printf("Error : status 0x%02x\n", status);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800445 port[num].dev_mask &= ~mask;
446 }
447}
448
Tom Rini953f90f2012-09-29 07:35:12 -0700449void sata_port(struct sata_ioports *ioport)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800450{
451 ioport->data_addr = ioport->cmd_addr + ATA_REG_DATA;
452 ioport->error_addr = ioport->cmd_addr + ATA_REG_ERR;
453 ioport->feature_addr = ioport->cmd_addr + ATA_REG_FEATURE;
454 ioport->nsect_addr = ioport->cmd_addr + ATA_REG_NSECT;
455 ioport->lbal_addr = ioport->cmd_addr + ATA_REG_LBAL;
456 ioport->lbam_addr = ioport->cmd_addr + ATA_REG_LBAM;
457 ioport->lbah_addr = ioport->cmd_addr + ATA_REG_LBAH;
458 ioport->device_addr = ioport->cmd_addr + ATA_REG_DEVICE;
459 ioport->status_addr = ioport->cmd_addr + ATA_REG_STATUS;
460 ioport->command_addr = ioport->cmd_addr + ATA_REG_CMD;
461}
462
Tom Rini953f90f2012-09-29 07:35:12 -0700463int sata_devchk(struct sata_ioports *ioaddr, int dev)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800464{
465 u8 nsect, lbal;
466
Tom Rini953f90f2012-09-29 07:35:12 -0700467 dev_select(ioaddr, dev);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800468
Tom Rini953f90f2012-09-29 07:35:12 -0700469 sata_outb(0x55, ioaddr->nsect_addr);
470 sata_outb(0xaa, ioaddr->lbal_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800471
Tom Rini953f90f2012-09-29 07:35:12 -0700472 sata_outb(0xaa, ioaddr->nsect_addr);
473 sata_outb(0x55, ioaddr->lbal_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800474
Tom Rini953f90f2012-09-29 07:35:12 -0700475 sata_outb(0x55, ioaddr->nsect_addr);
476 sata_outb(0xaa, ioaddr->lbal_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800477
Tom Rini953f90f2012-09-29 07:35:12 -0700478 nsect = sata_inb(ioaddr->nsect_addr);
479 lbal = sata_inb(ioaddr->lbal_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800480
481 if ((nsect == 0x55) && (lbal == 0xaa))
482 return 1; /* we found a device */
483 else
484 return 0; /* nothing found */
485}
486
Tom Rini953f90f2012-09-29 07:35:12 -0700487void dev_select(struct sata_ioports *ioaddr, int dev)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800488{
489 u8 tmp = 0;
490
491 if (dev == 0)
492 tmp = ATA_DEVICE_OBS;
493 else
494 tmp = ATA_DEVICE_OBS | ATA_DEV1;
495
Tom Rini953f90f2012-09-29 07:35:12 -0700496 sata_outb(tmp, ioaddr->device_addr);
497 sata_inb(ioaddr->altstatus_addr);
498 udelay(5);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800499}
500
Tom Rini953f90f2012-09-29 07:35:12 -0700501u8 sata_busy_wait(struct sata_ioports *ioaddr, int bits, unsigned int max)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800502{
503 u8 status;
504
505 do {
Tom Rini953f90f2012-09-29 07:35:12 -0700506 udelay(1000);
507 status = sata_chk_status(ioaddr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800508 max--;
509 } while ((status & bits) && (max > 0));
510
511 return status;
512}
513
Tom Rini953f90f2012-09-29 07:35:12 -0700514u8 sata_chk_status(struct sata_ioports *ioaddr)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800515{
Tom Rini953f90f2012-09-29 07:35:12 -0700516 return sata_inb(ioaddr->status_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800517}
518
Dave Liu8b3eaa12008-03-26 22:47:06 +0800519
Tom Rini953f90f2012-09-29 07:35:12 -0700520ulong sata_read(int device, ulong blknr, lbaint_t blkcnt, void *buff)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800521{
522 ulong n = 0, *buffer = (ulong *)buff;
523 u8 dev = 0, num = 0, mask = 0, status = 0;
524
525#ifdef CONFIG_LBA48
526 unsigned char lba48 = 0;
527
528 if (blknr & 0x0000fffff0000000) {
529 if (!sata_dev_desc[devno].lba48) {
Tom Rini953f90f2012-09-29 07:35:12 -0700530 printf("Drive doesn't support 48-bit addressing\n");
Dave Liu8b3eaa12008-03-26 22:47:06 +0800531 return 0;
532 }
533 /* more than 28 bits used, use 48bit mode */
534 lba48 = 1;
535 }
536#endif
Tom Rini953f90f2012-09-29 07:35:12 -0700537 /* Port Number */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200538 num = device / CONFIG_SYS_SATA_DEVS_PER_BUS;
Tom Rini953f90f2012-09-29 07:35:12 -0700539 /* dev on the port */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200540 if (device >= CONFIG_SYS_SATA_DEVS_PER_BUS)
541 dev = device - CONFIG_SYS_SATA_DEVS_PER_BUS;
Dave Liu8b3eaa12008-03-26 22:47:06 +0800542 else
543 dev = device;
544
545 if (dev == 0)
546 mask = 0x01;
547 else
548 mask = 0x02;
549
550 if (!(port[num].dev_mask & mask)) {
Tom Rini953f90f2012-09-29 07:35:12 -0700551 printf("dev%d is not present on port#%d\n", dev, num);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800552 return 0;
553 }
554
555 /* Select device */
Tom Rini953f90f2012-09-29 07:35:12 -0700556 dev_select(&port[num].ioaddr, dev);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800557
Tom Rini953f90f2012-09-29 07:35:12 -0700558 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800559 if (status & ATA_BUSY) {
Tom Rini953f90f2012-09-29 07:35:12 -0700560 printf("ata%u failed to respond\n", port[num].port_no);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800561 return n;
562 }
563 while (blkcnt-- > 0) {
Tom Rini953f90f2012-09-29 07:35:12 -0700564 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800565 if (status & ATA_BUSY) {
Tom Rini953f90f2012-09-29 07:35:12 -0700566 printf("ata%u failed to respond\n", 0);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800567 return n;
568 }
569#ifdef CONFIG_LBA48
570 if (lba48) {
571 /* write high bits */
Tom Rini953f90f2012-09-29 07:35:12 -0700572 sata_outb(0, port[num].ioaddr.nsect_addr);
573 sata_outb((blknr >> 24) & 0xFF,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800574 port[num].ioaddr.lbal_addr);
Tom Rini953f90f2012-09-29 07:35:12 -0700575 sata_outb((blknr >> 32) & 0xFF,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800576 port[num].ioaddr.lbam_addr);
Tom Rini953f90f2012-09-29 07:35:12 -0700577 sata_outb((blknr >> 40) & 0xFF,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800578 port[num].ioaddr.lbah_addr);
579 }
580#endif
Tom Rini953f90f2012-09-29 07:35:12 -0700581 sata_outb(1, port[num].ioaddr.nsect_addr);
582 sata_outb(((blknr) >> 0) & 0xFF,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800583 port[num].ioaddr.lbal_addr);
Tom Rini953f90f2012-09-29 07:35:12 -0700584 sata_outb((blknr >> 8) & 0xFF, port[num].ioaddr.lbam_addr);
585 sata_outb((blknr >> 16) & 0xFF, port[num].ioaddr.lbah_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800586
587#ifdef CONFIG_LBA48
588 if (lba48) {
Tom Rini953f90f2012-09-29 07:35:12 -0700589 sata_outb(ATA_LBA, port[num].ioaddr.device_addr);
590 sata_outb(ATA_CMD_READ_EXT,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800591 port[num].ioaddr.command_addr);
592 } else
593#endif
594 {
Tom Rini953f90f2012-09-29 07:35:12 -0700595 sata_outb(ATA_LBA | ((blknr >> 24) & 0xF),
Dave Liu8b3eaa12008-03-26 22:47:06 +0800596 port[num].ioaddr.device_addr);
Tom Rini953f90f2012-09-29 07:35:12 -0700597 sata_outb(ATA_CMD_READ,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800598 port[num].ioaddr.command_addr);
599 }
600
Tom Rini953f90f2012-09-29 07:35:12 -0700601 mdelay(50);
602 /* may take up to 4 sec */
603 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 4000);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800604
605 if ((status & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR))
606 != ATA_STAT_DRQ) {
607 u8 err = 0;
608
Tom Rini953f90f2012-09-29 07:35:12 -0700609 printf("Error no DRQ dev %d blk %ld: sts 0x%02x\n",
Dave Liu8b3eaa12008-03-26 22:47:06 +0800610 device, (ulong) blknr, status);
Tom Rini953f90f2012-09-29 07:35:12 -0700611 err = sata_inb(port[num].ioaddr.error_addr);
612 printf("Error reg = 0x%x\n", err);
613 return n;
Dave Liu8b3eaa12008-03-26 22:47:06 +0800614 }
Tom Rini953f90f2012-09-29 07:35:12 -0700615 input_data(&port[num].ioaddr, buffer, ATA_SECTORWORDS);
616 sata_inb(port[num].ioaddr.altstatus_addr);
617 udelay(50);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800618
619 ++n;
620 ++blknr;
621 buffer += ATA_SECTORWORDS;
622 }
623 return n;
624}
625
Tom Rini953f90f2012-09-29 07:35:12 -0700626ulong sata_write(int device, ulong blknr, lbaint_t blkcnt, void *buff)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800627{
628 ulong n = 0, *buffer = (ulong *)buff;
629 unsigned char status = 0, num = 0, dev = 0, mask = 0;
630
631#ifdef CONFIG_LBA48
632 unsigned char lba48 = 0;
633
634 if (blknr & 0x0000fffff0000000) {
635 if (!sata_dev_desc[devno].lba48) {
Tom Rini953f90f2012-09-29 07:35:12 -0700636 printf("Drive doesn't support 48-bit addressing\n");
Dave Liu8b3eaa12008-03-26 22:47:06 +0800637 return 0;
638 }
639 /* more than 28 bits used, use 48bit mode */
640 lba48 = 1;
641 }
642#endif
Tom Rini953f90f2012-09-29 07:35:12 -0700643 /* Port Number */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200644 num = device / CONFIG_SYS_SATA_DEVS_PER_BUS;
Tom Rini953f90f2012-09-29 07:35:12 -0700645 /* dev on the Port */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200646 if (device >= CONFIG_SYS_SATA_DEVS_PER_BUS)
647 dev = device - CONFIG_SYS_SATA_DEVS_PER_BUS;
Dave Liu8b3eaa12008-03-26 22:47:06 +0800648 else
649 dev = device;
650
651 if (dev == 0)
652 mask = 0x01;
653 else
654 mask = 0x02;
655
656 /* Select device */
Tom Rini953f90f2012-09-29 07:35:12 -0700657 dev_select(&port[num].ioaddr, dev);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800658
Tom Rini953f90f2012-09-29 07:35:12 -0700659 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800660 if (status & ATA_BUSY) {
Tom Rini953f90f2012-09-29 07:35:12 -0700661 printf("ata%u failed to respond\n", port[num].port_no);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800662 return n;
663 }
664
665 while (blkcnt-- > 0) {
Tom Rini953f90f2012-09-29 07:35:12 -0700666 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 500);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800667 if (status & ATA_BUSY) {
Tom Rini953f90f2012-09-29 07:35:12 -0700668 printf("ata%u failed to respond\n",
Dave Liu8b3eaa12008-03-26 22:47:06 +0800669 port[num].port_no);
670 return n;
671 }
672#ifdef CONFIG_LBA48
673 if (lba48) {
674 /* write high bits */
Tom Rini953f90f2012-09-29 07:35:12 -0700675 sata_outb(0, port[num].ioaddr.nsect_addr);
676 sata_outb((blknr >> 24) & 0xFF,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800677 port[num].ioaddr.lbal_addr);
Tom Rini953f90f2012-09-29 07:35:12 -0700678 sata_outb((blknr >> 32) & 0xFF,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800679 port[num].ioaddr.lbam_addr);
Tom Rini953f90f2012-09-29 07:35:12 -0700680 sata_outb((blknr >> 40) & 0xFF,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800681 port[num].ioaddr.lbah_addr);
682 }
683#endif
Tom Rini953f90f2012-09-29 07:35:12 -0700684 sata_outb(1, port[num].ioaddr.nsect_addr);
685 sata_outb((blknr >> 0) & 0xFF, port[num].ioaddr.lbal_addr);
686 sata_outb((blknr >> 8) & 0xFF, port[num].ioaddr.lbam_addr);
687 sata_outb((blknr >> 16) & 0xFF, port[num].ioaddr.lbah_addr);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800688#ifdef CONFIG_LBA48
689 if (lba48) {
Tom Rini953f90f2012-09-29 07:35:12 -0700690 sata_outb(ATA_LBA, port[num].ioaddr.device_addr);
691 sata_outb(ATA_CMD_WRITE_EXT,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800692 port[num].ioaddr.command_addr);
693 } else
694#endif
695 {
Tom Rini953f90f2012-09-29 07:35:12 -0700696 sata_outb(ATA_LBA | ((blknr >> 24) & 0xF),
Dave Liu8b3eaa12008-03-26 22:47:06 +0800697 port[num].ioaddr.device_addr);
Tom Rini953f90f2012-09-29 07:35:12 -0700698 sata_outb(ATA_CMD_WRITE,
Dave Liu8b3eaa12008-03-26 22:47:06 +0800699 port[num].ioaddr.command_addr);
700 }
701
Tom Rini953f90f2012-09-29 07:35:12 -0700702 mdelay(50);
703 /* may take up to 4 sec */
704 status = sata_busy_wait(&port[num].ioaddr, ATA_BUSY, 4000);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800705 if ((status & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR))
706 != ATA_STAT_DRQ) {
Tom Rini953f90f2012-09-29 07:35:12 -0700707 printf("Error no DRQ dev %d blk %ld: sts 0x%02x\n",
Dave Liu8b3eaa12008-03-26 22:47:06 +0800708 device, (ulong) blknr, status);
Tom Rini953f90f2012-09-29 07:35:12 -0700709 return n;
Dave Liu8b3eaa12008-03-26 22:47:06 +0800710 }
711
Tom Rini953f90f2012-09-29 07:35:12 -0700712 output_data(&port[num].ioaddr, buffer, ATA_SECTORWORDS);
713 sata_inb(port[num].ioaddr.altstatus_addr);
714 udelay(50);
Dave Liu8b3eaa12008-03-26 22:47:06 +0800715
716 ++n;
717 ++blknr;
718 buffer += ATA_SECTORWORDS;
719 }
720 return n;
721}
722
Dave Liua566ebd2008-03-26 22:50:45 +0800723int scan_sata(int dev)
Dave Liu8b3eaa12008-03-26 22:47:06 +0800724{
Dave Liua566ebd2008-03-26 22:50:45 +0800725 return 0;
Dave Liu8b3eaa12008-03-26 22:47:06 +0800726}