blob: 0936f534d9c73a9245df70a8db908d0089349fd9 [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
4 * Alan Cox <alan@redhat.com>
5 *
6 * based upon
7 *
8 * linux/drivers/ide/pci/siimage.c Version 1.07 Nov 30, 2003
9 *
10 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
11 * Copyright (C) 2003 Red Hat <alan@redhat.com>
12 *
13 * May be copied or modified under the terms of the GNU General Public License
14 *
15 * Documentation publically available.
16 *
17 * If you have strange problems with nVidia chipset systems please
18 * see the SI support documentation and update your system BIOS
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020019 * if necessary
Jeff Garzik669a5db2006-08-29 18:12:40 -040020 *
21 * TODO
22 * If we know all our devices are LBA28 (or LBA28 sized) we could use
23 * the command fifo mode.
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/pci.h>
29#include <linux/init.h>
30#include <linux/blkdev.h>
31#include <linux/delay.h>
32#include <scsi/scsi_host.h>
33#include <linux/libata.h>
34
35#define DRV_NAME "pata_sil680"
Sergei Shtylyovdd05c192007-11-16 19:50:04 +030036#define DRV_VERSION "0.4.8"
Jeff Garzik669a5db2006-08-29 18:12:40 -040037
Jeff Garzik79b0bde2007-05-28 07:22:30 -040038#define SIL680_MMIO_BAR 5
39
Jeff Garzik669a5db2006-08-29 18:12:40 -040040/**
41 * sil680_selreg - return register base
42 * @hwif: interface
43 * @r: config offset
44 *
45 * Turn a config register offset into the right address in either
46 * PCI space or MMIO space to access the control register in question
47 * Thankfully this is a configuration operation so isnt performance
48 * criticial.
49 */
50
51static unsigned long sil680_selreg(struct ata_port *ap, int r)
52{
53 unsigned long base = 0xA0 + r;
54 base += (ap->port_no << 4);
55 return base;
56}
57
58/**
59 * sil680_seldev - return register base
60 * @hwif: interface
61 * @r: config offset
62 *
63 * Turn a config register offset into the right address in either
64 * PCI space or MMIO space to access the control register in question
65 * including accounting for the unit shift.
66 */
67
68static unsigned long sil680_seldev(struct ata_port *ap, struct ata_device *adev, int r)
69{
70 unsigned long base = 0xA0 + r;
71 base += (ap->port_no << 4);
72 base |= adev->devno ? 2 : 0;
73 return base;
74}
75
76
77/**
78 * sil680_cable_detect - cable detection
79 * @ap: ATA port
80 *
81 * Perform cable detection. The SIL680 stores this in PCI config
82 * space for us.
83 */
84
85static int sil680_cable_detect(struct ata_port *ap) {
86 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
87 unsigned long addr = sil680_selreg(ap, 0);
88 u8 ata66;
89 pci_read_config_byte(pdev, addr, &ata66);
90 if (ata66 & 1)
91 return ATA_CBL_PATA80;
92 else
93 return ATA_CBL_PATA40;
94}
95
Jeff Garzik669a5db2006-08-29 18:12:40 -040096/**
Jeff Garzik669a5db2006-08-29 18:12:40 -040097 * sil680_set_piomode - set initial PIO mode data
98 * @ap: ATA interface
99 * @adev: ATA device
100 *
101 * Program the SIL680 registers for PIO mode. Note that the task speed
102 * registers are shared between the devices so we must pick the lowest
103 * mode for command work.
104 */
105
106static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev)
107{
108 static u16 speed_p[5] = { 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1 };
Sergei Shtylyov5dcade92007-01-28 21:33:44 +0300109 static u16 speed_t[5] = { 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400110
111 unsigned long tfaddr = sil680_selreg(ap, 0x02);
112 unsigned long addr = sil680_seldev(ap, adev, 0x04);
Alancb0e34b2007-02-20 17:49:25 +0000113 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400114 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
115 int pio = adev->pio_mode - XFER_PIO_0;
116 int lowest_pio = pio;
Alancb0e34b2007-02-20 17:49:25 +0000117 int port_shift = 4 * adev->devno;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400118 u16 reg;
Alancb0e34b2007-02-20 17:49:25 +0000119 u8 mode;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400120
121 struct ata_device *pair = ata_dev_pair(adev);
122
123 if (pair != NULL && adev->pio_mode > pair->pio_mode)
124 lowest_pio = pair->pio_mode - XFER_PIO_0;
125
126 pci_write_config_word(pdev, addr, speed_p[pio]);
127 pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]);
128
129 pci_read_config_word(pdev, tfaddr-2, &reg);
Alancb0e34b2007-02-20 17:49:25 +0000130 pci_read_config_byte(pdev, addr_mask, &mode);
Jeff Garzika84471f2007-02-26 05:51:33 -0500131
Jeff Garzik669a5db2006-08-29 18:12:40 -0400132 reg &= ~0x0200; /* Clear IORDY */
Alancb0e34b2007-02-20 17:49:25 +0000133 mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */
Jeff Garzika84471f2007-02-26 05:51:33 -0500134
Alancb0e34b2007-02-20 17:49:25 +0000135 if (ata_pio_need_iordy(adev)) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400136 reg |= 0x0200; /* Enable IORDY */
Alancb0e34b2007-02-20 17:49:25 +0000137 mode |= 1 << port_shift;
138 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400139 pci_write_config_word(pdev, tfaddr-2, reg);
Alancb0e34b2007-02-20 17:49:25 +0000140 pci_write_config_byte(pdev, addr_mask, mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400141}
142
143/**
144 * sil680_set_dmamode - set initial DMA mode data
145 * @ap: ATA interface
146 * @adev: ATA device
147 *
148 * Program the MWDMA/UDMA modes for the sil680 k
149 * chipset. The MWDMA mode values are pulled from a lookup table
150 * while the chipset uses mode number for UDMA.
151 */
152
153static void sil680_set_dmamode(struct ata_port *ap, struct ata_device *adev)
154{
155 static u8 ultra_table[2][7] = {
156 { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01, 0xFF }, /* 100MHz */
157 { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 }, /* 133Mhz */
158 };
159 static u16 dma_table[3] = { 0x2208, 0x10C2, 0x10C1 };
160
161 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
162 unsigned long ma = sil680_seldev(ap, adev, 0x08);
163 unsigned long ua = sil680_seldev(ap, adev, 0x0C);
164 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
165 int port_shift = adev->devno * 4;
166 u8 scsc, mode;
167 u16 multi, ultra;
168
169 pci_read_config_byte(pdev, 0x8A, &scsc);
170 pci_read_config_byte(pdev, addr_mask, &mode);
171 pci_read_config_word(pdev, ma, &multi);
172 pci_read_config_word(pdev, ua, &ultra);
173
174 /* Mask timing bits */
175 ultra &= ~0x3F;
176 mode &= ~(0x03 << port_shift);
177
178 /* Extract scsc */
179 scsc = (scsc & 0x30) ? 1: 0;
180
181 if (adev->dma_mode >= XFER_UDMA_0) {
182 multi = 0x10C1;
183 ultra |= ultra_table[scsc][adev->dma_mode - XFER_UDMA_0];
184 mode |= (0x03 << port_shift);
185 } else {
186 multi = dma_table[adev->dma_mode - XFER_MW_DMA_0];
187 mode |= (0x02 << port_shift);
188 }
189 pci_write_config_byte(pdev, addr_mask, mode);
190 pci_write_config_word(pdev, ma, multi);
191 pci_write_config_word(pdev, ua, ultra);
192}
193
194static struct scsi_host_template sil680_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900195 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400196};
197
198static struct ata_port_operations sil680_port_ops = {
Tejun Heo029cfd62008-03-25 12:22:49 +0900199 .inherits = &ata_bmdma_port_ops,
200 .cable_detect = sil680_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400201 .set_piomode = sil680_set_piomode,
202 .set_dmamode = sil680_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400203};
204
Alan8550c162006-11-22 17:28:41 +0000205/**
206 * sil680_init_chip - chip setup
207 * @pdev: PCI device
208 *
209 * Perform all the chip setup which must be done both when the device
210 * is powered up on boot and when we resume in case we resumed from RAM.
211 * Returns the final clock settings.
212 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500213
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400214static u8 sil680_init_chip(struct pci_dev *pdev, int *try_mmio)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400215{
Jeff Garzik669a5db2006-08-29 18:12:40 -0400216 u32 class_rev = 0;
217 u8 tmpbyte = 0;
218
Jeff Garzik669a5db2006-08-29 18:12:40 -0400219 pci_read_config_dword(pdev, PCI_CLASS_REVISION, &class_rev);
220 class_rev &= 0xff;
221 /* FIXME: double check */
222 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, (class_rev) ? 1 : 255);
223
224 pci_write_config_byte(pdev, 0x80, 0x00);
225 pci_write_config_byte(pdev, 0x84, 0x00);
226
227 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
228
Jeff Garzik79b0bde2007-05-28 07:22:30 -0400229 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
230 tmpbyte & 1, tmpbyte & 0x30);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400231
Benjamin Herrenschmidt0f436ef2008-03-28 14:52:29 -0700232 *try_mmio = 0;
Benjamin Herrenschmidt119b3aa2008-04-09 07:51:07 +1000233#ifdef CONFIG_PPC_MERGE
Benjamin Herrenschmidt0f436ef2008-03-28 14:52:29 -0700234 if (machine_is(cell))
235 *try_mmio = (tmpbyte & 1) || pci_resource_start(pdev, 5);
236#endif
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400237
Jeff Garzik669a5db2006-08-29 18:12:40 -0400238 switch(tmpbyte & 0x30) {
239 case 0x00:
240 /* 133 clock attempt to force it on */
241 pci_write_config_byte(pdev, 0x8A, tmpbyte|0x10);
242 break;
243 case 0x30:
244 /* if clocking is disabled */
245 /* 133 clock attempt to force it on */
246 pci_write_config_byte(pdev, 0x8A, tmpbyte & ~0x20);
247 break;
248 case 0x10:
249 /* 133 already */
250 break;
251 case 0x20:
252 /* BIOS set PCI x2 clocking */
253 break;
254 }
255
256 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
Jeff Garzik79b0bde2007-05-28 07:22:30 -0400257 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
258 tmpbyte & 1, tmpbyte & 0x30);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400259
260 pci_write_config_byte(pdev, 0xA1, 0x72);
261 pci_write_config_word(pdev, 0xA2, 0x328A);
262 pci_write_config_dword(pdev, 0xA4, 0x62DD62DD);
263 pci_write_config_dword(pdev, 0xA8, 0x43924392);
264 pci_write_config_dword(pdev, 0xAC, 0x40094009);
265 pci_write_config_byte(pdev, 0xB1, 0x72);
266 pci_write_config_word(pdev, 0xB2, 0x328A);
267 pci_write_config_dword(pdev, 0xB4, 0x62DD62DD);
268 pci_write_config_dword(pdev, 0xB8, 0x43924392);
269 pci_write_config_dword(pdev, 0xBC, 0x40094009);
270
271 switch(tmpbyte & 0x30) {
272 case 0x00: printk(KERN_INFO "sil680: 100MHz clock.\n");break;
273 case 0x10: printk(KERN_INFO "sil680: 133MHz clock.\n");break;
274 case 0x20: printk(KERN_INFO "sil680: Using PCI clock.\n");break;
275 /* This last case is _NOT_ ok */
276 case 0x30: printk(KERN_ERR "sil680: Clock disabled ?\n");
Alan8550c162006-11-22 17:28:41 +0000277 }
278 return tmpbyte & 0x30;
279}
280
Jeff Garzik79b0bde2007-05-28 07:22:30 -0400281static int __devinit sil680_init_one(struct pci_dev *pdev,
282 const struct pci_device_id *id)
Alan8550c162006-11-22 17:28:41 +0000283{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200284 static const struct ata_port_info info = {
Alan8550c162006-11-22 17:28:41 +0000285 .sht = &sil680_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400286 .flags = ATA_FLAG_SLAVE_POSS,
Alan8550c162006-11-22 17:28:41 +0000287 .pio_mask = 0x1f,
288 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400289 .udma_mask = ATA_UDMA6,
Alan8550c162006-11-22 17:28:41 +0000290 .port_ops = &sil680_port_ops
291 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200292 static const struct ata_port_info info_slow = {
Alan8550c162006-11-22 17:28:41 +0000293 .sht = &sil680_sht,
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400294 .flags = ATA_FLAG_SLAVE_POSS,
Alan8550c162006-11-22 17:28:41 +0000295 .pio_mask = 0x1f,
296 .mwdma_mask = 0x07,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400297 .udma_mask = ATA_UDMA5,
Alan8550c162006-11-22 17:28:41 +0000298 .port_ops = &sil680_port_ops
299 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200300 const struct ata_port_info *ppi[] = { &info, NULL };
Alan8550c162006-11-22 17:28:41 +0000301 static int printed_version;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400302 struct ata_host *host;
303 void __iomem *mmio_base;
304 int rc, try_mmio;
Alan8550c162006-11-22 17:28:41 +0000305
306 if (!printed_version++)
307 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
308
Tejun Heof08048e2008-03-25 12:22:47 +0900309 rc = pcim_enable_device(pdev);
310 if (rc)
311 return rc;
312
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400313 switch (sil680_init_chip(pdev, &try_mmio)) {
Alan8550c162006-11-22 17:28:41 +0000314 case 0:
Tejun Heo1626aeb2007-05-04 12:43:58 +0200315 ppi[0] = &info_slow;
Alan8550c162006-11-22 17:28:41 +0000316 break;
317 case 0x30:
318 return -ENODEV;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400319 }
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400320
321 if (!try_mmio)
322 goto use_ioports;
323
324 /* Try to acquire MMIO resources and fallback to PIO if
325 * that fails
326 */
327 rc = pcim_enable_device(pdev);
328 if (rc)
329 return rc;
330 rc = pcim_iomap_regions(pdev, 1 << SIL680_MMIO_BAR, DRV_NAME);
331 if (rc)
332 goto use_ioports;
333
334 /* Allocate host and set it up */
335 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
336 if (!host)
337 return -ENOMEM;
338 host->iomap = pcim_iomap_table(pdev);
339
340 /* Setup DMA masks */
341 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
342 if (rc)
343 return rc;
344 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
345 if (rc)
346 return rc;
347 pci_set_master(pdev);
348
349 /* Get MMIO base and initialize port addresses */
350 mmio_base = host->iomap[SIL680_MMIO_BAR];
351 host->ports[0]->ioaddr.bmdma_addr = mmio_base + 0x00;
352 host->ports[0]->ioaddr.cmd_addr = mmio_base + 0x80;
353 host->ports[0]->ioaddr.ctl_addr = mmio_base + 0x8a;
354 host->ports[0]->ioaddr.altstatus_addr = mmio_base + 0x8a;
355 ata_std_ports(&host->ports[0]->ioaddr);
356 host->ports[1]->ioaddr.bmdma_addr = mmio_base + 0x08;
357 host->ports[1]->ioaddr.cmd_addr = mmio_base + 0xc0;
358 host->ports[1]->ioaddr.ctl_addr = mmio_base + 0xca;
359 host->ports[1]->ioaddr.altstatus_addr = mmio_base + 0xca;
360 ata_std_ports(&host->ports[1]->ioaddr);
361
362 /* Register & activate */
363 return ata_host_activate(host, pdev->irq, ata_interrupt, IRQF_SHARED,
364 &sil680_sht);
365
366use_ioports:
Tejun Heo1626aeb2007-05-04 12:43:58 +0200367 return ata_pci_init_one(pdev, ppi);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400368}
369
Tejun Heo438ac6d2007-03-02 17:31:26 +0900370#ifdef CONFIG_PM
Alan8550c162006-11-22 17:28:41 +0000371static int sil680_reinit_one(struct pci_dev *pdev)
372{
Tejun Heof08048e2008-03-25 12:22:47 +0900373 struct ata_host *host = dev_get_drvdata(&pdev->dev);
374 int try_mmio, rc;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400375
Tejun Heof08048e2008-03-25 12:22:47 +0900376 rc = ata_pci_device_do_resume(pdev);
377 if (rc)
378 return rc;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400379 sil680_init_chip(pdev, &try_mmio);
Tejun Heof08048e2008-03-25 12:22:47 +0900380 ata_host_resume(host);
381 return 0;
Alan8550c162006-11-22 17:28:41 +0000382}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900383#endif
Alan8550c162006-11-22 17:28:41 +0000384
Jeff Garzik669a5db2006-08-29 18:12:40 -0400385static const struct pci_device_id sil680[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400386 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), },
387
388 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400389};
390
391static struct pci_driver sil680_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400392 .name = DRV_NAME,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400393 .id_table = sil680,
394 .probe = sil680_init_one,
Alan8550c162006-11-22 17:28:41 +0000395 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900396#ifdef CONFIG_PM
Alan8550c162006-11-22 17:28:41 +0000397 .suspend = ata_pci_device_suspend,
398 .resume = sil680_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900399#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400400};
401
402static int __init sil680_init(void)
403{
404 return pci_register_driver(&sil680_pci_driver);
405}
406
Jeff Garzik669a5db2006-08-29 18:12:40 -0400407static void __exit sil680_exit(void)
408{
409 pci_unregister_driver(&sil680_pci_driver);
410}
411
Jeff Garzik669a5db2006-08-29 18:12:40 -0400412MODULE_AUTHOR("Alan Cox");
413MODULE_DESCRIPTION("low-level driver for SI680 PATA");
414MODULE_LICENSE("GPL");
415MODULE_DEVICE_TABLE(pci, sil680);
416MODULE_VERSION(DRV_VERSION);
417
418module_init(sil680_init);
419module_exit(sil680_exit);