]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/ata/pata_sil680.c
pata_sil680: constify tables
[mirror_ubuntu-artful-kernel.git] / drivers / ata / pata_sil680.c
CommitLineData
669a5db4
JG
1/*
2 * pata_sil680.c - SIL680 PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
669a5db4
JG
4 *
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 *
25985edc 14 * Documentation publicly available.
669a5db4
JG
15 *
16 * If you have strange problems with nVidia chipset systems please
17 * see the SI support documentation and update your system BIOS
3a4fa0a2 18 * if necessary
669a5db4
JG
19 *
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"
871af121 35#define DRV_VERSION "0.4.9"
669a5db4 36
79b0bde1
JG
37#define SIL680_MMIO_BAR 5
38
669a5db4
JG
39/**
40 * sil680_selreg - return register base
6352187e 41 * @ap: ATA interface
669a5db4
JG
42 * @r: config offset
43 *
6352187e
BZ
44 * Turn a config register offset into the right address in PCI space
45 * to access the control register in question.
46 *
25985edc 47 * Thankfully this is a configuration operation so isn't performance
669a5db4
JG
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
6352187e 60 * @ap: ATA interface
669a5db4
JG
61 * @r: config offset
62 *
6352187e
BZ
63 * Turn a config register offset into the right address in PCI space
64 * to access the control register in question including accounting for
65 * the unit shift.
669a5db4
JG
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
669a5db4 96/**
6352187e 97 * sil680_set_piomode - set PIO mode data
669a5db4
JG
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{
9b8ad4ac
BZ
108 static const u16 speed_p[5] = {
109 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1
110 };
111 static const u16 speed_t[5] = {
112 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1
113 };
669a5db4
JG
114
115 unsigned long tfaddr = sil680_selreg(ap, 0x02);
116 unsigned long addr = sil680_seldev(ap, adev, 0x04);
cb0e34ba 117 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
669a5db4
JG
118 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
119 int pio = adev->pio_mode - XFER_PIO_0;
120 int lowest_pio = pio;
cb0e34ba 121 int port_shift = 4 * adev->devno;
669a5db4 122 u16 reg;
cb0e34ba 123 u8 mode;
669a5db4
JG
124
125 struct ata_device *pair = ata_dev_pair(adev);
126
127 if (pair != NULL && adev->pio_mode > pair->pio_mode)
128 lowest_pio = pair->pio_mode - XFER_PIO_0;
129
130 pci_write_config_word(pdev, addr, speed_p[pio]);
131 pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]);
132
133 pci_read_config_word(pdev, tfaddr-2, &reg);
cb0e34ba 134 pci_read_config_byte(pdev, addr_mask, &mode);
a84471fe 135
669a5db4 136 reg &= ~0x0200; /* Clear IORDY */
cb0e34ba 137 mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */
a84471fe 138
cb0e34ba 139 if (ata_pio_need_iordy(adev)) {
669a5db4 140 reg |= 0x0200; /* Enable IORDY */
cb0e34ba
AC
141 mode |= 1 << port_shift;
142 }
669a5db4 143 pci_write_config_word(pdev, tfaddr-2, reg);
cb0e34ba 144 pci_write_config_byte(pdev, addr_mask, mode);
669a5db4
JG
145}
146
147/**
6352187e 148 * sil680_set_dmamode - set DMA mode data
669a5db4
JG
149 * @ap: ATA interface
150 * @adev: ATA device
151 *
6352187e
BZ
152 * Program the MWDMA/UDMA modes for the sil680 chipset.
153 *
154 * The MWDMA mode values are pulled from a lookup table
669a5db4
JG
155 * while the chipset uses mode number for UDMA.
156 */
157
158static void sil680_set_dmamode(struct ata_port *ap, struct ata_device *adev)
159{
9b8ad4ac 160 static const u8 ultra_table[2][7] = {
669a5db4
JG
161 { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01, 0xFF }, /* 100MHz */
162 { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 }, /* 133Mhz */
163 };
9b8ad4ac 164 static const u16 dma_table[3] = { 0x2208, 0x10C2, 0x10C1 };
669a5db4
JG
165
166 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
167 unsigned long ma = sil680_seldev(ap, adev, 0x08);
168 unsigned long ua = sil680_seldev(ap, adev, 0x0C);
169 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
170 int port_shift = adev->devno * 4;
171 u8 scsc, mode;
172 u16 multi, ultra;
173
174 pci_read_config_byte(pdev, 0x8A, &scsc);
175 pci_read_config_byte(pdev, addr_mask, &mode);
176 pci_read_config_word(pdev, ma, &multi);
177 pci_read_config_word(pdev, ua, &ultra);
178
179 /* Mask timing bits */
180 ultra &= ~0x3F;
181 mode &= ~(0x03 << port_shift);
182
183 /* Extract scsc */
184 scsc = (scsc & 0x30) ? 1: 0;
185
186 if (adev->dma_mode >= XFER_UDMA_0) {
187 multi = 0x10C1;
188 ultra |= ultra_table[scsc][adev->dma_mode - XFER_UDMA_0];
189 mode |= (0x03 << port_shift);
190 } else {
191 multi = dma_table[adev->dma_mode - XFER_MW_DMA_0];
192 mode |= (0x02 << port_shift);
193 }
194 pci_write_config_byte(pdev, addr_mask, mode);
195 pci_write_config_word(pdev, ma, multi);
196 pci_write_config_word(pdev, ua, ultra);
197}
198
c4acf99b
AC
199/**
200 * sil680_sff_exec_command - issue ATA command to host controller
201 * @ap: port to which command is being issued
202 * @tf: ATA taskfile register set
203 *
204 * Issues ATA command, with proper synchronization with interrupt
205 * handler / other threads. Use our MMIO space for PCI posting to avoid
206 * a hideously slow cycle all the way to the device.
207 *
208 * LOCKING:
209 * spin_lock_irqsave(host lock)
210 */
ada5b12e
SS
211static void sil680_sff_exec_command(struct ata_port *ap,
212 const struct ata_taskfile *tf)
c4acf99b
AC
213{
214 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
215 iowrite8(tf->command, ap->ioaddr.command_addr);
216 ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
217}
218
9b980e10
SS
219static bool sil680_sff_irq_check(struct ata_port *ap)
220{
221 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
222 unsigned long addr = sil680_selreg(ap, 1);
223 u8 val;
224
225 pci_read_config_byte(pdev, addr, &val);
226
227 return val & 0x08;
228}
229
669a5db4 230static struct scsi_host_template sil680_sht = {
68d1d07b 231 ATA_BMDMA_SHT(DRV_NAME),
669a5db4
JG
232};
233
c4acf99b 234
669a5db4 235static struct ata_port_operations sil680_port_ops = {
c4acf99b
AC
236 .inherits = &ata_bmdma32_port_ops,
237 .sff_exec_command = sil680_sff_exec_command,
9b980e10 238 .sff_irq_check = sil680_sff_irq_check,
c4acf99b
AC
239 .cable_detect = sil680_cable_detect,
240 .set_piomode = sil680_set_piomode,
241 .set_dmamode = sil680_set_dmamode,
669a5db4
JG
242};
243
8550c163
AC
244/**
245 * sil680_init_chip - chip setup
246 * @pdev: PCI device
247 *
248 * Perform all the chip setup which must be done both when the device
249 * is powered up on boot and when we resume in case we resumed from RAM.
250 * Returns the final clock settings.
251 */
f20b16ff 252
2b9e68f7 253static u8 sil680_init_chip(struct pci_dev *pdev, int *try_mmio)
669a5db4 254{
669a5db4
JG
255 u8 tmpbyte = 0;
256
669a5db4 257 /* FIXME: double check */
89d3b360
SS
258 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
259 pdev->revision ? 1 : 255);
669a5db4
JG
260
261 pci_write_config_byte(pdev, 0x80, 0x00);
262 pci_write_config_byte(pdev, 0x84, 0x00);
263
264 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
265
79b0bde1
JG
266 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
267 tmpbyte & 1, tmpbyte & 0x30);
669a5db4 268
0f436eff 269 *try_mmio = 0;
47d692a9 270#ifdef CONFIG_PPC
0f436eff
BH
271 if (machine_is(cell))
272 *try_mmio = (tmpbyte & 1) || pci_resource_start(pdev, 5);
273#endif
2b9e68f7 274
669a5db4
JG
275 switch(tmpbyte & 0x30) {
276 case 0x00:
277 /* 133 clock attempt to force it on */
278 pci_write_config_byte(pdev, 0x8A, tmpbyte|0x10);
279 break;
280 case 0x30:
281 /* if clocking is disabled */
282 /* 133 clock attempt to force it on */
283 pci_write_config_byte(pdev, 0x8A, tmpbyte & ~0x20);
284 break;
285 case 0x10:
286 /* 133 already */
287 break;
288 case 0x20:
289 /* BIOS set PCI x2 clocking */
290 break;
291 }
292
293 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
79b0bde1
JG
294 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
295 tmpbyte & 1, tmpbyte & 0x30);
669a5db4
JG
296
297 pci_write_config_byte(pdev, 0xA1, 0x72);
298 pci_write_config_word(pdev, 0xA2, 0x328A);
299 pci_write_config_dword(pdev, 0xA4, 0x62DD62DD);
300 pci_write_config_dword(pdev, 0xA8, 0x43924392);
301 pci_write_config_dword(pdev, 0xAC, 0x40094009);
302 pci_write_config_byte(pdev, 0xB1, 0x72);
303 pci_write_config_word(pdev, 0xB2, 0x328A);
304 pci_write_config_dword(pdev, 0xB4, 0x62DD62DD);
305 pci_write_config_dword(pdev, 0xB8, 0x43924392);
306 pci_write_config_dword(pdev, 0xBC, 0x40094009);
307
308 switch(tmpbyte & 0x30) {
309 case 0x00: printk(KERN_INFO "sil680: 100MHz clock.\n");break;
310 case 0x10: printk(KERN_INFO "sil680: 133MHz clock.\n");break;
311 case 0x20: printk(KERN_INFO "sil680: Using PCI clock.\n");break;
312 /* This last case is _NOT_ ok */
313 case 0x30: printk(KERN_ERR "sil680: Clock disabled ?\n");
8550c163
AC
314 }
315 return tmpbyte & 0x30;
316}
317
79b0bde1
JG
318static int __devinit sil680_init_one(struct pci_dev *pdev,
319 const struct pci_device_id *id)
8550c163 320{
1626aeb8 321 static const struct ata_port_info info = {
1d2808fd 322 .flags = ATA_FLAG_SLAVE_POSS,
14bdef98
EIB
323 .pio_mask = ATA_PIO4,
324 .mwdma_mask = ATA_MWDMA2,
bf6263a8 325 .udma_mask = ATA_UDMA6,
8550c163
AC
326 .port_ops = &sil680_port_ops
327 };
1626aeb8 328 static const struct ata_port_info info_slow = {
1d2808fd 329 .flags = ATA_FLAG_SLAVE_POSS,
14bdef98
EIB
330 .pio_mask = ATA_PIO4,
331 .mwdma_mask = ATA_MWDMA2,
bf6263a8 332 .udma_mask = ATA_UDMA5,
8550c163
AC
333 .port_ops = &sil680_port_ops
334 };
1626aeb8 335 const struct ata_port_info *ppi[] = { &info, NULL };
2b9e68f7
BH
336 struct ata_host *host;
337 void __iomem *mmio_base;
338 int rc, try_mmio;
8550c163 339
06296a1e 340 ata_print_version_once(&pdev->dev, DRV_VERSION);
8550c163 341
f08048e9
TH
342 rc = pcim_enable_device(pdev);
343 if (rc)
344 return rc;
345
2b9e68f7 346 switch (sil680_init_chip(pdev, &try_mmio)) {
8550c163 347 case 0:
1626aeb8 348 ppi[0] = &info_slow;
8550c163
AC
349 break;
350 case 0x30:
351 return -ENODEV;
669a5db4 352 }
2b9e68f7
BH
353
354 if (!try_mmio)
355 goto use_ioports;
356
357 /* Try to acquire MMIO resources and fallback to PIO if
358 * that fails
359 */
2b9e68f7
BH
360 rc = pcim_iomap_regions(pdev, 1 << SIL680_MMIO_BAR, DRV_NAME);
361 if (rc)
362 goto use_ioports;
363
364 /* Allocate host and set it up */
365 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
366 if (!host)
367 return -ENOMEM;
368 host->iomap = pcim_iomap_table(pdev);
369
370 /* Setup DMA masks */
371 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
372 if (rc)
373 return rc;
374 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
375 if (rc)
376 return rc;
377 pci_set_master(pdev);
378
379 /* Get MMIO base and initialize port addresses */
380 mmio_base = host->iomap[SIL680_MMIO_BAR];
381 host->ports[0]->ioaddr.bmdma_addr = mmio_base + 0x00;
382 host->ports[0]->ioaddr.cmd_addr = mmio_base + 0x80;
383 host->ports[0]->ioaddr.ctl_addr = mmio_base + 0x8a;
384 host->ports[0]->ioaddr.altstatus_addr = mmio_base + 0x8a;
9363c382 385 ata_sff_std_ports(&host->ports[0]->ioaddr);
2b9e68f7
BH
386 host->ports[1]->ioaddr.bmdma_addr = mmio_base + 0x08;
387 host->ports[1]->ioaddr.cmd_addr = mmio_base + 0xc0;
388 host->ports[1]->ioaddr.ctl_addr = mmio_base + 0xca;
389 host->ports[1]->ioaddr.altstatus_addr = mmio_base + 0xca;
9363c382 390 ata_sff_std_ports(&host->ports[1]->ioaddr);
2b9e68f7
BH
391
392 /* Register & activate */
c3b28894 393 return ata_host_activate(host, pdev->irq, ata_bmdma_interrupt,
9363c382 394 IRQF_SHARED, &sil680_sht);
2b9e68f7
BH
395
396use_ioports:
1c5afdf7 397 return ata_pci_bmdma_init_one(pdev, ppi, &sil680_sht, NULL, 0);
669a5db4
JG
398}
399
438ac6d5 400#ifdef CONFIG_PM
8550c163
AC
401static int sil680_reinit_one(struct pci_dev *pdev)
402{
f08048e9
TH
403 struct ata_host *host = dev_get_drvdata(&pdev->dev);
404 int try_mmio, rc;
2b9e68f7 405
f08048e9
TH
406 rc = ata_pci_device_do_resume(pdev);
407 if (rc)
408 return rc;
2b9e68f7 409 sil680_init_chip(pdev, &try_mmio);
f08048e9
TH
410 ata_host_resume(host);
411 return 0;
8550c163 412}
438ac6d5 413#endif
8550c163 414
669a5db4 415static const struct pci_device_id sil680[] = {
2d2744fc
JG
416 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), },
417
418 { },
669a5db4
JG
419};
420
421static struct pci_driver sil680_pci_driver = {
2d2744fc 422 .name = DRV_NAME,
669a5db4
JG
423 .id_table = sil680,
424 .probe = sil680_init_one,
8550c163 425 .remove = ata_pci_remove_one,
438ac6d5 426#ifdef CONFIG_PM
8550c163
AC
427 .suspend = ata_pci_device_suspend,
428 .resume = sil680_reinit_one,
438ac6d5 429#endif
669a5db4
JG
430};
431
432static int __init sil680_init(void)
433{
434 return pci_register_driver(&sil680_pci_driver);
435}
436
669a5db4
JG
437static void __exit sil680_exit(void)
438{
439 pci_unregister_driver(&sil680_pci_driver);
440}
441
669a5db4
JG
442MODULE_AUTHOR("Alan Cox");
443MODULE_DESCRIPTION("low-level driver for SI680 PATA");
444MODULE_LICENSE("GPL");
445MODULE_DEVICE_TABLE(pci, sil680);
446MODULE_VERSION(DRV_VERSION);
447
448module_init(sil680_init);
449module_exit(sil680_exit);