blob: ba9a2570a742c6fccfc5325cd116f9dcb055238a [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 Heo82ef04f2008-07-31 17:02:40 +0900140static 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);
Mikael Pettersson7715a6f2008-05-17 18:49:09 +0200142static 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);
Mikael Petterssoncadef672008-10-31 08:03:55 +0100156static 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);
Tejun Heoa1efdab2008-03-25 12:22:50 +0900160static void pdc_error_handler(struct ata_port *ap);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100161static void pdc_post_internal_cmd(struct ata_queued_cmd *qc);
Mikael Pettersson724114a2007-03-11 21:20:43 +0100162static int pdc_pata_cable_detect(struct ata_port *ap);
163static int pdc_sata_cable_detect(struct ata_port *ap);
Jeff Garzik374b1872005-08-30 05:42:52 -0400164
Jeff Garzik193515d2005-11-07 00:59:37 -0500165static struct scsi_host_template pdc_ata_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900166 ATA_BASE_SHT(DRV_NAME),
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100167 .sg_tablesize = PDC_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 .dma_boundary = ATA_DMA_BOUNDARY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169};
170
Tejun Heo029cfd62008-03-25 12:22:49 +0900171static const struct ata_port_operations pdc_common_ops = {
172 .inherits = &ata_sff_port_ops,
Mikael Pettersson95006182007-01-09 10:51:46 +0100173
Tejun Heo5682ed32008-04-07 22:47:16 +0900174 .sff_tf_load = pdc_tf_load_mmio,
175 .sff_exec_command = pdc_exec_command_mmio,
Tejun Heo029cfd62008-03-25 12:22:49 +0900176 .check_atapi_dma = pdc_check_atapi_dma,
Mikael Pettersson95006182007-01-09 10:51:46 +0100177 .qc_prep = pdc_qc_prep,
Tejun Heo9363c382008-04-07 22:47:16 +0900178 .qc_issue = pdc_qc_issue,
Tejun Heo5682ed32008-04-07 22:47:16 +0900179 .sff_irq_clear = pdc_irq_clear,
Tejun Heo029cfd62008-03-25 12:22:49 +0900180
181 .post_internal_cmd = pdc_post_internal_cmd,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900182 .error_handler = pdc_error_handler,
Tejun Heo029cfd62008-03-25 12:22:49 +0900183};
184
185static struct ata_port_operations pdc_sata_ops = {
186 .inherits = &pdc_common_ops,
187 .cable_detect = pdc_sata_cable_detect,
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100188 .freeze = pdc_sata_freeze,
189 .thaw = pdc_sata_thaw,
Mikael Pettersson95006182007-01-09 10:51:46 +0100190 .scr_read = pdc_sata_scr_read,
191 .scr_write = pdc_sata_scr_write,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900192 .port_start = pdc_sata_port_start,
Mikael Petterssoncadef672008-10-31 08:03:55 +0100193 .hardreset = pdc_sata_hardreset,
Mikael Pettersson95006182007-01-09 10:51:46 +0100194};
195
196/* First-generation chips need a more restrictive ->check_atapi_dma op */
Tejun Heo029cfd62008-03-25 12:22:49 +0900197static struct ata_port_operations pdc_old_sata_ops = {
198 .inherits = &pdc_sata_ops,
Mikael Pettersson724114a2007-03-11 21:20:43 +0100199 .check_atapi_dma = pdc_old_sata_check_atapi_dma,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Tejun Heo029cfd62008-03-25 12:22:49 +0900202static struct ata_port_operations pdc_pata_ops = {
203 .inherits = &pdc_common_ops,
204 .cable_detect = pdc_pata_cable_detect,
Mikael Pettersson53873732007-02-11 23:19:53 +0100205 .freeze = pdc_freeze,
206 .thaw = pdc_thaw,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900207 .port_start = pdc_common_port_start,
Mikael Petterssoncadef672008-10-31 08:03:55 +0100208 .softreset = pdc_pata_softreset,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400209};
210
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100211static const struct ata_port_info pdc_port_info[] = {
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100212 [board_2037x] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900214 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
215 PDC_FLAG_SATA_PATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .pio_mask = 0x1f, /* pio0-4 */
217 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400218 .udma_mask = ATA_UDMA6,
Mikael Pettersson95006182007-01-09 10:51:46 +0100219 .port_ops = &pdc_old_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 },
221
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100222 [board_2037x_pata] =
Tejun Heoeca25dc2007-04-17 23:44:07 +0900223 {
224 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
225 .pio_mask = 0x1f, /* pio0-4 */
226 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400227 .udma_mask = ATA_UDMA6,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900228 .port_ops = &pdc_pata_ops,
229 },
230
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100231 [board_20319] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900233 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
234 PDC_FLAG_4_PORTS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 .pio_mask = 0x1f, /* pio0-4 */
236 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400237 .udma_mask = ATA_UDMA6,
Mikael Pettersson95006182007-01-09 10:51:46 +0100238 .port_ops = &pdc_old_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400240
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100241 [board_20619] =
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400242 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900243 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
244 PDC_FLAG_4_PORTS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400245 .pio_mask = 0x1f, /* pio0-4 */
246 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400247 .udma_mask = ATA_UDMA6,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400248 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400249 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500250
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100251 [board_2057x] =
Luke Kosewski6340f012006-01-28 12:39:29 -0500252 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900253 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
254 PDC_FLAG_GEN_II | PDC_FLAG_SATA_PATA,
Luke Kosewski6340f012006-01-28 12:39:29 -0500255 .pio_mask = 0x1f, /* pio0-4 */
256 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400257 .udma_mask = ATA_UDMA6,
Luke Kosewski6340f012006-01-28 12:39:29 -0500258 .port_ops = &pdc_sata_ops,
259 },
260
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100261 [board_2057x_pata] =
Tejun Heoeca25dc2007-04-17 23:44:07 +0900262 {
Jeff Garzikbb312232007-05-24 23:35:59 -0400263 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS |
Tejun Heoeca25dc2007-04-17 23:44:07 +0900264 PDC_FLAG_GEN_II,
265 .pio_mask = 0x1f, /* pio0-4 */
266 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400267 .udma_mask = ATA_UDMA6,
Tejun Heoeca25dc2007-04-17 23:44:07 +0900268 .port_ops = &pdc_pata_ops,
269 },
270
Mikael Pettersson5595ddf2007-10-30 14:21:55 +0100271 [board_40518] =
Luke Kosewski6340f012006-01-28 12:39:29 -0500272 {
Tejun Heoeca25dc2007-04-17 23:44:07 +0900273 .flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA |
274 PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS,
Luke Kosewski6340f012006-01-28 12:39:29 -0500275 .pio_mask = 0x1f, /* pio0-4 */
276 .mwdma_mask = 0x07, /* mwdma0-2 */
Jeff Garzik469248a2007-07-08 01:13:16 -0400277 .udma_mask = ATA_UDMA6,
Luke Kosewski6340f012006-01-28 12:39:29 -0500278 .port_ops = &pdc_sata_ops,
279 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280};
281
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500282static const struct pci_device_id pdc_ata_pci_tbl[] = {
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400283 { PCI_VDEVICE(PROMISE, 0x3371), board_2037x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400284 { PCI_VDEVICE(PROMISE, 0x3373), board_2037x },
285 { PCI_VDEVICE(PROMISE, 0x3375), board_2037x },
286 { PCI_VDEVICE(PROMISE, 0x3376), board_2037x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100287 { PCI_VDEVICE(PROMISE, 0x3570), board_2057x },
288 { PCI_VDEVICE(PROMISE, 0x3571), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400289 { PCI_VDEVICE(PROMISE, 0x3574), board_2057x },
Mikael Petterssond324d4622006-12-06 09:55:43 +0100290 { PCI_VDEVICE(PROMISE, 0x3577), board_2057x },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100291 { PCI_VDEVICE(PROMISE, 0x3d73), board_2057x },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400292 { PCI_VDEVICE(PROMISE, 0x3d75), board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400294 { PCI_VDEVICE(PROMISE, 0x3318), board_20319 },
295 { PCI_VDEVICE(PROMISE, 0x3319), board_20319 },
Mikael Pettersson7f9992a2007-08-29 10:25:37 +0200296 { PCI_VDEVICE(PROMISE, 0x3515), board_40518 },
297 { PCI_VDEVICE(PROMISE, 0x3519), board_40518 },
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +0100298 { PCI_VDEVICE(PROMISE, 0x3d17), board_40518 },
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400299 { PCI_VDEVICE(PROMISE, 0x3d18), board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Jeff Garzik54bb3a942006-09-27 22:20:11 -0400301 { PCI_VDEVICE(PROMISE, 0x6629), board_20619 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 { } /* terminate list */
304};
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static struct pci_driver pdc_ata_pci_driver = {
307 .name = DRV_NAME,
308 .id_table = pdc_ata_pci_tbl,
309 .probe = pdc_ata_init_one,
310 .remove = ata_pci_remove_one,
311};
312
Mikael Pettersson724114a2007-03-11 21:20:43 +0100313static int pdc_common_port_start(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Jeff Garzikcca39742006-08-24 03:19:22 -0400315 struct device *dev = ap->host->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct pdc_port_priv *pp;
317 int rc;
318
319 rc = ata_port_start(ap);
320 if (rc)
321 return rc;
322
Tejun Heo24dc5f32007-01-20 16:00:28 +0900323 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
324 if (!pp)
325 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Tejun Heo24dc5f32007-01-20 16:00:28 +0900327 pp->pkt = dmam_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
328 if (!pp->pkt)
329 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 ap->private_data = pp;
332
Mikael Pettersson724114a2007-03-11 21:20:43 +0100333 return 0;
334}
335
336static int pdc_sata_port_start(struct ata_port *ap)
337{
Mikael Pettersson724114a2007-03-11 21:20:43 +0100338 int rc;
339
340 rc = pdc_common_port_start(ap);
341 if (rc)
342 return rc;
343
Mikael Pettersson599b7202006-12-01 10:55:58 +0100344 /* fix up PHYMODE4 align timing */
Tejun Heoeca25dc2007-04-17 23:44:07 +0900345 if (ap->flags & PDC_FLAG_GEN_II) {
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200346 void __iomem *sata_mmio = ap->ioaddr.scr_addr;
Mikael Pettersson599b7202006-12-01 10:55:58 +0100347 unsigned int tmp;
348
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200349 tmp = readl(sata_mmio + PDC_PHYMODE4);
Mikael Pettersson599b7202006-12-01 10:55:58 +0100350 tmp = (tmp & ~3) | 1; /* set bits 1:0 = 0:1 */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200351 writel(tmp, sata_mmio + PDC_PHYMODE4);
Mikael Pettersson599b7202006-12-01 10:55:58 +0100352 }
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357static void pdc_reset_port(struct ata_port *ap)
358{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200359 void __iomem *ata_ctlstat_mmio = ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 unsigned int i;
361 u32 tmp;
362
363 for (i = 11; i > 0; i--) {
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200364 tmp = readl(ata_ctlstat_mmio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (tmp & PDC_RESET)
366 break;
367
368 udelay(100);
369
370 tmp |= PDC_RESET;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200371 writel(tmp, ata_ctlstat_mmio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373
374 tmp &= ~PDC_RESET;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200375 writel(tmp, ata_ctlstat_mmio);
376 readl(ata_ctlstat_mmio); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Mikael Pettersson724114a2007-03-11 21:20:43 +0100379static int pdc_pata_cable_detect(struct ata_port *ap)
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400380{
381 u8 tmp;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200382 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400383
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200384 tmp = readb(ata_mmio + PDC_CTLSTAT + 3);
Mikael Pettersson724114a2007-03-11 21:20:43 +0100385 if (tmp & 0x01)
386 return ATA_CBL_PATA40;
387 return ATA_CBL_PATA80;
388}
389
390static int pdc_sata_cable_detect(struct ata_port *ap)
391{
Alan Coxe2a97522007-03-08 23:06:47 +0000392 return ATA_CBL_SATA;
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400393}
394
Tejun Heo82ef04f2008-07-31 17:02:40 +0900395static int pdc_sata_scr_read(struct ata_link *link,
396 unsigned int sc_reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Mikael Pettersson724114a2007-03-11 21:20:43 +0100398 if (sc_reg > SCR_CONTROL)
Tejun Heoda3dbb12007-07-16 14:29:40 +0900399 return -EINVAL;
Tejun Heo82ef04f2008-07-31 17:02:40 +0900400 *val = readl(link->ap->ioaddr.scr_addr + (sc_reg * 4));
Tejun Heoda3dbb12007-07-16 14:29:40 +0900401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Tejun Heo82ef04f2008-07-31 17:02:40 +0900404static int pdc_sata_scr_write(struct ata_link *link,
405 unsigned int sc_reg, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Mikael Pettersson724114a2007-03-11 21:20:43 +0100407 if (sc_reg > SCR_CONTROL)
Tejun Heoda3dbb12007-07-16 14:29:40 +0900408 return -EINVAL;
Tejun Heo82ef04f2008-07-31 17:02:40 +0900409 writel(val, link->ap->ioaddr.scr_addr + (sc_reg * 4));
Tejun Heoda3dbb12007-07-16 14:29:40 +0900410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100413static void pdc_atapi_pkt(struct ata_queued_cmd *qc)
Mikael Pettersson95006182007-01-09 10:51:46 +0100414{
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100415 struct ata_port *ap = qc->ap;
416 dma_addr_t sg_table = ap->prd_dma;
417 unsigned int cdb_len = qc->dev->cdb_len;
418 u8 *cdb = qc->cdb;
419 struct pdc_port_priv *pp = ap->private_data;
420 u8 *buf = pp->pkt;
Al Viro826cd152008-03-25 05:18:11 +0000421 __le32 *buf32 = (__le32 *) buf;
Tejun Heo46a67142007-12-04 13:33:30 +0900422 unsigned int dev_sel, feature;
Mikael Pettersson95006182007-01-09 10:51:46 +0100423
424 /* set control bits (byte 0), zero delay seq id (byte 3),
425 * and seq id (byte 2)
426 */
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100427 switch (qc->tf.protocol) {
Tejun Heo0dc36882007-12-18 16:34:43 -0500428 case ATAPI_PROT_DMA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100429 if (!(qc->tf.flags & ATA_TFLAG_WRITE))
430 buf32[0] = cpu_to_le32(PDC_PKT_READ);
431 else
432 buf32[0] = 0;
433 break;
Tejun Heo0dc36882007-12-18 16:34:43 -0500434 case ATAPI_PROT_NODATA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100435 buf32[0] = cpu_to_le32(PDC_PKT_NODATA);
436 break;
437 default:
438 BUG();
439 break;
440 }
Mikael Pettersson95006182007-01-09 10:51:46 +0100441 buf32[1] = cpu_to_le32(sg_table); /* S/G table addr */
442 buf32[2] = 0; /* no next-packet */
443
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100444 /* select drive */
Tejun Heo46a67142007-12-04 13:33:30 +0900445 if (sata_scr_valid(&ap->link))
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100446 dev_sel = PDC_DEVICE_SATA;
Tejun Heo46a67142007-12-04 13:33:30 +0900447 else
448 dev_sel = qc->tf.device;
449
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100450 buf[12] = (1 << 5) | ATA_REG_DEVICE;
451 buf[13] = dev_sel;
452 buf[14] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_CLEAR_BSY;
453 buf[15] = dev_sel; /* once more, waiting for BSY to clear */
454
455 buf[16] = (1 << 5) | ATA_REG_NSECT;
Tejun Heo46a67142007-12-04 13:33:30 +0900456 buf[17] = qc->tf.nsect;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100457 buf[18] = (1 << 5) | ATA_REG_LBAL;
Tejun Heo46a67142007-12-04 13:33:30 +0900458 buf[19] = qc->tf.lbal;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100459
460 /* set feature and byte counter registers */
Tejun Heo0dc36882007-12-18 16:34:43 -0500461 if (qc->tf.protocol != ATAPI_PROT_DMA)
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100462 feature = PDC_FEATURE_ATAPI_PIO;
Tejun Heo46a67142007-12-04 13:33:30 +0900463 else
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100464 feature = PDC_FEATURE_ATAPI_DMA;
Tejun Heo46a67142007-12-04 13:33:30 +0900465
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100466 buf[20] = (1 << 5) | ATA_REG_FEATURE;
467 buf[21] = feature;
468 buf[22] = (1 << 5) | ATA_REG_BYTEL;
Tejun Heo46a67142007-12-04 13:33:30 +0900469 buf[23] = qc->tf.lbam;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100470 buf[24] = (1 << 5) | ATA_REG_BYTEH;
Tejun Heo46a67142007-12-04 13:33:30 +0900471 buf[25] = qc->tf.lbah;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100472
473 /* send ATAPI packet command 0xA0 */
474 buf[26] = (1 << 5) | ATA_REG_CMD;
Tejun Heo46a67142007-12-04 13:33:30 +0900475 buf[27] = qc->tf.command;
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100476
477 /* select drive and check DRQ */
478 buf[28] = (1 << 5) | ATA_REG_DEVICE | PDC_PKT_WAIT_DRDY;
479 buf[29] = dev_sel;
480
Mikael Pettersson95006182007-01-09 10:51:46 +0100481 /* we can represent cdb lengths 2/4/6/8/10/12/14/16 */
482 BUG_ON(cdb_len & ~0x1E);
483
Mikael Pettersson4113bb62007-01-13 21:31:05 +0100484 /* append the CDB as the final part */
485 buf[30] = (((cdb_len >> 1) & 7) << 5) | ATA_REG_DATA | PDC_LAST_REG;
486 memcpy(buf+31, cdb, cdb_len);
Mikael Pettersson95006182007-01-09 10:51:46 +0100487}
488
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100489/**
490 * pdc_fill_sg - Fill PCI IDE PRD table
491 * @qc: Metadata associated with taskfile to be transferred
492 *
493 * Fill PCI IDE PRD (scatter-gather) table with segments
494 * associated with the current disk command.
495 * Make sure hardware does not choke on it.
496 *
497 * LOCKING:
498 * spin_lock_irqsave(host lock)
499 *
500 */
501static void pdc_fill_sg(struct ata_queued_cmd *qc)
502{
503 struct ata_port *ap = qc->ap;
504 struct scatterlist *sg;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100505 const u32 SG_COUNT_ASIC_BUG = 41*4;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900506 unsigned int si, idx;
507 u32 len;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100508
509 if (!(qc->flags & ATA_QCFLAG_DMAMAP))
510 return;
511
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100512 idx = 0;
Tejun Heoff2aeb12007-12-05 16:43:11 +0900513 for_each_sg(qc->sg, sg, qc->n_elem, si) {
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100514 u32 addr, offset;
Harvey Harrison6903c0f2008-02-13 21:14:08 -0800515 u32 sg_len;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100516
517 /* determine if physical DMA addr spans 64K boundary.
518 * Note h/w doesn't support 64-bit, so we unconditionally
519 * truncate dma_addr_t to u32.
520 */
521 addr = (u32) sg_dma_address(sg);
522 sg_len = sg_dma_len(sg);
523
524 while (sg_len) {
525 offset = addr & 0xffff;
526 len = sg_len;
527 if ((offset + sg_len) > 0x10000)
528 len = 0x10000 - offset;
529
530 ap->prd[idx].addr = cpu_to_le32(addr);
531 ap->prd[idx].flags_len = cpu_to_le32(len & 0xffff);
532 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
533
534 idx++;
535 sg_len -= len;
536 addr += len;
537 }
538 }
539
Tejun Heoff2aeb12007-12-05 16:43:11 +0900540 len = le32_to_cpu(ap->prd[idx - 1].flags_len);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100541
Tejun Heoff2aeb12007-12-05 16:43:11 +0900542 if (len > SG_COUNT_ASIC_BUG) {
543 u32 addr;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100544
Tejun Heoff2aeb12007-12-05 16:43:11 +0900545 VPRINTK("Splitting last PRD.\n");
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100546
Tejun Heoff2aeb12007-12-05 16:43:11 +0900547 addr = le32_to_cpu(ap->prd[idx - 1].addr);
548 ap->prd[idx - 1].flags_len = cpu_to_le32(len - SG_COUNT_ASIC_BUG);
549 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx - 1, addr, SG_COUNT_ASIC_BUG);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100550
Tejun Heoff2aeb12007-12-05 16:43:11 +0900551 addr = addr + len - SG_COUNT_ASIC_BUG;
552 len = SG_COUNT_ASIC_BUG;
553 ap->prd[idx].addr = cpu_to_le32(addr);
554 ap->prd[idx].flags_len = cpu_to_le32(len);
555 VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", idx, addr, len);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100556
Tejun Heoff2aeb12007-12-05 16:43:11 +0900557 idx++;
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100558 }
Tejun Heoff2aeb12007-12-05 16:43:11 +0900559
560 ap->prd[idx - 1].flags_len |= cpu_to_le32(ATA_PRD_EOT);
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100561}
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static void pdc_qc_prep(struct ata_queued_cmd *qc)
564{
565 struct pdc_port_priv *pp = qc->ap->private_data;
566 unsigned int i;
567
568 VPRINTK("ENTER\n");
569
570 switch (qc->tf.protocol) {
571 case ATA_PROT_DMA:
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100572 pdc_fill_sg(qc);
Mikael Pettersson7715a6f2008-05-17 18:49:09 +0200573 /*FALLTHROUGH*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 case ATA_PROT_NODATA:
575 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
576 qc->dev->devno, pp->pkt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (qc->tf.flags & ATA_TFLAG_LBA48)
578 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
579 else
580 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 pdc_pkt_footer(&qc->tf, pp->pkt, i);
582 break;
Tejun Heo0dc36882007-12-18 16:34:43 -0500583 case ATAPI_PROT_PIO:
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100584 pdc_fill_sg(qc);
Mikael Pettersson95006182007-01-09 10:51:46 +0100585 break;
Tejun Heo0dc36882007-12-18 16:34:43 -0500586 case ATAPI_PROT_DMA:
Mikael Petterssonb9ccd4a2007-10-30 14:20:49 +0100587 pdc_fill_sg(qc);
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100588 /*FALLTHROUGH*/
Tejun Heo0dc36882007-12-18 16:34:43 -0500589 case ATAPI_PROT_NODATA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100590 pdc_atapi_pkt(qc);
Mikael Pettersson95006182007-01-09 10:51:46 +0100591 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 default:
593 break;
594 }
595}
596
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100597static int pdc_is_sataii_tx4(unsigned long flags)
598{
599 const unsigned long mask = PDC_FLAG_GEN_II | PDC_FLAG_4_PORTS;
600 return (flags & mask) == mask;
601}
602
603static unsigned int pdc_port_no_to_ata_no(unsigned int port_no,
604 int is_sataii_tx4)
605{
606 static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2};
607 return is_sataii_tx4 ? sataii_tx4_port_remap[port_no] : port_no;
608}
609
610static unsigned int pdc_sata_nr_ports(const struct ata_port *ap)
611{
612 return (ap->flags & PDC_FLAG_4_PORTS) ? 4 : 2;
613}
614
615static unsigned int pdc_sata_ata_port_to_ata_no(const struct ata_port *ap)
616{
617 const struct ata_host *host = ap->host;
618 unsigned int nr_ports = pdc_sata_nr_ports(ap);
619 unsigned int i;
620
Mikael Pettersson7715a6f2008-05-17 18:49:09 +0200621 for (i = 0; i < nr_ports && host->ports[i] != ap; ++i)
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100622 ;
623 BUG_ON(i >= nr_ports);
624 return pdc_port_no_to_ata_no(i, pdc_is_sataii_tx4(ap->flags));
625}
626
627static unsigned int pdc_sata_hotplug_offset(const struct ata_port *ap)
628{
629 return (ap->flags & PDC_FLAG_GEN_II) ? PDC2_SATA_PLUG_CSR : PDC_SATA_PLUG_CSR;
630}
631
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100632static void pdc_freeze(struct ata_port *ap)
633{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200634 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100635 u32 tmp;
636
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200637 tmp = readl(ata_mmio + PDC_CTLSTAT);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100638 tmp |= PDC_IRQ_DISABLE;
639 tmp &= ~PDC_DMA_ENABLE;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200640 writel(tmp, ata_mmio + PDC_CTLSTAT);
641 readl(ata_mmio + PDC_CTLSTAT); /* flush */
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100642}
643
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100644static 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];
648 unsigned int hotplug_offset = pdc_sata_hotplug_offset(ap);
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
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100667static void pdc_thaw(struct ata_port *ap)
668{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200669 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100670 u32 tmp;
671
672 /* clear IRQ */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200673 readl(ata_mmio + PDC_COMMAND);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100674
675 /* turn IRQ back on */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200676 tmp = readl(ata_mmio + PDC_CTLSTAT);
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100677 tmp &= ~PDC_IRQ_DISABLE;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200678 writel(tmp, ata_mmio + PDC_CTLSTAT);
679 readl(ata_mmio + PDC_CTLSTAT); /* flush */
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100680}
681
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100682static 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];
686 unsigned int hotplug_offset = pdc_sata_hotplug_offset(ap);
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
Mikael Petterssoncadef672008-10-31 08:03:55 +0100702static 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
Tejun Heoa1efdab2008-03-25 12:22:50 +0900716static void pdc_error_handler(struct ata_port *ap)
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100717{
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100718 if (!(ap->pflags & ATA_PFLAG_FROZEN))
719 pdc_reset_port(ap);
720
Tejun Heoa1efdab2008-03-25 12:22:50 +0900721 ata_std_error_handler(ap);
Mikael Pettersson724114a2007-03-11 21:20:43 +0100722}
723
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100724static void pdc_post_internal_cmd(struct ata_queued_cmd *qc)
725{
726 struct ata_port *ap = qc->ap;
727
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100728 /* make DMA engine forget about the failed command */
Tejun Heoa51d6442007-03-20 15:24:11 +0900729 if (qc->flags & ATA_QCFLAG_FAILED)
Mikael Pettersson25b93d82006-12-07 00:06:51 +0100730 pdc_reset_port(ap);
731}
732
Mikael Pettersson176efb02007-03-14 09:51:35 +0100733static void pdc_error_intr(struct ata_port *ap, struct ata_queued_cmd *qc,
734 u32 port_status, u32 err_mask)
735{
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900736 struct ata_eh_info *ehi = &ap->link.eh_info;
Mikael Pettersson176efb02007-03-14 09:51:35 +0100737 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
Tejun Heo936fd732007-08-06 18:36:23 +0900753 if (sata_scr_valid(&ap->link)) {
Tejun Heoda3dbb12007-07-16 14:29:40 +0900754 u32 serror;
755
Tejun Heo82ef04f2008-07-31 17:02:40 +0900756 pdc_sata_scr_read(&ap->link, SCR_ERROR, &serror);
Tejun Heoda3dbb12007-07-16 14:29:40 +0900757 ehi->serror |= serror;
758 }
Mikael Petterssonce2d3ab2007-04-07 14:29:51 +0200759
Mikael Pettersson176efb02007-03-14 09:51:35 +0100760 qc->err_mask |= ac_err_mask;
Mikael Petterssonce2d3ab2007-04-07 14:29:51 +0200761
762 pdc_reset_port(ap);
Mikael Pettersson8ffcfd92007-05-06 22:12:31 +0200763
764 ata_port_abort(ap);
Mikael Pettersson176efb02007-03-14 09:51:35 +0100765}
766
Mikael Pettersson7715a6f2008-05-17 18:49:09 +0200767static unsigned int pdc_host_intr(struct ata_port *ap,
768 struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Albert Leea22e2eb2005-12-05 15:38:02 +0800770 unsigned int handled = 0;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200771 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Mikael Pettersson176efb02007-03-14 09:51:35 +0100772 u32 port_status, err_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Mikael Pettersson176efb02007-03-14 09:51:35 +0100774 err_mask = PDC_ERR_MASK;
Tejun Heoeca25dc2007-04-17 23:44:07 +0900775 if (ap->flags & PDC_FLAG_GEN_II)
Mikael Pettersson176efb02007-03-14 09:51:35 +0100776 err_mask &= ~PDC1_ERR_MASK;
777 else
778 err_mask &= ~PDC2_ERR_MASK;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200779 port_status = readl(ata_mmio + PDC_GLOBAL_CTL);
Mikael Pettersson176efb02007-03-14 09:51:35 +0100780 if (unlikely(port_status & err_mask)) {
781 pdc_error_intr(ap, qc, port_status, err_mask);
782 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
785 switch (qc->tf.protocol) {
786 case ATA_PROT_DMA:
787 case ATA_PROT_NODATA:
Tejun Heo0dc36882007-12-18 16:34:43 -0500788 case ATAPI_PROT_DMA:
789 case ATAPI_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800790 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
791 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 handled = 1;
793 break;
Mikael Petterssond0e58032007-06-19 21:53:30 +0200794 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800795 ap->stats.idle_irq++;
796 break;
Mikael Petterssond0e58032007-06-19 21:53:30 +0200797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Albert Leeee500aa2005-09-27 17:34:38 +0800799 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
802static void pdc_irq_clear(struct ata_port *ap)
803{
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200804 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200806 readl(ata_mmio + PDC_COMMAND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Jeff Garzik5796d1c2007-10-26 00:03:37 -0400809static irqreturn_t pdc_interrupt(int irq, void *dev_instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Jeff Garzikcca39742006-08-24 03:19:22 -0400811 struct ata_host *host = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 struct ata_port *ap;
813 u32 mask = 0;
814 unsigned int i, tmp;
815 unsigned int handled = 0;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200816 void __iomem *host_mmio;
Mikael Petterssona77720a2007-07-03 01:09:05 +0200817 unsigned int hotplug_offset, ata_no;
818 u32 hotplug_status;
819 int is_sataii_tx4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 VPRINTK("ENTER\n");
822
Tejun Heo0d5ff562007-02-01 15:06:36 +0900823 if (!host || !host->iomap[PDC_MMIO_BAR]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 VPRINTK("QUICK EXIT\n");
825 return IRQ_NONE;
826 }
827
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200828 host_mmio = host->iomap[PDC_MMIO_BAR];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100830 spin_lock(&host->lock);
831
Mikael Petterssona77720a2007-07-03 01:09:05 +0200832 /* read and clear hotplug flags for all ports */
833 if (host->ports[0]->flags & PDC_FLAG_GEN_II)
834 hotplug_offset = PDC2_SATA_PLUG_CSR;
835 else
836 hotplug_offset = PDC_SATA_PLUG_CSR;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200837 hotplug_status = readl(host_mmio + hotplug_offset);
Mikael Petterssona77720a2007-07-03 01:09:05 +0200838 if (hotplug_status & 0xff)
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200839 writel(hotplug_status | 0xff, host_mmio + hotplug_offset);
Mikael Petterssona77720a2007-07-03 01:09:05 +0200840 hotplug_status &= 0xff; /* clear uninteresting bits */
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 /* reading should also clear interrupts */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200843 mask = readl(host_mmio + PDC_INT_SEQMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Mikael Petterssona77720a2007-07-03 01:09:05 +0200845 if (mask == 0xffffffff && hotplug_status == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 VPRINTK("QUICK EXIT 2\n");
Mikael Petterssonc07a9c42008-03-23 18:41:01 +0100847 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Luke Kosewski6340f012006-01-28 12:39:29 -0500849
Mikael Pettersson7715a6f2008-05-17 18:49:09 +0200850 mask &= 0xffff; /* only 16 SEQIDs possible */
Mikael Petterssona77720a2007-07-03 01:09:05 +0200851 if (mask == 0 && hotplug_status == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 VPRINTK("QUICK EXIT 3\n");
Luke Kosewski6340f012006-01-28 12:39:29 -0500853 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200856 writel(mask, host_mmio + PDC_INT_SEQMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Mikael Petterssona77720a2007-07-03 01:09:05 +0200858 is_sataii_tx4 = pdc_is_sataii_tx4(host->ports[0]->flags);
859
Jeff Garzikcca39742006-08-24 03:19:22 -0400860 for (i = 0; i < host->n_ports; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 VPRINTK("port %u\n", i);
Jeff Garzikcca39742006-08-24 03:19:22 -0400862 ap = host->ports[i];
Mikael Petterssona77720a2007-07-03 01:09:05 +0200863
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)) {
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900869 struct ata_eh_info *ehi = &ap->link.eh_info;
Mikael Petterssona77720a2007-07-03 01:09:05 +0200870 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900880 if (tmp && ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400881 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 struct ata_queued_cmd *qc;
883
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900884 qc = ata_qc_from_tag(ap, ap->link.active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800885 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 handled += pdc_host_intr(ap, qc);
887 }
888 }
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 VPRINTK("EXIT\n");
891
Luke Kosewski6340f012006-01-28 12:39:29 -0500892done_irq:
Jeff Garzikcca39742006-08-24 03:19:22 -0400893 spin_unlock(&host->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return IRQ_RETVAL(handled);
895}
896
Mikael Pettersson7715a6f2008-05-17 18:49:09 +0200897static void pdc_packet_start(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 struct ata_port *ap = qc->ap;
900 struct pdc_port_priv *pp = ap->private_data;
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200901 void __iomem *host_mmio = ap->host->iomap[PDC_MMIO_BAR];
902 void __iomem *ata_mmio = ap->ioaddr.cmd_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 unsigned int port_no = ap->port_no;
904 u8 seq = (u8) (port_no + 1);
905
906 VPRINTK("ENTER, ap %p\n", ap);
907
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200908 writel(0x00000001, host_mmio + (seq * 4));
909 readl(host_mmio + (seq * 4)); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 pp->pkt[2] = seq;
912 wmb(); /* flush PRD, pkt writes */
Mikael Pettersson821d22c2008-05-17 18:48:15 +0200913 writel(pp->pkt_dma, ata_mmio + PDC_PKT_SUBMIT);
914 readl(ata_mmio + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Tejun Heo9363c382008-04-07 22:47:16 +0900917static unsigned int pdc_qc_issue(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 switch (qc->tf.protocol) {
Tejun Heo0dc36882007-12-18 16:34:43 -0500920 case ATAPI_PROT_NODATA:
Mikael Petterssonfba6edb2007-01-13 21:32:30 +0100921 if (qc->dev->flags & ATA_DFLAG_CDB_INTR)
922 break;
923 /*FALLTHROUGH*/
Tejun Heo51b94d22007-06-08 13:46:55 -0700924 case ATA_PROT_NODATA:
925 if (qc->tf.flags & ATA_TFLAG_POLLING)
926 break;
927 /*FALLTHROUGH*/
Tejun Heo0dc36882007-12-18 16:34:43 -0500928 case ATAPI_PROT_DMA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 case ATA_PROT_DMA:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 pdc_packet_start(qc);
931 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 default:
933 break;
934 }
Tejun Heo9363c382008-04-07 22:47:16 +0900935 return ata_sff_qc_issue(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Jeff Garzik057ace52005-10-22 14:27:05 -0400938static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Tejun Heo0dc36882007-12-18 16:34:43 -0500940 WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA);
Tejun Heo9363c382008-04-07 22:47:16 +0900941 ata_sff_tf_load(ap, tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Jeff Garzik5796d1c2007-10-26 00:03:37 -0400944static void pdc_exec_command_mmio(struct ata_port *ap,
945 const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Tejun Heo0dc36882007-12-18 16:34:43 -0500947 WARN_ON(tf->protocol == ATA_PROT_DMA || tf->protocol == ATAPI_PROT_DMA);
Tejun Heo9363c382008-04-07 22:47:16 +0900948 ata_sff_exec_command(ap, tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949}
950
Mikael Pettersson95006182007-01-09 10:51:46 +0100951static 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) {
Jeff Garzik5796d1c2007-10-26 00:03:37 -0400970 unsigned int lba =
971 (scsicmd[2] << 24) |
972 (scsicmd[3] << 16) |
973 (scsicmd[4] << 8) |
974 scsicmd[5];
Mikael Pettersson95006182007-01-09 10:51:46 +0100975 if (lba >= 0xFFFF4FA2)
976 pio = 1;
977 }
978 return pio;
979}
980
Mikael Pettersson724114a2007-03-11 21:20:43 +0100981static int pdc_old_sata_check_atapi_dma(struct ata_queued_cmd *qc)
Mikael Pettersson95006182007-01-09 10:51:46 +0100982{
Mikael Pettersson95006182007-01-09 10:51:46 +0100983 /* First generation chips cannot use ATAPI DMA on SATA ports */
Mikael Pettersson724114a2007-03-11 21:20:43 +0100984 return 1;
Mikael Pettersson95006182007-01-09 10:51:46 +0100985}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Tejun Heoeca25dc2007-04-17 23:44:07 +0900987static void pdc_ata_setup_port(struct ata_port *ap,
988 void __iomem *base, void __iomem *scr_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Tejun Heoeca25dc2007-04-17 23:44:07 +0900990 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Tejun Heoeca25dc2007-04-17 23:44:07 +09001006static void pdc_host_init(struct ata_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001008 void __iomem *host_mmio = host->iomap[PDC_MMIO_BAR];
Tejun Heoeca25dc2007-04-17 23:44:07 +09001009 int is_gen2 = host->ports[0]->flags & PDC_FLAG_GEN_II;
Mikael Petterssond324d4622006-12-06 09:55:43 +01001010 int hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 u32 tmp;
1012
Tejun Heoeca25dc2007-04-17 23:44:07 +09001013 if (is_gen2)
Mikael Petterssond324d4622006-12-06 09:55:43 +01001014 hotplug_offset = PDC2_SATA_PLUG_CSR;
1015 else
1016 hotplug_offset = PDC_SATA_PLUG_CSR;
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 /*
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
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001024 /* enable BMR_BURST, maybe change FIFO_SHD to 8 dwords */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001025 tmp = readl(host_mmio + PDC_FLASH_CTL);
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001026 tmp |= 0x02000; /* bit 13 (enable bmr burst) */
Tejun Heoeca25dc2007-04-17 23:44:07 +09001027 if (!is_gen2)
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001028 tmp |= 0x10000; /* bit 16 (fifo threshold at 8 dw) */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001029 writel(tmp, host_mmio + PDC_FLASH_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 /* clear plug/unplug flags for all ports */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001032 tmp = readl(host_mmio + hotplug_offset);
1033 writel(tmp | 0xff, host_mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Mikael Petterssona77720a2007-07-03 01:09:05 +02001035 /* unmask plug/unplug ints */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001036 tmp = readl(host_mmio + hotplug_offset);
1037 writel(tmp & ~0xff0000, host_mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001039 /* don't initialise TBG or SLEW on 2nd generation chips */
Tejun Heoeca25dc2007-04-17 23:44:07 +09001040 if (is_gen2)
Mikael Petterssonb2d1eee2006-11-22 22:00:15 +01001041 return;
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /* reduce TBG clock to 133 Mhz. */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001044 tmp = readl(host_mmio + PDC_TBG_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 tmp &= ~0x30000; /* clear bit 17, 16*/
1046 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001047 writel(tmp, host_mmio + PDC_TBG_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001049 readl(host_mmio + PDC_TBG_MODE); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 msleep(10);
1051
1052 /* adjust slew rate control register. */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001053 tmp = readl(host_mmio + PDC_SLEW_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
1055 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001056 writel(tmp, host_mmio + PDC_SLEW_CTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
Jeff Garzik5796d1c2007-10-26 00:03:37 -04001059static int pdc_ata_init_one(struct pci_dev *pdev,
1060 const struct pci_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
1062 static int printed_version;
Tejun Heoeca25dc2007-04-17 23:44:07 +09001063 const struct ata_port_info *pi = &pdc_port_info[ent->driver_data];
1064 const struct ata_port_info *ppi[PDC_MAX_PORTS];
1065 struct ata_host *host;
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001066 void __iomem *host_mmio;
Tejun Heoeca25dc2007-04-17 23:44:07 +09001067 int n_ports, i, rc;
Mikael Pettersson5ac2fe52007-05-06 22:14:01 +02001068 int is_sataii_tx4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -05001071 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Tejun Heoeca25dc2007-04-17 23:44:07 +09001073 /* enable and acquire resources */
Tejun Heo24dc5f32007-01-20 16:00:28 +09001074 rc = pcim_enable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (rc)
1076 return rc;
1077
Tejun Heo0d5ff562007-02-01 15:06:36 +09001078 rc = pcim_iomap_regions(pdev, 1 << PDC_MMIO_BAR, DRV_NAME);
1079 if (rc == -EBUSY)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001080 pcim_pin_device(pdev);
Tejun Heo0d5ff562007-02-01 15:06:36 +09001081 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001082 return rc;
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001083 host_mmio = pcim_iomap_table(pdev)[PDC_MMIO_BAR];
Tejun Heoeca25dc2007-04-17 23:44:07 +09001084
1085 /* determine port configuration and setup host */
1086 n_ports = 2;
1087 if (pi->flags & PDC_FLAG_4_PORTS)
1088 n_ports = 4;
1089 for (i = 0; i < n_ports; i++)
1090 ppi[i] = pi;
1091
1092 if (pi->flags & PDC_FLAG_SATA_PATA) {
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001093 u8 tmp = readb(host_mmio + PDC_FLASH_CTL + 1);
Mikael Petterssond0e58032007-06-19 21:53:30 +02001094 if (!(tmp & 0x80))
Tejun Heoeca25dc2007-04-17 23:44:07 +09001095 ppi[n_ports++] = pi + 1;
Tejun Heoeca25dc2007-04-17 23:44:07 +09001096 }
1097
1098 host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
1099 if (!host) {
1100 dev_printk(KERN_ERR, &pdev->dev, "failed to allocate host\n");
1101 return -ENOMEM;
1102 }
1103 host->iomap = pcim_iomap_table(pdev);
1104
Mikael Petterssond0e58032007-06-19 21:53:30 +02001105 is_sataii_tx4 = pdc_is_sataii_tx4(pi->flags);
Mikael Pettersson5ac2fe52007-05-06 22:14:01 +02001106 for (i = 0; i < host->n_ports; i++) {
Tejun Heocbcdd872007-08-18 13:14:55 +09001107 struct ata_port *ap = host->ports[i];
Mikael Petterssond0e58032007-06-19 21:53:30 +02001108 unsigned int ata_no = pdc_port_no_to_ata_no(i, is_sataii_tx4);
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001109 unsigned int ata_offset = 0x200 + ata_no * 0x80;
Tejun Heocbcdd872007-08-18 13:14:55 +09001110 unsigned int scr_offset = 0x400 + ata_no * 0x100;
1111
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001112 pdc_ata_setup_port(ap, host_mmio + ata_offset, host_mmio + scr_offset);
Tejun Heocbcdd872007-08-18 13:14:55 +09001113
1114 ata_port_pbar_desc(ap, PDC_MMIO_BAR, -1, "mmio");
Mikael Pettersson821d22c2008-05-17 18:48:15 +02001115 ata_port_pbar_desc(ap, PDC_MMIO_BAR, ata_offset, "ata");
Mikael Pettersson5ac2fe52007-05-06 22:14:01 +02001116 }
Tejun Heoeca25dc2007-04-17 23:44:07 +09001117
1118 /* initialize adapter */
1119 pdc_host_init(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
1122 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001123 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
1125 if (rc)
Tejun Heo24dc5f32007-01-20 16:00:28 +09001126 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Tejun Heoeca25dc2007-04-17 23:44:07 +09001128 /* start host, request IRQ and attach */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 pci_set_master(pdev);
Tejun Heoeca25dc2007-04-17 23:44:07 +09001130 return ata_host_activate(host, pdev->irq, pdc_interrupt, IRQF_SHARED,
1131 &pdc_ata_sht);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134static int __init pdc_ata_init(void)
1135{
Pavel Roskinb7887192006-08-10 18:13:18 +09001136 return pci_register_driver(&pdc_ata_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139static void __exit pdc_ata_exit(void)
1140{
1141 pci_unregister_driver(&pdc_ata_pci_driver);
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -04001145MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146MODULE_LICENSE("GPL");
1147MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
1148MODULE_VERSION(DRV_VERSION);
1149
1150module_init(pdc_ata_init);
1151module_exit(pdc_ata_exit);