blob: a2ace48a4610c2b627324088ea34c2520f068c5c [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_sil680.c - SIL680 PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
Jeff Garzik669a5db2006-08-29 18:12:40 -04004 *
5 * based upon
6 *
7 * linux/drivers/ide/pci/siimage.c Version 1.07 Nov 30, 2003
8 *
9 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
10 * Copyright (C) 2003 Red Hat <alan@redhat.com>
11 *
12 * May be copied or modified under the terms of the GNU General Public License
13 *
14 * Documentation publically available.
15 *
16 * If you have strange problems with nVidia chipset systems please
17 * see the SI support documentation and update your system BIOS
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020018 * if necessary
Jeff Garzik669a5db2006-08-29 18:12:40 -040019 *
20 * TODO
21 * If we know all our devices are LBA28 (or LBA28 sized) we could use
22 * the command fifo mode.
23 */
24
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/pci.h>
28#include <linux/init.h>
29#include <linux/blkdev.h>
30#include <linux/delay.h>
31#include <scsi/scsi_host.h>
32#include <linux/libata.h>
33
34#define DRV_NAME "pata_sil680"
Alan Cox871af122009-01-05 14:16:39 +000035#define DRV_VERSION "0.4.9"
Jeff Garzik669a5db2006-08-29 18:12:40 -040036
Jeff Garzik79b0bde2007-05-28 07:22:30 -040037#define SIL680_MMIO_BAR 5
38
Jeff Garzik669a5db2006-08-29 18:12:40 -040039/**
40 * sil680_selreg - return register base
41 * @hwif: interface
42 * @r: config offset
43 *
44 * Turn a config register offset into the right address in either
45 * PCI space or MMIO space to access the control register in question
46 * Thankfully this is a configuration operation so isnt performance
47 * criticial.
48 */
49
50static unsigned long sil680_selreg(struct ata_port *ap, int r)
51{
52 unsigned long base = 0xA0 + r;
53 base += (ap->port_no << 4);
54 return base;
55}
56
57/**
58 * sil680_seldev - return register base
59 * @hwif: interface
60 * @r: config offset
61 *
62 * Turn a config register offset into the right address in either
63 * PCI space or MMIO space to access the control register in question
64 * including accounting for the unit shift.
65 */
66
67static unsigned long sil680_seldev(struct ata_port *ap, struct ata_device *adev, int r)
68{
69 unsigned long base = 0xA0 + r;
70 base += (ap->port_no << 4);
71 base |= adev->devno ? 2 : 0;
72 return base;
73}
74
75
76/**
77 * sil680_cable_detect - cable detection
78 * @ap: ATA port
79 *
80 * Perform cable detection. The SIL680 stores this in PCI config
81 * space for us.
82 */
83
84static int sil680_cable_detect(struct ata_port *ap) {
85 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
86 unsigned long addr = sil680_selreg(ap, 0);
87 u8 ata66;
88 pci_read_config_byte(pdev, addr, &ata66);
89 if (ata66 & 1)
90 return ATA_CBL_PATA80;
91 else
92 return ATA_CBL_PATA40;
93}
94
Jeff Garzik669a5db2006-08-29 18:12:40 -040095/**
Jeff Garzik669a5db2006-08-29 18:12:40 -040096 * sil680_set_piomode - set initial PIO mode data
97 * @ap: ATA interface
98 * @adev: ATA device
99 *
100 * Program the SIL680 registers for PIO mode. Note that the task speed
101 * registers are shared between the devices so we must pick the lowest
102 * mode for command work.
103 */
104
105static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev)
106{
107 static u16 speed_p[5] = { 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1 };
Sergei Shtylyov5dcade92007-01-28 21:33:44 +0300108 static u16 speed_t[5] = { 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400109
110 unsigned long tfaddr = sil680_selreg(ap, 0x02);
111 unsigned long addr = sil680_seldev(ap, adev, 0x04);
Alancb0e34b2007-02-20 17:49:25 +0000112 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400113 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
114 int pio = adev->pio_mode - XFER_PIO_0;
115 int lowest_pio = pio;
Alancb0e34b2007-02-20 17:49:25 +0000116 int port_shift = 4 * adev->devno;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400117 u16 reg;
Alancb0e34b2007-02-20 17:49:25 +0000118 u8 mode;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400119
120 struct ata_device *pair = ata_dev_pair(adev);
121
122 if (pair != NULL && adev->pio_mode > pair->pio_mode)
123 lowest_pio = pair->pio_mode - XFER_PIO_0;
124
125 pci_write_config_word(pdev, addr, speed_p[pio]);
126 pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]);
127
128 pci_read_config_word(pdev, tfaddr-2, &reg);
Alancb0e34b2007-02-20 17:49:25 +0000129 pci_read_config_byte(pdev, addr_mask, &mode);
Jeff Garzika84471f2007-02-26 05:51:33 -0500130
Jeff Garzik669a5db2006-08-29 18:12:40 -0400131 reg &= ~0x0200; /* Clear IORDY */
Alancb0e34b2007-02-20 17:49:25 +0000132 mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */
Jeff Garzika84471f2007-02-26 05:51:33 -0500133
Alancb0e34b2007-02-20 17:49:25 +0000134 if (ata_pio_need_iordy(adev)) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400135 reg |= 0x0200; /* Enable IORDY */
Alancb0e34b2007-02-20 17:49:25 +0000136 mode |= 1 << port_shift;
137 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400138 pci_write_config_word(pdev, tfaddr-2, reg);
Alancb0e34b2007-02-20 17:49:25 +0000139 pci_write_config_byte(pdev, addr_mask, mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400140}
141
142/**
143 * sil680_set_dmamode - set initial DMA mode data
144 * @ap: ATA interface
145 * @adev: ATA device
146 *
147 * Program the MWDMA/UDMA modes for the sil680 k
148 * chipset. The MWDMA mode values are pulled from a lookup table
149 * while the chipset uses mode number for UDMA.
150 */
151
152static void sil680_set_dmamode(struct ata_port *ap, struct ata_device *adev)
153{
154 static u8 ultra_table[2][7] = {
155 { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01, 0xFF }, /* 100MHz */
156 { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 }, /* 133Mhz */
157 };
158 static u16 dma_table[3] = { 0x2208, 0x10C2, 0x10C1 };
159
160 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
161 unsigned long ma = sil680_seldev(ap, adev, 0x08);
162 unsigned long ua = sil680_seldev(ap, adev, 0x0C);
163 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
164 int port_shift = adev->devno * 4;
165 u8 scsc, mode;
166 u16 multi, ultra;
167
168 pci_read_config_byte(pdev, 0x8A, &scsc);
169 pci_read_config_byte(pdev, addr_mask, &mode);
170 pci_read_config_word(pdev, ma, &multi);
171 pci_read_config_word(pdev, ua, &ultra);
172
173 /* Mask timing bits */
174 ultra &= ~0x3F;
175 mode &= ~(0x03 << port_shift);
176
177 /* Extract scsc */
178 scsc = (scsc & 0x30) ? 1: 0;
179
180 if (adev->dma_mode >= XFER_UDMA_0) {
181 multi = 0x10C1;
182 ultra |= ultra_table[scsc][adev->dma_mode - XFER_UDMA_0];
183 mode |= (0x03 << port_shift);
184 } else {
185 multi = dma_table[adev->dma_mode - XFER_MW_DMA_0];
186 mode |= (0x02 << port_shift);
187 }
188 pci_write_config_byte(pdev, addr_mask, mode);
189 pci_write_config_word(pdev, ma, multi);
190 pci_write_config_word(pdev, ua, ultra);
191}
192
193static struct scsi_host_template sil680_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900194 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400195};
196
197static struct ata_port_operations sil680_port_ops = {
Alan Cox871af122009-01-05 14:16:39 +0000198 .inherits = &ata_bmdma32_port_ops,
Tejun Heo029cfd62008-03-25 12:22:49 +0900199 .cable_detect = sil680_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400200 .set_piomode = sil680_set_piomode,
201 .set_dmamode = sil680_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400202};
203
Alan8550c162006-11-22 17:28:41 +0000204/**
205 * sil680_init_chip - chip setup
206 * @pdev: PCI device
207 *
208 * Perform all the chip setup which must be done both when the device
209 * is powered up on boot and when we resume in case we resumed from RAM.
210 * Returns the final clock settings.
211 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500212
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400213static u8 sil680_init_chip(struct pci_dev *pdev, int *try_mmio)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400214{
Jeff Garzik669a5db2006-08-29 18:12:40 -0400215 u8 tmpbyte = 0;
216
Jeff Garzik669a5db2006-08-29 18:12:40 -0400217 /* FIXME: double check */
Sergei Shtylyov89d3b362009-11-24 22:54:49 +0400218 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
219 pdev->revision ? 1 : 255);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400220
221 pci_write_config_byte(pdev, 0x80, 0x00);
222 pci_write_config_byte(pdev, 0x84, 0x00);
223
224 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
225
Jeff Garzik79b0bde2007-05-28 07:22:30 -0400226 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
227 tmpbyte & 1, tmpbyte & 0x30);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400228
Benjamin Herrenschmidt0f436ef2008-03-28 14:52:29 -0700229 *try_mmio = 0;
Kumar Gala47d692a2008-09-22 14:47:33 -0700230#ifdef CONFIG_PPC
Benjamin Herrenschmidt0f436ef2008-03-28 14:52:29 -0700231 if (machine_is(cell))
232 *try_mmio = (tmpbyte & 1) || pci_resource_start(pdev, 5);
233#endif
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400234
Jeff Garzik669a5db2006-08-29 18:12:40 -0400235 switch(tmpbyte & 0x30) {
236 case 0x00:
237 /* 133 clock attempt to force it on */
238 pci_write_config_byte(pdev, 0x8A, tmpbyte|0x10);
239 break;
240 case 0x30:
241 /* if clocking is disabled */
242 /* 133 clock attempt to force it on */
243 pci_write_config_byte(pdev, 0x8A, tmpbyte & ~0x20);
244 break;
245 case 0x10:
246 /* 133 already */
247 break;
248 case 0x20:
249 /* BIOS set PCI x2 clocking */
250 break;
251 }
252
253 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
Jeff Garzik79b0bde2007-05-28 07:22:30 -0400254 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
255 tmpbyte & 1, tmpbyte & 0x30);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400256
257 pci_write_config_byte(pdev, 0xA1, 0x72);
258 pci_write_config_word(pdev, 0xA2, 0x328A);
259 pci_write_config_dword(pdev, 0xA4, 0x62DD62DD);
260 pci_write_config_dword(pdev, 0xA8, 0x43924392);
261 pci_write_config_dword(pdev, 0xAC, 0x40094009);
262 pci_write_config_byte(pdev, 0xB1, 0x72);
263 pci_write_config_word(pdev, 0xB2, 0x328A);
264 pci_write_config_dword(pdev, 0xB4, 0x62DD62DD);
265 pci_write_config_dword(pdev, 0xB8, 0x43924392);
266 pci_write_config_dword(pdev, 0xBC, 0x40094009);
267
268 switch(tmpbyte & 0x30) {
269 case 0x00: printk(KERN_INFO "sil680: 100MHz clock.\n");break;
270 case 0x10: printk(KERN_INFO "sil680: 133MHz clock.\n");break;
271 case 0x20: printk(KERN_INFO "sil680: Using PCI clock.\n");break;
272 /* This last case is _NOT_ ok */
273 case 0x30: printk(KERN_ERR "sil680: Clock disabled ?\n");
Alan8550c162006-11-22 17:28:41 +0000274 }
275 return tmpbyte & 0x30;
276}
277
Jeff Garzik79b0bde2007-05-28 07:22:30 -0400278static int __devinit sil680_init_one(struct pci_dev *pdev,
279 const struct pci_device_id *id)
Alan8550c162006-11-22 17:28:41 +0000280{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200281 static const struct ata_port_info info = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400282 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100283 .pio_mask = ATA_PIO4,
284 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400285 .udma_mask = ATA_UDMA6,
Alan8550c162006-11-22 17:28:41 +0000286 .port_ops = &sil680_port_ops
287 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200288 static const struct ata_port_info info_slow = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400289 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100290 .pio_mask = ATA_PIO4,
291 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400292 .udma_mask = ATA_UDMA5,
Alan8550c162006-11-22 17:28:41 +0000293 .port_ops = &sil680_port_ops
294 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200295 const struct ata_port_info *ppi[] = { &info, NULL };
Alan8550c162006-11-22 17:28:41 +0000296 static int printed_version;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400297 struct ata_host *host;
298 void __iomem *mmio_base;
299 int rc, try_mmio;
Alan8550c162006-11-22 17:28:41 +0000300
301 if (!printed_version++)
302 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
303
Tejun Heof08048e2008-03-25 12:22:47 +0900304 rc = pcim_enable_device(pdev);
305 if (rc)
306 return rc;
307
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400308 switch (sil680_init_chip(pdev, &try_mmio)) {
Alan8550c162006-11-22 17:28:41 +0000309 case 0:
Tejun Heo1626aeb2007-05-04 12:43:58 +0200310 ppi[0] = &info_slow;
Alan8550c162006-11-22 17:28:41 +0000311 break;
312 case 0x30:
313 return -ENODEV;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400314 }
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400315
316 if (!try_mmio)
317 goto use_ioports;
318
319 /* Try to acquire MMIO resources and fallback to PIO if
320 * that fails
321 */
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400322 rc = pcim_iomap_regions(pdev, 1 << SIL680_MMIO_BAR, DRV_NAME);
323 if (rc)
324 goto use_ioports;
325
326 /* Allocate host and set it up */
327 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
328 if (!host)
329 return -ENOMEM;
330 host->iomap = pcim_iomap_table(pdev);
331
332 /* Setup DMA masks */
333 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
334 if (rc)
335 return rc;
336 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
337 if (rc)
338 return rc;
339 pci_set_master(pdev);
340
341 /* Get MMIO base and initialize port addresses */
342 mmio_base = host->iomap[SIL680_MMIO_BAR];
343 host->ports[0]->ioaddr.bmdma_addr = mmio_base + 0x00;
344 host->ports[0]->ioaddr.cmd_addr = mmio_base + 0x80;
345 host->ports[0]->ioaddr.ctl_addr = mmio_base + 0x8a;
346 host->ports[0]->ioaddr.altstatus_addr = mmio_base + 0x8a;
Tejun Heo9363c382008-04-07 22:47:16 +0900347 ata_sff_std_ports(&host->ports[0]->ioaddr);
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400348 host->ports[1]->ioaddr.bmdma_addr = mmio_base + 0x08;
349 host->ports[1]->ioaddr.cmd_addr = mmio_base + 0xc0;
350 host->ports[1]->ioaddr.ctl_addr = mmio_base + 0xca;
351 host->ports[1]->ioaddr.altstatus_addr = mmio_base + 0xca;
Tejun Heo9363c382008-04-07 22:47:16 +0900352 ata_sff_std_ports(&host->ports[1]->ioaddr);
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400353
354 /* Register & activate */
Tejun Heo9363c382008-04-07 22:47:16 +0900355 return ata_host_activate(host, pdev->irq, ata_sff_interrupt,
356 IRQF_SHARED, &sil680_sht);
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400357
358use_ioports:
Tejun Heo9363c382008-04-07 22:47:16 +0900359 return ata_pci_sff_init_one(pdev, ppi, &sil680_sht, NULL);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400360}
361
Tejun Heo438ac6d2007-03-02 17:31:26 +0900362#ifdef CONFIG_PM
Alan8550c162006-11-22 17:28:41 +0000363static int sil680_reinit_one(struct pci_dev *pdev)
364{
Tejun Heof08048e2008-03-25 12:22:47 +0900365 struct ata_host *host = dev_get_drvdata(&pdev->dev);
366 int try_mmio, rc;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400367
Tejun Heof08048e2008-03-25 12:22:47 +0900368 rc = ata_pci_device_do_resume(pdev);
369 if (rc)
370 return rc;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400371 sil680_init_chip(pdev, &try_mmio);
Tejun Heof08048e2008-03-25 12:22:47 +0900372 ata_host_resume(host);
373 return 0;
Alan8550c162006-11-22 17:28:41 +0000374}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900375#endif
Alan8550c162006-11-22 17:28:41 +0000376
Jeff Garzik669a5db2006-08-29 18:12:40 -0400377static const struct pci_device_id sil680[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400378 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), },
379
380 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400381};
382
383static struct pci_driver sil680_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400384 .name = DRV_NAME,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400385 .id_table = sil680,
386 .probe = sil680_init_one,
Alan8550c162006-11-22 17:28:41 +0000387 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900388#ifdef CONFIG_PM
Alan8550c162006-11-22 17:28:41 +0000389 .suspend = ata_pci_device_suspend,
390 .resume = sil680_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900391#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400392};
393
394static int __init sil680_init(void)
395{
396 return pci_register_driver(&sil680_pci_driver);
397}
398
Jeff Garzik669a5db2006-08-29 18:12:40 -0400399static void __exit sil680_exit(void)
400{
401 pci_unregister_driver(&sil680_pci_driver);
402}
403
Jeff Garzik669a5db2006-08-29 18:12:40 -0400404MODULE_AUTHOR("Alan Cox");
405MODULE_DESCRIPTION("low-level driver for SI680 PATA");
406MODULE_LICENSE("GPL");
407MODULE_DEVICE_TABLE(pci, sil680);
408MODULE_VERSION(DRV_VERSION);
409
410module_init(sil680_init);
411module_exit(sil680_exit);