2 * pata_sil680.c - SIL680 PATA for new ATA layer
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 publicly available.
16 * If you have strange problems with nVidia chipset systems please
17 * see the SI support documentation and update your system BIOS
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/blkdev.h>
29 #include <linux/delay.h>
30 #include <scsi/scsi_host.h>
31 #include <linux/libata.h>
33 #define DRV_NAME "pata_sil680"
34 #define DRV_VERSION "0.4.9"
36 #define SIL680_MMIO_BAR 5
39 * sil680_selreg - return register base
43 * Turn a config register offset into the right address in PCI space
44 * to access the control register in question.
46 * Thankfully this is a configuration operation so isn't performance
50 static unsigned long sil680_selreg(struct ata_port *ap, int r)
52 unsigned long base = 0xA0 + r;
53 base += (ap->port_no << 4);
58 * sil680_seldev - return register base
63 * Turn a config register offset into the right address in PCI space
64 * to access the control register in question including accounting for
68 static unsigned long sil680_seldev(struct ata_port *ap, struct ata_device *adev, int r)
70 unsigned long base = 0xA0 + r;
71 base += (ap->port_no << 4);
72 base |= adev->devno ? 2 : 0;
78 * sil680_cable_detect - cable detection
81 * Perform cable detection. The SIL680 stores this in PCI config
85 static int sil680_cable_detect(struct ata_port *ap)
87 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
88 unsigned long addr = sil680_selreg(ap, 0);
90 pci_read_config_byte(pdev, addr, &ata66);
92 return ATA_CBL_PATA80;
94 return ATA_CBL_PATA40;
98 * sil680_set_piomode - set PIO mode data
102 * Program the SIL680 registers for PIO mode. Note that the task speed
103 * registers are shared between the devices so we must pick the lowest
104 * mode for command work.
107 static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev)
109 static const u16 speed_p[5] = {
110 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1
112 static const u16 speed_t[5] = {
113 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1
116 unsigned long tfaddr = sil680_selreg(ap, 0x02);
117 unsigned long addr = sil680_seldev(ap, adev, 0x04);
118 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
119 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
120 int pio = adev->pio_mode - XFER_PIO_0;
121 int lowest_pio = pio;
122 int port_shift = 4 * adev->devno;
126 struct ata_device *pair = ata_dev_pair(adev);
128 if (pair != NULL && adev->pio_mode > pair->pio_mode)
129 lowest_pio = pair->pio_mode - XFER_PIO_0;
131 pci_write_config_word(pdev, addr, speed_p[pio]);
132 pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]);
134 pci_read_config_word(pdev, tfaddr-2, ®);
135 pci_read_config_byte(pdev, addr_mask, &mode);
137 reg &= ~0x0200; /* Clear IORDY */
138 mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */
140 if (ata_pio_need_iordy(adev)) {
141 reg |= 0x0200; /* Enable IORDY */
142 mode |= 1 << port_shift;
144 pci_write_config_word(pdev, tfaddr-2, reg);
145 pci_write_config_byte(pdev, addr_mask, mode);
149 * sil680_set_dmamode - set DMA mode data
153 * Program the MWDMA/UDMA modes for the sil680 chipset.
155 * The MWDMA mode values are pulled from a lookup table
156 * while the chipset uses mode number for UDMA.
159 static void sil680_set_dmamode(struct ata_port *ap, struct ata_device *adev)
161 static const u8 ultra_table[2][7] = {
162 { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01, 0xFF }, /* 100MHz */
163 { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 }, /* 133Mhz */
165 static const u16 dma_table[3] = { 0x2208, 0x10C2, 0x10C1 };
167 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
168 unsigned long ma = sil680_seldev(ap, adev, 0x08);
169 unsigned long ua = sil680_seldev(ap, adev, 0x0C);
170 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
171 int port_shift = adev->devno * 4;
175 pci_read_config_byte(pdev, 0x8A, &scsc);
176 pci_read_config_byte(pdev, addr_mask, &mode);
177 pci_read_config_word(pdev, ma, &multi);
178 pci_read_config_word(pdev, ua, &ultra);
180 /* Mask timing bits */
182 mode &= ~(0x03 << port_shift);
185 scsc = (scsc & 0x30) ? 1 : 0;
187 if (adev->dma_mode >= XFER_UDMA_0) {
189 ultra |= ultra_table[scsc][adev->dma_mode - XFER_UDMA_0];
190 mode |= (0x03 << port_shift);
192 multi = dma_table[adev->dma_mode - XFER_MW_DMA_0];
193 mode |= (0x02 << port_shift);
195 pci_write_config_byte(pdev, addr_mask, mode);
196 pci_write_config_word(pdev, ma, multi);
197 pci_write_config_word(pdev, ua, ultra);
201 * sil680_sff_exec_command - issue ATA command to host controller
202 * @ap: port to which command is being issued
203 * @tf: ATA taskfile register set
205 * Issues ATA command, with proper synchronization with interrupt
206 * handler / other threads. Use our MMIO space for PCI posting to avoid
207 * a hideously slow cycle all the way to the device.
210 * spin_lock_irqsave(host lock)
212 static void sil680_sff_exec_command(struct ata_port *ap,
213 const struct ata_taskfile *tf)
215 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
216 iowrite8(tf->command, ap->ioaddr.command_addr);
217 ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
220 static bool sil680_sff_irq_check(struct ata_port *ap)
222 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
223 unsigned long addr = sil680_selreg(ap, 1);
226 pci_read_config_byte(pdev, addr, &val);
231 static struct scsi_host_template sil680_sht = {
232 ATA_BMDMA_SHT(DRV_NAME),
236 static struct ata_port_operations sil680_port_ops = {
237 .inherits = &ata_bmdma32_port_ops,
238 .sff_exec_command = sil680_sff_exec_command,
239 .sff_irq_check = sil680_sff_irq_check,
240 .cable_detect = sil680_cable_detect,
241 .set_piomode = sil680_set_piomode,
242 .set_dmamode = sil680_set_dmamode,
246 * sil680_init_chip - chip setup
248 * @try_mmio: Indicates to caller whether MMIO should be attempted
250 * Perform all the chip setup which must be done both when the device
251 * is powered up on boot and when we resume in case we resumed from RAM.
252 * Returns the final clock settings.
255 static u8 sil680_init_chip(struct pci_dev *pdev, int *try_mmio)
259 /* FIXME: double check */
260 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
261 pdev->revision ? 1 : 255);
263 pci_write_config_byte(pdev, 0x80, 0x00);
264 pci_write_config_byte(pdev, 0x84, 0x00);
266 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
268 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
269 tmpbyte & 1, tmpbyte & 0x30);
273 if (machine_is(cell))
274 *try_mmio = (tmpbyte & 1) || pci_resource_start(pdev, 5);
277 switch (tmpbyte & 0x30) {
279 /* 133 clock attempt to force it on */
280 pci_write_config_byte(pdev, 0x8A, tmpbyte|0x10);
283 /* if clocking is disabled */
284 /* 133 clock attempt to force it on */
285 pci_write_config_byte(pdev, 0x8A, tmpbyte & ~0x20);
291 /* BIOS set PCI x2 clocking */
295 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
296 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
297 tmpbyte & 1, tmpbyte & 0x30);
299 pci_write_config_byte(pdev, 0xA1, 0x72);
300 pci_write_config_word(pdev, 0xA2, 0x328A);
301 pci_write_config_dword(pdev, 0xA4, 0x62DD62DD);
302 pci_write_config_dword(pdev, 0xA8, 0x43924392);
303 pci_write_config_dword(pdev, 0xAC, 0x40094009);
304 pci_write_config_byte(pdev, 0xB1, 0x72);
305 pci_write_config_word(pdev, 0xB2, 0x328A);
306 pci_write_config_dword(pdev, 0xB4, 0x62DD62DD);
307 pci_write_config_dword(pdev, 0xB8, 0x43924392);
308 pci_write_config_dword(pdev, 0xBC, 0x40094009);
310 switch (tmpbyte & 0x30) {
312 printk(KERN_INFO "sil680: 100MHz clock.\n");
315 printk(KERN_INFO "sil680: 133MHz clock.\n");
318 printk(KERN_INFO "sil680: Using PCI clock.\n");
320 /* This last case is _NOT_ ok */
322 printk(KERN_ERR "sil680: Clock disabled ?\n");
324 return tmpbyte & 0x30;
327 static int sil680_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
329 static const struct ata_port_info info = {
330 .flags = ATA_FLAG_SLAVE_POSS,
331 .pio_mask = ATA_PIO4,
332 .mwdma_mask = ATA_MWDMA2,
333 .udma_mask = ATA_UDMA6,
334 .port_ops = &sil680_port_ops
336 static const struct ata_port_info info_slow = {
337 .flags = ATA_FLAG_SLAVE_POSS,
338 .pio_mask = ATA_PIO4,
339 .mwdma_mask = ATA_MWDMA2,
340 .udma_mask = ATA_UDMA5,
341 .port_ops = &sil680_port_ops
343 const struct ata_port_info *ppi[] = { &info, NULL };
344 struct ata_host *host;
345 void __iomem *mmio_base;
348 ata_print_version_once(&pdev->dev, DRV_VERSION);
350 rc = pcim_enable_device(pdev);
354 switch (sil680_init_chip(pdev, &try_mmio)) {
365 /* Try to acquire MMIO resources and fallback to PIO if
368 rc = pcim_iomap_regions(pdev, 1 << SIL680_MMIO_BAR, DRV_NAME);
372 /* Allocate host and set it up */
373 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
376 host->iomap = pcim_iomap_table(pdev);
378 /* Setup DMA masks */
379 rc = dma_set_mask_and_coherent(&pdev->dev, ATA_DMA_MASK);
382 pci_set_master(pdev);
384 /* Get MMIO base and initialize port addresses */
385 mmio_base = host->iomap[SIL680_MMIO_BAR];
386 host->ports[0]->ioaddr.bmdma_addr = mmio_base + 0x00;
387 host->ports[0]->ioaddr.cmd_addr = mmio_base + 0x80;
388 host->ports[0]->ioaddr.ctl_addr = mmio_base + 0x8a;
389 host->ports[0]->ioaddr.altstatus_addr = mmio_base + 0x8a;
390 ata_sff_std_ports(&host->ports[0]->ioaddr);
391 host->ports[1]->ioaddr.bmdma_addr = mmio_base + 0x08;
392 host->ports[1]->ioaddr.cmd_addr = mmio_base + 0xc0;
393 host->ports[1]->ioaddr.ctl_addr = mmio_base + 0xca;
394 host->ports[1]->ioaddr.altstatus_addr = mmio_base + 0xca;
395 ata_sff_std_ports(&host->ports[1]->ioaddr);
397 /* Register & activate */
398 return ata_host_activate(host, pdev->irq, ata_bmdma_interrupt,
399 IRQF_SHARED, &sil680_sht);
402 return ata_pci_bmdma_init_one(pdev, ppi, &sil680_sht, NULL, 0);
405 #ifdef CONFIG_PM_SLEEP
406 static int sil680_reinit_one(struct pci_dev *pdev)
408 struct ata_host *host = pci_get_drvdata(pdev);
411 rc = ata_pci_device_do_resume(pdev);
414 sil680_init_chip(pdev, &try_mmio);
415 ata_host_resume(host);
420 static const struct pci_device_id sil680[] = {
421 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), },
426 static struct pci_driver sil680_pci_driver = {
429 .probe = sil680_init_one,
430 .remove = ata_pci_remove_one,
431 #ifdef CONFIG_PM_SLEEP
432 .suspend = ata_pci_device_suspend,
433 .resume = sil680_reinit_one,
437 module_pci_driver(sil680_pci_driver);
439 MODULE_AUTHOR("Alan Cox");
440 MODULE_DESCRIPTION("low-level driver for SI680 PATA");
441 MODULE_LICENSE("GPL");
442 MODULE_DEVICE_TABLE(pci, sil680);
443 MODULE_VERSION(DRV_VERSION);