blob: b2fc023783b15c3338160d3a0370a4e494b5db6f [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_hpt3x3 - HPT3x3 driver
3 * (c) Copyright 2005-2006 Red Hat
4 *
5 * Was pata_hpt34x but the naming was confusing as it supported the
6 * 343 and 363 so it has been renamed.
7 *
8 * Based on:
9 * linux/drivers/ide/pci/hpt34x.c Version 0.40 Sept 10, 2002
10 * Copyright (C) 1998-2000 Andre Hedrick <andre@linux-ide.org>
11 *
12 * May be copied or modified under the terms of the GNU General Public
13 * License
14 */
Jeff Garzik85cd7252006-08-31 00:03:49 -040015
Jeff Garzik669a5db2006-08-29 18:12:40 -040016#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/pci.h>
Jeff Garzik669a5db2006-08-29 18:12:40 -040019#include <linux/blkdev.h>
20#include <linux/delay.h>
21#include <scsi/scsi_host.h>
22#include <linux/libata.h>
23
24#define DRV_NAME "pata_hpt3x3"
Alan Cox978ff6d2009-01-05 14:12:51 +000025#define DRV_VERSION "0.6.1"
Jeff Garzik669a5db2006-08-29 18:12:40 -040026
Jeff Garzik669a5db2006-08-29 18:12:40 -040027/**
28 * hpt3x3_set_piomode - PIO setup
29 * @ap: ATA interface
30 * @adev: device on the interface
31 *
32 * Set our PIO requirements. This is fairly simple on the HPT3x3 as
33 * all we have to do is clear the MWDMA and UDMA bits then load the
34 * mode number.
35 */
36
37static void hpt3x3_set_piomode(struct ata_port *ap, struct ata_device *adev)
38{
39 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
40 u32 r1, r2;
41 int dn = 2 * ap->port_no + adev->devno;
42
43 pci_read_config_dword(pdev, 0x44, &r1);
44 pci_read_config_dword(pdev, 0x48, &r2);
45 /* Load the PIO timing number */
46 r1 &= ~(7 << (3 * dn));
47 r1 |= (adev->pio_mode - XFER_PIO_0) << (3 * dn);
48 r2 &= ~(0x11 << dn); /* Clear MWDMA and UDMA bits */
49
50 pci_write_config_dword(pdev, 0x44, r1);
51 pci_write_config_dword(pdev, 0x48, r2);
52}
53
Jeff Garzik790956e2007-07-10 21:36:13 -040054#if defined(CONFIG_PATA_HPT3X3_DMA)
Jeff Garzik669a5db2006-08-29 18:12:40 -040055/**
56 * hpt3x3_set_dmamode - DMA timing setup
57 * @ap: ATA interface
58 * @adev: Device being configured
59 *
60 * Set up the channel for MWDMA or UDMA modes. Much the same as with
61 * PIO, load the mode number and then set MWDMA or UDMA flag.
Alan Cox66e7da42007-07-09 11:46:22 -070062 *
63 * 0x44 : bit 0-2 master mode, 3-5 slave mode, etc
64 * 0x48 : bit 4/0 DMA/UDMA bit 5/1 for slave etc
Jeff Garzik669a5db2006-08-29 18:12:40 -040065 */
66
67static void hpt3x3_set_dmamode(struct ata_port *ap, struct ata_device *adev)
68{
69 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
70 u32 r1, r2;
71 int dn = 2 * ap->port_no + adev->devno;
72 int mode_num = adev->dma_mode & 0x0F;
73
74 pci_read_config_dword(pdev, 0x44, &r1);
75 pci_read_config_dword(pdev, 0x48, &r2);
76 /* Load the timing number */
77 r1 &= ~(7 << (3 * dn));
78 r1 |= (mode_num << (3 * dn));
79 r2 &= ~(0x11 << dn); /* Clear MWDMA and UDMA bits */
80
81 if (adev->dma_mode >= XFER_UDMA_0)
Alan Cox978ff6d2009-01-05 14:12:51 +000082 r2 |= (0x01 << dn); /* Ultra mode */
Jeff Garzik669a5db2006-08-29 18:12:40 -040083 else
Alan Cox978ff6d2009-01-05 14:12:51 +000084 r2 |= (0x10 << dn); /* MWDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -040085
86 pci_write_config_dword(pdev, 0x44, r1);
87 pci_write_config_dword(pdev, 0x48, r2);
88}
Alan Cox978ff6d2009-01-05 14:12:51 +000089
90/**
91 * hpt3x3_freeze - DMA workaround
92 * @ap: port to freeze
93 *
94 * When freezing an HPT3x3 we must stop any pending DMA before
95 * writing to the control register or the chip will hang
96 */
97
Jeff Garzikb63d3952009-01-08 16:28:21 -050098static void hpt3x3_freeze(struct ata_port *ap)
Alan Cox978ff6d2009-01-05 14:12:51 +000099{
100 void __iomem *mmio = ap->ioaddr.bmdma_addr;
101
102 iowrite8(ioread8(mmio + ATA_DMA_CMD) & ~ ATA_DMA_START,
103 mmio + ATA_DMA_CMD);
104 ata_sff_dma_pause(ap);
105 ata_sff_freeze(ap);
106}
107
108/**
109 * hpt3x3_bmdma_setup - DMA workaround
110 * @qc: Queued command
111 *
112 * When issuing BMDMA we must clean up the error/active bits in
113 * software on this device
114 */
115
116static void hpt3x3_bmdma_setup(struct ata_queued_cmd *qc)
117{
118 struct ata_port *ap = qc->ap;
119 u8 r = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
120 r |= ATA_DMA_INTR | ATA_DMA_ERR;
121 iowrite8(r, ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
122 return ata_bmdma_setup(qc);
123}
Jeff Garzik669a5db2006-08-29 18:12:40 -0400124
Alan Cox66e7da42007-07-09 11:46:22 -0700125/**
126 * hpt3x3_atapi_dma - ATAPI DMA check
127 * @qc: Queued command
128 *
129 * Just say no - we don't do ATAPI DMA
130 */
131
132static int hpt3x3_atapi_dma(struct ata_queued_cmd *qc)
133{
134 return 1;
135}
136
Alan Cox978ff6d2009-01-05 14:12:51 +0000137#endif /* CONFIG_PATA_HPT3X3_DMA */
138
Jeff Garzik669a5db2006-08-29 18:12:40 -0400139static struct scsi_host_template hpt3x3_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900140 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400141};
142
143static struct ata_port_operations hpt3x3_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900144 .inherits = &ata_bmdma_port_ops,
Tejun Heo029cfd62008-03-25 12:22:49 +0900145 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400146 .set_piomode = hpt3x3_set_piomode,
Jeff Garzik790956e2007-07-10 21:36:13 -0400147#if defined(CONFIG_PATA_HPT3X3_DMA)
148 .set_dmamode = hpt3x3_set_dmamode,
Alan Cox978ff6d2009-01-05 14:12:51 +0000149 .bmdma_setup = hpt3x3_bmdma_setup,
150 .check_atapi_dma= hpt3x3_atapi_dma,
151 .freeze = hpt3x3_freeze,
Jeff Garzik790956e2007-07-10 21:36:13 -0400152#endif
Jeff Garzik4fca3772011-02-15 01:13:24 -0500153
Jeff Garzik669a5db2006-08-29 18:12:40 -0400154};
155
156/**
Alanaff0df02006-11-27 16:25:51 +0000157 * hpt3x3_init_chipset - chip setup
158 * @dev: PCI device
159 *
160 * Perform the setup required at boot and on resume.
161 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500162
Alanaff0df02006-11-27 16:25:51 +0000163static void hpt3x3_init_chipset(struct pci_dev *dev)
164{
165 u16 cmd;
166 /* Initialize the board */
167 pci_write_config_word(dev, 0x80, 0x00);
168 /* Check if it is a 343 or a 363. 363 has COMMAND_MEMORY set */
169 pci_read_config_word(dev, PCI_COMMAND, &cmd);
170 if (cmd & PCI_COMMAND_MEMORY)
171 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0xF0);
172 else
173 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x20);
174}
175
Alanaff0df02006-11-27 16:25:51 +0000176/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400177 * hpt3x3_init_one - Initialise an HPT343/363
Alan Cox66e7da42007-07-09 11:46:22 -0700178 * @pdev: PCI device
Jeff Garzik669a5db2006-08-29 18:12:40 -0400179 * @id: Entry in match table
180 *
Alan Cox66e7da42007-07-09 11:46:22 -0700181 * Perform basic initialisation. We set the device up so we access all
Daniel Mack3ad2f3fb2010-02-03 08:01:28 +0800182 * ports via BAR4. This is necessary to work around errata.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400183 */
184
Alan Cox66e7da42007-07-09 11:46:22 -0700185static int hpt3x3_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400186{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200187 static const struct ata_port_info info = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400188 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100189 .pio_mask = ATA_PIO4,
Alan Cox66e7da42007-07-09 11:46:22 -0700190#if defined(CONFIG_PATA_HPT3X3_DMA)
191 /* Further debug needed */
Erik Inge Bolsø14bdef982009-03-14 21:38:24 +0100192 .mwdma_mask = ATA_MWDMA2,
193 .udma_mask = ATA_UDMA2,
Alan Cox66e7da42007-07-09 11:46:22 -0700194#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400195 .port_ops = &hpt3x3_port_ops
196 };
Alan Cox66e7da42007-07-09 11:46:22 -0700197 /* Register offsets of taskfiles in BAR4 area */
198 static const u8 offset_cmd[2] = { 0x20, 0x28 };
199 static const u8 offset_ctl[2] = { 0x36, 0x3E };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200200 const struct ata_port_info *ppi[] = { &info, NULL };
Alan Cox66e7da42007-07-09 11:46:22 -0700201 struct ata_host *host;
202 int i, rc;
203 void __iomem *base;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400204
Alan Cox66e7da42007-07-09 11:46:22 -0700205 hpt3x3_init_chipset(pdev);
206
Joe Perches06296a12011-04-15 15:52:00 -0700207 ata_print_version_once(&pdev->dev, DRV_VERSION);
Alan Cox66e7da42007-07-09 11:46:22 -0700208
209 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
210 if (!host)
211 return -ENOMEM;
212 /* acquire resources and fill host */
213 rc = pcim_enable_device(pdev);
214 if (rc)
215 return rc;
216
217 /* Everything is relative to BAR4 if we set up this way */
218 rc = pcim_iomap_regions(pdev, 1 << 4, DRV_NAME);
219 if (rc == -EBUSY)
220 pcim_pin_device(pdev);
221 if (rc)
222 return rc;
223 host->iomap = pcim_iomap_table(pdev);
Quentin Lambertc54c7192015-04-08 14:34:10 +0200224 rc = dma_set_mask(&pdev->dev, ATA_DMA_MASK);
Alan Cox66e7da42007-07-09 11:46:22 -0700225 if (rc)
226 return rc;
Quentin Lambertc54c7192015-04-08 14:34:10 +0200227 rc = dma_set_coherent_mask(&pdev->dev, ATA_DMA_MASK);
Alan Cox66e7da42007-07-09 11:46:22 -0700228 if (rc)
229 return rc;
230
231 base = host->iomap[4]; /* Bus mastering base */
232
233 for (i = 0; i < host->n_ports; i++) {
Tejun Heocbcdd872007-08-18 13:14:55 +0900234 struct ata_port *ap = host->ports[i];
235 struct ata_ioports *ioaddr = &ap->ioaddr;
Alan Cox66e7da42007-07-09 11:46:22 -0700236
237 ioaddr->cmd_addr = base + offset_cmd[i];
238 ioaddr->altstatus_addr =
239 ioaddr->ctl_addr = base + offset_ctl[i];
240 ioaddr->scr_addr = NULL;
Tejun Heo9363c382008-04-07 22:47:16 +0900241 ata_sff_std_ports(ioaddr);
Alan Cox66e7da42007-07-09 11:46:22 -0700242 ioaddr->bmdma_addr = base + 8 * i;
Tejun Heocbcdd872007-08-18 13:14:55 +0900243
244 ata_port_pbar_desc(ap, 4, -1, "ioport");
245 ata_port_pbar_desc(ap, 4, offset_cmd[i], "cmd");
Alan Cox66e7da42007-07-09 11:46:22 -0700246 }
247 pci_set_master(pdev);
Tejun Heoc3b28892010-05-19 22:10:21 +0200248 return ata_host_activate(host, pdev->irq, ata_bmdma_interrupt,
Tejun Heo9363c382008-04-07 22:47:16 +0900249 IRQF_SHARED, &hpt3x3_sht);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400250}
251
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200252#ifdef CONFIG_PM_SLEEP
Alanaff0df02006-11-27 16:25:51 +0000253static int hpt3x3_reinit_one(struct pci_dev *dev)
254{
Jingoo Han0a86e1c2013-06-03 14:05:36 +0900255 struct ata_host *host = pci_get_drvdata(dev);
Bartlomiej Zolnierkiewicz39150442009-12-03 20:32:10 +0100256 int rc;
257
258 rc = ata_pci_device_do_resume(dev);
259 if (rc)
260 return rc;
261
Alanaff0df02006-11-27 16:25:51 +0000262 hpt3x3_init_chipset(dev);
Bartlomiej Zolnierkiewicz39150442009-12-03 20:32:10 +0100263
264 ata_host_resume(host);
265 return 0;
Alanaff0df02006-11-27 16:25:51 +0000266}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900267#endif
Alanaff0df02006-11-27 16:25:51 +0000268
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400269static const struct pci_device_id hpt3x3[] = {
270 { PCI_VDEVICE(TTI, PCI_DEVICE_ID_TTI_HPT343), },
271
272 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400273};
274
275static struct pci_driver hpt3x3_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400276 .name = DRV_NAME,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400277 .id_table = hpt3x3,
278 .probe = hpt3x3_init_one,
Alanaff0df02006-11-27 16:25:51 +0000279 .remove = ata_pci_remove_one,
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200280#ifdef CONFIG_PM_SLEEP
Alanaff0df02006-11-27 16:25:51 +0000281 .suspend = ata_pci_device_suspend,
282 .resume = hpt3x3_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900283#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400284};
285
Axel Lin2fc75da2012-04-19 13:43:05 +0800286module_pci_driver(hpt3x3_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400287
288MODULE_AUTHOR("Alan Cox");
289MODULE_DESCRIPTION("low-level driver for the Highpoint HPT343/363");
290MODULE_LICENSE("GPL");
291MODULE_DEVICE_TABLE(pci, hpt3x3);
292MODULE_VERSION(DRV_VERSION);