]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/ata/sata_promise.c
sata_promise: disable hotplug on 1st gen chips
[net-next-2.6.git] / drivers / ata / sata_promise.c
CommitLineData
1da177e4
LT
1/*
2 * sata_promise.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
5595ddf9 5 * Mikael Pettersson <mikpe@it.uu.se>
1da177e4
LT
6 * Please ALWAYS copy linux-ide@vger.kernel.org
7 * on emails.
8 *
9 * Copyright 2003-2004 Red Hat, Inc.
10 *
1da177e4 11 *
af36d7f0
JG
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2, or (at your option)
15 * any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; see the file COPYING. If not, write to
24 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
26 *
27 * libata documentation is available via 'make {ps|pdf}docs',
28 * as Documentation/DocBook/libata.*
29 *
30 * Hardware information only available under NDA.
1da177e4
LT
31 *
32 */
33
34#include <linux/kernel.h>
35#include <linux/module.h>
36#include <linux/pci.h>
37#include <linux/init.h>
38#include <linux/blkdev.h>
39#include <linux/delay.h>
40#include <linux/interrupt.h>
a9524a76 41#include <linux/device.h>
95006188 42#include <scsi/scsi.h>
1da177e4 43#include <scsi/scsi_host.h>
193515d5 44#include <scsi/scsi_cmnd.h>
1da177e4 45#include <linux/libata.h>
1da177e4
LT
46#include "sata_promise.h"
47
48#define DRV_NAME "sata_promise"
c07a9c49 49#define DRV_VERSION "2.12"
1da177e4
LT
50
51enum {
eca25dca 52 PDC_MAX_PORTS = 4,
0d5ff566 53 PDC_MMIO_BAR = 3,
b9ccd4a9 54 PDC_MAX_PRD = LIBATA_MAX_PRD - 1, /* -1 for ASIC PRD bug workaround */
0d5ff566 55
821d22cd
MP
56 /* host register offsets (from host->iomap[PDC_MMIO_BAR]) */
57 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
58 PDC_FLASH_CTL = 0x44, /* Flash control register */
59 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
60 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
61 PDC_TBG_MODE = 0x41C, /* TBG mode (not SATAII) */
62 PDC_SLEW_CTL = 0x470, /* slew rate control reg (not SATAII) */
63
64 /* per-port ATA register offsets (from ap->ioaddr.cmd_addr) */
95006188
MP
65 PDC_FEATURE = 0x04, /* Feature/Error reg (per port) */
66 PDC_SECTOR_COUNT = 0x08, /* Sector count reg (per port) */
67 PDC_SECTOR_NUMBER = 0x0C, /* Sector number reg (per port) */
68 PDC_CYLINDER_LOW = 0x10, /* Cylinder low reg (per port) */
69 PDC_CYLINDER_HIGH = 0x14, /* Cylinder high reg (per port) */
70 PDC_DEVICE = 0x18, /* Device/Head reg (per port) */
71 PDC_COMMAND = 0x1C, /* Command/status reg (per port) */
73fd456b 72 PDC_ALTSTATUS = 0x38, /* Alternate-status/device-control reg (per port) */
1da177e4 73 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
1da177e4
LT
74 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
75 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
821d22cd
MP
76
77 /* per-port SATA register offsets (from ap->ioaddr.scr_addr) */
78 PDC_PHYMODE4 = 0x14,
1da177e4 79
176efb05
MP
80 /* PDC_GLOBAL_CTL bit definitions */
81 PDC_PH_ERR = (1 << 8), /* PCI error while loading packet */
82 PDC_SH_ERR = (1 << 9), /* PCI error while loading S/G table */
83 PDC_DH_ERR = (1 << 10), /* PCI error while loading data */
84 PDC2_HTO_ERR = (1 << 12), /* host bus timeout */
85 PDC2_ATA_HBA_ERR = (1 << 13), /* error during SATA DATA FIS transmission */
86 PDC2_ATA_DMA_CNT_ERR = (1 << 14), /* DMA DATA FIS size differs from S/G count */
87 PDC_OVERRUN_ERR = (1 << 19), /* S/G byte count larger than HD requires */
88 PDC_UNDERRUN_ERR = (1 << 20), /* S/G byte count less than HD requires */
89 PDC_DRIVE_ERR = (1 << 21), /* drive error */
90 PDC_PCI_SYS_ERR = (1 << 22), /* PCI system error */
91 PDC1_PCI_PARITY_ERR = (1 << 23), /* PCI parity error (from SATA150 driver) */
92 PDC1_ERR_MASK = PDC1_PCI_PARITY_ERR,
5796d1c4
JG
93 PDC2_ERR_MASK = PDC2_HTO_ERR | PDC2_ATA_HBA_ERR |
94 PDC2_ATA_DMA_CNT_ERR,
95 PDC_ERR_MASK = PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR |
96 PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR |
97 PDC_DRIVE_ERR | PDC_PCI_SYS_ERR |
98 PDC1_ERR_MASK | PDC2_ERR_MASK,
1da177e4
LT
99
100 board_2037x = 0, /* FastTrak S150 TX2plus */
eca25dca
TH
101 board_2037x_pata = 1, /* FastTrak S150 TX2plus PATA port */
102 board_20319 = 2, /* FastTrak S150 TX4 */
103 board_20619 = 3, /* FastTrak TX4000 */
104 board_2057x = 4, /* SATAII150 Tx2plus */
d0e58031 105 board_2057x_pata = 5, /* SATAII150 Tx2plus PATA port */
eca25dca 106 board_40518 = 6, /* SATAII150 Tx4 */
1da177e4 107
6340f019 108 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
1da177e4 109
95006188
MP
110 /* Sequence counter control registers bit definitions */
111 PDC_SEQCNTRL_INT_MASK = (1 << 5), /* Sequence Interrupt Mask */
112
113 /* Feature register values */
114 PDC_FEATURE_ATAPI_PIO = 0x00, /* ATAPI data xfer by PIO */
115 PDC_FEATURE_ATAPI_DMA = 0x01, /* ATAPI data xfer by DMA */
116
117 /* Device/Head register values */
118 PDC_DEVICE_SATA = 0xE0, /* Device/Head value for SATA devices */
119
25b93d81
MP
120 /* PDC_CTLSTAT bit definitions */
121 PDC_DMA_ENABLE = (1 << 7),
122 PDC_IRQ_DISABLE = (1 << 10),
1da177e4 123 PDC_RESET = (1 << 11), /* HDMA reset */
50630195 124
25b93d81 125 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY |
95006188 126 ATA_FLAG_MMIO |
3d0a59c0 127 ATA_FLAG_PIO_POLLING,
b2d1eee1 128
eca25dca
TH
129 /* ap->flags bits */
130 PDC_FLAG_GEN_II = (1 << 24),
131 PDC_FLAG_SATA_PATA = (1 << 25), /* supports SATA + PATA */
132 PDC_FLAG_4_PORTS = (1 << 26), /* 4 ports */
1da177e4
LT
133};
134
1da177e4
LT
135struct pdc_port_priv {
136 u8 *pkt;
137 dma_addr_t pkt_dma;
138};
139
82ef04fb
TH
140static int pdc_sata_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
141static int pdc_sata_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
7715a6f9 142static int pdc_ata_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
eca25dca
TH
143static int pdc_common_port_start(struct ata_port *ap);
144static int pdc_sata_port_start(struct ata_port *ap);
1da177e4 145static void pdc_qc_prep(struct ata_queued_cmd *qc);
057ace5e
JG
146static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
147static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
95006188 148static int pdc_check_atapi_dma(struct ata_queued_cmd *qc);
724114a5 149static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc);
1da177e4 150static void pdc_irq_clear(struct ata_port *ap);
9363c382 151static unsigned int pdc_qc_issue(struct ata_queued_cmd *qc);
25b93d81 152static void pdc_freeze(struct ata_port *ap);
c07a9c49 153static void pdc_sata_freeze(struct ata_port *ap);
25b93d81 154static void pdc_thaw(struct ata_port *ap);
c07a9c49 155static void pdc_sata_thaw(struct ata_port *ap);
cadef677
MP
156static int pdc_pata_softreset(struct ata_link *link, unsigned int *class,
157 unsigned long deadline);
158static int pdc_sata_hardreset(struct ata_link *link, unsigned int *class,
159 unsigned long deadline);
a1efdaba 160static void pdc_error_handler(struct ata_port *ap);
25b93d81 161static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
724114a5
MP
162static int pdc_pata_cable_detect(struct ata_port *ap);
163static int pdc_sata_cable_detect(struct ata_port *ap);
374b1873 164
193515d5 165static struct scsi_host_template pdc_ata_sht = {
68d1d07b 166 ATA_BASE_SHT(DRV_NAME),
b9ccd4a9 167 .sg_tablesize = PDC_MAX_PRD,
1da177e4 168 .dma_boundary = ATA_DMA_BOUNDARY,
1da177e4
LT
169};
170
029cfd6b
TH
171static const struct ata_port_operations pdc_common_ops = {
172 .inherits = &ata_sff_port_ops,
173
5682ed33
TH
174 .sff_tf_load = pdc_tf_load_mmio,
175 .sff_exec_command = pdc_exec_command_mmio,
95006188 176 .check_atapi_dma = pdc_check_atapi_dma,
95006188 177 .qc_prep = pdc_qc_prep,
9363c382 178 .qc_issue = pdc_qc_issue,
c96f1732 179
5682ed33 180 .sff_irq_clear = pdc_irq_clear,
c96f1732 181 .lost_interrupt = ATA_OP_NULL,
95006188 182
029cfd6b 183 .post_internal_cmd = pdc_post_internal_cmd,
a1efdaba 184 .error_handler = pdc_error_handler,
95006188
MP
185};
186
029cfd6b
TH
187static struct ata_port_operations pdc_sata_ops = {
188 .inherits = &pdc_common_ops,
189 .cable_detect = pdc_sata_cable_detect,
c07a9c49
MP
190 .freeze = pdc_sata_freeze,
191 .thaw = pdc_sata_thaw,
1da177e4
LT
192 .scr_read = pdc_sata_scr_read,
193 .scr_write = pdc_sata_scr_write,
eca25dca 194 .port_start = pdc_sata_port_start,
cadef677 195 .hardreset = pdc_sata_hardreset,
1da177e4
LT
196};
197
0ae6654d
MP
198/* First-generation chips need a more restrictive ->check_atapi_dma op,
199 and ->freeze/thaw that ignore the hotplug controls. */
029cfd6b
TH
200static struct ata_port_operations pdc_old_sata_ops = {
201 .inherits = &pdc_sata_ops,
0ae6654d
MP
202 .freeze = pdc_freeze,
203 .thaw = pdc_thaw,
029cfd6b
TH
204 .check_atapi_dma = pdc_old_sata_check_atapi_dma,
205};
2cba582a 206
029cfd6b
TH
207static struct ata_port_operations pdc_pata_ops = {
208 .inherits = &pdc_common_ops,
209 .cable_detect = pdc_pata_cable_detect,
5387373b
MP
210 .freeze = pdc_freeze,
211 .thaw = pdc_thaw,
eca25dca 212 .port_start = pdc_common_port_start,
cadef677 213 .softreset = pdc_pata_softreset,
2cba582a
JG
214};
215
98ac62de 216static const struct ata_port_info pdc_port_info[] = {
5595ddf9 217 [board_2037x] =
1da177e4 218 {
eca25dca
TH
219 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
220 PDC_FLAG_SATA_PATA,
14bdef98
EIB
221 .pio_mask = ATA_PIO4,
222 .mwdma_mask = ATA_MWDMA2,
469248ab 223 .udma_mask = ATA_UDMA6,
95006188 224 .port_ops = &pdc_old_sata_ops,
1da177e4
LT
225 },
226
5595ddf9 227 [board_2037x_pata] =
eca25dca
TH
228 {
229 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
14bdef98
EIB
230 .pio_mask = ATA_PIO4,
231 .mwdma_mask = ATA_MWDMA2,
469248ab 232 .udma_mask = ATA_UDMA6,
eca25dca
TH
233 .port_ops = &pdc_pata_ops,
234 },
235
5595ddf9 236 [board_20319] =
1da177e4 237 {
eca25dca
TH
238 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
239 PDC_FLAG_4_PORTS,
14bdef98
EIB
240 .pio_mask = ATA_PIO4,
241 .mwdma_mask = ATA_MWDMA2,
469248ab 242 .udma_mask = ATA_UDMA6,
95006188 243 .port_ops = &pdc_old_sata_ops,
1da177e4 244 },
f497ba73 245
5595ddf9 246 [board_20619] =
f497ba73 247 {
eca25dca
TH
248 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
249 PDC_FLAG_4_PORTS,
14bdef98
EIB
250 .pio_mask = ATA_PIO4,
251 .mwdma_mask = ATA_MWDMA2,
469248ab 252 .udma_mask = ATA_UDMA6,
2cba582a 253 .port_ops = &pdc_pata_ops,
f497ba73 254 },
5a46fe89 255
5595ddf9 256 [board_2057x] =
6340f019 257 {
eca25dca
TH
258 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
259 PDC_FLAG_GEN_II | PDC_FLAG_SATA_PATA,
14bdef98
EIB
260 .pio_mask = ATA_PIO4,
261 .mwdma_mask = ATA_MWDMA2,
469248ab 262 .udma_mask = ATA_UDMA6,
6340f019
LK
263 .port_ops = &pdc_sata_ops,
264 },
265
5595ddf9 266 [board_2057x_pata] =
eca25dca 267 {
bb312235 268 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
eca25dca 269 PDC_FLAG_GEN_II,
14bdef98
EIB
270 .pio_mask = ATA_PIO4,
271 .mwdma_mask = ATA_MWDMA2,
469248ab 272 .udma_mask = ATA_UDMA6,
eca25dca
TH
273 .port_ops = &pdc_pata_ops,
274 },
275
5595ddf9 276 [board_40518] =
6340f019 277 {
eca25dca
TH
278 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
279 PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS,
14bdef98
EIB
280 .pio_mask = ATA_PIO4,
281 .mwdma_mask = ATA_MWDMA2,
469248ab 282 .udma_mask = ATA_UDMA6,
6340f019
LK
283 .port_ops = &pdc_sata_ops,
284 },
1da177e4
LT
285};
286
3b7d697d 287static const struct pci_device_id pdc_ata_pci_tbl[] = {
54bb3a94 288 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
54bb3a94
JG
289 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
290 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
291 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
b2d1eee1
MP
292 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
293 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
54bb3a94 294 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
d324d462 295 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
b2d1eee1 296 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
54bb3a94 297 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
54bb3a94
JG
298
299 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
300 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
7f9992a2
MP
301 { PCI_VDEVICE(PROMISE, 0x3515), board_40518 },
302 { PCI_VDEVICE(PROMISE, 0x3519), board_40518 },
b2d1eee1 303 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
54bb3a94
JG
304 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
305
306 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
f497ba73 307
1da177e4
LT
308 { } /* terminate list */
309};
310
1da177e4
LT
311static struct pci_driver pdc_ata_pci_driver = {
312 .name = DRV_NAME,
313 .id_table = pdc_ata_pci_tbl,
314 .probe = pdc_ata_init_one,
315 .remove = ata_pci_remove_one,
316};
317
724114a5 318static int pdc_common_port_start(struct ata_port *ap)
1da177e4 319{
cca3974e 320 struct device *dev = ap->host->dev;
1da177e4
LT
321 struct pdc_port_priv *pp;
322 int rc;
323
324 rc = ata_port_start(ap);
325 if (rc)
326 return rc;
327
24dc5f33
TH
328 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
329 if (!pp)
330 return -ENOMEM;
1da177e4 331
24dc5f33
TH
332 pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
333 if (!pp->pkt)
334 return -ENOMEM;
1da177e4
LT
335
336 ap->private_data = pp;
337
724114a5
MP
338 return 0;
339}
340
341static int pdc_sata_port_start(struct ata_port *ap)
342{
724114a5
MP
343 int rc;
344
345 rc = pdc_common_port_start(ap);
346 if (rc)
347 return rc;
348
599b7202 349 /* fix up PHYMODE4 align timing */
eca25dca 350 if (ap->flags & PDC_FLAG_GEN_II) {
821d22cd 351 void __iomem *sata_mmio = ap->ioaddr.scr_addr;
599b7202
MP
352 unsigned int tmp;
353
821d22cd 354 tmp = readl(sata_mmio + PDC_PHYMODE4);
599b7202 355 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
821d22cd 356 writel(tmp, sata_mmio + PDC_PHYMODE4);
599b7202
MP
357 }
358
1da177e4 359 return 0;
1da177e4
LT
360}
361
1da177e4
LT
362static void pdc_reset_port(struct ata_port *ap)
363{
821d22cd 364 void __iomem *ata_ctlstat_mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT;
1da177e4
LT
365 unsigned int i;
366 u32 tmp;
367
368 for (i = 11; i > 0; i--) {
821d22cd 369 tmp = readl(ata_ctlstat_mmio);
1da177e4
LT
370 if (tmp & PDC_RESET)
371 break;
372
373 udelay(100);
374
375 tmp |= PDC_RESET;
821d22cd 376 writel(tmp, ata_ctlstat_mmio);
1da177e4
LT
377 }
378
379 tmp &= ~PDC_RESET;
821d22cd
MP
380 writel(tmp, ata_ctlstat_mmio);
381 readl(ata_ctlstat_mmio); /* flush */
1da177e4
LT
382}
383
724114a5 384static int pdc_pata_cable_detect(struct ata_port *ap)
2cba582a 385{
d3fb4e8d 386 u8 tmp;
821d22cd 387 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
d3fb4e8d 388
821d22cd 389 tmp = readb(ata_mmio + PDC_CTLSTAT + 3);
724114a5
MP
390 if (tmp & 0x01)
391 return ATA_CBL_PATA40;
392 return ATA_CBL_PATA80;
393}
394
395static int pdc_sata_cable_detect(struct ata_port *ap)
396{
e2a9752a 397 return ATA_CBL_SATA;
d3fb4e8d 398}
2cba582a 399
82ef04fb
TH
400static int pdc_sata_scr_read(struct ata_link *link,
401 unsigned int sc_reg, u32 *val)
1da177e4 402{
724114a5 403 if (sc_reg > SCR_CONTROL)
da3dbb17 404 return -EINVAL;
82ef04fb 405 *val = readl(link->ap->ioaddr.scr_addr + (sc_reg * 4));
da3dbb17 406 return 0;
1da177e4
LT
407}
408
82ef04fb
TH
409static int pdc_sata_scr_write(struct ata_link *link,
410 unsigned int sc_reg, u32 val)
1da177e4 411{
724114a5 412 if (sc_reg > SCR_CONTROL)
da3dbb17 413 return -EINVAL;
82ef04fb 414 writel(val, link->ap->ioaddr.scr_addr + (sc_reg * 4));
da3dbb17 415 return 0;
1da177e4
LT
416}
417
fba6edbd 418static void pdc_atapi_pkt(struct ata_queued_cmd *qc)
95006188 419{
4113bb6b
MP
420 struct ata_port *ap = qc->ap;
421 dma_addr_t sg_table = ap->prd_dma;
422 unsigned int cdb_len = qc->dev->cdb_len;
423 u8 *cdb = qc->cdb;
424 struct pdc_port_priv *pp = ap->private_data;
425 u8 *buf = pp->pkt;
826cd156 426 __le32 *buf32 = (__le32 *) buf;
46a67143 427 unsigned int dev_sel, feature;
95006188
MP
428
429 /* set control bits (byte 0), zero delay seq id (byte 3),
430 * and seq id (byte 2)
431 */
fba6edbd 432 switch (qc->tf.protocol) {
0dc36888 433 case ATAPI_PROT_DMA:
fba6edbd
MP
434 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
435 buf32[0] = cpu_to_le32(PDC_PKT_READ);
436 else
437 buf32[0] = 0;
438 break;
0dc36888 439 case ATAPI_PROT_NODATA:
fba6edbd
MP
440 buf32[0] = cpu_to_le32(PDC_PKT_NODATA);
441 break;
442 default:
443 BUG();
444 break;
445 }
95006188
MP
446 buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */
447 buf32[2] = 0; /* no next-packet */
448
4113bb6b 449 /* select drive */
46a67143 450 if (sata_scr_valid(&ap->link))
4113bb6b 451 dev_sel = PDC_DEVICE_SATA;
46a67143
TH
452 else
453 dev_sel = qc->tf.device;
454
4113bb6b
MP
455 buf[12] = (1 << 5) | ATA_REG_DEVICE;
456 buf[13] = dev_sel;
457 buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY;
458 buf[15] = dev_sel; /* once more, waiting for BSY to clear */
459
460 buf[16] = (1 << 5) | ATA_REG_NSECT;
46a67143 461 buf[17] = qc->tf.nsect;
4113bb6b 462 buf[18] = (1 << 5) | ATA_REG_LBAL;
46a67143 463 buf[19] = qc->tf.lbal;
4113bb6b
MP
464
465 /* set feature and byte counter registers */
0dc36888 466 if (qc->tf.protocol != ATAPI_PROT_DMA)
4113bb6b 467 feature = PDC_FEATURE_ATAPI_PIO;
46a67143 468 else
4113bb6b 469 feature = PDC_FEATURE_ATAPI_DMA;
46a67143 470
4113bb6b
MP
471 buf[20] = (1 << 5) | ATA_REG_FEATURE;
472 buf[21] = feature;
473 buf[22] = (1 << 5) | ATA_REG_BYTEL;
46a67143 474 buf[23] = qc->tf.lbam;
4113bb6b 475 buf[24] = (1 << 5) | ATA_REG_BYTEH;
46a67143 476 buf[25] = qc->tf.lbah;
4113bb6b
MP
477
478 /* send ATAPI packet command 0xA0 */
479 buf[26] = (1 << 5) | ATA_REG_CMD;
46a67143 480 buf[27] = qc->tf.command;
4113bb6b
MP
481
482 /* select drive and check DRQ */
483 buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY;
484 buf[29] = dev_sel;
485
95006188
MP
486 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
487 BUG_ON(cdb_len & ~0x1E);
488
4113bb6b
MP
489 /* append the CDB as the final part */
490 buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
491 memcpy(buf+31, cdb, cdb_len);
95006188
MP
492}
493
b9ccd4a9
MP
494/**
495 * pdc_fill_sg - Fill PCI IDE PRD table
496 * @qc: Metadata associated with taskfile to be transferred
497 *
498 * Fill PCI IDE PRD (scatter-gather) table with segments
499 * associated with the current disk command.
500 * Make sure hardware does not choke on it.
501 *
502 * LOCKING:
503 * spin_lock_irqsave(host lock)
504 *
505 */
506static void pdc_fill_sg(struct ata_queued_cmd *qc)
507{
508 struct ata_port *ap = qc->ap;
509 struct scatterlist *sg;
b9ccd4a9 510 const u32 SG_COUNT_ASIC_BUG = 41*4;
ff2aeb1e
TH
511 unsigned int si, idx;
512 u32 len;
b9ccd4a9
MP
513
514 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
515 return;
516
b9ccd4a9 517 idx = 0;
ff2aeb1e 518 for_each_sg(qc->sg, sg, qc->n_elem, si) {
b9ccd4a9 519 u32 addr, offset;
6903c0f7 520 u32 sg_len;
b9ccd4a9
MP
521
522 /* determine if physical DMA addr spans 64K boundary.
523 * Note h/w doesn't support 64-bit, so we unconditionally
524 * truncate dma_addr_t to u32.
525 */
526 addr = (u32) sg_dma_address(sg);
527 sg_len = sg_dma_len(sg);
528
529 while (sg_len) {
530 offset = addr & 0xffff;
531 len = sg_len;
532 if ((offset + sg_len) > 0x10000)
533 len = 0x10000 - offset;
534
535 ap->prd[idx].addr = cpu_to_le32(addr);
536 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
537 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
538
539 idx++;
540 sg_len -= len;
541 addr += len;
542 }
543 }
544
ff2aeb1e 545 len = le32_to_cpu(ap->prd[idx - 1].flags_len);
b9ccd4a9 546
ff2aeb1e
TH
547 if (len > SG_COUNT_ASIC_BUG) {
548 u32 addr;
b9ccd4a9 549
ff2aeb1e 550 VPRINTK("Splitting last PRD.\n");
b9ccd4a9 551
ff2aeb1e
TH
552 addr = le32_to_cpu(ap->prd[idx - 1].addr);
553 ap->prd[idx - 1].flags_len = cpu_to_le32(len - SG_COUNT_ASIC_BUG);
554 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx - 1, addr, SG_COUNT_ASIC_BUG);
b9ccd4a9 555
ff2aeb1e
TH
556 addr = addr + len - SG_COUNT_ASIC_BUG;
557 len = SG_COUNT_ASIC_BUG;
558 ap->prd[idx].addr = cpu_to_le32(addr);
559 ap->prd[idx].flags_len = cpu_to_le32(len);
560 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
b9ccd4a9 561
ff2aeb1e 562 idx++;
b9ccd4a9 563 }
ff2aeb1e
TH
564
565 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
b9ccd4a9
MP
566}
567
1da177e4
LT
568static void pdc_qc_prep(struct ata_queued_cmd *qc)
569{
570 struct pdc_port_priv *pp = qc->ap->private_data;
571 unsigned int i;
572
573 VPRINTK("ENTER\n");
574
575 switch (qc->tf.protocol) {
576 case ATA_PROT_DMA:
b9ccd4a9 577 pdc_fill_sg(qc);
7715a6f9 578 /*FALLTHROUGH*/
1da177e4
LT
579 case ATA_PROT_NODATA:
580 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
581 qc->dev->devno, pp->pkt);
1da177e4
LT
582 if (qc->tf.flags & ATA_TFLAG_LBA48)
583 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
584 else
585 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
1da177e4
LT
586 pdc_pkt_footer(&qc->tf, pp->pkt, i);
587 break;
0dc36888 588 case ATAPI_PROT_PIO:
b9ccd4a9 589 pdc_fill_sg(qc);
95006188 590 break;
0dc36888 591 case ATAPI_PROT_DMA:
b9ccd4a9 592 pdc_fill_sg(qc);
fba6edbd 593 /*FALLTHROUGH*/
0dc36888 594 case ATAPI_PROT_NODATA:
fba6edbd 595 pdc_atapi_pkt(qc);
95006188 596 break;
1da177e4
LT
597 default:
598 break;
599 }
600}
601
c07a9c49
MP
602static int pdc_is_sataii_tx4(unsigned long flags)
603{
604 const unsigned long mask = PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS;
605 return (flags & mask) == mask;
606}
607
608static unsigned int pdc_port_no_to_ata_no(unsigned int port_no,
609 int is_sataii_tx4)
610{
611 static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2};
612 return is_sataii_tx4 ? sataii_tx4_port_remap[port_no] : port_no;
613}
614
615static unsigned int pdc_sata_nr_ports(const struct ata_port *ap)
616{
617 return (ap->flags & PDC_FLAG_4_PORTS) ? 4 : 2;
618}
619
620static unsigned int pdc_sata_ata_port_to_ata_no(const struct ata_port *ap)
621{
622 const struct ata_host *host = ap->host;
623 unsigned int nr_ports = pdc_sata_nr_ports(ap);
624 unsigned int i;
625
7715a6f9 626 for (i = 0; i < nr_ports && host->ports[i] != ap; ++i)
c07a9c49
MP
627 ;
628 BUG_ON(i >= nr_ports);
629 return pdc_port_no_to_ata_no(i, pdc_is_sataii_tx4(ap->flags));
630}
631
25b93d81
MP
632static void pdc_freeze(struct ata_port *ap)
633{
821d22cd 634 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
25b93d81
MP
635 u32 tmp;
636
821d22cd 637 tmp = readl(ata_mmio + PDC_CTLSTAT);
25b93d81
MP
638 tmp |= PDC_IRQ_DISABLE;
639 tmp &= ~PDC_DMA_ENABLE;
821d22cd
MP
640 writel(tmp, ata_mmio + PDC_CTLSTAT);
641 readl(ata_mmio + PDC_CTLSTAT); /* flush */
25b93d81
MP
642}
643
c07a9c49
MP
644static void pdc_sata_freeze(struct ata_port *ap)
645{
646 struct ata_host *host = ap->host;
647 void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR];
0ae6654d 648 unsigned int hotplug_offset = PDC2_SATA_PLUG_CSR;
c07a9c49
MP
649 unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap);
650 u32 hotplug_status;
651
652 /* Disable hotplug events on this port.
653 *
654 * Locking:
655 * 1) hotplug register accesses must be serialised via host->lock
656 * 2) ap->lock == &ap->host->lock
657 * 3) ->freeze() and ->thaw() are called with ap->lock held
658 */
659 hotplug_status = readl(host_mmio + hotplug_offset);
660 hotplug_status |= 0x11 << (ata_no + 16);
661 writel(hotplug_status, host_mmio + hotplug_offset);
662 readl(host_mmio + hotplug_offset); /* flush */
663
664 pdc_freeze(ap);
665}
666
25b93d81
MP
667static void pdc_thaw(struct ata_port *ap)
668{
821d22cd 669 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
25b93d81
MP
670 u32 tmp;
671
672 /* clear IRQ */
821d22cd 673 readl(ata_mmio + PDC_COMMAND);
25b93d81
MP
674
675 /* turn IRQ back on */
821d22cd 676 tmp = readl(ata_mmio + PDC_CTLSTAT);
25b93d81 677 tmp &= ~PDC_IRQ_DISABLE;
821d22cd
MP
678 writel(tmp, ata_mmio + PDC_CTLSTAT);
679 readl(ata_mmio + PDC_CTLSTAT); /* flush */
25b93d81
MP
680}
681
c07a9c49
MP
682static void pdc_sata_thaw(struct ata_port *ap)
683{
684 struct ata_host *host = ap->host;
685 void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR];
0ae6654d 686 unsigned int hotplug_offset = PDC2_SATA_PLUG_CSR;
c07a9c49
MP
687 unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap);
688 u32 hotplug_status;
689
690 pdc_thaw(ap);
691
692 /* Enable hotplug events on this port.
693 * Locking: see pdc_sata_freeze().
694 */
695 hotplug_status = readl(host_mmio + hotplug_offset);
696 hotplug_status |= 0x11 << ata_no;
697 hotplug_status &= ~(0x11 << (ata_no + 16));
698 writel(hotplug_status, host_mmio + hotplug_offset);
699 readl(host_mmio + hotplug_offset); /* flush */
700}
701
cadef677
MP
702static int pdc_pata_softreset(struct ata_link *link, unsigned int *class,
703 unsigned long deadline)
704{
705 pdc_reset_port(link->ap);
706 return ata_sff_softreset(link, class, deadline);
707}
708
709static int pdc_sata_hardreset(struct ata_link *link, unsigned int *class,
710 unsigned long deadline)
711{
712 pdc_reset_port(link->ap);
713 return sata_sff_hardreset(link, class, deadline);
714}
715
a1efdaba 716static void pdc_error_handler(struct ata_port *ap)
25b93d81 717{
25b93d81
MP
718 if (!(ap->pflags & ATA_PFLAG_FROZEN))
719 pdc_reset_port(ap);
720
a1efdaba 721 ata_std_error_handler(ap);
724114a5
MP
722}
723
25b93d81
MP
724static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
725{
726 struct ata_port *ap = qc->ap;
727
25b93d81 728 /* make DMA engine forget about the failed command */
a51d644a 729 if (qc->flags & ATA_QCFLAG_FAILED)
25b93d81
MP
730 pdc_reset_port(ap);
731}
732
176efb05
MP
733static void pdc_error_intr(struct ata_port *ap, struct ata_queued_cmd *qc,
734 u32 port_status, u32 err_mask)
735{
9af5c9c9 736 struct ata_eh_info *ehi = &ap->link.eh_info;
176efb05
MP
737 unsigned int ac_err_mask = 0;
738
739 ata_ehi_clear_desc(ehi);
740 ata_ehi_push_desc(ehi, "port_status 0x%08x", port_status);
741 port_status &= err_mask;
742
743 if (port_status & PDC_DRIVE_ERR)
744 ac_err_mask |= AC_ERR_DEV;
745 if (port_status & (PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR))
746 ac_err_mask |= AC_ERR_HSM;
747 if (port_status & (PDC2_ATA_HBA_ERR | PDC2_ATA_DMA_CNT_ERR))
748 ac_err_mask |= AC_ERR_ATA_BUS;
749 if (port_status & (PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | PDC2_HTO_ERR
750 | PDC_PCI_SYS_ERR | PDC1_PCI_PARITY_ERR))
751 ac_err_mask |= AC_ERR_HOST_BUS;
752
936fd732 753 if (sata_scr_valid(&ap->link)) {
da3dbb17
TH
754 u32 serror;
755
82ef04fb 756 pdc_sata_scr_read(&ap->link, SCR_ERROR, &serror);
da3dbb17
TH
757 ehi->serror |= serror;
758 }
ce2d3abc 759
176efb05 760 qc->err_mask |= ac_err_mask;
ce2d3abc
MP
761
762 pdc_reset_port(ap);
8ffcfd9d
MP
763
764 ata_port_abort(ap);
176efb05
MP
765}
766
7715a6f9
MP
767static unsigned int pdc_host_intr(struct ata_port *ap,
768 struct ata_queued_cmd *qc)
1da177e4 769{
a22e2eb0 770 unsigned int handled = 0;
821d22cd 771 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
176efb05
MP
772 u32 port_status, err_mask;
773
774 err_mask = PDC_ERR_MASK;
eca25dca 775 if (ap->flags & PDC_FLAG_GEN_II)
176efb05
MP
776 err_mask &= ~PDC1_ERR_MASK;
777 else
778 err_mask &= ~PDC2_ERR_MASK;
821d22cd 779 port_status = readl(ata_mmio + PDC_GLOBAL_CTL);
176efb05
MP
780 if (unlikely(port_status & err_mask)) {
781 pdc_error_intr(ap, qc, port_status, err_mask);
782 return 1;
1da177e4
LT
783 }
784
785 switch (qc->tf.protocol) {
786 case ATA_PROT_DMA:
787 case ATA_PROT_NODATA:
0dc36888
TH
788 case ATAPI_PROT_DMA:
789 case ATAPI_PROT_NODATA:
a22e2eb0
AL
790 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
791 ata_qc_complete(qc);
1da177e4
LT
792 handled = 1;
793 break;
d0e58031 794 default:
ee500aab
AL
795 ap->stats.idle_irq++;
796 break;
d0e58031 797 }
1da177e4 798
ee500aab 799 return handled;
1da177e4
LT
800}
801
802static void pdc_irq_clear(struct ata_port *ap)
803{
821d22cd 804 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
1da177e4 805
821d22cd 806 readl(ata_mmio + PDC_COMMAND);
1da177e4
LT
807}
808
5796d1c4 809static irqreturn_t pdc_interrupt(int irq, void *dev_instance)
1da177e4 810{
cca3974e 811 struct ata_host *host = dev_instance;
1da177e4
LT
812 struct ata_port *ap;
813 u32 mask = 0;
814 unsigned int i, tmp;
815 unsigned int handled = 0;
821d22cd 816 void __iomem *host_mmio;
a77720ad
MP
817 unsigned int hotplug_offset, ata_no;
818 u32 hotplug_status;
819 int is_sataii_tx4;
1da177e4
LT
820
821 VPRINTK("ENTER\n");
822
0d5ff566 823 if (!host || !host->iomap[PDC_MMIO_BAR]) {
1da177e4
LT
824 VPRINTK("QUICK EXIT\n");
825 return IRQ_NONE;
826 }
827
821d22cd 828 host_mmio = host->iomap[PDC_MMIO_BAR];
1da177e4 829
c07a9c49
MP
830 spin_lock(&host->lock);
831
a77720ad 832 /* read and clear hotplug flags for all ports */
0ae6654d 833 if (host->ports[0]->flags & PDC_FLAG_GEN_II) {
a77720ad 834 hotplug_offset = PDC2_SATA_PLUG_CSR;
0ae6654d
MP
835 hotplug_status = readl(host_mmio + hotplug_offset);
836 if (hotplug_status & 0xff)
837 writel(hotplug_status | 0xff, host_mmio + hotplug_offset);
838 hotplug_status &= 0xff; /* clear uninteresting bits */
839 } else
840 hotplug_status = 0;
a77720ad 841
1da177e4 842 /* reading should also clear interrupts */
821d22cd 843 mask = readl(host_mmio + PDC_INT_SEQMASK);
1da177e4 844
a77720ad 845 if (mask == 0xffffffff && hotplug_status == 0) {
1da177e4 846 VPRINTK("QUICK EXIT 2\n");
c07a9c49 847 goto done_irq;
1da177e4 848 }
6340f019 849
7715a6f9 850 mask &= 0xffff; /* only 16 SEQIDs possible */
a77720ad 851 if (mask == 0 && hotplug_status == 0) {
1da177e4 852 VPRINTK("QUICK EXIT 3\n");
6340f019 853 goto done_irq;
1da177e4
LT
854 }
855
821d22cd 856 writel(mask, host_mmio + PDC_INT_SEQMASK);
1da177e4 857
a77720ad
MP
858 is_sataii_tx4 = pdc_is_sataii_tx4(host->ports[0]->flags);
859
cca3974e 860 for (i = 0; i < host->n_ports; i++) {
1da177e4 861 VPRINTK("port %u\n", i);
cca3974e 862 ap = host->ports[i];
a77720ad
MP
863
864 /* check for a plug or unplug event */
865 ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4);
866 tmp = hotplug_status & (0x11 << ata_no);
867 if (tmp && ap &&
868 !(ap->flags & ATA_FLAG_DISABLED)) {
9af5c9c9 869 struct ata_eh_info *ehi = &ap->link.eh_info;
a77720ad
MP
870 ata_ehi_clear_desc(ehi);
871 ata_ehi_hotplugged(ehi);
872 ata_ehi_push_desc(ehi, "hotplug_status %#x", tmp);
873 ata_port_freeze(ap);
874 ++handled;
875 continue;
876 }
877
878 /* check for a packet interrupt */
1da177e4 879 tmp = mask & (1 << (i + 1));
c1389503 880 if (tmp && ap &&
029f5468 881 !(ap->flags & ATA_FLAG_DISABLED)) {
1da177e4
LT
882 struct ata_queued_cmd *qc;
883
9af5c9c9 884 qc = ata_qc_from_tag(ap, ap->link.active_tag);
e50362ec 885 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
1da177e4
LT
886 handled += pdc_host_intr(ap, qc);
887 }
888 }
889
1da177e4
LT
890 VPRINTK("EXIT\n");
891
6340f019 892done_irq:
cca3974e 893 spin_unlock(&host->lock);
1da177e4
LT
894 return IRQ_RETVAL(handled);
895}
896
7715a6f9 897static void pdc_packet_start(struct ata_queued_cmd *qc)
1da177e4
LT
898{
899 struct ata_port *ap = qc->ap;
900 struct pdc_port_priv *pp = ap->private_data;
821d22cd
MP
901 void __iomem *host_mmio = ap->host->iomap[PDC_MMIO_BAR];
902 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
1da177e4
LT
903 unsigned int port_no = ap->port_no;
904 u8 seq = (u8) (port_no + 1);
905
906 VPRINTK("ENTER, ap %p\n", ap);
907
821d22cd
MP
908 writel(0x00000001, host_mmio + (seq * 4));
909 readl(host_mmio + (seq * 4)); /* flush */
1da177e4
LT
910
911 pp->pkt[2] = seq;
912 wmb(); /* flush PRD, pkt writes */
821d22cd
MP
913 writel(pp->pkt_dma, ata_mmio + PDC_PKT_SUBMIT);
914 readl(ata_mmio + PDC_PKT_SUBMIT); /* flush */
1da177e4
LT
915}
916
9363c382 917static unsigned int pdc_qc_issue(struct ata_queued_cmd *qc)
1da177e4
LT
918{
919 switch (qc->tf.protocol) {
0dc36888 920 case ATAPI_PROT_NODATA:
fba6edbd
MP
921 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
922 break;
923 /*FALLTHROUGH*/
51b94d2a
TH
924 case ATA_PROT_NODATA:
925 if (qc->tf.flags & ATA_TFLAG_POLLING)
926 break;
927 /*FALLTHROUGH*/
0dc36888 928 case ATAPI_PROT_DMA:
1da177e4 929 case ATA_PROT_DMA:
1da177e4
LT
930 pdc_packet_start(qc);
931 return 0;
1da177e4
LT
932 default:
933 break;
934 }
9363c382 935 return ata_sff_qc_issue(qc);
1da177e4
LT
936}
937
057ace5e 938static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
1da177e4 939{
0dc36888 940 WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA);
9363c382 941 ata_sff_tf_load(ap, tf);
1da177e4
LT
942}
943
5796d1c4
JG
944static void pdc_exec_command_mmio(struct ata_port *ap,
945 const struct ata_taskfile *tf)
1da177e4 946{
0dc36888 947 WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA);
9363c382 948 ata_sff_exec_command(ap, tf);
1da177e4
LT
949}
950
95006188
MP
951static int pdc_check_atapi_dma(struct ata_queued_cmd *qc)
952{
953 u8 *scsicmd = qc->scsicmd->cmnd;
954 int pio = 1; /* atapi dma off by default */
955
956 /* Whitelist commands that may use DMA. */
957 switch (scsicmd[0]) {
958 case WRITE_12:
959 case WRITE_10:
960 case WRITE_6:
961 case READ_12:
962 case READ_10:
963 case READ_6:
964 case 0xad: /* READ_DVD_STRUCTURE */
965 case 0xbe: /* READ_CD */
966 pio = 0;
967 }
968 /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */
969 if (scsicmd[0] == WRITE_10) {
5796d1c4
JG
970 unsigned int lba =
971 (scsicmd[2] << 24) |
972 (scsicmd[3] << 16) |
973 (scsicmd[4] << 8) |
974 scsicmd[5];
95006188
MP
975 if (lba >= 0xFFFF4FA2)
976 pio = 1;
977 }
978 return pio;
979}
980
724114a5 981static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc)
95006188 982{
95006188 983 /* First generation chips cannot use ATAPI DMA on SATA ports */
724114a5 984 return 1;
95006188 985}
1da177e4 986
eca25dca
TH
987static void pdc_ata_setup_port(struct ata_port *ap,
988 void __iomem *base, void __iomem *scr_addr)
1da177e4 989{
eca25dca
TH
990 ap->ioaddr.cmd_addr = base;
991 ap->ioaddr.data_addr = base;
992 ap->ioaddr.feature_addr =
993 ap->ioaddr.error_addr = base + 0x4;
994 ap->ioaddr.nsect_addr = base + 0x8;
995 ap->ioaddr.lbal_addr = base + 0xc;
996 ap->ioaddr.lbam_addr = base + 0x10;
997 ap->ioaddr.lbah_addr = base + 0x14;
998 ap->ioaddr.device_addr = base + 0x18;
999 ap->ioaddr.command_addr =
1000 ap->ioaddr.status_addr = base + 0x1c;
1001 ap->ioaddr.altstatus_addr =
1002 ap->ioaddr.ctl_addr = base + 0x38;
1003 ap->ioaddr.scr_addr = scr_addr;
1da177e4
LT
1004}
1005
eca25dca 1006static void pdc_host_init(struct ata_host *host)
1da177e4 1007{
821d22cd 1008 void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR];
eca25dca 1009 int is_gen2 = host->ports[0]->flags & PDC_FLAG_GEN_II;
d324d462 1010 int hotplug_offset;
1da177e4
LT
1011 u32 tmp;
1012
eca25dca 1013 if (is_gen2)
d324d462
MP
1014 hotplug_offset = PDC2_SATA_PLUG_CSR;
1015 else
1016 hotplug_offset = PDC_SATA_PLUG_CSR;
1017
1da177e4
LT
1018 /*
1019 * Except for the hotplug stuff, this is voodoo from the
1020 * Promise driver. Label this entire section
1021 * "TODO: figure out why we do this"
1022 */
1023
b2d1eee1 1024 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
821d22cd 1025 tmp = readl(host_mmio + PDC_FLASH_CTL);
b2d1eee1 1026 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
eca25dca 1027 if (!is_gen2)
b2d1eee1 1028 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
821d22cd 1029 writel(tmp, host_mmio + PDC_FLASH_CTL);
1da177e4
LT
1030
1031 /* clear plug/unplug flags for all ports */
821d22cd
MP
1032 tmp = readl(host_mmio + hotplug_offset);
1033 writel(tmp | 0xff, host_mmio + hotplug_offset);
1da177e4 1034
821d22cd 1035 tmp = readl(host_mmio + hotplug_offset);
0ae6654d
MP
1036 if (is_gen2) /* unmask plug/unplug ints */
1037 writel(tmp & ~0xff0000, host_mmio + hotplug_offset);
1038 else /* mask plug/unplug ints */
1039 writel(tmp | 0xff0000, host_mmio + hotplug_offset);
1da177e4 1040
b2d1eee1 1041 /* don't initialise TBG or SLEW on 2nd generation chips */
eca25dca 1042 if (is_gen2)
b2d1eee1
MP
1043 return;
1044
1da177e4 1045 /* reduce TBG clock to 133 Mhz. */
821d22cd 1046 tmp = readl(host_mmio + PDC_TBG_MODE);
1da177e4
LT
1047 tmp &= ~0x30000; /* clear bit 17, 16*/
1048 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
821d22cd 1049 writel(tmp, host_mmio + PDC_TBG_MODE);
1da177e4 1050
821d22cd 1051 readl(host_mmio + PDC_TBG_MODE); /* flush */
1da177e4
LT
1052 msleep(10);
1053
1054 /* adjust slew rate control register. */
821d22cd 1055 tmp = readl(host_mmio + PDC_SLEW_CTL);
1da177e4
LT
1056 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
1057 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
821d22cd 1058 writel(tmp, host_mmio + PDC_SLEW_CTL);
1da177e4
LT
1059}
1060
5796d1c4
JG
1061static int pdc_ata_init_one(struct pci_dev *pdev,
1062 const struct pci_device_id *ent)
1da177e4
LT
1063{
1064 static int printed_version;
eca25dca
TH
1065 const struct ata_port_info *pi = &pdc_port_info[ent->driver_data];
1066 const struct ata_port_info *ppi[PDC_MAX_PORTS];
1067 struct ata_host *host;
821d22cd 1068 void __iomem *host_mmio;
eca25dca 1069 int n_ports, i, rc;
5ac2fe57 1070 int is_sataii_tx4;
1da177e4
LT
1071
1072 if (!printed_version++)
a9524a76 1073 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
1da177e4 1074
eca25dca 1075 /* enable and acquire resources */
24dc5f33 1076 rc = pcim_enable_device(pdev);
1da177e4
LT
1077 if (rc)
1078 return rc;
1079
0d5ff566
TH
1080 rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME);
1081 if (rc == -EBUSY)
24dc5f33 1082 pcim_pin_device(pdev);
0d5ff566 1083 if (rc)
24dc5f33 1084 return rc;
821d22cd 1085 host_mmio = pcim_iomap_table(pdev)[PDC_MMIO_BAR];
1da177e4 1086
eca25dca
TH
1087 /* determine port configuration and setup host */
1088 n_ports = 2;
1089 if (pi->flags & PDC_FLAG_4_PORTS)
1090 n_ports = 4;
1091 for (i = 0; i < n_ports; i++)
1092 ppi[i] = pi;
1da177e4 1093
eca25dca 1094 if (pi->flags & PDC_FLAG_SATA_PATA) {
821d22cd 1095 u8 tmp = readb(host_mmio + PDC_FLASH_CTL + 1);
d0e58031 1096 if (!(tmp & 0x80))
eca25dca 1097 ppi[n_ports++] = pi + 1;
eca25dca 1098 }
1da177e4 1099
eca25dca
TH
1100 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
1101 if (!host) {
1102 dev_printk(KERN_ERR, &pdev->dev, "failed to allocate host\n");
24dc5f33 1103 return -ENOMEM;
1da177e4 1104 }
eca25dca 1105 host->iomap = pcim_iomap_table(pdev);
1da177e4 1106
d0e58031 1107 is_sataii_tx4 = pdc_is_sataii_tx4(pi->flags);
5ac2fe57 1108 for (i = 0; i < host->n_ports; i++) {
cbcdd875 1109 struct ata_port *ap = host->ports[i];
d0e58031 1110 unsigned int ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4);
821d22cd 1111 unsigned int ata_offset = 0x200 + ata_no * 0x80;
cbcdd875
TH
1112 unsigned int scr_offset = 0x400 + ata_no * 0x100;
1113
821d22cd 1114 pdc_ata_setup_port(ap, host_mmio + ata_offset, host_mmio + scr_offset);
cbcdd875
TH
1115
1116 ata_port_pbar_desc(ap, PDC_MMIO_BAR, -1, "mmio");
821d22cd 1117 ata_port_pbar_desc(ap, PDC_MMIO_BAR, ata_offset, "ata");
5ac2fe57 1118 }
1da177e4
LT
1119
1120 /* initialize adapter */
eca25dca 1121 pdc_host_init(host);
1da177e4 1122
eca25dca
TH
1123 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
1124 if (rc)
1125 return rc;
1126 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
1127 if (rc)
1128 return rc;
1da177e4 1129
eca25dca
TH
1130 /* start host, request IRQ and attach */
1131 pci_set_master(pdev);
1132 return ata_host_activate(host, pdev->irq, pdc_interrupt, IRQF_SHARED,
1133 &pdc_ata_sht);
1da177e4
LT
1134}
1135
1da177e4
LT
1136static int __init pdc_ata_init(void)
1137{
b7887196 1138 return pci_register_driver(&pdc_ata_pci_driver);
1da177e4
LT
1139}
1140
1da177e4
LT
1141static void __exit pdc_ata_exit(void)
1142{
1143 pci_unregister_driver(&pdc_ata_pci_driver);
1144}
1145
1da177e4 1146MODULE_AUTHOR("Jeff Garzik");
f497ba73 1147MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
1da177e4
LT
1148MODULE_LICENSE("GPL");
1149MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
1150MODULE_VERSION(DRV_VERSION);
1151
1152module_init(pdc_ata_init);
1153module_exit(pdc_ata_exit);