sched: clean up some control group code
[linux-2.6/openmoko-kernel/knife-kernel.git] / drivers / ide / pci / sl82c105.c
blob147d783f7529e681fb1d69645942d00780bd42e0
1 /*
2 * linux/drivers/ide/pci/sl82c105.c
4 * SL82C105/Winbond 553 IDE driver
6 * Maintainer unknown.
8 * Drive tuning added from Rebel.com's kernel sources
9 * -- Russell King (15/11/98) linux@arm.linux.org.uk
11 * Merge in Russell's HW workarounds, fix various problems
12 * with the timing registers setup.
13 * -- Benjamin Herrenschmidt (01/11/03) benh@kernel.crashing.org
15 * Copyright (C) 2006-2007 MontaVista Software, Inc. <source@mvista.com>
18 #include <linux/types.h>
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/timer.h>
22 #include <linux/mm.h>
23 #include <linux/ioport.h>
24 #include <linux/interrupt.h>
25 #include <linux/blkdev.h>
26 #include <linux/hdreg.h>
27 #include <linux/pci.h>
28 #include <linux/ide.h>
30 #include <asm/io.h>
31 #include <asm/dma.h>
33 #undef DEBUG
35 #ifdef DEBUG
36 #define DBG(arg) printk arg
37 #else
38 #define DBG(fmt,...)
39 #endif
41 * SL82C105 PCI config register 0x40 bits.
43 #define CTRL_IDE_IRQB (1 << 30)
44 #define CTRL_IDE_IRQA (1 << 28)
45 #define CTRL_LEGIRQ (1 << 11)
46 #define CTRL_P1F16 (1 << 5)
47 #define CTRL_P1EN (1 << 4)
48 #define CTRL_P0F16 (1 << 1)
49 #define CTRL_P0EN (1 << 0)
52 * Convert a PIO mode and cycle time to the required on/off times
53 * for the interface. This has protection against runaway timings.
55 static unsigned int get_pio_timings(ide_drive_t *drive, u8 pio)
57 unsigned int cmd_on, cmd_off;
58 u8 iordy = 0;
60 cmd_on = (ide_pio_timings[pio].active_time + 29) / 30;
61 cmd_off = (ide_pio_cycle_time(drive, pio) - 30 * cmd_on + 29) / 30;
63 if (cmd_on == 0)
64 cmd_on = 1;
66 if (cmd_off == 0)
67 cmd_off = 1;
69 if (pio > 2 || ide_dev_has_iordy(drive->id))
70 iordy = 0x40;
72 return (cmd_on - 1) << 8 | (cmd_off - 1) | iordy;
76 * Configure the chipset for PIO mode.
78 static void sl82c105_set_pio_mode(ide_drive_t *drive, const u8 pio)
80 struct pci_dev *dev = HWIF(drive)->pci_dev;
81 int reg = 0x44 + drive->dn * 4;
82 u16 drv_ctrl;
84 drv_ctrl = get_pio_timings(drive, pio);
87 * Store the PIO timings so that we can restore them
88 * in case DMA will be turned off...
90 drive->drive_data &= 0xffff0000;
91 drive->drive_data |= drv_ctrl;
93 if (!drive->using_dma) {
95 * If we are actually using MW DMA, then we can not
96 * reprogram the interface drive control register.
98 pci_write_config_word(dev, reg, drv_ctrl);
99 pci_read_config_word (dev, reg, &drv_ctrl);
102 printk(KERN_DEBUG "%s: selected %s (%dns) (%04X)\n", drive->name,
103 ide_xfer_verbose(pio + XFER_PIO_0),
104 ide_pio_cycle_time(drive, pio), drv_ctrl);
108 * Configure the chipset for DMA mode.
110 static void sl82c105_set_dma_mode(ide_drive_t *drive, const u8 speed)
112 static u16 mwdma_timings[] = {0x0707, 0x0201, 0x0200};
113 u16 drv_ctrl;
115 DBG(("sl82c105_tune_chipset(drive:%s, speed:%s)\n",
116 drive->name, ide_xfer_verbose(speed)));
118 switch (speed) {
119 case XFER_MW_DMA_2:
120 case XFER_MW_DMA_1:
121 case XFER_MW_DMA_0:
122 drv_ctrl = mwdma_timings[speed - XFER_MW_DMA_0];
125 * Store the DMA timings so that we can actually program
126 * them when DMA will be turned on...
128 drive->drive_data &= 0x0000ffff;
129 drive->drive_data |= (unsigned long)drv_ctrl << 16;
132 * If we are already using DMA, we just reprogram
133 * the drive control register.
135 if (drive->using_dma) {
136 struct pci_dev *dev = HWIF(drive)->pci_dev;
137 int reg = 0x44 + drive->dn * 4;
139 pci_write_config_word(dev, reg, drv_ctrl);
141 break;
142 default:
143 return;
148 * The SL82C105 holds off all IDE interrupts while in DMA mode until
149 * all DMA activity is completed. Sometimes this causes problems (eg,
150 * when the drive wants to report an error condition).
152 * 0x7e is a "chip testing" register. Bit 2 resets the DMA controller
153 * state machine. We need to kick this to work around various bugs.
155 static inline void sl82c105_reset_host(struct pci_dev *dev)
157 u16 val;
159 pci_read_config_word(dev, 0x7e, &val);
160 pci_write_config_word(dev, 0x7e, val | (1 << 2));
161 pci_write_config_word(dev, 0x7e, val & ~(1 << 2));
165 * If we get an IRQ timeout, it might be that the DMA state machine
166 * got confused. Fix from Todd Inglett. Details from Winbond.
168 * This function is called when the IDE timer expires, the drive
169 * indicates that it is READY, and we were waiting for DMA to complete.
171 static void sl82c105_dma_lost_irq(ide_drive_t *drive)
173 ide_hwif_t *hwif = HWIF(drive);
174 struct pci_dev *dev = hwif->pci_dev;
175 u32 val, mask = hwif->channel ? CTRL_IDE_IRQB : CTRL_IDE_IRQA;
176 u8 dma_cmd;
178 printk("sl82c105: lost IRQ, resetting host\n");
181 * Check the raw interrupt from the drive.
183 pci_read_config_dword(dev, 0x40, &val);
184 if (val & mask)
185 printk("sl82c105: drive was requesting IRQ, but host lost it\n");
188 * Was DMA enabled? If so, disable it - we're resetting the
189 * host. The IDE layer will be handling the drive for us.
191 dma_cmd = inb(hwif->dma_command);
192 if (dma_cmd & 1) {
193 outb(dma_cmd & ~1, hwif->dma_command);
194 printk("sl82c105: DMA was enabled\n");
197 sl82c105_reset_host(dev);
201 * ATAPI devices can cause the SL82C105 DMA state machine to go gaga.
202 * Winbond recommend that the DMA state machine is reset prior to
203 * setting the bus master DMA enable bit.
205 * The generic IDE core will have disabled the BMEN bit before this
206 * function is called.
208 static void sl82c105_dma_start(ide_drive_t *drive)
210 ide_hwif_t *hwif = HWIF(drive);
211 struct pci_dev *dev = hwif->pci_dev;
213 sl82c105_reset_host(dev);
214 ide_dma_start(drive);
217 static void sl82c105_dma_timeout(ide_drive_t *drive)
219 DBG(("sl82c105_dma_timeout(drive:%s)\n", drive->name));
221 sl82c105_reset_host(HWIF(drive)->pci_dev);
222 ide_dma_timeout(drive);
225 static int sl82c105_ide_dma_on(ide_drive_t *drive)
227 struct pci_dev *dev = HWIF(drive)->pci_dev;
228 int rc, reg = 0x44 + drive->dn * 4;
230 DBG(("sl82c105_ide_dma_on(drive:%s)\n", drive->name));
232 rc = __ide_dma_on(drive);
233 if (rc == 0) {
234 pci_write_config_word(dev, reg, drive->drive_data >> 16);
236 printk(KERN_INFO "%s: DMA enabled\n", drive->name);
238 return rc;
241 static void sl82c105_dma_off_quietly(ide_drive_t *drive)
243 struct pci_dev *dev = HWIF(drive)->pci_dev;
244 int reg = 0x44 + drive->dn * 4;
246 DBG(("sl82c105_dma_off_quietly(drive:%s)\n", drive->name));
248 pci_write_config_word(dev, reg, drive->drive_data);
250 ide_dma_off_quietly(drive);
254 * Ok, that is nasty, but we must make sure the DMA timings
255 * won't be used for a PIO access. The solution here is
256 * to make sure the 16 bits mode is diabled on the channel
257 * when DMA is enabled, thus causing the chip to use PIO0
258 * timings for those operations.
260 static void sl82c105_selectproc(ide_drive_t *drive)
262 ide_hwif_t *hwif = HWIF(drive);
263 struct pci_dev *dev = hwif->pci_dev;
264 u32 val, old, mask;
266 //DBG(("sl82c105_selectproc(drive:%s)\n", drive->name));
268 mask = hwif->channel ? CTRL_P1F16 : CTRL_P0F16;
269 old = val = (u32)pci_get_drvdata(dev);
270 if (drive->using_dma)
271 val &= ~mask;
272 else
273 val |= mask;
274 if (old != val) {
275 pci_write_config_dword(dev, 0x40, val);
276 pci_set_drvdata(dev, (void *)val);
281 * ATA reset will clear the 16 bits mode in the control
282 * register, we need to update our cache
284 static void sl82c105_resetproc(ide_drive_t *drive)
286 struct pci_dev *dev = HWIF(drive)->pci_dev;
287 u32 val;
289 DBG(("sl82c105_resetproc(drive:%s)\n", drive->name));
291 pci_read_config_dword(dev, 0x40, &val);
292 pci_set_drvdata(dev, (void *)val);
296 * Return the revision of the Winbond bridge
297 * which this function is part of.
299 static unsigned int sl82c105_bridge_revision(struct pci_dev *dev)
301 struct pci_dev *bridge;
304 * The bridge should be part of the same device, but function 0.
306 bridge = pci_get_bus_and_slot(dev->bus->number,
307 PCI_DEVFN(PCI_SLOT(dev->devfn), 0));
308 if (!bridge)
309 return -1;
312 * Make sure it is a Winbond 553 and is an ISA bridge.
314 if (bridge->vendor != PCI_VENDOR_ID_WINBOND ||
315 bridge->device != PCI_DEVICE_ID_WINBOND_83C553 ||
316 bridge->class >> 8 != PCI_CLASS_BRIDGE_ISA) {
317 pci_dev_put(bridge);
318 return -1;
321 * We need to find function 0's revision, not function 1
323 pci_dev_put(bridge);
325 return bridge->revision;
329 * Enable the PCI device
331 * --BenH: It's arch fixup code that should enable channels that
332 * have not been enabled by firmware. I decided we can still enable
333 * channel 0 here at least, but channel 1 has to be enabled by
334 * firmware or arch code. We still set both to 16 bits mode.
336 static unsigned int __devinit init_chipset_sl82c105(struct pci_dev *dev, const char *msg)
338 u32 val;
340 DBG(("init_chipset_sl82c105()\n"));
342 pci_read_config_dword(dev, 0x40, &val);
343 val |= CTRL_P0EN | CTRL_P0F16 | CTRL_P1F16;
344 pci_write_config_dword(dev, 0x40, val);
345 pci_set_drvdata(dev, (void *)val);
347 return dev->irq;
351 * Initialise IDE channel
353 static void __devinit init_hwif_sl82c105(ide_hwif_t *hwif)
355 unsigned int rev;
357 DBG(("init_hwif_sl82c105(hwif: ide%d)\n", hwif->index));
359 hwif->set_pio_mode = &sl82c105_set_pio_mode;
360 hwif->set_dma_mode = &sl82c105_set_dma_mode;
361 hwif->selectproc = &sl82c105_selectproc;
362 hwif->resetproc = &sl82c105_resetproc;
364 if (!hwif->dma_base)
365 return;
367 rev = sl82c105_bridge_revision(hwif->pci_dev);
368 if (rev <= 5) {
370 * Never ever EVER under any circumstances enable
371 * DMA when the bridge is this old.
373 printk(" %s: Winbond W83C553 bridge revision %d, "
374 "BM-DMA disabled\n", hwif->name, rev);
375 return;
378 hwif->mwdma_mask = ATA_MWDMA2;
380 hwif->ide_dma_on = &sl82c105_ide_dma_on;
381 hwif->dma_off_quietly = &sl82c105_dma_off_quietly;
382 hwif->dma_lost_irq = &sl82c105_dma_lost_irq;
383 hwif->dma_start = &sl82c105_dma_start;
384 hwif->dma_timeout = &sl82c105_dma_timeout;
386 if (hwif->mate)
387 hwif->serialized = hwif->mate->serialized = 1;
390 static const struct ide_port_info sl82c105_chipset __devinitdata = {
391 .name = "W82C105",
392 .init_chipset = init_chipset_sl82c105,
393 .init_hwif = init_hwif_sl82c105,
394 .enablebits = {{0x40,0x01,0x01}, {0x40,0x10,0x10}},
395 .host_flags = IDE_HFLAG_IO_32BIT |
396 IDE_HFLAG_UNMASK_IRQS |
397 IDE_HFLAG_NO_AUTODMA |
398 IDE_HFLAG_BOOTABLE,
399 .pio_mask = ATA_PIO5,
402 static int __devinit sl82c105_init_one(struct pci_dev *dev, const struct pci_device_id *id)
404 return ide_setup_pci_device(dev, &sl82c105_chipset);
407 static const struct pci_device_id sl82c105_pci_tbl[] = {
408 { PCI_VDEVICE(WINBOND, PCI_DEVICE_ID_WINBOND_82C105), 0 },
409 { 0, },
411 MODULE_DEVICE_TABLE(pci, sl82c105_pci_tbl);
413 static struct pci_driver driver = {
414 .name = "W82C105_IDE",
415 .id_table = sl82c105_pci_tbl,
416 .probe = sl82c105_init_one,
419 static int __init sl82c105_ide_init(void)
421 return ide_pci_register_driver(&driver);
424 module_init(sl82c105_ide_init);
426 MODULE_DESCRIPTION("PCI driver module for W82C105 IDE");
427 MODULE_LICENSE("GPL");