blob: fec4955f449b0fa9bcc08ad57a203e81684ad73b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1997-1998 Mark Lord <mlord@pobox.com>
3 * Copyright (C) 1998 Eddie C. Dost <ecd@skynet.be>
4 * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
5 * Copyright (C) 2004 Grant Grundler <grundler at parisc-linux.org>
6 *
7 * Inspired by an earlier effort from David S. Miller <davem@redhat.com>
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/types.h>
12#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/hdreg.h>
15#include <linux/pci.h>
16#include <linux/delay.h>
17#include <linux/ide.h>
18#include <linux/init.h>
19
20#include <asm/io.h>
21
22#ifdef CONFIG_SUPERIO
23/* SUPERIO 87560 is a PoS chip that NatSem denies exists.
24 * Unfortunately, it's built-in on all Astro-based PA-RISC workstations
25 * which use the integrated NS87514 cell for CD-ROM support.
26 * i.e we have to support for CD-ROM installs.
27 * See drivers/parisc/superio.c for more gory details.
28 */
29#include <asm/superio.h>
30
31static unsigned long superio_ide_status[2];
32static unsigned long superio_ide_select[2];
33static unsigned long superio_ide_dma_status[2];
34
35#define SUPERIO_IDE_MAX_RETRIES 25
36
37/* Because of a defect in Super I/O, all reads of the PCI DMA status
38 * registers, IDE status register and the IDE select register need to be
39 * retried
40 */
41static u8 superio_ide_inb (unsigned long port)
42{
43 if (port == superio_ide_status[0] ||
44 port == superio_ide_status[1] ||
45 port == superio_ide_select[0] ||
46 port == superio_ide_select[1] ||
47 port == superio_ide_dma_status[0] ||
48 port == superio_ide_dma_status[1]) {
49 u8 tmp;
50 int retries = SUPERIO_IDE_MAX_RETRIES;
51
52 /* printk(" [ reading port 0x%x with retry ] ", port); */
53
54 do {
55 tmp = inb(port);
56 if (tmp == 0)
57 udelay(50);
58 } while (tmp == 0 && retries-- > 0);
59
60 return tmp;
61 }
62
63 return inb(port);
64}
65
Bartlomiej Zolnierkiewiczea23b8b2008-04-28 23:44:40 +020066static void superio_tf_read(ide_drive_t *drive, ide_task_t *task)
67{
68 struct ide_io_ports *io_ports = &drive->hwif->io_ports;
69 struct ide_taskfile *tf = &task->tf;
70
71 if (task->tf_flags & IDE_TFLAG_IN_DATA) {
72 u16 data = inw(io_ports->data_addr);
73
74 tf->data = data & 0xff;
75 tf->hob_data = (data >> 8) & 0xff;
76 }
77
78 /* be sure we're looking at the low order bits */
79 outb(drive->ctl & ~0x80, io_ports->ctl_addr);
80
81 if (task->tf_flags & IDE_TFLAG_IN_NSECT)
82 tf->nsect = inb(io_ports->nsect_addr);
83 if (task->tf_flags & IDE_TFLAG_IN_LBAL)
84 tf->lbal = inb(io_ports->lbal_addr);
85 if (task->tf_flags & IDE_TFLAG_IN_LBAM)
86 tf->lbam = inb(io_ports->lbam_addr);
87 if (task->tf_flags & IDE_TFLAG_IN_LBAH)
88 tf->lbah = inb(io_ports->lbah_addr);
89 if (task->tf_flags & IDE_TFLAG_IN_DEVICE)
90 tf->device = superio_ide_inb(io_ports->device_addr);
91
92 if (task->tf_flags & IDE_TFLAG_LBA48) {
93 outb(drive->ctl | 0x80, io_ports->ctl_addr);
94
95 if (task->tf_flags & IDE_TFLAG_IN_HOB_FEATURE)
96 tf->hob_feature = inb(io_ports->feature_addr);
97 if (task->tf_flags & IDE_TFLAG_IN_HOB_NSECT)
98 tf->hob_nsect = inb(io_ports->nsect_addr);
99 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAL)
100 tf->hob_lbal = inb(io_ports->lbal_addr);
101 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAM)
102 tf->hob_lbam = inb(io_ports->lbam_addr);
103 if (task->tf_flags & IDE_TFLAG_IN_HOB_LBAH)
104 tf->hob_lbah = inb(io_ports->lbah_addr);
105 }
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static void __devinit superio_ide_init_iops (struct hwif_s *hwif)
109{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100110 struct pci_dev *pdev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 u32 base, dmabase;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100112 u8 port = hwif->channel, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 base = pci_resource_start(pdev, port * 2) & ~3;
115 dmabase = pci_resource_start(pdev, 4) & ~3;
116
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200117 superio_ide_status[port] = base + 7;
118 superio_ide_select[port] = base + 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 superio_ide_dma_status[port] = dmabase + (!port ? 2 : 0xa);
120
121 /* Clear error/interrupt, enable dma */
122 tmp = superio_ide_inb(superio_ide_dma_status[port]);
123 outb(tmp | 0x66, superio_ide_dma_status[port]);
124
Bartlomiej Zolnierkiewiczea23b8b2008-04-28 23:44:40 +0200125 hwif->tf_read = superio_tf_read;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* We need to override inb to workaround a SuperIO errata */
128 hwif->INB = superio_ide_inb;
129}
130
131static void __devinit init_iops_ns87415(ide_hwif_t *hwif)
132{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100133 struct pci_dev *dev = to_pci_dev(hwif->dev);
134
135 if (PCI_SLOT(dev->devfn) == 0xE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* Built-in - assume it's under superio. */
137 superio_ide_init_iops(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139#endif
140
141static unsigned int ns87415_count = 0, ns87415_control[MAX_HWIFS] = { 0 };
142
143/*
144 * This routine either enables/disables (according to drive->present)
145 * the IRQ associated with the port (HWIF(drive)),
146 * and selects either PIO or DMA handshaking for the next I/O operation.
147 */
148static void ns87415_prepare_drive (ide_drive_t *drive, unsigned int use_dma)
149{
150 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100151 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 unsigned int bit, other, new, *old = (unsigned int *) hwif->select_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 unsigned long flags;
154
155 local_irq_save(flags);
156 new = *old;
157
158 /* Adjust IRQ enable bit */
159 bit = 1 << (8 + hwif->channel);
160 new = drive->present ? (new & ~bit) : (new | bit);
161
162 /* Select PIO or DMA, DMA may only be selected for one drive/channel. */
163 bit = 1 << (20 + drive->select.b.unit + (hwif->channel << 1));
164 other = 1 << (20 + (1 - drive->select.b.unit) + (hwif->channel << 1));
165 new = use_dma ? ((new & ~other) | bit) : (new & ~bit);
166
167 if (new != *old) {
168 unsigned char stat;
169
170 /*
171 * Don't change DMA engine settings while Write Buffers
172 * are busy.
173 */
174 (void) pci_read_config_byte(dev, 0x43, &stat);
175 while (stat & 0x03) {
176 udelay(1);
177 (void) pci_read_config_byte(dev, 0x43, &stat);
178 }
179
180 *old = new;
181 (void) pci_write_config_dword(dev, 0x40, new);
182
183 /*
184 * And let things settle...
185 */
186 udelay(10);
187 }
188
189 local_irq_restore(flags);
190}
191
192static void ns87415_selectproc (ide_drive_t *drive)
193{
194 ns87415_prepare_drive (drive, drive->using_dma);
195}
196
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200197static int ns87415_dma_end(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 ide_hwif_t *hwif = HWIF(drive);
200 u8 dma_stat = 0, dma_cmd = 0;
201
202 drive->waiting_for_dma = 0;
203 dma_stat = hwif->INB(hwif->dma_status);
204 /* get dma command mode */
205 dma_cmd = hwif->INB(hwif->dma_command);
206 /* stop DMA */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100207 outb(dma_cmd & ~1, hwif->dma_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* from ERRATA: clear the INTR & ERROR bits */
209 dma_cmd = hwif->INB(hwif->dma_command);
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100210 outb(dma_cmd | 6, hwif->dma_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* and free any DMA resources */
212 ide_destroy_dmatable(drive);
213 /* verify good DMA status */
214 return (dma_stat & 7) != 4;
215}
216
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200217static int ns87415_dma_setup(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 /* select DMA xfer */
220 ns87415_prepare_drive(drive, 1);
221 if (!ide_dma_setup(drive))
222 return 0;
223 /* DMA failed: select PIO xfer */
224 ns87415_prepare_drive(drive, 0);
225 return 1;
226}
227
Bartlomiej Zolnierkiewicz0e335552008-04-18 00:46:33 +0200228#ifndef ide_default_irq
229#define ide_default_irq(irq) 0
230#endif
231
Herbert Xuc20530e2005-07-03 16:31:04 +0200232static void __devinit init_hwif_ns87415 (ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100234 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 unsigned int ctrl, using_inta;
236 u8 progif;
237#ifdef __sparc_v9__
238 int timeout;
239 u8 stat;
240#endif
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /*
243 * We cannot probe for IRQ: both ports share common IRQ on INTA.
244 * Also, leave IRQ masked during drive probing, to prevent infinite
245 * interrupts from a potentially floating INTA..
246 *
247 * IRQs get unmasked in selectproc when drive is first used.
248 */
249 (void) pci_read_config_dword(dev, 0x40, &ctrl);
250 (void) pci_read_config_byte(dev, 0x09, &progif);
251 /* is irq in "native" mode? */
252 using_inta = progif & (1 << (hwif->channel << 1));
253 if (!using_inta)
254 using_inta = ctrl & (1 << (4 + hwif->channel));
255 if (hwif->mate) {
256 hwif->select_data = hwif->mate->select_data;
257 } else {
258 hwif->select_data = (unsigned long)
259 &ns87415_control[ns87415_count++];
260 ctrl |= (1 << 8) | (1 << 9); /* mask both IRQs */
261 if (using_inta)
262 ctrl &= ~(1 << 6); /* unmask INTA */
263 *((unsigned int *)hwif->select_data) = ctrl;
264 (void) pci_write_config_dword(dev, 0x40, ctrl);
265
266 /*
267 * Set prefetch size to 512 bytes for both ports,
268 * but don't turn on/off prefetching here.
269 */
270 pci_write_config_byte(dev, 0x55, 0xee);
271
272#ifdef __sparc_v9__
273 /*
Bartlomiej Zolnierkiewicz9d501522008-02-01 23:09:36 +0100274 * XXX: Reset the device, if we don't it will not respond to
275 * SELECT_DRIVE() properly during first ide_probe_port().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 */
277 timeout = 10000;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200278 outb(12, hwif->io_ports.ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 udelay(10);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200280 outb(8, hwif->io_ports.ctl_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 do {
282 udelay(50);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200283 stat = hwif->INB(hwif->io_ports.status_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (stat == 0xff)
285 break;
286 } while ((stat & BUSY_STAT) && --timeout);
287#endif
288 }
289
290 if (!using_inta)
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200291 hwif->irq = ide_default_irq(hwif->io_ports.data_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 else if (!hwif->irq && hwif->mate && hwif->mate->irq)
293 hwif->irq = hwif->mate->irq; /* share IRQ with mate */
294
295 if (!hwif->dma_base)
296 return;
297
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100298 outb(0x60, hwif->dma_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200301static const struct ide_port_ops ns87415_port_ops = {
302 .selectproc = ns87415_selectproc,
303};
304
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200305static const struct ide_dma_ops ns87415_dma_ops = {
306 .dma_host_set = ide_dma_host_set,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200307 .dma_setup = ns87415_dma_setup,
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200308 .dma_exec_cmd = ide_dma_exec_cmd,
309 .dma_start = ide_dma_start,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200310 .dma_end = ns87415_dma_end,
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200311 .dma_test_irq = ide_dma_test_irq,
312 .dma_lost_irq = ide_dma_lost_irq,
313 .dma_timeout = ide_dma_timeout,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200314};
315
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200316static const struct ide_port_info ns87415_chipset __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 .name = "NS87415",
318#ifdef CONFIG_SUPERIO
319 .init_iops = init_iops_ns87415,
320#endif
321 .init_hwif = init_hwif_ns87415,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200322 .port_ops = &ns87415_port_ops,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200323 .dma_ops = &ns87415_dma_ops,
Bartlomiej Zolnierkiewicz33c10022007-10-19 00:30:06 +0200324 .host_flags = IDE_HFLAG_TRUST_BIOS_FOR_DMA |
Bartlomiej Zolnierkiewicz5e71d9c2008-04-26 17:36:35 +0200325 IDE_HFLAG_NO_ATAPI_DMA,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326};
327
328static int __devinit ns87415_init_one(struct pci_dev *dev, const struct pci_device_id *id)
329{
330 return ide_setup_pci_device(dev, &ns87415_chipset);
331}
332
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200333static const struct pci_device_id ns87415_pci_tbl[] = {
334 { PCI_VDEVICE(NS, PCI_DEVICE_ID_NS_87415), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 { 0, },
336};
337MODULE_DEVICE_TABLE(pci, ns87415_pci_tbl);
338
339static struct pci_driver driver = {
340 .name = "NS87415_IDE",
341 .id_table = ns87415_pci_tbl,
342 .probe = ns87415_init_one,
343};
344
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100345static int __init ns87415_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 return ide_pci_register_driver(&driver);
348}
349
350module_init(ns87415_ide_init);
351
352MODULE_AUTHOR("Mark Lord, Eddie Dost, Andre Hedrick");
353MODULE_DESCRIPTION("PCI driver module for NS87415 IDE");
354MODULE_LICENSE("GPL");