blob: 285ab0263d91a874c9c5a0bd74f9403a3d5b06ed [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>
5 * Please ALWAYS copy linux-ide@vger.kernel.org
6 * on emails.
7 *
8 * Copyright 2003-2004 Red Hat, Inc.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; see the file COPYING. If not, write to
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 *
26 * libata documentation is available via 'make {ps|pdf}docs',
27 * as Documentation/DocBook/libata.*
28 *
29 * Hardware information only available under NDA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 *
31 */
32
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/pci.h>
36#include <linux/init.h>
37#include <linux/blkdev.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
40#include <linux/sched.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050041#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <scsi/scsi_host.h>
Jeff Garzik193515d2005-11-07 00:59:37 -050043#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/libata.h>
45#include <asm/io.h>
46#include "sata_promise.h"
47
48#define DRV_NAME "sata_promise"
Luke Kosewski6340f012006-01-28 12:39:29 -050049#define DRV_VERSION "1.04"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51
52enum {
53 PDC_PKT_SUBMIT = 0x40, /* Command packet pointer addr */
54 PDC_INT_SEQMASK = 0x40, /* Mask of asserted SEQ INTs */
55 PDC_TBG_MODE = 0x41, /* TBG mode */
56 PDC_FLASH_CTL = 0x44, /* Flash control register */
57 PDC_PCI_CTL = 0x48, /* PCI control and status register */
58 PDC_GLOBAL_CTL = 0x48, /* Global control/status (per port) */
59 PDC_CTLSTAT = 0x60, /* IDE control and status (per port) */
60 PDC_SATA_PLUG_CSR = 0x6C, /* SATA Plug control/status reg */
Luke Kosewski6340f012006-01-28 12:39:29 -050061 PDC2_SATA_PLUG_CSR = 0x60, /* SATAII Plug control/status reg */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 PDC_SLEW_CTL = 0x470, /* slew rate control reg */
63
64 PDC_ERR_MASK = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
65 (1<<8) | (1<<9) | (1<<10),
66
67 board_2037x = 0, /* FastTrak S150 TX2plus */
68 board_20319 = 1, /* FastTrak S150 TX4 */
Tobias Lorenzf497ba72005-05-12 15:51:01 -040069 board_20619 = 2, /* FastTrak TX4000 */
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -050070 board_20771 = 3, /* FastTrak TX2300 */
Luke Kosewski6340f012006-01-28 12:39:29 -050071 board_2057x = 4, /* SATAII150 Tx2plus */
72 board_40518 = 5, /* SATAII150 Tx4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Luke Kosewski6340f012006-01-28 12:39:29 -050074 PDC_HAS_PATA = (1 << 1), /* PDC20375/20575 has PATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 PDC_RESET = (1 << 11), /* HDMA reset */
Jeff Garzik50630192005-12-13 02:29:45 -050077
78 PDC_COMMON_FLAGS = ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST |
Jeff Garzik3d0a59c2005-12-13 22:28:19 -050079 ATA_FLAG_MMIO | ATA_FLAG_NO_ATAPI |
80 ATA_FLAG_PIO_POLLING,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83
84struct pdc_port_priv {
85 u8 *pkt;
86 dma_addr_t pkt_dma;
87};
88
Luke Kosewski6340f012006-01-28 12:39:29 -050089struct pdc_host_priv {
90 int hotplug_offset;
91};
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
94static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
95static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
96static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
97static void pdc_eng_timeout(struct ata_port *ap);
98static int pdc_port_start(struct ata_port *ap);
99static void pdc_port_stop(struct ata_port *ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400100static void pdc_pata_phy_reset(struct ata_port *ap);
101static void pdc_sata_phy_reset(struct ata_port *ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static void pdc_qc_prep(struct ata_queued_cmd *qc);
Jeff Garzik057ace52005-10-22 14:27:05 -0400103static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
104static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static void pdc_irq_clear(struct ata_port *ap);
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900106static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc);
Luke Kosewski6340f012006-01-28 12:39:29 -0500107static void pdc_host_stop(struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Jeff Garzik374b1872005-08-30 05:42:52 -0400109
Jeff Garzik193515d2005-11-07 00:59:37 -0500110static struct scsi_host_template pdc_ata_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .module = THIS_MODULE,
112 .name = DRV_NAME,
113 .ioctl = ata_scsi_ioctl,
114 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .can_queue = ATA_DEF_QUEUE,
116 .this_id = ATA_SHT_THIS_ID,
117 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
119 .emulated = ATA_SHT_EMULATED,
120 .use_clustering = ATA_SHT_USE_CLUSTERING,
121 .proc_name = DRV_NAME,
122 .dma_boundary = ATA_DMA_BOUNDARY,
123 .slave_configure = ata_scsi_slave_config,
124 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Jeff Garzik057ace52005-10-22 14:27:05 -0400127static const struct ata_port_operations pdc_sata_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .port_disable = ata_port_disable,
129 .tf_load = pdc_tf_load_mmio,
130 .tf_read = ata_tf_read,
131 .check_status = ata_check_status,
132 .exec_command = pdc_exec_command_mmio,
133 .dev_select = ata_std_dev_select,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400134
135 .phy_reset = pdc_sata_phy_reset,
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .qc_prep = pdc_qc_prep,
138 .qc_issue = pdc_qc_issue_prot,
139 .eng_timeout = pdc_eng_timeout,
140 .irq_handler = pdc_interrupt,
141 .irq_clear = pdc_irq_clear,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .scr_read = pdc_sata_scr_read,
144 .scr_write = pdc_sata_scr_write,
145 .port_start = pdc_port_start,
146 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500147 .host_stop = pdc_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
Jeff Garzik057ace52005-10-22 14:27:05 -0400150static const struct ata_port_operations pdc_pata_ops = {
Jeff Garzik2cba5822005-08-29 05:12:30 -0400151 .port_disable = ata_port_disable,
152 .tf_load = pdc_tf_load_mmio,
153 .tf_read = ata_tf_read,
154 .check_status = ata_check_status,
155 .exec_command = pdc_exec_command_mmio,
156 .dev_select = ata_std_dev_select,
157
158 .phy_reset = pdc_pata_phy_reset,
159
160 .qc_prep = pdc_qc_prep,
161 .qc_issue = pdc_qc_issue_prot,
162 .eng_timeout = pdc_eng_timeout,
163 .irq_handler = pdc_interrupt,
164 .irq_clear = pdc_irq_clear,
165
166 .port_start = pdc_port_start,
167 .port_stop = pdc_port_stop,
Luke Kosewski6340f012006-01-28 12:39:29 -0500168 .host_stop = pdc_host_stop,
Jeff Garzik2cba5822005-08-29 05:12:30 -0400169};
170
Arjan van de Ven98ac62d2005-11-28 10:06:23 +0100171static const struct ata_port_info pdc_port_info[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* board_2037x */
173 {
174 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500175 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .pio_mask = 0x1f, /* pio0-4 */
177 .mwdma_mask = 0x07, /* mwdma0-2 */
178 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400179 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 },
181
182 /* board_20319 */
183 {
184 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500185 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 .pio_mask = 0x1f, /* pio0-4 */
187 .mwdma_mask = 0x07, /* mwdma0-2 */
188 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400189 .port_ops = &pdc_sata_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 },
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400191
192 /* board_20619 */
193 {
194 .sht = &pdc_ata_sht,
Jeff Garzik50630192005-12-13 02:29:45 -0500195 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SLAVE_POSS,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400196 .pio_mask = 0x1f, /* pio0-4 */
197 .mwdma_mask = 0x07, /* mwdma0-2 */
198 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
Jeff Garzik2cba5822005-08-29 05:12:30 -0400199 .port_ops = &pdc_pata_ops,
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400200 },
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500201
202 /* board_20771 */
203 {
204 .sht = &pdc_ata_sht,
205 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
206 .pio_mask = 0x1f, /* pio0-4 */
207 .mwdma_mask = 0x07, /* mwdma0-2 */
208 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
209 .port_ops = &pdc_sata_ops,
210 },
Luke Kosewski6340f012006-01-28 12:39:29 -0500211
212 /* board_2057x */
213 {
214 .sht = &pdc_ata_sht,
215 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
216 .pio_mask = 0x1f, /* pio0-4 */
217 .mwdma_mask = 0x07, /* mwdma0-2 */
218 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
219 .port_ops = &pdc_sata_ops,
220 },
221
222 /* board_40518 */
223 {
224 .sht = &pdc_ata_sht,
225 .host_flags = PDC_COMMON_FLAGS | ATA_FLAG_SATA,
226 .pio_mask = 0x1f, /* pio0-4 */
227 .mwdma_mask = 0x07, /* mwdma0-2 */
228 .udma_mask = 0x7f, /* udma0-6 ; FIXME */
229 .port_ops = &pdc_sata_ops,
230 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231};
232
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500233static const struct pci_device_id pdc_ata_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
235 board_2037x },
Jeff Garzik07c1da22005-10-28 17:00:31 -0400236 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
237 board_2037x },
Francisco Javier4c3a53d2005-05-25 19:29:37 -0400238 { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
239 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
241 board_2037x },
242 { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
243 board_2037x },
244 { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
245 board_2037x },
246 { PCI_VENDOR_ID_PROMISE, 0x3574, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500247 board_2057x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 { PCI_VENDOR_ID_PROMISE, 0x3d75, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500249 board_2057x },
Ed Kearc45154a2005-07-16 23:32:19 -0400250 { PCI_VENDOR_ID_PROMISE, 0x3d73, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
251 board_2037x },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
254 board_20319 },
255 { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
256 board_20319 },
Daniel Drakee1fd2632006-03-04 15:36:21 +0000257 { PCI_VENDOR_ID_PROMISE, 0x3515, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
258 board_20319 },
Daniel Drake93090492005-08-22 14:59:23 +0100259 { PCI_VENDOR_ID_PROMISE, 0x3519, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
260 board_20319 },
Otto Meier08b791c02005-08-22 14:58:57 +0100261 { PCI_VENDOR_ID_PROMISE, 0x3d17, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
262 board_20319 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 { PCI_VENDOR_ID_PROMISE, 0x3d18, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
Luke Kosewski6340f012006-01-28 12:39:29 -0500264 board_40518 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400266 { PCI_VENDOR_ID_PROMISE, 0x6629, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
267 board_20619 },
268
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500269 { PCI_VENDOR_ID_PROMISE, 0x3570, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
270 board_20771 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 { } /* terminate list */
272};
273
274
275static struct pci_driver pdc_ata_pci_driver = {
276 .name = DRV_NAME,
277 .id_table = pdc_ata_pci_tbl,
278 .probe = pdc_ata_init_one,
279 .remove = ata_pci_remove_one,
280};
281
282
283static int pdc_port_start(struct ata_port *ap)
284{
285 struct device *dev = ap->host_set->dev;
286 struct pdc_port_priv *pp;
287 int rc;
288
289 rc = ata_port_start(ap);
290 if (rc)
291 return rc;
292
Luke Kosewski6340f012006-01-28 12:39:29 -0500293 pp = kzalloc(sizeof(*pp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (!pp) {
295 rc = -ENOMEM;
296 goto err_out;
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 pp->pkt = dma_alloc_coherent(dev, 128, &pp->pkt_dma, GFP_KERNEL);
300 if (!pp->pkt) {
301 rc = -ENOMEM;
302 goto err_out_kfree;
303 }
304
305 ap->private_data = pp;
306
307 return 0;
308
309err_out_kfree:
310 kfree(pp);
311err_out:
312 ata_port_stop(ap);
313 return rc;
314}
315
316
317static void pdc_port_stop(struct ata_port *ap)
318{
319 struct device *dev = ap->host_set->dev;
320 struct pdc_port_priv *pp = ap->private_data;
321
322 ap->private_data = NULL;
323 dma_free_coherent(dev, 128, pp->pkt, pp->pkt_dma);
324 kfree(pp);
325 ata_port_stop(ap);
326}
327
328
Luke Kosewski6340f012006-01-28 12:39:29 -0500329static void pdc_host_stop(struct ata_host_set *host_set)
330{
331 struct pdc_host_priv *hp = host_set->private_data;
332
333 ata_pci_host_stop(host_set);
334
335 kfree(hp);
336}
337
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static void pdc_reset_port(struct ata_port *ap)
340{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400341 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 unsigned int i;
343 u32 tmp;
344
345 for (i = 11; i > 0; i--) {
346 tmp = readl(mmio);
347 if (tmp & PDC_RESET)
348 break;
349
350 udelay(100);
351
352 tmp |= PDC_RESET;
353 writel(tmp, mmio);
354 }
355
356 tmp &= ~PDC_RESET;
357 writel(tmp, mmio);
358 readl(mmio); /* flush */
359}
360
Jeff Garzik2cba5822005-08-29 05:12:30 -0400361static void pdc_sata_phy_reset(struct ata_port *ap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 pdc_reset_port(ap);
364 sata_phy_reset(ap);
365}
366
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400367static void pdc_pata_cbl_detect(struct ata_port *ap)
368{
369 u8 tmp;
370 void __iomem *mmio = (void *) ap->ioaddr.cmd_addr + PDC_CTLSTAT + 0x03;
371
372 tmp = readb(mmio);
373
374 if (tmp & 0x01) {
375 ap->cbl = ATA_CBL_PATA40;
376 ap->udma_mask &= ATA_UDMA_MASK_40C;
377 } else
378 ap->cbl = ATA_CBL_PATA80;
379}
380
Jeff Garzik2cba5822005-08-29 05:12:30 -0400381static void pdc_pata_phy_reset(struct ata_port *ap)
382{
Jeff Garzikd3fb4e82006-05-24 01:43:25 -0400383 pdc_pata_cbl_detect(ap);
Jeff Garzik2cba5822005-08-29 05:12:30 -0400384 pdc_reset_port(ap);
385 ata_port_probe(ap);
386 ata_bus_reset(ap);
387}
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
390{
391 if (sc_reg > SCR_CONTROL)
392 return 0xffffffffU;
Al Virob181d3b2005-10-21 06:46:02 +0100393 return readl((void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396
397static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
398 u32 val)
399{
400 if (sc_reg > SCR_CONTROL)
401 return;
Al Virob181d3b2005-10-21 06:46:02 +0100402 writel(val, (void __iomem *) ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405static void pdc_qc_prep(struct ata_queued_cmd *qc)
406{
407 struct pdc_port_priv *pp = qc->ap->private_data;
408 unsigned int i;
409
410 VPRINTK("ENTER\n");
411
412 switch (qc->tf.protocol) {
413 case ATA_PROT_DMA:
414 ata_qc_prep(qc);
415 /* fall through */
416
417 case ATA_PROT_NODATA:
418 i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,
419 qc->dev->devno, pp->pkt);
420
421 if (qc->tf.flags & ATA_TFLAG_LBA48)
422 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
423 else
424 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
425
426 pdc_pkt_footer(&qc->tf, pp->pkt, i);
427 break;
428
429 default:
430 break;
431 }
432}
433
434static void pdc_eng_timeout(struct ata_port *ap)
435{
Jeff Garzikb8f61532005-08-25 22:01:20 -0400436 struct ata_host_set *host_set = ap->host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 u8 drv_stat;
438 struct ata_queued_cmd *qc;
Jeff Garzikb8f61532005-08-25 22:01:20 -0400439 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 DPRINTK("ENTER\n");
442
Jeff Garzikb8f61532005-08-25 22:01:20 -0400443 spin_lock_irqsave(&host_set->lock, flags);
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 qc = ata_qc_from_tag(ap, ap->active_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 switch (qc->tf.protocol) {
448 case ATA_PROT_DMA:
449 case ATA_PROT_NODATA:
Tejun Heof15a1da2006-05-15 20:57:56 +0900450 ata_port_printk(ap, KERN_ERR, "command timeout\n");
Jeff Garzika7dac442005-10-30 04:44:42 -0500451 drv_stat = ata_wait_idle(ap);
Albert Leea22e2eb2005-12-05 15:38:02 +0800452 qc->err_mask |= __ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454
455 default:
456 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
457
Tejun Heof15a1da2006-05-15 20:57:56 +0900458 ata_port_printk(ap, KERN_ERR,
459 "unknown timeout, cmd 0x%x stat 0x%x\n",
460 qc->tf.command, drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Albert Leea22e2eb2005-12-05 15:38:02 +0800462 qc->err_mask |= ac_err_mask(drv_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 break;
464 }
465
Jeff Garzikb8f61532005-08-25 22:01:20 -0400466 spin_unlock_irqrestore(&host_set->lock, flags);
Tejun Heof6379022006-02-10 15:10:48 +0900467 ata_eh_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 DPRINTK("EXIT\n");
469}
470
471static inline unsigned int pdc_host_intr( struct ata_port *ap,
472 struct ata_queued_cmd *qc)
473{
Albert Leea22e2eb2005-12-05 15:38:02 +0800474 unsigned int handled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 u32 tmp;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400476 void __iomem *mmio = (void __iomem *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 tmp = readl(mmio);
479 if (tmp & PDC_ERR_MASK) {
Albert Leea22e2eb2005-12-05 15:38:02 +0800480 qc->err_mask |= AC_ERR_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 pdc_reset_port(ap);
482 }
483
484 switch (qc->tf.protocol) {
485 case ATA_PROT_DMA:
486 case ATA_PROT_NODATA:
Albert Leea22e2eb2005-12-05 15:38:02 +0800487 qc->err_mask |= ac_err_mask(ata_wait_idle(ap));
488 ata_qc_complete(qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 handled = 1;
490 break;
491
492 default:
Albert Leeee500aa2005-09-27 17:34:38 +0800493 ap->stats.idle_irq++;
494 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
Albert Leeee500aa2005-09-27 17:34:38 +0800497 return handled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500static void pdc_irq_clear(struct ata_port *ap)
501{
502 struct ata_host_set *host_set = ap->host_set;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400503 void __iomem *mmio = host_set->mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 readl(mmio + PDC_INT_SEQMASK);
506}
507
508static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
509{
510 struct ata_host_set *host_set = dev_instance;
511 struct ata_port *ap;
512 u32 mask = 0;
513 unsigned int i, tmp;
514 unsigned int handled = 0;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400515 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 VPRINTK("ENTER\n");
518
519 if (!host_set || !host_set->mmio_base) {
520 VPRINTK("QUICK EXIT\n");
521 return IRQ_NONE;
522 }
523
524 mmio_base = host_set->mmio_base;
525
526 /* reading should also clear interrupts */
527 mask = readl(mmio_base + PDC_INT_SEQMASK);
528
529 if (mask == 0xffffffff) {
530 VPRINTK("QUICK EXIT 2\n");
531 return IRQ_NONE;
532 }
Luke Kosewski6340f012006-01-28 12:39:29 -0500533
534 spin_lock(&host_set->lock);
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 mask &= 0xffff; /* only 16 tags possible */
537 if (!mask) {
538 VPRINTK("QUICK EXIT 3\n");
Luke Kosewski6340f012006-01-28 12:39:29 -0500539 goto done_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 writel(mask, mmio_base + PDC_INT_SEQMASK);
543
544 for (i = 0; i < host_set->n_ports; i++) {
545 VPRINTK("port %u\n", i);
546 ap = host_set->ports[i];
547 tmp = mask & (1 << (i + 1));
Tejun Heoc1389502005-08-22 14:59:24 +0900548 if (tmp && ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400549 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct ata_queued_cmd *qc;
551
552 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800553 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 handled += pdc_host_intr(ap, qc);
555 }
556 }
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 VPRINTK("EXIT\n");
559
Luke Kosewski6340f012006-01-28 12:39:29 -0500560done_irq:
561 spin_unlock(&host_set->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return IRQ_RETVAL(handled);
563}
564
565static inline void pdc_packet_start(struct ata_queued_cmd *qc)
566{
567 struct ata_port *ap = qc->ap;
568 struct pdc_port_priv *pp = ap->private_data;
569 unsigned int port_no = ap->port_no;
570 u8 seq = (u8) (port_no + 1);
571
572 VPRINTK("ENTER, ap %p\n", ap);
573
574 writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
575 readl(ap->host_set->mmio_base + (seq * 4)); /* flush */
576
577 pp->pkt[2] = seq;
578 wmb(); /* flush PRD, pkt writes */
Al Virob181d3b2005-10-21 06:46:02 +0100579 writel(pp->pkt_dma, (void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
580 readl((void __iomem *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Tejun Heo9a3d9eb2006-01-23 13:09:36 +0900583static unsigned int pdc_qc_issue_prot(struct ata_queued_cmd *qc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 switch (qc->tf.protocol) {
586 case ATA_PROT_DMA:
587 case ATA_PROT_NODATA:
588 pdc_packet_start(qc);
589 return 0;
590
591 case ATA_PROT_ATAPI_DMA:
592 BUG();
593 break;
594
595 default:
596 break;
597 }
598
599 return ata_qc_issue_prot(qc);
600}
601
Jeff Garzik057ace52005-10-22 14:27:05 -0400602static void pdc_tf_load_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 WARN_ON (tf->protocol == ATA_PROT_DMA ||
605 tf->protocol == ATA_PROT_NODATA);
606 ata_tf_load(ap, tf);
607}
608
609
Jeff Garzik057ace52005-10-22 14:27:05 -0400610static void pdc_exec_command_mmio(struct ata_port *ap, const struct ata_taskfile *tf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 WARN_ON (tf->protocol == ATA_PROT_DMA ||
613 tf->protocol == ATA_PROT_NODATA);
614 ata_exec_command(ap, tf);
615}
616
617
618static void pdc_ata_setup_port(struct ata_ioports *port, unsigned long base)
619{
620 port->cmd_addr = base;
621 port->data_addr = base;
622 port->feature_addr =
623 port->error_addr = base + 0x4;
624 port->nsect_addr = base + 0x8;
625 port->lbal_addr = base + 0xc;
626 port->lbam_addr = base + 0x10;
627 port->lbah_addr = base + 0x14;
628 port->device_addr = base + 0x18;
629 port->command_addr =
630 port->status_addr = base + 0x1c;
631 port->altstatus_addr =
632 port->ctl_addr = base + 0x38;
633}
634
635
636static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
637{
Jeff Garzikea6ba102005-08-30 05:18:18 -0400638 void __iomem *mmio = pe->mmio_base;
Luke Kosewski6340f012006-01-28 12:39:29 -0500639 struct pdc_host_priv *hp = pe->private_data;
640 int hotplug_offset = hp->hotplug_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 u32 tmp;
642
643 /*
644 * Except for the hotplug stuff, this is voodoo from the
645 * Promise driver. Label this entire section
646 * "TODO: figure out why we do this"
647 */
648
649 /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
650 tmp = readl(mmio + PDC_FLASH_CTL);
651 tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
652 writel(tmp, mmio + PDC_FLASH_CTL);
653
654 /* clear plug/unplug flags for all ports */
Luke Kosewski6340f012006-01-28 12:39:29 -0500655 tmp = readl(mmio + hotplug_offset);
656 writel(tmp | 0xff, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 /* mask plug/unplug ints */
Luke Kosewski6340f012006-01-28 12:39:29 -0500659 tmp = readl(mmio + hotplug_offset);
660 writel(tmp | 0xff0000, mmio + hotplug_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 /* reduce TBG clock to 133 Mhz. */
663 tmp = readl(mmio + PDC_TBG_MODE);
664 tmp &= ~0x30000; /* clear bit 17, 16*/
665 tmp |= 0x10000; /* set bit 17:16 = 0:1 */
666 writel(tmp, mmio + PDC_TBG_MODE);
667
668 readl(mmio + PDC_TBG_MODE); /* flush */
669 msleep(10);
670
671 /* adjust slew rate control register. */
672 tmp = readl(mmio + PDC_SLEW_CTL);
673 tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
674 tmp |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
675 writel(tmp, mmio + PDC_SLEW_CTL);
676}
677
678static int pdc_ata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
679{
680 static int printed_version;
681 struct ata_probe_ent *probe_ent = NULL;
Luke Kosewski6340f012006-01-28 12:39:29 -0500682 struct pdc_host_priv *hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 unsigned long base;
Jeff Garzikea6ba102005-08-30 05:18:18 -0400684 void __iomem *mmio_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 unsigned int board_idx = (unsigned int) ent->driver_data;
686 int pci_dev_busy = 0;
687 int rc;
688
689 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500690 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 rc = pci_enable_device(pdev);
693 if (rc)
694 return rc;
695
696 rc = pci_request_regions(pdev, DRV_NAME);
697 if (rc) {
698 pci_dev_busy = 1;
699 goto err_out;
700 }
701
702 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
703 if (rc)
704 goto err_out_regions;
705 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
706 if (rc)
707 goto err_out_regions;
708
Luke Kosewski6340f012006-01-28 12:39:29 -0500709 probe_ent = kzalloc(sizeof(*probe_ent), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (probe_ent == NULL) {
711 rc = -ENOMEM;
712 goto err_out_regions;
713 }
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 probe_ent->dev = pci_dev_to_dev(pdev);
716 INIT_LIST_HEAD(&probe_ent->node);
717
Jeff Garzik374b1872005-08-30 05:42:52 -0400718 mmio_base = pci_iomap(pdev, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (mmio_base == NULL) {
720 rc = -ENOMEM;
721 goto err_out_free_ent;
722 }
723 base = (unsigned long) mmio_base;
724
Luke Kosewski6340f012006-01-28 12:39:29 -0500725 hp = kzalloc(sizeof(*hp), GFP_KERNEL);
726 if (hp == NULL) {
727 rc = -ENOMEM;
728 goto err_out_free_ent;
729 }
730
731 /* Set default hotplug offset */
732 hp->hotplug_offset = PDC_SATA_PLUG_CSR;
733 probe_ent->private_data = hp;
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 probe_ent->sht = pdc_port_info[board_idx].sht;
736 probe_ent->host_flags = pdc_port_info[board_idx].host_flags;
737 probe_ent->pio_mask = pdc_port_info[board_idx].pio_mask;
738 probe_ent->mwdma_mask = pdc_port_info[board_idx].mwdma_mask;
739 probe_ent->udma_mask = pdc_port_info[board_idx].udma_mask;
740 probe_ent->port_ops = pdc_port_info[board_idx].port_ops;
741
742 probe_ent->irq = pdev->irq;
743 probe_ent->irq_flags = SA_SHIRQ;
744 probe_ent->mmio_base = mmio_base;
745
746 pdc_ata_setup_port(&probe_ent->port[0], base + 0x200);
747 pdc_ata_setup_port(&probe_ent->port[1], base + 0x280);
748
749 probe_ent->port[0].scr_addr = base + 0x400;
750 probe_ent->port[1].scr_addr = base + 0x500;
751
752 /* notice 4-port boards */
753 switch (board_idx) {
Luke Kosewski6340f012006-01-28 12:39:29 -0500754 case board_40518:
755 /* Override hotplug offset for SATAII150 */
756 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
757 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 case board_20319:
759 probe_ent->n_ports = 4;
760
761 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
762 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
763
764 probe_ent->port[2].scr_addr = base + 0x600;
765 probe_ent->port[3].scr_addr = base + 0x700;
766 break;
Luke Kosewski6340f012006-01-28 12:39:29 -0500767 case board_2057x:
768 /* Override hotplug offset for SATAII150 */
769 hp->hotplug_offset = PDC2_SATA_PLUG_CSR;
770 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 case board_2037x:
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500772 probe_ent->n_ports = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 break;
Yusuf Iskenderoglu5a46fe82006-01-17 08:06:21 -0500774 case board_20771:
775 probe_ent->n_ports = 2;
776 break;
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400777 case board_20619:
778 probe_ent->n_ports = 4;
779
780 pdc_ata_setup_port(&probe_ent->port[2], base + 0x300);
781 pdc_ata_setup_port(&probe_ent->port[3], base + 0x380);
782
783 probe_ent->port[2].scr_addr = base + 0x600;
784 probe_ent->port[3].scr_addr = base + 0x700;
Jeff Garzik6c9e5eb2005-11-30 16:42:55 -0500785 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 default:
787 BUG();
788 break;
789 }
790
791 pci_set_master(pdev);
792
793 /* initialize adapter */
794 pdc_host_init(board_idx, probe_ent);
795
Luke Kosewski6340f012006-01-28 12:39:29 -0500796 /* FIXME: Need any other frees than hp? */
797 if (!ata_device_add(probe_ent))
798 kfree(hp);
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 kfree(probe_ent);
801
802 return 0;
803
804err_out_free_ent:
805 kfree(probe_ent);
806err_out_regions:
807 pci_release_regions(pdev);
808err_out:
809 if (!pci_dev_busy)
810 pci_disable_device(pdev);
811 return rc;
812}
813
814
815static int __init pdc_ata_init(void)
816{
817 return pci_module_init(&pdc_ata_pci_driver);
818}
819
820
821static void __exit pdc_ata_exit(void)
822{
823 pci_unregister_driver(&pdc_ata_pci_driver);
824}
825
826
827MODULE_AUTHOR("Jeff Garzik");
Tobias Lorenzf497ba72005-05-12 15:51:01 -0400828MODULE_DESCRIPTION("Promise ATA TX2/TX4/TX4000 low-level driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829MODULE_LICENSE("GPL");
830MODULE_DEVICE_TABLE(pci, pdc_ata_pci_tbl);
831MODULE_VERSION(DRV_VERSION);
832
833module_init(pdc_ata_init);
834module_exit(pdc_ata_exit);