GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / ata / pata_sil680.c
blobdf21b6b9d53202dd1c0397c8c85715601dcbb84e
1 /*
2 * pata_sil680.c - SIL680 PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
5 * based upon
7 * linux/drivers/ide/pci/siimage.c Version 1.07 Nov 30, 2003
9 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
10 * Copyright (C) 2003 Red Hat <alan@redhat.com>
12 * May be copied or modified under the terms of the GNU General Public License
14 * Documentation publically available.
16 * If you have strange problems with nVidia chipset systems please
17 * see the SI support documentation and update your system BIOS
18 * if necessary
20 * TODO
21 * If we know all our devices are LBA28 (or LBA28 sized) we could use
22 * the command fifo mode.
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>
34 #define DRV_NAME "pata_sil680"
35 #define DRV_VERSION "0.4.9"
37 #define SIL680_MMIO_BAR 5
39 /**
40 * sil680_selreg - return register base
41 * @hwif: interface
42 * @r: config offset
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.
50 static unsigned long sil680_selreg(struct ata_port *ap, int r)
52 unsigned long base = 0xA0 + r;
53 base += (ap->port_no << 4);
54 return base;
57 /**
58 * sil680_seldev - return register base
59 * @hwif: interface
60 * @r: config offset
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.
67 static unsigned long sil680_seldev(struct ata_port *ap, struct ata_device *adev, int r)
69 unsigned long base = 0xA0 + r;
70 base += (ap->port_no << 4);
71 base |= adev->devno ? 2 : 0;
72 return base;
76 /**
77 * sil680_cable_detect - cable detection
78 * @ap: ATA port
80 * Perform cable detection. The SIL680 stores this in PCI config
81 * space for us.
84 static 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;
95 /**
96 * sil680_set_piomode - set initial PIO mode data
97 * @ap: ATA interface
98 * @adev: ATA device
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.
105 static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev)
107 static u16 speed_p[5] = { 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1 };
108 static u16 speed_t[5] = { 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1 };
110 unsigned long tfaddr = sil680_selreg(ap, 0x02);
111 unsigned long addr = sil680_seldev(ap, adev, 0x04);
112 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
113 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
114 int pio = adev->pio_mode - XFER_PIO_0;
115 int lowest_pio = pio;
116 int port_shift = 4 * adev->devno;
117 u16 reg;
118 u8 mode;
120 struct ata_device *pair = ata_dev_pair(adev);
122 if (pair != NULL && adev->pio_mode > pair->pio_mode)
123 lowest_pio = pair->pio_mode - XFER_PIO_0;
125 pci_write_config_word(pdev, addr, speed_p[pio]);
126 pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]);
128 pci_read_config_word(pdev, tfaddr-2, &reg);
129 pci_read_config_byte(pdev, addr_mask, &mode);
131 reg &= ~0x0200; /* Clear IORDY */
132 mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */
134 if (ata_pio_need_iordy(adev)) {
135 reg |= 0x0200; /* Enable IORDY */
136 mode |= 1 << port_shift;
138 pci_write_config_word(pdev, tfaddr-2, reg);
139 pci_write_config_byte(pdev, addr_mask, mode);
143 * sil680_set_dmamode - set initial DMA mode data
144 * @ap: ATA interface
145 * @adev: ATA device
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.
152 static void sil680_set_dmamode(struct ata_port *ap, struct ata_device *adev)
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 */
158 static u16 dma_table[3] = { 0x2208, 0x10C2, 0x10C1 };
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;
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);
173 /* Mask timing bits */
174 ultra &= ~0x3F;
175 mode &= ~(0x03 << port_shift);
177 /* Extract scsc */
178 scsc = (scsc & 0x30) ? 1: 0;
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);
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);
194 * sil680_sff_exec_command - issue ATA command to host controller
195 * @ap: port to which command is being issued
196 * @tf: ATA taskfile register set
198 * Issues ATA command, with proper synchronization with interrupt
199 * handler / other threads. Use our MMIO space for PCI posting to avoid
200 * a hideously slow cycle all the way to the device.
202 * LOCKING:
203 * spin_lock_irqsave(host lock)
205 void sil680_sff_exec_command(struct ata_port *ap,
206 const struct ata_taskfile *tf)
208 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
209 iowrite8(tf->command, ap->ioaddr.command_addr);
210 ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
213 static struct scsi_host_template sil680_sht = {
214 ATA_BMDMA_SHT(DRV_NAME),
218 static struct ata_port_operations sil680_port_ops = {
219 .inherits = &ata_bmdma32_port_ops,
220 .sff_exec_command = sil680_sff_exec_command,
221 .cable_detect = sil680_cable_detect,
222 .set_piomode = sil680_set_piomode,
223 .set_dmamode = sil680_set_dmamode,
227 * sil680_init_chip - chip setup
228 * @pdev: PCI device
230 * Perform all the chip setup which must be done both when the device
231 * is powered up on boot and when we resume in case we resumed from RAM.
232 * Returns the final clock settings.
235 static u8 sil680_init_chip(struct pci_dev *pdev, int *try_mmio)
237 u8 tmpbyte = 0;
239 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
240 pdev->revision ? 1 : 255);
242 pci_write_config_byte(pdev, 0x80, 0x00);
243 pci_write_config_byte(pdev, 0x84, 0x00);
245 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
247 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
248 tmpbyte & 1, tmpbyte & 0x30);
250 *try_mmio = 0;
251 #ifdef CONFIG_PPC
252 if (machine_is(cell))
253 *try_mmio = (tmpbyte & 1) || pci_resource_start(pdev, 5);
254 #endif
256 switch(tmpbyte & 0x30) {
257 case 0x00:
258 /* 133 clock attempt to force it on */
259 pci_write_config_byte(pdev, 0x8A, tmpbyte|0x10);
260 break;
261 case 0x30:
262 /* if clocking is disabled */
263 /* 133 clock attempt to force it on */
264 pci_write_config_byte(pdev, 0x8A, tmpbyte & ~0x20);
265 break;
266 case 0x10:
267 /* 133 already */
268 break;
269 case 0x20:
270 /* BIOS set PCI x2 clocking */
271 break;
274 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
275 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
276 tmpbyte & 1, tmpbyte & 0x30);
278 pci_write_config_byte(pdev, 0xA1, 0x72);
279 pci_write_config_word(pdev, 0xA2, 0x328A);
280 pci_write_config_dword(pdev, 0xA4, 0x62DD62DD);
281 pci_write_config_dword(pdev, 0xA8, 0x43924392);
282 pci_write_config_dword(pdev, 0xAC, 0x40094009);
283 pci_write_config_byte(pdev, 0xB1, 0x72);
284 pci_write_config_word(pdev, 0xB2, 0x328A);
285 pci_write_config_dword(pdev, 0xB4, 0x62DD62DD);
286 pci_write_config_dword(pdev, 0xB8, 0x43924392);
287 pci_write_config_dword(pdev, 0xBC, 0x40094009);
289 switch(tmpbyte & 0x30) {
290 case 0x00: printk(KERN_INFO "sil680: 100MHz clock.\n");break;
291 case 0x10: printk(KERN_INFO "sil680: 133MHz clock.\n");break;
292 case 0x20: printk(KERN_INFO "sil680: Using PCI clock.\n");break;
293 /* This last case is _NOT_ ok */
294 case 0x30: printk(KERN_ERR "sil680: Clock disabled ?\n");
296 return tmpbyte & 0x30;
299 static int __devinit sil680_init_one(struct pci_dev *pdev,
300 const struct pci_device_id *id)
302 static const struct ata_port_info info = {
303 .flags = ATA_FLAG_SLAVE_POSS,
304 .pio_mask = ATA_PIO4,
305 .mwdma_mask = ATA_MWDMA2,
306 .udma_mask = ATA_UDMA6,
307 .port_ops = &sil680_port_ops
309 static const struct ata_port_info info_slow = {
310 .flags = ATA_FLAG_SLAVE_POSS,
311 .pio_mask = ATA_PIO4,
312 .mwdma_mask = ATA_MWDMA2,
313 .udma_mask = ATA_UDMA5,
314 .port_ops = &sil680_port_ops
316 const struct ata_port_info *ppi[] = { &info, NULL };
317 static int printed_version;
318 struct ata_host *host;
319 void __iomem *mmio_base;
320 int rc, try_mmio;
322 if (!printed_version++)
323 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
325 rc = pcim_enable_device(pdev);
326 if (rc)
327 return rc;
329 switch (sil680_init_chip(pdev, &try_mmio)) {
330 case 0:
331 ppi[0] = &info_slow;
332 break;
333 case 0x30:
334 return -ENODEV;
337 if (!try_mmio)
338 goto use_ioports;
340 /* Try to acquire MMIO resources and fallback to PIO if
341 * that fails
343 rc = pcim_iomap_regions(pdev, 1 << SIL680_MMIO_BAR, DRV_NAME);
344 if (rc)
345 goto use_ioports;
347 /* Allocate host and set it up */
348 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
349 if (!host)
350 return -ENOMEM;
351 host->iomap = pcim_iomap_table(pdev);
353 /* Setup DMA masks */
354 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
355 if (rc)
356 return rc;
357 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
358 if (rc)
359 return rc;
360 pci_set_master(pdev);
362 /* Get MMIO base and initialize port addresses */
363 mmio_base = host->iomap[SIL680_MMIO_BAR];
364 host->ports[0]->ioaddr.bmdma_addr = mmio_base + 0x00;
365 host->ports[0]->ioaddr.cmd_addr = mmio_base + 0x80;
366 host->ports[0]->ioaddr.ctl_addr = mmio_base + 0x8a;
367 host->ports[0]->ioaddr.altstatus_addr = mmio_base + 0x8a;
368 ata_sff_std_ports(&host->ports[0]->ioaddr);
369 host->ports[1]->ioaddr.bmdma_addr = mmio_base + 0x08;
370 host->ports[1]->ioaddr.cmd_addr = mmio_base + 0xc0;
371 host->ports[1]->ioaddr.ctl_addr = mmio_base + 0xca;
372 host->ports[1]->ioaddr.altstatus_addr = mmio_base + 0xca;
373 ata_sff_std_ports(&host->ports[1]->ioaddr);
375 /* Register & activate */
376 return ata_host_activate(host, pdev->irq, ata_bmdma_interrupt,
377 IRQF_SHARED, &sil680_sht);
379 use_ioports:
380 return ata_pci_bmdma_init_one(pdev, ppi, &sil680_sht, NULL, 0);
383 #ifdef CONFIG_PM
384 static int sil680_reinit_one(struct pci_dev *pdev)
386 struct ata_host *host = dev_get_drvdata(&pdev->dev);
387 int try_mmio, rc;
389 rc = ata_pci_device_do_resume(pdev);
390 if (rc)
391 return rc;
392 sil680_init_chip(pdev, &try_mmio);
393 ata_host_resume(host);
394 return 0;
396 #endif
398 static const struct pci_device_id sil680[] = {
399 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), },
401 { },
404 static struct pci_driver sil680_pci_driver = {
405 .name = DRV_NAME,
406 .id_table = sil680,
407 .probe = sil680_init_one,
408 .remove = ata_pci_remove_one,
409 #ifdef CONFIG_PM
410 .suspend = ata_pci_device_suspend,
411 .resume = sil680_reinit_one,
412 #endif
415 static int __init sil680_init(void)
417 return pci_register_driver(&sil680_pci_driver);
420 static void __exit sil680_exit(void)
422 pci_unregister_driver(&sil680_pci_driver);
425 MODULE_AUTHOR("Alan Cox");
426 MODULE_DESCRIPTION("low-level driver for SI680 PATA");
427 MODULE_LICENSE("GPL");
428 MODULE_DEVICE_TABLE(pci, sil680);
429 MODULE_VERSION(DRV_VERSION);
431 module_init(sil680_init);
432 module_exit(sil680_exit);