blob: b5a2f4f25d198b41f23ecec7cfe526ff7975cd77 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sata_promise.c - Promise SATA
3 *
4 * Maintained by: Jeff Garzik <jgarzik@pobox.com>
Mikael Pettersson5595ddf2007-10-30 14:21:55 +01005 * Mikael Pettersson <mikpe@it.uu.se>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Please ALWAYS copy linux-ide@vger.kernel.org
7 * on emails.
8 *
9 * Copyright 2003-2004 Red Hat, Inc.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040012 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 *
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>
Jeff Garzika9524a72005-10-30 14:39:11 -050041#include <linux/device.h>
Mikael Pettersson95006182007-01-09 10:51:46 +010042#include <scsi/scsi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050044#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/libata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "sata_promise.h"
47
48#define DRV_NAME "sata_promise"
Mikael Petterssonc07a9c42008-03-23 18:41:01 +010049#define DRV_VERSION "2.12"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51enum {
Tejun Heoeca25dc2007-04-17 23:44:07 +090052 PDC_MAX_PORTS = 4,
Tejun Heo0d5ff562007-02-01 15:06:36 +090053 PDC_MMIO_BAR = 3,
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +010054 PDC_MAX_PRD = LIBATA_MAX_PRD - 1, /* -1 for ASIC PRD bug workaround */
Tejun Heo0d5ff562007-02-01 15:06:36 +090055
Mikael Pettersson821d22c2008-05-17 18:48:15 +020056 /* 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) */
Mikael Pettersson95006182007-01-09 10:51:46 +010065 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) */
Mikael Pettersson73fd4562007-01-10 09:32:34 +010072 PDC_ALTSTATUS = 0x38, /* Alternate-status/device-control reg (per port) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
75 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
Mikael Pettersson821d22c2008-05-17 18:48:15 +020076
77 /* per-port SATA register offsets (from ap->ioaddr.scr_addr) */
78 PDC_PHYMODE4 = 0x14,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Mikael Pettersson176efb02007-03-14 09:51:35 +010080 /* 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,
Jeff Garzik5796d1c2007-10-26 00:03:37 -040093 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 board_2037x = 0, /* FastTrak S150 TX2plus */
Tejun Heoeca25dc2007-04-17 23:44:07 +0900101 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 */
Mikael Petterssond0e58032007-06-19 21:53:30 +0200105 board_2057x_pata = 5, /* SATAII150 Tx2plus PATA port */
Tejun Heoeca25dc2007-04-17 23:44:07 +0900106 board_40518 = 6, /* SATAII150 Tx4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Luke Kosewski6340f012006-01-28 12:39:29 -0500108 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Mikael Pettersson95006182007-01-09 10:51:46 +0100110 /* 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
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100120 /* PDC_CTLSTAT bit definitions */
121 PDC_DMA_ENABLE = (1 << 7),
122 PDC_IRQ_DISABLE = (1 << 10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -0500124
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100125 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY |
Mikael Pettersson95006182007-01-09 10:51:46 +0100126 ATA_FLAG_MMIO |
Jeff Garzik3d0a59c2005-12-13 22:28:19 -0500127 ATA_FLAG_PIO_POLLING,
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100128
Tejun Heoeca25dc2007-04-17 23:44:07 +0900129 /* 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135struct pdc_port_priv {
136 u8 *pkt;
137 dma_addr_t pkt_dma;
138};
139
Tejun Heoda3dbb12007-07-16 14:29:40 +0900140static int pdc_sata_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val);
141static int pdc_sata_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
Tejun Heoeca25dc2007-04-17 23:44:07 +0900143static int pdc_common_port_start(struct ata_port *ap);
144static int pdc_sata_port_start(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -0400146static 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);
Mikael Pettersson95006182007-01-09 10:51:46 +0100148static int pdc_check_atapi_dma(struct ata_queued_cmd *qc);
Mikael Pettersson724114a2007-03-11 21:20:43 +0100149static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static void pdc_irq_clear(struct ata_port *ap);
Tejun Heo9363c382008-04-07 22:47:16 +0900151static unsigned int pdc_qc_issue(struct ata_queued_cmd *qc);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100152static void pdc_freeze(struct ata_port *ap);
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100153static void pdc_sata_freeze(struct ata_port *ap);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100154static void pdc_thaw(struct ata_port *ap);
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100155static void pdc_sata_thaw(struct ata_port *ap);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900156static void pdc_error_handler(struct ata_port *ap);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100157static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
Mikael Pettersson724114a2007-03-11 21:20:43 +0100158static int pdc_pata_cable_detect(struct ata_port *ap);
159static int pdc_sata_cable_detect(struct ata_port *ap);
Jeff Garzik374b1872005-08-30 05:42:52 -0400160
Jeff Garzik193515d2005-11-07 00:59:37 -0500161static struct scsi_host_template pdc_ata_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900162 ATA_BASE_SHT(DRV_NAME),
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100163 .sg_tablesize = PDC_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 .dma_boundary = ATA_DMA_BOUNDARY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
Tejun Heo029cfd62008-03-25 12:22:49 +0900167static const struct ata_port_operations pdc_common_ops = {
168 .inherits = &ata_sff_port_ops,
Mikael Pettersson95006182007-01-09 10:51:46 +0100169
Tejun Heo5682ed32008-04-07 22:47:16 +0900170 .sff_tf_load = pdc_tf_load_mmio,
171 .sff_exec_command = pdc_exec_command_mmio,
Tejun Heo029cfd62008-03-25 12:22:49 +0900172 .check_atapi_dma = pdc_check_atapi_dma,
Mikael Pettersson95006182007-01-09 10:51:46 +0100173 .qc_prep = pdc_qc_prep,
Tejun Heo9363c382008-04-07 22:47:16 +0900174 .qc_issue = pdc_qc_issue,
Tejun Heo5682ed32008-04-07 22:47:16 +0900175 .sff_irq_clear = pdc_irq_clear,
Tejun Heo029cfd62008-03-25 12:22:49 +0900176
177 .post_internal_cmd = pdc_post_internal_cmd,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900178 .error_handler = pdc_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +0900179};
180
181static struct ata_port_operations pdc_sata_ops = {
182 .inherits = &pdc_common_ops,
183 .cable_detect = pdc_sata_cable_detect,
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100184 .freeze = pdc_sata_freeze,
185 .thaw = pdc_sata_thaw,
Mikael Pettersson95006182007-01-09 10:51:46 +0100186 .scr_read = pdc_sata_scr_read,
187 .scr_write = pdc_sata_scr_write,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900188 .port_start = pdc_sata_port_start,
Mikael Pettersson95006182007-01-09 10:51:46 +0100189};
190
191/* First-generation chips need a more restrictive ->check_atapi_dma op */
Tejun Heo029cfd62008-03-25 12:22:49 +0900192static struct ata_port_operations pdc_old_sata_ops = {
193 .inherits = &pdc_sata_ops,
Mikael Pettersson724114a2007-03-11 21:20:43 +0100194 .check_atapi_dma = pdc_old_sata_check_atapi_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
Tejun Heo029cfd62008-03-25 12:22:49 +0900197static struct ata_port_operations pdc_pata_ops = {
198 .inherits = &pdc_common_ops,
199 .cable_detect = pdc_pata_cable_detect,
Mikael Pettersson53873732007-02-11 23:19:53 +0100200 .freeze = pdc_freeze,
201 .thaw = pdc_thaw,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900202 .port_start = pdc_common_port_start,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400203};
204
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100205static const struct ata_port_info pdc_port_info[] = {
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100206 [board_2037x] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900208 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
209 PDC_FLAG_SATA_PATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .pio_mask = 0x1f, /* pio0-4 */
211 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400212 .udma_mask = ATA_UDMA6,
Mikael Pettersson95006182007-01-09 10:51:46 +0100213 .port_ops = &pdc_old_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 },
215
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100216 [board_2037x_pata] =
Tejun Heoeca25dc2007-04-17 23:44:07 +0900217 {
218 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
219 .pio_mask = 0x1f, /* pio0-4 */
220 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400221 .udma_mask = ATA_UDMA6,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900222 .port_ops = &pdc_pata_ops,
223 },
224
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100225 [board_20319] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900227 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
228 PDC_FLAG_4_PORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .pio_mask = 0x1f, /* pio0-4 */
230 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400231 .udma_mask = ATA_UDMA6,
Mikael Pettersson95006182007-01-09 10:51:46 +0100232 .port_ops = &pdc_old_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400234
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100235 [board_20619] =
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400236 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900237 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
238 PDC_FLAG_4_PORTS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400239 .pio_mask = 0x1f, /* pio0-4 */
240 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400241 .udma_mask = ATA_UDMA6,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400242 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400243 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500244
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100245 [board_2057x] =
Luke Kosewski6340f012006-01-28 12:39:29 -0500246 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900247 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
248 PDC_FLAG_GEN_II | PDC_FLAG_SATA_PATA,
Luke Kosewski6340f012006-01-28 12:39:29 -0500249 .pio_mask = 0x1f, /* pio0-4 */
250 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400251 .udma_mask = ATA_UDMA6,
Luke Kosewski6340f012006-01-28 12:39:29 -0500252 .port_ops = &pdc_sata_ops,
253 },
254
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100255 [board_2057x_pata] =
Tejun Heoeca25dc2007-04-17 23:44:07 +0900256 {
Jeff Garzikbb312232007-05-24 23:35:59 -0400257 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
Tejun Heoeca25dc2007-04-17 23:44:07 +0900258 PDC_FLAG_GEN_II,
259 .pio_mask = 0x1f, /* pio0-4 */
260 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400261 .udma_mask = ATA_UDMA6,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900262 .port_ops = &pdc_pata_ops,
263 },
264
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100265 [board_40518] =
Luke Kosewski6340f012006-01-28 12:39:29 -0500266 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900267 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
268 PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS,
Luke Kosewski6340f012006-01-28 12:39:29 -0500269 .pio_mask = 0x1f, /* pio0-4 */
270 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400271 .udma_mask = ATA_UDMA6,
Luke Kosewski6340f012006-01-28 12:39:29 -0500272 .port_ops = &pdc_sata_ops,
273 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500276static const struct pci_device_id pdc_ata_pci_tbl[] = {
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400277 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400278 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
279 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
280 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100281 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
282 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400283 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
Mikael Petterssond324d4622006-12-06 09:55:43 +0100284 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100285 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400286 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400288 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
289 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
Mikael Pettersson7f9992a2007-08-29 10:25:37 +0200290 { PCI_VDEVICE(PROMISE, 0x3515), board_40518 },
291 { PCI_VDEVICE(PROMISE, 0x3519), board_40518 },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100292 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400293 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400295 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 { } /* terminate list */
298};
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300static struct pci_driver pdc_ata_pci_driver = {
301 .name = DRV_NAME,
302 .id_table = pdc_ata_pci_tbl,
303 .probe = pdc_ata_init_one,
304 .remove = ata_pci_remove_one,
305};
306
Mikael Pettersson724114a2007-03-11 21:20:43 +0100307static int pdc_common_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Jeff Garzikcca39742006-08-24 03:19:22 -0400309 struct device *dev = ap->host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct pdc_port_priv *pp;
311 int rc;
312
313 rc = ata_port_start(ap);
314 if (rc)
315 return rc;
316
Tejun Heo24dc5f32007-01-20 16:00:28 +0900317 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
318 if (!pp)
319 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Tejun Heo24dc5f32007-01-20 16:00:28 +0900321 pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
322 if (!pp->pkt)
323 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 ap->private_data = pp;
326
Mikael Pettersson724114a2007-03-11 21:20:43 +0100327 return 0;
328}
329
330static int pdc_sata_port_start(struct ata_port *ap)
331{
Mikael Pettersson724114a2007-03-11 21:20:43 +0100332 int rc;
333
334 rc = pdc_common_port_start(ap);
335 if (rc)
336 return rc;
337
Mikael Pettersson599b7202006-12-01 10:55:58 +0100338 /* fix up PHYMODE4 align timing */
Tejun Heoeca25dc2007-04-17 23:44:07 +0900339 if (ap->flags & PDC_FLAG_GEN_II) {
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200340 void __iomem *sata_mmio = ap->ioaddr.scr_addr;
Mikael Pettersson599b7202006-12-01 10:55:58 +0100341 unsigned int tmp;
342
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200343 tmp = readl(sata_mmio + PDC_PHYMODE4);
Mikael Pettersson599b7202006-12-01 10:55:58 +0100344 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200345 writel(tmp, sata_mmio + PDC_PHYMODE4);
Mikael Pettersson599b7202006-12-01 10:55:58 +0100346 }
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351static void pdc_reset_port(struct ata_port *ap)
352{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200353 void __iomem *ata_ctlstat_mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 unsigned int i;
355 u32 tmp;
356
357 for (i = 11; i > 0; i--) {
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200358 tmp = readl(ata_ctlstat_mmio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (tmp & PDC_RESET)
360 break;
361
362 udelay(100);
363
364 tmp |= PDC_RESET;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200365 writel(tmp, ata_ctlstat_mmio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367
368 tmp &= ~PDC_RESET;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200369 writel(tmp, ata_ctlstat_mmio);
370 readl(ata_ctlstat_mmio); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Mikael Pettersson724114a2007-03-11 21:20:43 +0100373static int pdc_pata_cable_detect(struct ata_port *ap)
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400374{
375 u8 tmp;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200376 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400377
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200378 tmp = readb(ata_mmio + PDC_CTLSTAT + 3);
Mikael Pettersson724114a2007-03-11 21:20:43 +0100379 if (tmp & 0x01)
380 return ATA_CBL_PATA40;
381 return ATA_CBL_PATA80;
382}
383
384static int pdc_sata_cable_detect(struct ata_port *ap)
385{
Alan Coxe2a97522007-03-08 23:06:47 +0000386 return ATA_CBL_SATA;
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400387}
388
Tejun Heoda3dbb12007-07-16 14:29:40 +0900389static int pdc_sata_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Mikael Pettersson724114a2007-03-11 21:20:43 +0100391 if (sc_reg > SCR_CONTROL)
Tejun Heoda3dbb12007-07-16 14:29:40 +0900392 return -EINVAL;
393 *val = readl(ap->ioaddr.scr_addr + (sc_reg * 4));
394 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
Tejun Heoda3dbb12007-07-16 14:29:40 +0900397static int pdc_sata_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Mikael Pettersson724114a2007-03-11 21:20:43 +0100399 if (sc_reg > SCR_CONTROL)
Tejun Heoda3dbb12007-07-16 14:29:40 +0900400 return -EINVAL;
Tejun Heo0d5ff562007-02-01 15:06:36 +0900401 writel(val, ap->ioaddr.scr_addr + (sc_reg * 4));
Tejun Heoda3dbb12007-07-16 14:29:40 +0900402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100405static void pdc_atapi_pkt(struct ata_queued_cmd *qc)
Mikael Pettersson95006182007-01-09 10:51:46 +0100406{
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100407 struct ata_port *ap = qc->ap;
408 dma_addr_t sg_table = ap->prd_dma;
409 unsigned int cdb_len = qc->dev->cdb_len;
410 u8 *cdb = qc->cdb;
411 struct pdc_port_priv *pp = ap->private_data;
412 u8 *buf = pp->pkt;
Al Viro826cd152008-03-25 05:18:11 +0000413 __le32 *buf32 = (__le32 *) buf;
Tejun Heo46a67142007-12-04 13:33:30 +0900414 unsigned int dev_sel, feature;
Mikael Pettersson95006182007-01-09 10:51:46 +0100415
416 /* set control bits (byte 0), zero delay seq id (byte 3),
417 * and seq id (byte 2)
418 */
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100419 switch (qc->tf.protocol) {
Tejun Heo0dc36882007-12-18 16:34:43 -0500420 case ATAPI_PROT_DMA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100421 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
422 buf32[0] = cpu_to_le32(PDC_PKT_READ);
423 else
424 buf32[0] = 0;
425 break;
Tejun Heo0dc36882007-12-18 16:34:43 -0500426 case ATAPI_PROT_NODATA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100427 buf32[0] = cpu_to_le32(PDC_PKT_NODATA);
428 break;
429 default:
430 BUG();
431 break;
432 }
Mikael Pettersson95006182007-01-09 10:51:46 +0100433 buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */
434 buf32[2] = 0; /* no next-packet */
435
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100436 /* select drive */
Tejun Heo46a67142007-12-04 13:33:30 +0900437 if (sata_scr_valid(&ap->link))
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100438 dev_sel = PDC_DEVICE_SATA;
Tejun Heo46a67142007-12-04 13:33:30 +0900439 else
440 dev_sel = qc->tf.device;
441
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100442 buf[12] = (1 << 5) | ATA_REG_DEVICE;
443 buf[13] = dev_sel;
444 buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY;
445 buf[15] = dev_sel; /* once more, waiting for BSY to clear */
446
447 buf[16] = (1 << 5) | ATA_REG_NSECT;
Tejun Heo46a67142007-12-04 13:33:30 +0900448 buf[17] = qc->tf.nsect;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100449 buf[18] = (1 << 5) | ATA_REG_LBAL;
Tejun Heo46a67142007-12-04 13:33:30 +0900450 buf[19] = qc->tf.lbal;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100451
452 /* set feature and byte counter registers */
Tejun Heo0dc36882007-12-18 16:34:43 -0500453 if (qc->tf.protocol != ATAPI_PROT_DMA)
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100454 feature = PDC_FEATURE_ATAPI_PIO;
Tejun Heo46a67142007-12-04 13:33:30 +0900455 else
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100456 feature = PDC_FEATURE_ATAPI_DMA;
Tejun Heo46a67142007-12-04 13:33:30 +0900457
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100458 buf[20] = (1 << 5) | ATA_REG_FEATURE;
459 buf[21] = feature;
460 buf[22] = (1 << 5) | ATA_REG_BYTEL;
Tejun Heo46a67142007-12-04 13:33:30 +0900461 buf[23] = qc->tf.lbam;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100462 buf[24] = (1 << 5) | ATA_REG_BYTEH;
Tejun Heo46a67142007-12-04 13:33:30 +0900463 buf[25] = qc->tf.lbah;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100464
465 /* send ATAPI packet command 0xA0 */
466 buf[26] = (1 << 5) | ATA_REG_CMD;
Tejun Heo46a67142007-12-04 13:33:30 +0900467 buf[27] = qc->tf.command;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100468
469 /* select drive and check DRQ */
470 buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY;
471 buf[29] = dev_sel;
472
Mikael Pettersson95006182007-01-09 10:51:46 +0100473 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
474 BUG_ON(cdb_len & ~0x1E);
475
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100476 /* append the CDB as the final part */
477 buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
478 memcpy(buf+31, cdb, cdb_len);
Mikael Pettersson95006182007-01-09 10:51:46 +0100479}
480
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100481/**
482 * pdc_fill_sg - Fill PCI IDE PRD table
483 * @qc: Metadata associated with taskfile to be transferred
484 *
485 * Fill PCI IDE PRD (scatter-gather) table with segments
486 * associated with the current disk command.
487 * Make sure hardware does not choke on it.
488 *
489 * LOCKING:
490 * spin_lock_irqsave(host lock)
491 *
492 */
493static void pdc_fill_sg(struct ata_queued_cmd *qc)
494{
495 struct ata_port *ap = qc->ap;
496 struct scatterlist *sg;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100497 const u32 SG_COUNT_ASIC_BUG = 41*4;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900498 unsigned int si, idx;
499 u32 len;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100500
501 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
502 return;
503
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100504 idx = 0;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900505 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100506 u32 addr, offset;
Harvey Harrison6903c0f2008-02-13 21:14:08 -0800507 u32 sg_len;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100508
509 /* determine if physical DMA addr spans 64K boundary.
510 * Note h/w doesn't support 64-bit, so we unconditionally
511 * truncate dma_addr_t to u32.
512 */
513 addr = (u32) sg_dma_address(sg);
514 sg_len = sg_dma_len(sg);
515
516 while (sg_len) {
517 offset = addr & 0xffff;
518 len = sg_len;
519 if ((offset + sg_len) > 0x10000)
520 len = 0x10000 - offset;
521
522 ap->prd[idx].addr = cpu_to_le32(addr);
523 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
524 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
525
526 idx++;
527 sg_len -= len;
528 addr += len;
529 }
530 }
531
Tejun Heoff2aeb12007-12-05 16:43:11 +0900532 len = le32_to_cpu(ap->prd[idx - 1].flags_len);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100533
Tejun Heoff2aeb12007-12-05 16:43:11 +0900534 if (len > SG_COUNT_ASIC_BUG) {
535 u32 addr;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100536
Tejun Heoff2aeb12007-12-05 16:43:11 +0900537 VPRINTK("Splitting last PRD.\n");
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100538
Tejun Heoff2aeb12007-12-05 16:43:11 +0900539 addr = le32_to_cpu(ap->prd[idx - 1].addr);
540 ap->prd[idx - 1].flags_len = cpu_to_le32(len - SG_COUNT_ASIC_BUG);
541 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx - 1, addr, SG_COUNT_ASIC_BUG);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100542
Tejun Heoff2aeb12007-12-05 16:43:11 +0900543 addr = addr + len - SG_COUNT_ASIC_BUG;
544 len = SG_COUNT_ASIC_BUG;
545 ap->prd[idx].addr = cpu_to_le32(addr);
546 ap->prd[idx].flags_len = cpu_to_le32(len);
547 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100548
Tejun Heoff2aeb12007-12-05 16:43:11 +0900549 idx++;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100550 }
Tejun Heoff2aeb12007-12-05 16:43:11 +0900551
552 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100553}
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555static void pdc_qc_prep(struct ata_queued_cmd *qc)
556{
557 struct pdc_port_priv *pp = qc->ap->private_data;
558 unsigned int i;
559
560 VPRINTK("ENTER\n");
561
562 switch (qc->tf.protocol) {
563 case ATA_PROT_DMA:
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100564 pdc_fill_sg(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /* fall through */
566
567 case ATA_PROT_NODATA:
568 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
569 qc->dev->devno, pp->pkt);
570
571 if (qc->tf.flags & ATA_TFLAG_LBA48)
572 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
573 else
574 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
575
576 pdc_pkt_footer(&qc->tf, pp->pkt, i);
577 break;
578
Tejun Heo0dc36882007-12-18 16:34:43 -0500579 case ATAPI_PROT_PIO:
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100580 pdc_fill_sg(qc);
Mikael Pettersson95006182007-01-09 10:51:46 +0100581 break;
582
Tejun Heo0dc36882007-12-18 16:34:43 -0500583 case ATAPI_PROT_DMA:
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100584 pdc_fill_sg(qc);
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100585 /*FALLTHROUGH*/
Tejun Heo0dc36882007-12-18 16:34:43 -0500586 case ATAPI_PROT_NODATA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100587 pdc_atapi_pkt(qc);
Mikael Pettersson95006182007-01-09 10:51:46 +0100588 break;
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 default:
591 break;
592 }
593}
594
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100595static int pdc_is_sataii_tx4(unsigned long flags)
596{
597 const unsigned long mask = PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS;
598 return (flags & mask) == mask;
599}
600
601static unsigned int pdc_port_no_to_ata_no(unsigned int port_no,
602 int is_sataii_tx4)
603{
604 static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2};
605 return is_sataii_tx4 ? sataii_tx4_port_remap[port_no] : port_no;
606}
607
608static unsigned int pdc_sata_nr_ports(const struct ata_port *ap)
609{
610 return (ap->flags & PDC_FLAG_4_PORTS) ? 4 : 2;
611}
612
613static unsigned int pdc_sata_ata_port_to_ata_no(const struct ata_port *ap)
614{
615 const struct ata_host *host = ap->host;
616 unsigned int nr_ports = pdc_sata_nr_ports(ap);
617 unsigned int i;
618
619 for(i = 0; i < nr_ports && host->ports[i] != ap; ++i)
620 ;
621 BUG_ON(i >= nr_ports);
622 return pdc_port_no_to_ata_no(i, pdc_is_sataii_tx4(ap->flags));
623}
624
625static unsigned int pdc_sata_hotplug_offset(const struct ata_port *ap)
626{
627 return (ap->flags & PDC_FLAG_GEN_II) ? PDC2_SATA_PLUG_CSR : PDC_SATA_PLUG_CSR;
628}
629
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100630static void pdc_freeze(struct ata_port *ap)
631{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200632 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100633 u32 tmp;
634
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200635 tmp = readl(ata_mmio + PDC_CTLSTAT);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100636 tmp |= PDC_IRQ_DISABLE;
637 tmp &= ~PDC_DMA_ENABLE;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200638 writel(tmp, ata_mmio + PDC_CTLSTAT);
639 readl(ata_mmio + PDC_CTLSTAT); /* flush */
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100640}
641
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100642static void pdc_sata_freeze(struct ata_port *ap)
643{
644 struct ata_host *host = ap->host;
645 void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR];
646 unsigned int hotplug_offset = pdc_sata_hotplug_offset(ap);
647 unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap);
648 u32 hotplug_status;
649
650 /* Disable hotplug events on this port.
651 *
652 * Locking:
653 * 1) hotplug register accesses must be serialised via host->lock
654 * 2) ap->lock == &ap->host->lock
655 * 3) ->freeze() and ->thaw() are called with ap->lock held
656 */
657 hotplug_status = readl(host_mmio + hotplug_offset);
658 hotplug_status |= 0x11 << (ata_no + 16);
659 writel(hotplug_status, host_mmio + hotplug_offset);
660 readl(host_mmio + hotplug_offset); /* flush */
661
662 pdc_freeze(ap);
663}
664
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100665static void pdc_thaw(struct ata_port *ap)
666{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200667 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100668 u32 tmp;
669
670 /* clear IRQ */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200671 readl(ata_mmio + PDC_COMMAND);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100672
673 /* turn IRQ back on */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200674 tmp = readl(ata_mmio + PDC_CTLSTAT);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100675 tmp &= ~PDC_IRQ_DISABLE;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200676 writel(tmp, ata_mmio + PDC_CTLSTAT);
677 readl(ata_mmio + PDC_CTLSTAT); /* flush */
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100678}
679
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100680static void pdc_sata_thaw(struct ata_port *ap)
681{
682 struct ata_host *host = ap->host;
683 void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR];
684 unsigned int hotplug_offset = pdc_sata_hotplug_offset(ap);
685 unsigned int ata_no = pdc_sata_ata_port_to_ata_no(ap);
686 u32 hotplug_status;
687
688 pdc_thaw(ap);
689
690 /* Enable hotplug events on this port.
691 * Locking: see pdc_sata_freeze().
692 */
693 hotplug_status = readl(host_mmio + hotplug_offset);
694 hotplug_status |= 0x11 << ata_no;
695 hotplug_status &= ~(0x11 << (ata_no + 16));
696 writel(hotplug_status, host_mmio + hotplug_offset);
697 readl(host_mmio + hotplug_offset); /* flush */
698}
699
Tejun Heoa1efdab2008-03-25 12:22:50 +0900700static void pdc_error_handler(struct ata_port *ap)
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100701{
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100702 if (!(ap->pflags & ATA_PFLAG_FROZEN))
703 pdc_reset_port(ap);
704
Tejun Heoa1efdab2008-03-25 12:22:50 +0900705 ata_std_error_handler(ap);
Mikael Pettersson724114a2007-03-11 21:20:43 +0100706}
707
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100708static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
709{
710 struct ata_port *ap = qc->ap;
711
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100712 /* make DMA engine forget about the failed command */
Tejun Heoa51d6442007-03-20 15:24:11 +0900713 if (qc->flags & ATA_QCFLAG_FAILED)
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100714 pdc_reset_port(ap);
715}
716
Mikael Pettersson176efb02007-03-14 09:51:35 +0100717static void pdc_error_intr(struct ata_port *ap, struct ata_queued_cmd *qc,
718 u32 port_status, u32 err_mask)
719{
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900720 struct ata_eh_info *ehi = &ap->link.eh_info;
Mikael Pettersson176efb02007-03-14 09:51:35 +0100721 unsigned int ac_err_mask = 0;
722
723 ata_ehi_clear_desc(ehi);
724 ata_ehi_push_desc(ehi, "port_status 0x%08x", port_status);
725 port_status &= err_mask;
726
727 if (port_status & PDC_DRIVE_ERR)
728 ac_err_mask |= AC_ERR_DEV;
729 if (port_status & (PDC_OVERRUN_ERR | PDC_UNDERRUN_ERR))
730 ac_err_mask |= AC_ERR_HSM;
731 if (port_status & (PDC2_ATA_HBA_ERR | PDC2_ATA_DMA_CNT_ERR))
732 ac_err_mask |= AC_ERR_ATA_BUS;
733 if (port_status & (PDC_PH_ERR | PDC_SH_ERR | PDC_DH_ERR | PDC2_HTO_ERR
734 | PDC_PCI_SYS_ERR | PDC1_PCI_PARITY_ERR))
735 ac_err_mask |= AC_ERR_HOST_BUS;
736
Tejun Heo936fd732007-08-06 18:36:23 +0900737 if (sata_scr_valid(&ap->link)) {
Tejun Heoda3dbb12007-07-16 14:29:40 +0900738 u32 serror;
739
740 pdc_sata_scr_read(ap, SCR_ERROR, &serror);
741 ehi->serror |= serror;
742 }
Mikael Petterssonce2d3ab2007-04-07 14:29:51 +0200743
Mikael Pettersson176efb02007-03-14 09:51:35 +0100744 qc->err_mask |= ac_err_mask;
Mikael Petterssonce2d3ab2007-04-07 14:29:51 +0200745
746 pdc_reset_port(ap);
Mikael Pettersson8ffcfd92007-05-06 22:12:31 +0200747
748 ata_port_abort(ap);
Mikael Pettersson176efb02007-03-14 09:51:35 +0100749}
750
Mikael Petterssond0e58032007-06-19 21:53:30 +0200751static inline unsigned int pdc_host_intr(struct ata_port *ap,
752 struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Albert Leea22e2eb2005-12-05 15:38:02 +0800754 unsigned int handled = 0;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200755 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Mikael Pettersson176efb02007-03-14 09:51:35 +0100756 u32 port_status, err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Mikael Pettersson176efb02007-03-14 09:51:35 +0100758 err_mask = PDC_ERR_MASK;
Tejun Heoeca25dc2007-04-17 23:44:07 +0900759 if (ap->flags & PDC_FLAG_GEN_II)
Mikael Pettersson176efb02007-03-14 09:51:35 +0100760 err_mask &= ~PDC1_ERR_MASK;
761 else
762 err_mask &= ~PDC2_ERR_MASK;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200763 port_status = readl(ata_mmio + PDC_GLOBAL_CTL);
Mikael Pettersson176efb02007-03-14 09:51:35 +0100764 if (unlikely(port_status & err_mask)) {
765 pdc_error_intr(ap, qc, port_status, err_mask);
766 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768
769 switch (qc->tf.protocol) {
770 case ATA_PROT_DMA:
771 case ATA_PROT_NODATA:
Tejun Heo0dc36882007-12-18 16:34:43 -0500772 case ATAPI_PROT_DMA:
773 case ATAPI_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800774 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
775 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 handled = 1;
777 break;
778
Mikael Petterssond0e58032007-06-19 21:53:30 +0200779 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800780 ap->stats.idle_irq++;
781 break;
Mikael Petterssond0e58032007-06-19 21:53:30 +0200782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Albert Leeee500aa2005-09-27 17:34:38 +0800784 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787static void pdc_irq_clear(struct ata_port *ap)
788{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200789 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200791 readl(ata_mmio + PDC_COMMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792}
793
Jeff Garzik5796d1c2007-10-26 00:03:37 -0400794static irqreturn_t pdc_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Jeff Garzikcca39742006-08-24 03:19:22 -0400796 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 struct ata_port *ap;
798 u32 mask = 0;
799 unsigned int i, tmp;
800 unsigned int handled = 0;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200801 void __iomem *host_mmio;
Mikael Petterssona77720a2007-07-03 01:09:05 +0200802 unsigned int hotplug_offset, ata_no;
803 u32 hotplug_status;
804 int is_sataii_tx4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 VPRINTK("ENTER\n");
807
Tejun Heo0d5ff562007-02-01 15:06:36 +0900808 if (!host || !host->iomap[PDC_MMIO_BAR]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 VPRINTK("QUICK EXIT\n");
810 return IRQ_NONE;
811 }
812
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200813 host_mmio = host->iomap[PDC_MMIO_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100815 spin_lock(&host->lock);
816
Mikael Petterssona77720a2007-07-03 01:09:05 +0200817 /* read and clear hotplug flags for all ports */
818 if (host->ports[0]->flags & PDC_FLAG_GEN_II)
819 hotplug_offset = PDC2_SATA_PLUG_CSR;
820 else
821 hotplug_offset = PDC_SATA_PLUG_CSR;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200822 hotplug_status = readl(host_mmio + hotplug_offset);
Mikael Petterssona77720a2007-07-03 01:09:05 +0200823 if (hotplug_status & 0xff)
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200824 writel(hotplug_status | 0xff, host_mmio + hotplug_offset);
Mikael Petterssona77720a2007-07-03 01:09:05 +0200825 hotplug_status &= 0xff; /* clear uninteresting bits */
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /* reading should also clear interrupts */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200828 mask = readl(host_mmio + PDC_INT_SEQMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Mikael Petterssona77720a2007-07-03 01:09:05 +0200830 if (mask == 0xffffffff && hotplug_status == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 VPRINTK("QUICK EXIT 2\n");
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100832 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
Luke Kosewski6340f012006-01-28 12:39:29 -0500834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 mask &= 0xffff; /* only 16 tags possible */
Mikael Petterssona77720a2007-07-03 01:09:05 +0200836 if (mask == 0 && hotplug_status == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 VPRINTK("QUICK EXIT 3\n");
Luke Kosewski6340f012006-01-28 12:39:29 -0500838 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200841 writel(mask, host_mmio + PDC_INT_SEQMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Mikael Petterssona77720a2007-07-03 01:09:05 +0200843 is_sataii_tx4 = pdc_is_sataii_tx4(host->ports[0]->flags);
844
Jeff Garzikcca39742006-08-24 03:19:22 -0400845 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 VPRINTK("port %u\n", i);
Jeff Garzikcca39742006-08-24 03:19:22 -0400847 ap = host->ports[i];
Mikael Petterssona77720a2007-07-03 01:09:05 +0200848
849 /* check for a plug or unplug event */
850 ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4);
851 tmp = hotplug_status & (0x11 << ata_no);
852 if (tmp && ap &&
853 !(ap->flags & ATA_FLAG_DISABLED)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900854 struct ata_eh_info *ehi = &ap->link.eh_info;
Mikael Petterssona77720a2007-07-03 01:09:05 +0200855 ata_ehi_clear_desc(ehi);
856 ata_ehi_hotplugged(ehi);
857 ata_ehi_push_desc(ehi, "hotplug_status %#x", tmp);
858 ata_port_freeze(ap);
859 ++handled;
860 continue;
861 }
862
863 /* check for a packet interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900865 if (tmp && ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400866 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 struct ata_queued_cmd *qc;
868
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900869 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800870 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 handled += pdc_host_intr(ap, qc);
872 }
873 }
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 VPRINTK("EXIT\n");
876
Luke Kosewski6340f012006-01-28 12:39:29 -0500877done_irq:
Jeff Garzikcca39742006-08-24 03:19:22 -0400878 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return IRQ_RETVAL(handled);
880}
881
882static inline void pdc_packet_start(struct ata_queued_cmd *qc)
883{
884 struct ata_port *ap = qc->ap;
885 struct pdc_port_priv *pp = ap->private_data;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200886 void __iomem *host_mmio = ap->host->iomap[PDC_MMIO_BAR];
887 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 unsigned int port_no = ap->port_no;
889 u8 seq = (u8) (port_no + 1);
890
891 VPRINTK("ENTER, ap %p\n", ap);
892
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200893 writel(0x00000001, host_mmio + (seq * 4));
894 readl(host_mmio + (seq * 4)); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 pp->pkt[2] = seq;
897 wmb(); /* flush PRD, pkt writes */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200898 writel(pp->pkt_dma, ata_mmio + PDC_PKT_SUBMIT);
899 readl(ata_mmio + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Tejun Heo9363c382008-04-07 22:47:16 +0900902static unsigned int pdc_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 switch (qc->tf.protocol) {
Tejun Heo0dc36882007-12-18 16:34:43 -0500905 case ATAPI_PROT_NODATA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100906 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
907 break;
908 /*FALLTHROUGH*/
Tejun Heo51b94d22007-06-08 13:46:55 -0700909 case ATA_PROT_NODATA:
910 if (qc->tf.flags & ATA_TFLAG_POLLING)
911 break;
912 /*FALLTHROUGH*/
Tejun Heo0dc36882007-12-18 16:34:43 -0500913 case ATAPI_PROT_DMA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 case ATA_PROT_DMA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 pdc_packet_start(qc);
916 return 0;
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 default:
919 break;
920 }
921
Tejun Heo9363c382008-04-07 22:47:16 +0900922 return ata_sff_qc_issue(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Jeff Garzik057ace52005-10-22 14:27:05 -0400925static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Tejun Heo0dc36882007-12-18 16:34:43 -0500927 WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA);
Tejun Heo9363c382008-04-07 22:47:16 +0900928 ata_sff_tf_load(ap, tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Jeff Garzik5796d1c2007-10-26 00:03:37 -0400931static void pdc_exec_command_mmio(struct ata_port *ap,
932 const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Tejun Heo0dc36882007-12-18 16:34:43 -0500934 WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA);
Tejun Heo9363c382008-04-07 22:47:16 +0900935 ata_sff_exec_command(ap, tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Mikael Pettersson95006182007-01-09 10:51:46 +0100938static int pdc_check_atapi_dma(struct ata_queued_cmd *qc)
939{
940 u8 *scsicmd = qc->scsicmd->cmnd;
941 int pio = 1; /* atapi dma off by default */
942
943 /* Whitelist commands that may use DMA. */
944 switch (scsicmd[0]) {
945 case WRITE_12:
946 case WRITE_10:
947 case WRITE_6:
948 case READ_12:
949 case READ_10:
950 case READ_6:
951 case 0xad: /* READ_DVD_STRUCTURE */
952 case 0xbe: /* READ_CD */
953 pio = 0;
954 }
955 /* -45150 (FFFF4FA2) to -1 (FFFFFFFF) shall use PIO mode */
956 if (scsicmd[0] == WRITE_10) {
Jeff Garzik5796d1c2007-10-26 00:03:37 -0400957 unsigned int lba =
958 (scsicmd[2] << 24) |
959 (scsicmd[3] << 16) |
960 (scsicmd[4] << 8) |
961 scsicmd[5];
Mikael Pettersson95006182007-01-09 10:51:46 +0100962 if (lba >= 0xFFFF4FA2)
963 pio = 1;
964 }
965 return pio;
966}
967
Mikael Pettersson724114a2007-03-11 21:20:43 +0100968static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc)
Mikael Pettersson95006182007-01-09 10:51:46 +0100969{
Mikael Pettersson95006182007-01-09 10:51:46 +0100970 /* First generation chips cannot use ATAPI DMA on SATA ports */
Mikael Pettersson724114a2007-03-11 21:20:43 +0100971 return 1;
Mikael Pettersson95006182007-01-09 10:51:46 +0100972}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Tejun Heoeca25dc2007-04-17 23:44:07 +0900974static void pdc_ata_setup_port(struct ata_port *ap,
975 void __iomem *base, void __iomem *scr_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Tejun Heoeca25dc2007-04-17 23:44:07 +0900977 ap->ioaddr.cmd_addr = base;
978 ap->ioaddr.data_addr = base;
979 ap->ioaddr.feature_addr =
980 ap->ioaddr.error_addr = base + 0x4;
981 ap->ioaddr.nsect_addr = base + 0x8;
982 ap->ioaddr.lbal_addr = base + 0xc;
983 ap->ioaddr.lbam_addr = base + 0x10;
984 ap->ioaddr.lbah_addr = base + 0x14;
985 ap->ioaddr.device_addr = base + 0x18;
986 ap->ioaddr.command_addr =
987 ap->ioaddr.status_addr = base + 0x1c;
988 ap->ioaddr.altstatus_addr =
989 ap->ioaddr.ctl_addr = base + 0x38;
990 ap->ioaddr.scr_addr = scr_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
Tejun Heoeca25dc2007-04-17 23:44:07 +0900993static void pdc_host_init(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200995 void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR];
Tejun Heoeca25dc2007-04-17 23:44:07 +0900996 int is_gen2 = host->ports[0]->flags & PDC_FLAG_GEN_II;
Mikael Petterssond324d4622006-12-06 09:55:43 +0100997 int hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 u32 tmp;
999
Tejun Heoeca25dc2007-04-17 23:44:07 +09001000 if (is_gen2)
Mikael Petterssond324d4622006-12-06 09:55:43 +01001001 hotplug_offset = PDC2_SATA_PLUG_CSR;
1002 else
1003 hotplug_offset = PDC_SATA_PLUG_CSR;
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /*
1006 * Except for the hotplug stuff, this is voodoo from the
1007 * Promise driver. Label this entire section
1008 * "TODO: figure out why we do this"
1009 */
1010
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001011 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001012 tmp = readl(host_mmio + PDC_FLASH_CTL);
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001013 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
Tejun Heoeca25dc2007-04-17 23:44:07 +09001014 if (!is_gen2)
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001015 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001016 writel(tmp, host_mmio + PDC_FLASH_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /* clear plug/unplug flags for all ports */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001019 tmp = readl(host_mmio + hotplug_offset);
1020 writel(tmp | 0xff, host_mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Mikael Petterssona77720a2007-07-03 01:09:05 +02001022 /* unmask plug/unplug ints */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001023 tmp = readl(host_mmio + hotplug_offset);
1024 writel(tmp & ~0xff0000, host_mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001026 /* don't initialise TBG or SLEW on 2nd generation chips */
Tejun Heoeca25dc2007-04-17 23:44:07 +09001027 if (is_gen2)
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001028 return;
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /* reduce TBG clock to 133 Mhz. */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001031 tmp = readl(host_mmio + PDC_TBG_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 tmp &= ~0x30000; /* clear bit 17, 16*/
1033 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001034 writel(tmp, host_mmio + PDC_TBG_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001036 readl(host_mmio + PDC_TBG_MODE); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 msleep(10);
1038
1039 /* adjust slew rate control register. */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001040 tmp = readl(host_mmio + PDC_SLEW_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
1042 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001043 writel(tmp, host_mmio + PDC_SLEW_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Jeff Garzik5796d1c2007-10-26 00:03:37 -04001046static int pdc_ata_init_one(struct pci_dev *pdev,
1047 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 static int printed_version;
Tejun Heoeca25dc2007-04-17 23:44:07 +09001050 const struct ata_port_info *pi = &pdc_port_info[ent->driver_data];
1051 const struct ata_port_info *ppi[PDC_MAX_PORTS];
1052 struct ata_host *host;
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001053 void __iomem *host_mmio;
Tejun Heoeca25dc2007-04-17 23:44:07 +09001054 int n_ports, i, rc;
Mikael Pettersson5ac2fe52007-05-06 22:14:01 +02001055 int is_sataii_tx4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05001058 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Tejun Heoeca25dc2007-04-17 23:44:07 +09001060 /* enable and acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09001061 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (rc)
1063 return rc;
1064
Tejun Heo0d5ff562007-02-01 15:06:36 +09001065 rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME);
1066 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001067 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09001068 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001069 return rc;
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001070 host_mmio = pcim_iomap_table(pdev)[PDC_MMIO_BAR];
Tejun Heoeca25dc2007-04-17 23:44:07 +09001071
1072 /* determine port configuration and setup host */
1073 n_ports = 2;
1074 if (pi->flags & PDC_FLAG_4_PORTS)
1075 n_ports = 4;
1076 for (i = 0; i < n_ports; i++)
1077 ppi[i] = pi;
1078
1079 if (pi->flags & PDC_FLAG_SATA_PATA) {
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001080 u8 tmp = readb(host_mmio + PDC_FLASH_CTL + 1);
Mikael Petterssond0e58032007-06-19 21:53:30 +02001081 if (!(tmp & 0x80))
Tejun Heoeca25dc2007-04-17 23:44:07 +09001082 ppi[n_ports++] = pi + 1;
Tejun Heoeca25dc2007-04-17 23:44:07 +09001083 }
1084
1085 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
1086 if (!host) {
1087 dev_printk(KERN_ERR, &pdev->dev, "failed to allocate host\n");
1088 return -ENOMEM;
1089 }
1090 host->iomap = pcim_iomap_table(pdev);
1091
Mikael Petterssond0e58032007-06-19 21:53:30 +02001092 is_sataii_tx4 = pdc_is_sataii_tx4(pi->flags);
Mikael Pettersson5ac2fe52007-05-06 22:14:01 +02001093 for (i = 0; i < host->n_ports; i++) {
Tejun Heocbcdd872007-08-18 13:14:55 +09001094 struct ata_port *ap = host->ports[i];
Mikael Petterssond0e58032007-06-19 21:53:30 +02001095 unsigned int ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4);
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001096 unsigned int ata_offset = 0x200 + ata_no * 0x80;
Tejun Heocbcdd872007-08-18 13:14:55 +09001097 unsigned int scr_offset = 0x400 + ata_no * 0x100;
1098
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001099 pdc_ata_setup_port(ap, host_mmio + ata_offset, host_mmio + scr_offset);
Tejun Heocbcdd872007-08-18 13:14:55 +09001100
1101 ata_port_pbar_desc(ap, PDC_MMIO_BAR, -1, "mmio");
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001102 ata_port_pbar_desc(ap, PDC_MMIO_BAR, ata_offset, "ata");
Mikael Pettersson5ac2fe52007-05-06 22:14:01 +02001103 }
Tejun Heoeca25dc2007-04-17 23:44:07 +09001104
1105 /* initialize adapter */
1106 pdc_host_init(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
1109 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001110 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
1112 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001113 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Tejun Heoeca25dc2007-04-17 23:44:07 +09001115 /* start host, request IRQ and attach */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 pci_set_master(pdev);
Tejun Heoeca25dc2007-04-17 23:44:07 +09001117 return ata_host_activate(host, pdev->irq, pdc_interrupt, IRQF_SHARED,
1118 &pdc_ata_sht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121static int __init pdc_ata_init(void)
1122{
Pavel Roskinb7887192006-08-10 18:13:18 +09001123 return pci_register_driver(&pdc_ata_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126static void __exit pdc_ata_exit(void)
1127{
1128 pci_unregister_driver(&pdc_ata_pci_driver);
1129}
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -04001132MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133MODULE_LICENSE("GPL");
1134MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
1135MODULE_VERSION(DRV_VERSION);
1136
1137module_init(pdc_ata_init);
1138module_exit(pdc_ata_exit);