ide: merge ->fixup and ->quirkproc methods
[deliverable/linux.git] / drivers / ide / ide.c
CommitLineData
1da177e4
LT
1/*
2 * linux/drivers/ide/ide.c Version 7.00beta2 Mar 05 2003
3 *
4 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
5 */
6
7/*
8 * Mostly written by Mark Lord <mlord@pobox.com>
9 * and Gadi Oxman <gadio@netvision.net.il>
10 * and Andre Hedrick <andre@linux-ide.org>
11 *
12 * See linux/MAINTAINERS for address of current maintainer.
13 *
14 * This is the multiple IDE interface driver, as evolved from hd.c.
15 * It supports up to MAX_HWIFS IDE interfaces, on one or more IRQs
16 * (usually 14 & 15).
17 * There can be up to two drives per interface, as per the ATA-2 spec.
18 *
1da177e4
LT
19 * ...
20 *
21 * From hd.c:
22 * |
23 * | It traverses the request-list, using interrupts to jump between functions.
24 * | As nearly all functions can be called within interrupts, we may not sleep.
25 * | Special care is recommended. Have Fun!
26 * |
27 * | modified by Drew Eckhardt to check nr of hd's from the CMOS.
28 * |
29 * | Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
30 * | in the early extended-partition checks and added DM partitions.
31 * |
32 * | Early work on error handling by Mika Liljeberg (liljeber@cs.Helsinki.FI).
33 * |
34 * | IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
35 * | and general streamlining by Mark Lord (mlord@pobox.com).
36 *
37 * October, 1994 -- Complete line-by-line overhaul for linux 1.1.x, by:
38 *
39 * Mark Lord (mlord@pobox.com) (IDE Perf.Pkg)
40 * Delman Lee (delman@ieee.org) ("Mr. atdisk2")
41 * Scott Snyder (snyder@fnald0.fnal.gov) (ATAPI IDE cd-rom)
42 *
43 * This was a rewrite of just about everything from hd.c, though some original
44 * code is still sprinkled about. Think of it as a major evolution, with
45 * inspiration from lots of linux users, esp. hamish@zot.apana.org.au
1da177e4
LT
46 */
47
48#define REVISION "Revision: 7.00alpha2"
49#define VERSION "Id: ide.c 7.00a2 20020906"
50
1da177e4
LT
51#define _IDE_C /* Tell ide.h it's really us */
52
1da177e4
LT
53#include <linux/module.h>
54#include <linux/types.h>
55#include <linux/string.h>
56#include <linux/kernel.h>
57#include <linux/timer.h>
58#include <linux/mm.h>
59#include <linux/interrupt.h>
60#include <linux/major.h>
61#include <linux/errno.h>
62#include <linux/genhd.h>
63#include <linux/blkpg.h>
64#include <linux/slab.h>
65#include <linux/init.h>
66#include <linux/pci.h>
67#include <linux/delay.h>
68#include <linux/ide.h>
1da177e4
LT
69#include <linux/completion.h>
70#include <linux/reboot.h>
71#include <linux/cdrom.h>
72#include <linux/seq_file.h>
73#include <linux/device.h>
74#include <linux/bitops.h>
75
76#include <asm/byteorder.h>
77#include <asm/irq.h>
78#include <asm/uaccess.h>
79#include <asm/io.h>
80
81
82/* default maximum number of failures */
83#define IDE_DEFAULT_MAX_FAILURES 1
84
85static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR,
86 IDE2_MAJOR, IDE3_MAJOR,
87 IDE4_MAJOR, IDE5_MAJOR,
88 IDE6_MAJOR, IDE7_MAJOR,
89 IDE8_MAJOR, IDE9_MAJOR };
90
91static int idebus_parameter; /* holds the "idebus=" parameter */
92static int system_bus_speed; /* holds what we think is VESA/PCI bus speed */
1da177e4 93
ef29888e 94DEFINE_MUTEX(ide_cfg_mtx);
1da177e4
LT
95 __cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
96
6d208b39 97#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
1da177e4
LT
98static int ide_scan_direction; /* THIS was formerly 2.2.x pci=reverse */
99#endif
100
1da177e4 101int noautodma = 0;
1da177e4 102
e3a59b4d
HR
103#ifdef CONFIG_BLK_DEV_IDEACPI
104int ide_noacpi = 0;
105int ide_noacpitfs = 1;
106int ide_noacpionboot = 1;
107#endif
108
1da177e4
LT
109/*
110 * This is declared extern in ide.h, for access by other IDE modules:
111 */
112ide_hwif_t ide_hwifs[MAX_HWIFS]; /* master data repository */
113
114EXPORT_SYMBOL(ide_hwifs);
115
1da177e4
LT
116/*
117 * Do not even *think* about calling this!
118 */
119static void init_hwif_data(ide_hwif_t *hwif, unsigned int index)
120{
121 unsigned int unit;
122
123 /* bulk initialize hwif & drive info with zeros */
124 memset(hwif, 0, sizeof(ide_hwif_t));
125
126 /* fill in any non-zero initial values */
127 hwif->index = index;
128 hwif->major = ide_hwif_to_major[index];
129
130 hwif->name[0] = 'i';
131 hwif->name[1] = 'd';
132 hwif->name[2] = 'e';
133 hwif->name[3] = '0' + index;
134
135 hwif->bus_state = BUSSTATE_ON;
136
f36d4024 137 init_completion(&hwif->gendev_rel_comp);
1da177e4
LT
138
139 default_hwif_iops(hwif);
140 default_hwif_transport(hwif);
141 for (unit = 0; unit < MAX_DRIVES; ++unit) {
142 ide_drive_t *drive = &hwif->drives[unit];
143
144 drive->media = ide_disk;
145 drive->select.all = (unit<<4)|0xa0;
146 drive->hwif = hwif;
147 drive->ctl = 0x08;
148 drive->ready_stat = READY_STAT;
149 drive->bad_wstat = BAD_W_STAT;
150 drive->special.b.recalibrate = 1;
151 drive->special.b.set_geometry = 1;
152 drive->name[0] = 'h';
153 drive->name[1] = 'd';
154 drive->name[2] = 'a' + (index * MAX_DRIVES) + unit;
155 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
156 drive->using_dma = 0;
1da177e4
LT
157 drive->vdma = 0;
158 INIT_LIST_HEAD(&drive->list);
f36d4024 159 init_completion(&drive->gendev_rel_comp);
1da177e4
LT
160 }
161}
162
163static void init_hwif_default(ide_hwif_t *hwif, unsigned int index)
164{
165 hw_regs_t hw;
166
167 memset(&hw, 0, sizeof(hw_regs_t));
168
169 ide_init_hwif_ports(&hw, ide_default_io_base(index), 0, &hwif->irq);
170
1da177e4
LT
171 memcpy(hwif->io_ports, hw.io_ports, sizeof(hw.io_ports));
172
173 hwif->noprobe = !hwif->io_ports[IDE_DATA_OFFSET];
174#ifdef CONFIG_BLK_DEV_HD
175 if (hwif->io_ports[IDE_DATA_OFFSET] == HD_DATA)
176 hwif->noprobe = 1; /* may be overridden by ide_setup() */
177#endif
178}
179
180extern void ide_arm_init(void);
181
182/*
183 * init_ide_data() sets reasonable default values into all fields
184 * of all instances of the hwifs and drives, but only on the first call.
185 * Subsequent calls have no effect (they don't wipe out anything).
186 *
187 * This routine is normally called at driver initialization time,
188 * but may also be called MUCH earlier during kernel "command-line"
189 * parameter processing. As such, we cannot depend on any other parts
190 * of the kernel (such as memory allocation) to be functioning yet.
191 *
192 * This is too bad, as otherwise we could dynamically allocate the
193 * ide_drive_t structs as needed, rather than always consuming memory
194 * for the max possible number (MAX_HWIFS * MAX_DRIVES) of them.
195 *
196 * FIXME: We should stuff the setup data into __init and copy the
197 * relevant hwifs/allocate them properly during boot.
198 */
199#define MAGIC_COOKIE 0x12345678
200static void __init init_ide_data (void)
201{
202 ide_hwif_t *hwif;
203 unsigned int index;
204 static unsigned long magic_cookie = MAGIC_COOKIE;
205
206 if (magic_cookie != MAGIC_COOKIE)
207 return; /* already initialized */
208 magic_cookie = 0;
209
210 /* Initialise all interface structures */
211 for (index = 0; index < MAX_HWIFS; ++index) {
212 hwif = &ide_hwifs[index];
213 init_hwif_data(hwif, index);
214 init_hwif_default(hwif, index);
215#if !defined(CONFIG_PPC32) || !defined(CONFIG_PCI)
9239b333 216 hwif->irq =
1da177e4
LT
217 ide_init_default_irq(hwif->io_ports[IDE_DATA_OFFSET]);
218#endif
219 }
220#ifdef CONFIG_IDE_ARM
1da177e4 221 ide_arm_init();
1da177e4
LT
222#endif
223}
224
225/**
226 * ide_system_bus_speed - guess bus speed
227 *
228 * ide_system_bus_speed() returns what we think is the system VESA/PCI
229 * bus speed (in MHz). This is used for calculating interface PIO timings.
230 * The default is 40 for known PCI systems, 50 otherwise.
231 * The "idebus=xx" parameter can be used to override this value.
232 * The actual value to be used is computed/displayed the first time
233 * through. Drivers should only use this as a last resort.
234 *
235 * Returns a guessed speed in MHz.
236 */
237
238static int ide_system_bus_speed(void)
239{
240#ifdef CONFIG_PCI
241 static struct pci_device_id pci_default[] = {
242 { PCI_DEVICE(PCI_ANY_ID, PCI_ANY_ID) },
243 { }
244 };
245#else
246#define pci_default 0
247#endif /* CONFIG_PCI */
248
249 if (!system_bus_speed) {
250 if (idebus_parameter) {
251 /* user supplied value */
252 system_bus_speed = idebus_parameter;
253 } else if (pci_dev_present(pci_default)) {
254 /* safe default value for PCI */
255 system_bus_speed = 33;
256 } else {
257 /* safe default value for VESA and PCI */
258 system_bus_speed = 50;
259 }
260 printk(KERN_INFO "ide: Assuming %dMHz system bus speed "
261 "for PIO modes%s\n", system_bus_speed,
262 idebus_parameter ? "" : "; override with idebus=xx");
263 }
264 return system_bus_speed;
265}
266
baa8f3e9
BZ
267ide_hwif_t * ide_find_port(unsigned long base)
268{
269 ide_hwif_t *hwif;
270 int i;
271
272 for (i = 0; i < MAX_HWIFS; i++) {
273 hwif = &ide_hwifs[i];
274 if (hwif->io_ports[IDE_DATA_OFFSET] == base)
275 goto found;
276 }
277
278 for (i = 0; i < MAX_HWIFS; i++) {
279 hwif = &ide_hwifs[i];
280 if (hwif->io_ports[IDE_DATA_OFFSET] == 0)
281 goto found;
282 }
283
284 hwif = NULL;
285found:
286 return hwif;
287}
288
289EXPORT_SYMBOL_GPL(ide_find_port);
290
1da177e4
LT
291static struct resource* hwif_request_region(ide_hwif_t *hwif,
292 unsigned long addr, int num)
293{
294 struct resource *res = request_region(addr, num, hwif->name);
295
296 if (!res)
297 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
298 hwif->name, addr, addr+num-1);
299 return res;
300}
301
302/**
303 * ide_hwif_request_regions - request resources for IDE
304 * @hwif: interface to use
305 *
306 * Requests all the needed resources for an interface.
307 * Right now core IDE code does this work which is deeply wrong.
308 * MMIO leaves it to the controller driver,
309 * PIO will migrate this way over time.
310 */
311
312int ide_hwif_request_regions(ide_hwif_t *hwif)
313{
314 unsigned long addr;
315 unsigned int i;
316
2ad1e558 317 if (hwif->mmio)
1da177e4 318 return 0;
1da177e4
LT
319 addr = hwif->io_ports[IDE_CONTROL_OFFSET];
320 if (addr && !hwif_request_region(hwif, addr, 1))
321 goto control_region_busy;
322 hwif->straight8 = 0;
323 addr = hwif->io_ports[IDE_DATA_OFFSET];
324 if ((addr | 7) == hwif->io_ports[IDE_STATUS_OFFSET]) {
325 if (!hwif_request_region(hwif, addr, 8))
326 goto data_region_busy;
327 hwif->straight8 = 1;
328 return 0;
329 }
330 for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
331 addr = hwif->io_ports[i];
332 if (!hwif_request_region(hwif, addr, 1)) {
333 while (--i)
334 release_region(addr, 1);
335 goto data_region_busy;
336 }
337 }
338 return 0;
339
340data_region_busy:
341 addr = hwif->io_ports[IDE_CONTROL_OFFSET];
342 if (addr)
343 release_region(addr, 1);
344control_region_busy:
345 /* If any errors are return, we drop the hwif interface. */
346 return -EBUSY;
347}
348
349/**
350 * ide_hwif_release_regions - free IDE resources
351 *
352 * Note that we only release the standard ports,
353 * and do not even try to handle any extra ports
354 * allocated for weird IDE interface chipsets.
355 *
356 * Note also that we don't yet handle mmio resources here. More
357 * importantly our caller should be doing this so we need to
358 * restructure this as a helper function for drivers.
359 */
360
361void ide_hwif_release_regions(ide_hwif_t *hwif)
362{
363 u32 i = 0;
364
2ad1e558 365 if (hwif->mmio)
1da177e4
LT
366 return;
367 if (hwif->io_ports[IDE_CONTROL_OFFSET])
368 release_region(hwif->io_ports[IDE_CONTROL_OFFSET], 1);
369 if (hwif->straight8) {
370 release_region(hwif->io_ports[IDE_DATA_OFFSET], 8);
371 return;
372 }
373 for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++)
374 if (hwif->io_ports[i])
375 release_region(hwif->io_ports[i], 1);
376}
377
378/**
379 * ide_hwif_restore - restore hwif to template
380 * @hwif: hwif to update
381 * @tmp_hwif: template
382 *
020e322d 383 * Restore hwif to a previous state by copying most settings
1da177e4
LT
384 * from the template.
385 */
386
387static void ide_hwif_restore(ide_hwif_t *hwif, ide_hwif_t *tmp_hwif)
388{
389 hwif->hwgroup = tmp_hwif->hwgroup;
390
391 hwif->gendev.parent = tmp_hwif->gendev.parent;
392
393 hwif->proc = tmp_hwif->proc;
394
395 hwif->major = tmp_hwif->major;
396 hwif->straight8 = tmp_hwif->straight8;
397 hwif->bus_state = tmp_hwif->bus_state;
398
6a824c92
BZ
399 hwif->host_flags = tmp_hwif->host_flags;
400
4099d143
BZ
401 hwif->pio_mask = tmp_hwif->pio_mask;
402
1da177e4
LT
403 hwif->ultra_mask = tmp_hwif->ultra_mask;
404 hwif->mwdma_mask = tmp_hwif->mwdma_mask;
405 hwif->swdma_mask = tmp_hwif->swdma_mask;
406
49521f97
BZ
407 hwif->cbl = tmp_hwif->cbl;
408
1da177e4
LT
409 hwif->chipset = tmp_hwif->chipset;
410 hwif->hold = tmp_hwif->hold;
411
412#ifdef CONFIG_BLK_DEV_IDEPCI
413 hwif->pci_dev = tmp_hwif->pci_dev;
414 hwif->cds = tmp_hwif->cds;
415#endif
416
26bcb879 417 hwif->set_pio_mode = tmp_hwif->set_pio_mode;
88b2b32b 418 hwif->set_dma_mode = tmp_hwif->set_dma_mode;
b4e44369 419 hwif->mdma_filter = tmp_hwif->mdma_filter;
2d5eaa6d 420 hwif->udma_filter = tmp_hwif->udma_filter;
1da177e4
LT
421 hwif->selectproc = tmp_hwif->selectproc;
422 hwif->reset_poll = tmp_hwif->reset_poll;
423 hwif->pre_reset = tmp_hwif->pre_reset;
424 hwif->resetproc = tmp_hwif->resetproc;
1da177e4
LT
425 hwif->maskproc = tmp_hwif->maskproc;
426 hwif->quirkproc = tmp_hwif->quirkproc;
427 hwif->busproc = tmp_hwif->busproc;
428
429 hwif->ata_input_data = tmp_hwif->ata_input_data;
430 hwif->ata_output_data = tmp_hwif->ata_output_data;
431 hwif->atapi_input_bytes = tmp_hwif->atapi_input_bytes;
432 hwif->atapi_output_bytes = tmp_hwif->atapi_output_bytes;
433
15ce926a 434 hwif->dma_host_set = tmp_hwif->dma_host_set;
1da177e4
LT
435 hwif->dma_setup = tmp_hwif->dma_setup;
436 hwif->dma_exec_cmd = tmp_hwif->dma_exec_cmd;
437 hwif->dma_start = tmp_hwif->dma_start;
438 hwif->ide_dma_end = tmp_hwif->ide_dma_end;
1da177e4 439 hwif->ide_dma_test_irq = tmp_hwif->ide_dma_test_irq;
f0dd8712 440 hwif->ide_dma_clear_irq = tmp_hwif->ide_dma_clear_irq;
841d2a9b 441 hwif->dma_lost_irq = tmp_hwif->dma_lost_irq;
c283f5db 442 hwif->dma_timeout = tmp_hwif->dma_timeout;
1da177e4
LT
443
444 hwif->OUTB = tmp_hwif->OUTB;
445 hwif->OUTBSYNC = tmp_hwif->OUTBSYNC;
446 hwif->OUTW = tmp_hwif->OUTW;
1da177e4
LT
447 hwif->OUTSW = tmp_hwif->OUTSW;
448 hwif->OUTSL = tmp_hwif->OUTSL;
449
450 hwif->INB = tmp_hwif->INB;
451 hwif->INW = tmp_hwif->INW;
1da177e4
LT
452 hwif->INSW = tmp_hwif->INSW;
453 hwif->INSL = tmp_hwif->INSL;
454
455 hwif->sg_max_nents = tmp_hwif->sg_max_nents;
456
457 hwif->mmio = tmp_hwif->mmio;
458 hwif->rqsize = tmp_hwif->rqsize;
1da177e4
LT
459
460#ifndef CONFIG_BLK_DEV_IDECS
461 hwif->irq = tmp_hwif->irq;
462#endif
463
464 hwif->dma_base = tmp_hwif->dma_base;
1da177e4
LT
465 hwif->dma_command = tmp_hwif->dma_command;
466 hwif->dma_vendor1 = tmp_hwif->dma_vendor1;
467 hwif->dma_status = tmp_hwif->dma_status;
468 hwif->dma_vendor3 = tmp_hwif->dma_vendor3;
469 hwif->dma_prdtable = tmp_hwif->dma_prdtable;
470
1da177e4
LT
471 hwif->config_data = tmp_hwif->config_data;
472 hwif->select_data = tmp_hwif->select_data;
020e322d
SS
473 hwif->extra_base = tmp_hwif->extra_base;
474 hwif->extra_ports = tmp_hwif->extra_ports;
1da177e4
LT
475
476 hwif->hwif_data = tmp_hwif->hwif_data;
477}
478
479/**
020e322d 480 * ide_unregister - free an IDE interface
1da177e4
LT
481 * @index: index of interface (will change soon to a pointer)
482 *
483 * Perform the final unregister of an IDE interface. At the moment
484 * we don't refcount interfaces so this will also get split up.
485 *
486 * Locking:
487 * The caller must not hold the IDE locks
488 * The drive present/vanishing is not yet properly locked
489 * Take care with the callbacks. These have been split to avoid
490 * deadlocking the IDE layer. The shutdown callback is called
491 * before we take the lock and free resources. It is up to the
492 * caller to be sure there is no pending I/O here, and that
020e322d
SS
493 * the interface will not be reopened (present/vanishing locking
494 * isn't yet done BTW). After we commit to the final kill we
1da177e4
LT
495 * call the cleanup callback with the ide locks held.
496 *
497 * Unregister restores the hwif structures to the default state.
498 * This is raving bonkers.
499 */
500
501void ide_unregister(unsigned int index)
502{
503 ide_drive_t *drive;
504 ide_hwif_t *hwif, *g;
ef29888e 505 static ide_hwif_t tmp_hwif; /* protected by ide_cfg_mtx */
1da177e4 506 ide_hwgroup_t *hwgroup;
8604affd 507 int irq_count = 0, unit;
1da177e4
LT
508
509 BUG_ON(index >= MAX_HWIFS);
510
511 BUG_ON(in_interrupt());
512 BUG_ON(irqs_disabled());
ef29888e 513 mutex_lock(&ide_cfg_mtx);
1da177e4
LT
514 spin_lock_irq(&ide_lock);
515 hwif = &ide_hwifs[index];
516 if (!hwif->present)
517 goto abort;
518 for (unit = 0; unit < MAX_DRIVES; ++unit) {
519 drive = &hwif->drives[unit];
94f6c59d 520 if (!drive->present)
1da177e4 521 continue;
8604affd
BZ
522 spin_unlock_irq(&ide_lock);
523 device_unregister(&drive->gendev);
f36d4024 524 wait_for_completion(&drive->gendev_rel_comp);
8604affd 525 spin_lock_irq(&ide_lock);
1da177e4
LT
526 }
527 hwif->present = 0;
528
529 spin_unlock_irq(&ide_lock);
530
5cbf79cd 531 ide_proc_unregister_port(hwif);
1da177e4
LT
532
533 hwgroup = hwif->hwgroup;
534 /*
535 * free the irq if we were the only hwif using it
536 */
537 g = hwgroup->hwif;
538 do {
539 if (g->irq == hwif->irq)
540 ++irq_count;
541 g = g->next;
542 } while (g != hwgroup->hwif);
543 if (irq_count == 1)
544 free_irq(hwif->irq, hwgroup);
545
546 spin_lock_irq(&ide_lock);
547 /*
548 * Note that we only release the standard ports,
549 * and do not even try to handle any extra ports
550 * allocated for weird IDE interface chipsets.
551 */
552 ide_hwif_release_regions(hwif);
553
554 /*
555 * Remove us from the hwgroup, and free
556 * the hwgroup if we were the only member
557 */
1da177e4
LT
558 if (hwif->next == hwif) {
559 BUG_ON(hwgroup->hwif != hwif);
560 kfree(hwgroup);
561 } else {
562 /* There is another interface in hwgroup.
563 * Unlink us, and set hwgroup->drive and ->hwif to
564 * something sane.
565 */
566 g = hwgroup->hwif;
567 while (g->next != hwif)
568 g = g->next;
569 g->next = hwif->next;
570 if (hwgroup->hwif == hwif) {
571 /* Chose a random hwif for hwgroup->hwif.
572 * It's guaranteed that there are no drives
573 * left in the hwgroup.
574 */
575 BUG_ON(hwgroup->drive != NULL);
576 hwgroup->hwif = g;
577 }
578 BUG_ON(hwgroup->hwif == hwif);
579 }
580
581 /* More messed up locking ... */
582 spin_unlock_irq(&ide_lock);
583 device_unregister(&hwif->gendev);
f36d4024 584 wait_for_completion(&hwif->gendev_rel_comp);
1da177e4
LT
585
586 /*
587 * Remove us from the kernel's knowledge
588 */
589 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
590 kfree(hwif->sg_table);
591 unregister_blkdev(hwif->major, hwif->name);
592 spin_lock_irq(&ide_lock);
593
594 if (hwif->dma_base) {
595 (void) ide_release_dma(hwif);
596
597 hwif->dma_base = 0;
1da177e4
LT
598 hwif->dma_command = 0;
599 hwif->dma_vendor1 = 0;
600 hwif->dma_status = 0;
601 hwif->dma_vendor3 = 0;
602 hwif->dma_prdtable = 0;
020e322d
SS
603
604 hwif->extra_base = 0;
605 hwif->extra_ports = 0;
1da177e4
LT
606 }
607
608 /* copy original settings */
609 tmp_hwif = *hwif;
610
611 /* restore hwif data to pristine status */
612 init_hwif_data(hwif, index);
613 init_hwif_default(hwif, index);
614
615 ide_hwif_restore(hwif, &tmp_hwif);
616
617abort:
618 spin_unlock_irq(&ide_lock);
ef29888e 619 mutex_unlock(&ide_cfg_mtx);
1da177e4
LT
620}
621
622EXPORT_SYMBOL(ide_unregister);
623
624
625/**
626 * ide_setup_ports - set up IDE interface ports
627 * @hw: register descriptions
628 * @base: base register
629 * @offsets: table of register offsets
630 * @ctrl: control register
631 * @ack_irq: IRQ ack
632 * @irq: interrupt lie
633 *
634 * Setup hw_regs_t structure described by parameters. You
635 * may set up the hw structure yourself OR use this routine to
636 * do it for you. This is basically a helper
637 *
638 */
639
640void ide_setup_ports ( hw_regs_t *hw,
641 unsigned long base, int *offsets,
642 unsigned long ctrl, unsigned long intr,
643 ide_ack_intr_t *ack_intr,
644/*
645 * ide_io_ops_t *iops,
646 */
647 int irq)
648{
649 int i;
650
2c3e0262 651 memset(hw, 0, sizeof(hw_regs_t));
1da177e4
LT
652 for (i = 0; i < IDE_NR_PORTS; i++) {
653 if (offsets[i] == -1) {
654 switch(i) {
655 case IDE_CONTROL_OFFSET:
656 hw->io_ports[i] = ctrl;
657 break;
658#if defined(CONFIG_AMIGA) || defined(CONFIG_MAC)
659 case IDE_IRQ_OFFSET:
660 hw->io_ports[i] = intr;
661 break;
662#endif /* (CONFIG_AMIGA) || (CONFIG_MAC) */
663 default:
664 hw->io_ports[i] = 0;
665 break;
666 }
667 } else {
668 hw->io_ports[i] = base + offsets[i];
669 }
670 }
671 hw->irq = irq;
1da177e4
LT
672 hw->ack_intr = ack_intr;
673/*
674 * hw->iops = iops;
675 */
676}
677
678/**
fd9bb539 679 * ide_register_hw - register IDE interface
1da177e4 680 * @hw: hardware registers
f01393e4 681 * @quirkproc: quirkproc function
869c56ee 682 * @initializing: set while initializing built-in drivers
1da177e4 683 * @hwifp: pointer to returned hwif
1da177e4
LT
684 *
685 * Register an IDE interface, specifying exactly the registers etc.
686 * Set init=1 iff calling before probes have taken place.
687 *
688 * Returns -1 on error.
689 */
690
f01393e4 691int ide_register_hw(hw_regs_t *hw, void (*quirkproc)(ide_drive_t *),
fd9bb539 692 int initializing, ide_hwif_t **hwifp)
1da177e4
LT
693{
694 int index, retry = 1;
695 ide_hwif_t *hwif;
696
697 do {
698 for (index = 0; index < MAX_HWIFS; ++index) {
699 hwif = &ide_hwifs[index];
8f173b5b 700 if (hwif->io_ports[IDE_DATA_OFFSET] == hw->io_ports[IDE_DATA_OFFSET])
1da177e4
LT
701 goto found;
702 }
703 for (index = 0; index < MAX_HWIFS; ++index) {
704 hwif = &ide_hwifs[index];
705 if (hwif->hold)
706 continue;
707 if ((!hwif->present && !hwif->mate && !initializing) ||
8f173b5b 708 (!hwif->io_ports[IDE_DATA_OFFSET] && initializing))
1da177e4
LT
709 goto found;
710 }
711 for (index = 0; index < MAX_HWIFS; index++)
712 ide_unregister(index);
713 } while (retry--);
714 return -1;
715found:
716 if (hwif->present)
717 ide_unregister(index);
718 else if (!hwif->hold) {
719 init_hwif_data(hwif, index);
720 init_hwif_default(hwif, index);
721 }
722 if (hwif->present)
723 return -1;
9239b333 724 memcpy(hwif->io_ports, hw->io_ports, sizeof(hwif->io_ports));
1da177e4
LT
725 hwif->irq = hw->irq;
726 hwif->noprobe = 0;
f01393e4 727 hwif->quirkproc = quirkproc;
1da177e4 728 hwif->chipset = hw->chipset;
4349d5cd 729 hwif->gendev.parent = hw->dev;
18e181fe 730 hwif->ack_intr = hw->ack_intr;
1da177e4 731
8447d9d5
BZ
732 if (initializing == 0) {
733 u8 idx[4] = { index, 0xff, 0xff, 0xff };
734
735 ide_device_add(idx);
1da177e4
LT
736 }
737
738 if (hwifp)
739 *hwifp = hwif;
740
741 return (initializing || hwif->present) ? index : -1;
742}
743
1da177e4
LT
744EXPORT_SYMBOL(ide_register_hw);
745
746/*
747 * Locks for IDE setting functionality
748 */
749
f9383c42 750DEFINE_MUTEX(ide_setting_mtx);
1da177e4 751
f9383c42 752EXPORT_SYMBOL_GPL(ide_setting_mtx);
1497943e 753
1da177e4
LT
754/**
755 * ide_spin_wait_hwgroup - wait for group
756 * @drive: drive in the group
757 *
758 * Wait for an IDE device group to go non busy and then return
759 * holding the ide_lock which guards the hwgroup->busy status
760 * and right to use it.
761 */
762
763int ide_spin_wait_hwgroup (ide_drive_t *drive)
764{
765 ide_hwgroup_t *hwgroup = HWGROUP(drive);
766 unsigned long timeout = jiffies + (3 * HZ);
767
768 spin_lock_irq(&ide_lock);
769
770 while (hwgroup->busy) {
771 unsigned long lflags;
772 spin_unlock_irq(&ide_lock);
773 local_irq_set(lflags);
774 if (time_after(jiffies, timeout)) {
775 local_irq_restore(lflags);
776 printk(KERN_ERR "%s: channel busy\n", drive->name);
777 return -EBUSY;
778 }
779 local_irq_restore(lflags);
780 spin_lock_irq(&ide_lock);
781 }
782 return 0;
783}
784
785EXPORT_SYMBOL(ide_spin_wait_hwgroup);
786
7662d046 787int set_io_32bit(ide_drive_t *drive, int arg)
1da177e4 788{
1497943e
BZ
789 if (drive->no_io_32bit)
790 return -EPERM;
791
792 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
793 return -EINVAL;
794
644a9d76
BZ
795 if (ide_spin_wait_hwgroup(drive))
796 return -EBUSY;
797
1da177e4
LT
798 drive->io_32bit = arg;
799#ifdef CONFIG_BLK_DEV_DTC2278
800 if (HWIF(drive)->chipset == ide_dtc2278)
801 HWIF(drive)->drives[!drive->select.b.unit].io_32bit = arg;
802#endif /* CONFIG_BLK_DEV_DTC2278 */
644a9d76
BZ
803
804 spin_unlock_irq(&ide_lock);
805
1da177e4
LT
806 return 0;
807}
808
1497943e
BZ
809static int set_ksettings(ide_drive_t *drive, int arg)
810{
811 if (arg < 0 || arg > 1)
812 return -EINVAL;
813
814 if (ide_spin_wait_hwgroup(drive))
815 return -EBUSY;
816 drive->keep_settings = arg;
817 spin_unlock_irq(&ide_lock);
818
819 return 0;
820}
821
7662d046 822int set_using_dma(ide_drive_t *drive, int arg)
1da177e4
LT
823{
824#ifdef CONFIG_BLK_DEV_IDEDMA
87996204
BZ
825 ide_hwif_t *hwif = drive->hwif;
826 int err = -EPERM;
827
1497943e
BZ
828 if (arg < 0 || arg > 1)
829 return -EINVAL;
830
1da177e4 831 if (!drive->id || !(drive->id->capability & 1))
87996204
BZ
832 goto out;
833
15ce926a 834 if (hwif->dma_host_set == NULL)
87996204
BZ
835 goto out;
836
837 err = -EBUSY;
838 if (ide_spin_wait_hwgroup(drive))
839 goto out;
840 /*
841 * set ->busy flag, unlock and let it ride
842 */
843 hwif->hwgroup->busy = 1;
844 spin_unlock_irq(&ide_lock);
845
846 err = 0;
847
1da177e4 848 if (arg) {
23b1bd45 849 if (ide_set_dma(drive))
87996204 850 err = -EIO;
7469aaf6
BZ
851 } else
852 ide_dma_off(drive);
87996204
BZ
853
854 /*
855 * lock, clear ->busy flag and unlock before leaving
856 */
857 spin_lock_irq(&ide_lock);
858 hwif->hwgroup->busy = 0;
859 spin_unlock_irq(&ide_lock);
860out:
861 return err;
1da177e4 862#else
1497943e
BZ
863 if (arg < 0 || arg > 1)
864 return -EINVAL;
865
1da177e4
LT
866 return -EPERM;
867#endif
868}
869
7662d046 870int set_pio_mode(ide_drive_t *drive, int arg)
1da177e4
LT
871{
872 struct request rq;
873
1497943e
BZ
874 if (arg < 0 || arg > 255)
875 return -EINVAL;
876
26bcb879 877 if (drive->hwif->set_pio_mode == NULL)
1da177e4 878 return -ENOSYS;
26bcb879 879
1da177e4
LT
880 if (drive->special.b.set_tune)
881 return -EBUSY;
882 ide_init_drive_cmd(&rq);
883 drive->tune_req = (u8) arg;
884 drive->special.b.set_tune = 1;
885 (void) ide_do_drive_cmd(drive, &rq, ide_wait);
886 return 0;
887}
888
1497943e
BZ
889static int set_unmaskirq(ide_drive_t *drive, int arg)
890{
891 if (drive->no_unmask)
892 return -EPERM;
893
894 if (arg < 0 || arg > 1)
895 return -EINVAL;
896
897 if (ide_spin_wait_hwgroup(drive))
898 return -EBUSY;
899 drive->unmask = arg;
900 spin_unlock_irq(&ide_lock);
901
902 return 0;
903}
904
1da177e4
LT
905/**
906 * system_bus_clock - clock guess
907 *
908 * External version of the bus clock guess used by very old IDE drivers
909 * for things like VLB timings. Should not be used.
910 */
911
912int system_bus_clock (void)
913{
914 return((int) ((!system_bus_speed) ? ide_system_bus_speed() : system_bus_speed ));
915}
916
917EXPORT_SYMBOL(system_bus_clock);
918
b887d2e6 919static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
1da177e4
LT
920{
921 ide_drive_t *drive = dev->driver_data;
e3a59b4d 922 ide_hwif_t *hwif = HWIF(drive);
1da177e4
LT
923 struct request rq;
924 struct request_pm_state rqpm;
925 ide_task_t args;
5e32132b 926 int ret;
1da177e4 927
e3a59b4d
HR
928 /* Call ACPI _GTM only once */
929 if (!(drive->dn % 2))
930 ide_acpi_get_timing(hwif);
931
1da177e4
LT
932 memset(&rq, 0, sizeof(rq));
933 memset(&rqpm, 0, sizeof(rqpm));
934 memset(&args, 0, sizeof(args));
4aff5e23 935 rq.cmd_type = REQ_TYPE_PM_SUSPEND;
1da177e4 936 rq.special = &args;
c00895ab 937 rq.data = &rqpm;
1da177e4 938 rqpm.pm_step = ide_pm_state_start_suspend;
b887d2e6
DB
939 if (mesg.event == PM_EVENT_PRETHAW)
940 mesg.event = PM_EVENT_FREEZE;
941 rqpm.pm_state = mesg.event;
1da177e4 942
5e32132b
SL
943 ret = ide_do_drive_cmd(drive, &rq, ide_wait);
944 /* only call ACPI _PS3 after both drivers are suspended */
945 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
946 && hwif->drives[1].present)
947 || !hwif->drives[0].present
948 || !hwif->drives[1].present))
949 ide_acpi_set_state(hwif, 0);
950 return ret;
1da177e4
LT
951}
952
953static int generic_ide_resume(struct device *dev)
954{
955 ide_drive_t *drive = dev->driver_data;
e3a59b4d 956 ide_hwif_t *hwif = HWIF(drive);
1da177e4
LT
957 struct request rq;
958 struct request_pm_state rqpm;
959 ide_task_t args;
0d2157f7 960 int err;
1da177e4 961
e3a59b4d 962 /* Call ACPI _STM only once */
5e32132b
SL
963 if (!(drive->dn % 2)) {
964 ide_acpi_set_state(hwif, 1);
e3a59b4d 965 ide_acpi_push_timing(hwif);
5e32132b 966 }
e3a59b4d
HR
967
968 ide_acpi_exec_tfs(drive);
969
1da177e4
LT
970 memset(&rq, 0, sizeof(rq));
971 memset(&rqpm, 0, sizeof(rqpm));
972 memset(&args, 0, sizeof(args));
4aff5e23 973 rq.cmd_type = REQ_TYPE_PM_RESUME;
1da177e4 974 rq.special = &args;
c00895ab 975 rq.data = &rqpm;
1da177e4 976 rqpm.pm_step = ide_pm_state_start_resume;
ca078bae 977 rqpm.pm_state = PM_EVENT_ON;
1da177e4 978
0d2157f7
LT
979 err = ide_do_drive_cmd(drive, &rq, ide_head_wait);
980
ce9b2b0a
RW
981 if (err == 0 && dev->driver) {
982 ide_driver_t *drv = to_ide_driver(dev->driver);
983
984 if (drv->resume)
985 drv->resume(drive);
986 }
0d2157f7
LT
987
988 return err;
1da177e4
LT
989}
990
991int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
992 unsigned int cmd, unsigned long arg)
993{
1497943e 994 unsigned long flags;
1da177e4 995 ide_driver_t *drv;
1da177e4 996 void __user *p = (void __user *)arg;
1985026d 997 int err = 0, (*setfunc)(ide_drive_t *, int);
1497943e 998 u8 *val;
1da177e4 999
1497943e
BZ
1000 switch (cmd) {
1001 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
1002 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
1003 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
1004 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
1005 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
1006 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
1007 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
1008 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
1009 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
1da177e4 1010 }
1da177e4
LT
1011
1012 switch (cmd) {
1da177e4
LT
1013 case HDIO_OBSOLETE_IDENTITY:
1014 case HDIO_GET_IDENTITY:
1015 if (bdev != bdev->bd_contains)
1016 return -EINVAL;
1017 if (drive->id_read == 0)
1018 return -ENOMSG;
1019 if (copy_to_user(p, drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
1020 return -EFAULT;
1021 return 0;
1022
1023 case HDIO_GET_NICE:
1024 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
1025 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
1026 drive->nice0 << IDE_NICE_0 |
1027 drive->nice1 << IDE_NICE_1 |
1028 drive->nice2 << IDE_NICE_2,
1029 (long __user *) arg);
1030
1031#ifdef CONFIG_IDE_TASK_IOCTL
1032 case HDIO_DRIVE_TASKFILE:
1033 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1034 return -EACCES;
1035 switch(drive->media) {
1036 case ide_disk:
1037 return ide_taskfile_ioctl(drive, cmd, arg);
1038 default:
1039 return -ENOMSG;
1040 }
1041#endif /* CONFIG_IDE_TASK_IOCTL */
1042
1043 case HDIO_DRIVE_CMD:
1044 if (!capable(CAP_SYS_RAWIO))
1045 return -EACCES;
1046 return ide_cmd_ioctl(drive, cmd, arg);
1047
1048 case HDIO_DRIVE_TASK:
1049 if (!capable(CAP_SYS_RAWIO))
1050 return -EACCES;
1051 return ide_task_ioctl(drive, cmd, arg);
1052
1053 case HDIO_SCAN_HWIF:
1054 {
1055 hw_regs_t hw;
1056 int args[3];
1057 if (!capable(CAP_SYS_RAWIO)) return -EACCES;
1058 if (copy_from_user(args, p, 3 * sizeof(int)))
1059 return -EFAULT;
1060 memset(&hw, 0, sizeof(hw));
1061 ide_init_hwif_ports(&hw, (unsigned long) args[0],
1062 (unsigned long) args[1], NULL);
1063 hw.irq = args[2];
fd9bb539 1064 if (ide_register_hw(&hw, NULL, 0, NULL) == -1)
1da177e4
LT
1065 return -EIO;
1066 return 0;
1067 }
1068 case HDIO_UNREGISTER_HWIF:
1069 if (!capable(CAP_SYS_RAWIO)) return -EACCES;
1070 /* (arg > MAX_HWIFS) checked in function */
1071 ide_unregister(arg);
1072 return 0;
1073 case HDIO_SET_NICE:
1074 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
1075 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
1076 return -EPERM;
1077 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
1078 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
1079 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
1080 drive->dsc_overlap = 0;
1081 return -EPERM;
1082 }
1083 drive->nice1 = (arg >> IDE_NICE_1) & 1;
1084 return 0;
1085 case HDIO_DRIVE_RESET:
1086 {
1087 unsigned long flags;
1088 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
1089
1090 /*
1091 * Abort the current command on the
1092 * group if there is one, taking
1093 * care not to allow anything else
1094 * to be queued and to die on the
1095 * spot if we miss one somehow
1096 */
1097
1098 spin_lock_irqsave(&ide_lock, flags);
1099
913759ac
AC
1100 if (HWGROUP(drive)->resetting) {
1101 spin_unlock_irqrestore(&ide_lock, flags);
1102 return -EBUSY;
1103 }
1104
1da177e4
LT
1105 ide_abort(drive, "drive reset");
1106
125e1874 1107 BUG_ON(HWGROUP(drive)->handler);
1da177e4
LT
1108
1109 /* Ensure nothing gets queued after we
1110 drop the lock. Reset will clear the busy */
1111
1112 HWGROUP(drive)->busy = 1;
1113 spin_unlock_irqrestore(&ide_lock, flags);
1114 (void) ide_do_reset(drive);
1115
1116 return 0;
1117 }
1118
1da177e4
LT
1119 case HDIO_GET_BUSSTATE:
1120 if (!capable(CAP_SYS_ADMIN))
1121 return -EACCES;
1122 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
1123 return -EFAULT;
1124 return 0;
1125
1126 case HDIO_SET_BUSSTATE:
1127 if (!capable(CAP_SYS_ADMIN))
1128 return -EACCES;
1129 if (HWIF(drive)->busproc)
1130 return HWIF(drive)->busproc(drive, (int)arg);
1131 return -EOPNOTSUPP;
1132 default:
1133 return -EINVAL;
1134 }
1497943e
BZ
1135
1136read_val:
f9383c42 1137 mutex_lock(&ide_setting_mtx);
1497943e
BZ
1138 spin_lock_irqsave(&ide_lock, flags);
1139 err = *val;
1140 spin_unlock_irqrestore(&ide_lock, flags);
f9383c42 1141 mutex_unlock(&ide_setting_mtx);
1497943e
BZ
1142 return err >= 0 ? put_user(err, (long __user *)arg) : err;
1143
1144set_val:
1145 if (bdev != bdev->bd_contains)
1146 err = -EINVAL;
1147 else {
1148 if (!capable(CAP_SYS_ADMIN))
1149 err = -EACCES;
1150 else {
f9383c42 1151 mutex_lock(&ide_setting_mtx);
1497943e 1152 err = setfunc(drive, arg);
f9383c42 1153 mutex_unlock(&ide_setting_mtx);
1497943e
BZ
1154 }
1155 }
1156 return err;
1da177e4
LT
1157}
1158
1159EXPORT_SYMBOL(generic_ide_ioctl);
1160
1161/*
1162 * stridx() returns the offset of c within s,
1163 * or -1 if c is '\0' or not found within s.
1164 */
1165static int __init stridx (const char *s, char c)
1166{
1167 char *i = strchr(s, c);
1168 return (i && c) ? i - s : -1;
1169}
1170
1171/*
1172 * match_parm() does parsing for ide_setup():
1173 *
1174 * 1. the first char of s must be '='.
1175 * 2. if the remainder matches one of the supplied keywords,
1176 * the index (1 based) of the keyword is negated and returned.
1177 * 3. if the remainder is a series of no more than max_vals numbers
1178 * separated by commas, the numbers are saved in vals[] and a
1179 * count of how many were saved is returned. Base10 is assumed,
1180 * and base16 is allowed when prefixed with "0x".
1181 * 4. otherwise, zero is returned.
1182 */
1183static int __init match_parm (char *s, const char *keywords[], int vals[], int max_vals)
1184{
1185 static const char *decimal = "0123456789";
1186 static const char *hex = "0123456789abcdef";
1187 int i, n;
1188
1189 if (*s++ == '=') {
1190 /*
1191 * Try matching against the supplied keywords,
1192 * and return -(index+1) if we match one
1193 */
1194 if (keywords != NULL) {
1195 for (i = 0; *keywords != NULL; ++i) {
1196 if (!strcmp(s, *keywords++))
1197 return -(i+1);
1198 }
1199 }
1200 /*
1201 * Look for a series of no more than "max_vals"
1202 * numeric values separated by commas, in base10,
1203 * or base16 when prefixed with "0x".
1204 * Return a count of how many were found.
1205 */
1206 for (n = 0; (i = stridx(decimal, *s)) >= 0;) {
1207 vals[n] = i;
1208 while ((i = stridx(decimal, *++s)) >= 0)
1209 vals[n] = (vals[n] * 10) + i;
1210 if (*s == 'x' && !vals[n]) {
1211 while ((i = stridx(hex, *++s)) >= 0)
1212 vals[n] = (vals[n] * 0x10) + i;
1213 }
1214 if (++n == max_vals)
1215 break;
1216 if (*s == ',' || *s == ';')
1217 ++s;
1218 }
1219 if (!*s)
1220 return n;
1221 }
1222 return 0; /* zero = nothing matched */
1223}
1224
1225#ifdef CONFIG_BLK_DEV_ALI14XX
84913882 1226extern int probe_ali14xx;
1da177e4
LT
1227extern int ali14xx_init(void);
1228#endif
1229#ifdef CONFIG_BLK_DEV_UMC8672
84913882 1230extern int probe_umc8672;
1da177e4
LT
1231extern int umc8672_init(void);
1232#endif
1233#ifdef CONFIG_BLK_DEV_DTC2278
84913882 1234extern int probe_dtc2278;
1da177e4
LT
1235extern int dtc2278_init(void);
1236#endif
1237#ifdef CONFIG_BLK_DEV_HT6560B
84913882 1238extern int probe_ht6560b;
1da177e4
LT
1239extern int ht6560b_init(void);
1240#endif
1241#ifdef CONFIG_BLK_DEV_QD65XX
84913882 1242extern int probe_qd65xx;
1da177e4
LT
1243extern int qd65xx_init(void);
1244#endif
1245
1246static int __initdata is_chipset_set[MAX_HWIFS];
1247
1248/*
1249 * ide_setup() gets called VERY EARLY during initialization,
1250 * to handle kernel "command line" strings beginning with "hdx=" or "ide".
1251 *
1252 * Remember to update Documentation/ide.txt if you change something here.
1253 */
1254static int __init ide_setup(char *s)
1255{
1256 int i, vals[3];
1257 ide_hwif_t *hwif;
1258 ide_drive_t *drive;
1259 unsigned int hw, unit;
1260 const char max_drive = 'a' + ((MAX_HWIFS * MAX_DRIVES) - 1);
1261 const char max_hwif = '0' + (MAX_HWIFS - 1);
1262
1263
1264 if (strncmp(s,"hd",2) == 0 && s[2] == '=') /* hd= is for hd.c */
1265 return 0; /* driver and not us */
1266
1267 if (strncmp(s,"ide",3) && strncmp(s,"idebus",6) && strncmp(s,"hd",2))
1268 return 0;
1269
1270 printk(KERN_INFO "ide_setup: %s", s);
1271 init_ide_data ();
1272
1273#ifdef CONFIG_BLK_DEV_IDEDOUBLER
1274 if (!strcmp(s, "ide=doubler")) {
1275 extern int ide_doubler;
1276
1277 printk(" : Enabled support for IDE doublers\n");
1278 ide_doubler = 1;
1279 return 1;
1280 }
1281#endif /* CONFIG_BLK_DEV_IDEDOUBLER */
1282
1283 if (!strcmp(s, "ide=nodma")) {
1284 printk(" : Prevented DMA\n");
1285 noautodma = 1;
c223701c 1286 goto obsolete_option;
1da177e4
LT
1287 }
1288
6d208b39 1289#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
1da177e4
LT
1290 if (!strcmp(s, "ide=reverse")) {
1291 ide_scan_direction = 1;
1292 printk(" : Enabled support for IDE inverse scan order.\n");
1293 return 1;
1294 }
6d208b39 1295#endif
1da177e4 1296
e3a59b4d
HR
1297#ifdef CONFIG_BLK_DEV_IDEACPI
1298 if (!strcmp(s, "ide=noacpi")) {
1299 //printk(" : Disable IDE ACPI support.\n");
1300 ide_noacpi = 1;
1301 return 1;
1302 }
1303 if (!strcmp(s, "ide=acpigtf")) {
1304 //printk(" : Enable IDE ACPI _GTF support.\n");
1305 ide_noacpitfs = 0;
1306 return 1;
1307 }
1308 if (!strcmp(s, "ide=acpionboot")) {
1309 //printk(" : Call IDE ACPI methods on boot.\n");
1310 ide_noacpionboot = 0;
1311 return 1;
1312 }
1313#endif /* CONFIG_BLK_DEV_IDEACPI */
1314
1da177e4
LT
1315 /*
1316 * Look for drive options: "hdx="
1317 */
1318 if (s[0] == 'h' && s[1] == 'd' && s[2] >= 'a' && s[2] <= max_drive) {
1319 const char *hd_words[] = {
c223701c 1320 "none", "noprobe", "nowerr", "cdrom", "nodma",
1da177e4 1321 "autotune", "noautotune", "minus8", "swapdata", "bswap",
36193484 1322 "noflush", "remap", "remap63", "scsi", NULL };
1da177e4
LT
1323 unit = s[2] - 'a';
1324 hw = unit / MAX_DRIVES;
1325 unit = unit % MAX_DRIVES;
1326 hwif = &ide_hwifs[hw];
1327 drive = &hwif->drives[unit];
1328 if (strncmp(s + 4, "ide-", 4) == 0) {
1329 strlcpy(drive->driver_req, s + 4, sizeof(drive->driver_req));
1330 goto done;
1331 }
1332 switch (match_parm(&s[3], hd_words, vals, 3)) {
1333 case -1: /* "none" */
1334 case -2: /* "noprobe" */
1335 drive->noprobe = 1;
1336 goto done;
1337 case -3: /* "nowerr" */
1338 drive->bad_wstat = BAD_R_STAT;
1339 hwif->noprobe = 0;
1340 goto done;
1341 case -4: /* "cdrom" */
1342 drive->present = 1;
1343 drive->media = ide_cdrom;
1344 /* an ATAPI device ignores DRDY */
1345 drive->ready_stat = 0;
1346 hwif->noprobe = 0;
1347 goto done;
c223701c
BZ
1348 case -5: /* nodma */
1349 drive->nodma = 1;
1350 goto done;
1da177e4
LT
1351 case -6: /* "autotune" */
1352 drive->autotune = IDE_TUNE_AUTO;
1353 goto obsolete_option;
1354 case -7: /* "noautotune" */
1355 drive->autotune = IDE_TUNE_NOAUTO;
1356 goto obsolete_option;
1357 case -9: /* "swapdata" */
1358 case -10: /* "bswap" */
1359 drive->bswap = 1;
1360 goto done;
36193484
JA
1361 case -11: /* noflush */
1362 drive->noflush = 1;
1363 goto done;
1da177e4
LT
1364 case -12: /* "remap" */
1365 drive->remap_0_to_1 = 1;
1366 goto done;
1367 case -13: /* "remap63" */
1368 drive->sect0 = 63;
1369 goto done;
1370 case -14: /* "scsi" */
1371 drive->scsi = 1;
1372 goto done;
1373 case 3: /* cyl,head,sect */
1374 drive->media = ide_disk;
1375 drive->ready_stat = READY_STAT;
1376 drive->cyl = drive->bios_cyl = vals[0];
1377 drive->head = drive->bios_head = vals[1];
1378 drive->sect = drive->bios_sect = vals[2];
1379 drive->present = 1;
1380 drive->forced_geom = 1;
1381 hwif->noprobe = 0;
1382 goto done;
1383 default:
1384 goto bad_option;
1385 }
1386 }
1387
1388 if (s[0] != 'i' || s[1] != 'd' || s[2] != 'e')
1389 goto bad_option;
1390 /*
1391 * Look for bus speed option: "idebus="
1392 */
1393 if (s[3] == 'b' && s[4] == 'u' && s[5] == 's') {
1394 if (match_parm(&s[6], NULL, vals, 1) != 1)
1395 goto bad_option;
1396 if (vals[0] >= 20 && vals[0] <= 66) {
1397 idebus_parameter = vals[0];
1398 } else
1399 printk(" -- BAD BUS SPEED! Expected value from 20 to 66");
1400 goto done;
1401 }
1402 /*
1403 * Look for interface options: "idex="
1404 */
1405 if (s[3] >= '0' && s[3] <= max_hwif) {
1406 /*
1407 * Be VERY CAREFUL changing this: note hardcoded indexes below
1408 * (-8, -9, -10) are reserved to ease the hardcoding.
1409 */
1410 static const char *ide_words[] = {
b6209a90 1411 "noprobe", "serialize", "minus3", "minus4",
1b516940 1412 "reset", "minus6", "ata66", "minus8", "minus9",
1da177e4
LT
1413 "minus10", "four", "qd65xx", "ht6560b", "cmd640_vlb",
1414 "dtc2278", "umc8672", "ali14xx", NULL };
9239b333
BZ
1415
1416 hw_regs_t hwregs;
1417
1da177e4
LT
1418 hw = s[3] - '0';
1419 hwif = &ide_hwifs[hw];
1420 i = match_parm(&s[4], ide_words, vals, 3);
1421
1422 /*
1423 * Cryptic check to ensure chipset not already set for hwif.
1424 * Note: we can't depend on hwif->chipset here.
1425 */
1426 if ((i >= -18 && i <= -11) || (i > 0 && i <= 3)) {
1427 /* chipset already specified */
1428 if (is_chipset_set[hw])
1429 goto bad_option;
1430 if (i > -18 && i <= -11) {
1431 /* these drivers are for "ide0=" only */
1432 if (hw != 0)
1433 goto bad_hwif;
1434 /* chipset already specified for 2nd port */
1435 if (is_chipset_set[hw+1])
1436 goto bad_option;
1437 }
1438 is_chipset_set[hw] = 1;
1439 printk("\n");
1440 }
1441
1442 switch (i) {
1443#ifdef CONFIG_BLK_DEV_ALI14XX
1444 case -17: /* "ali14xx" */
1445 probe_ali14xx = 1;
1446 goto done;
1447#endif
1448#ifdef CONFIG_BLK_DEV_UMC8672
1449 case -16: /* "umc8672" */
1450 probe_umc8672 = 1;
1451 goto done;
1452#endif
1453#ifdef CONFIG_BLK_DEV_DTC2278
1454 case -15: /* "dtc2278" */
1455 probe_dtc2278 = 1;
1456 goto done;
1457#endif
1458#ifdef CONFIG_BLK_DEV_CMD640
1459 case -14: /* "cmd640_vlb" */
1460 {
1461 extern int cmd640_vlb; /* flag for cmd640.c */
1462 cmd640_vlb = 1;
1463 goto done;
1464 }
1465#endif
1466#ifdef CONFIG_BLK_DEV_HT6560B
1467 case -13: /* "ht6560b" */
1468 probe_ht6560b = 1;
1469 goto done;
1470#endif
1471#ifdef CONFIG_BLK_DEV_QD65XX
1472 case -12: /* "qd65xx" */
1473 probe_qd65xx = 1;
1474 goto done;
1475#endif
1476#ifdef CONFIG_BLK_DEV_4DRIVES
1477 case -11: /* "four" drives on one set of ports */
1478 {
1479 ide_hwif_t *mate = &ide_hwifs[hw^1];
1480 mate->drives[0].select.all ^= 0x20;
1481 mate->drives[1].select.all ^= 0x20;
1482 hwif->chipset = mate->chipset = ide_4drives;
1483 mate->irq = hwif->irq;
1484 memcpy(mate->io_ports, hwif->io_ports, sizeof(hwif->io_ports));
b6209a90
BZ
1485 hwif->mate = mate;
1486 mate->mate = hwif;
1487 hwif->serialized = mate->serialized = 1;
1488 goto obsolete_option;
1da177e4
LT
1489 }
1490#endif /* CONFIG_BLK_DEV_4DRIVES */
1491 case -10: /* minus10 */
1492 case -9: /* minus9 */
1493 case -8: /* minus8 */
1b516940 1494 case -6:
b6209a90
BZ
1495 case -4:
1496 case -3:
1da177e4
LT
1497 goto bad_option;
1498 case -7: /* ata66 */
1499#ifdef CONFIG_BLK_DEV_IDEPCI
49521f97
BZ
1500 /*
1501 * Use ATA_CBL_PATA40_SHORT so drive side
1502 * cable detection is also overriden.
1503 */
1504 hwif->cbl = ATA_CBL_PATA40_SHORT;
1da177e4
LT
1505 goto obsolete_option;
1506#else
1507 goto bad_hwif;
1508#endif
1da177e4
LT
1509 case -5: /* "reset" */
1510 hwif->reset = 1;
1511 goto obsolete_option;
1da177e4 1512 case -2: /* "serialize" */
1da177e4
LT
1513 hwif->mate = &ide_hwifs[hw^1];
1514 hwif->mate->mate = hwif;
1515 hwif->serialized = hwif->mate->serialized = 1;
1516 goto obsolete_option;
1517
1518 case -1: /* "noprobe" */
1519 hwif->noprobe = 1;
1520 goto done;
1521
1522 case 1: /* base */
1523 vals[1] = vals[0] + 0x206; /* default ctl */
1524 case 2: /* base,ctl */
1525 vals[2] = 0; /* default irq = probe for it */
1526 case 3: /* base,ctl,irq */
9239b333
BZ
1527 memset(&hwregs, 0, sizeof(hwregs));
1528 ide_init_hwif_ports(&hwregs, vals[0], vals[1], &hwif->irq);
1529 memcpy(hwif->io_ports, hwregs.io_ports, sizeof(hwif->io_ports));
1da177e4
LT
1530 hwif->irq = vals[2];
1531 hwif->noprobe = 0;
1532 hwif->chipset = ide_forced;
1533 goto obsolete_option;
1534
1535 case 0: goto bad_option;
1536 default:
1537 printk(" -- SUPPORT NOT CONFIGURED IN THIS KERNEL\n");
1538 return 1;
1539 }
1540 }
1541bad_option:
1542 printk(" -- BAD OPTION\n");
1543 return 1;
1544obsolete_option:
1545 printk(" -- OBSOLETE OPTION, WILL BE REMOVED SOON!\n");
1546 return 1;
1547bad_hwif:
1548 printk("-- NOT SUPPORTED ON ide%d", hw);
1549done:
1550 printk("\n");
1551 return 1;
1552}
1553
eb797227
AV
1554extern void __init pnpide_init(void);
1555extern void __exit pnpide_exit(void);
1556extern void __init h8300_ide_init(void);
1da177e4
LT
1557
1558/*
1559 * probe_for_hwifs() finds/initializes "known" IDE interfaces
1560 */
1561static void __init probe_for_hwifs (void)
1562{
6d208b39 1563#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
1da177e4 1564 ide_scan_pcibus(ide_scan_direction);
6d208b39 1565#endif
1da177e4
LT
1566
1567#ifdef CONFIG_ETRAX_IDE
1568 {
1569 extern void init_e100_ide(void);
1570 init_e100_ide();
1571 }
1572#endif /* CONFIG_ETRAX_IDE */
1573#ifdef CONFIG_BLK_DEV_CMD640
1574 {
1575 extern void ide_probe_for_cmd640x(void);
1576 ide_probe_for_cmd640x();
1577 }
1578#endif /* CONFIG_BLK_DEV_CMD640 */
1579#ifdef CONFIG_BLK_DEV_IDE_PMAC
1580 {
9e5755bc
AM
1581 extern int pmac_ide_probe(void);
1582 (void)pmac_ide_probe();
1da177e4
LT
1583 }
1584#endif /* CONFIG_BLK_DEV_IDE_PMAC */
1585#ifdef CONFIG_BLK_DEV_GAYLE
1586 {
1587 extern void gayle_init(void);
1588 gayle_init();
1589 }
1590#endif /* CONFIG_BLK_DEV_GAYLE */
1591#ifdef CONFIG_BLK_DEV_FALCON_IDE
1592 {
1593 extern void falconide_init(void);
1594 falconide_init();
1595 }
1596#endif /* CONFIG_BLK_DEV_FALCON_IDE */
1597#ifdef CONFIG_BLK_DEV_MAC_IDE
1598 {
1599 extern void macide_init(void);
1600 macide_init();
1601 }
1602#endif /* CONFIG_BLK_DEV_MAC_IDE */
1603#ifdef CONFIG_BLK_DEV_Q40IDE
1604 {
1605 extern void q40ide_init(void);
1606 q40ide_init();
1607 }
1608#endif /* CONFIG_BLK_DEV_Q40IDE */
1609#ifdef CONFIG_BLK_DEV_BUDDHA
1610 {
1611 extern void buddha_init(void);
1612 buddha_init();
1613 }
1614#endif /* CONFIG_BLK_DEV_BUDDHA */
1615#ifdef CONFIG_BLK_DEV_IDEPNP
1616 pnpide_init();
1617#endif
1618#ifdef CONFIG_H8300
1619 h8300_ide_init();
1620#endif
1621}
1622
1da177e4
LT
1623/*
1624 * Probe module
1625 */
1626
1627EXPORT_SYMBOL(ide_lock);
1628
8604affd
BZ
1629static int ide_bus_match(struct device *dev, struct device_driver *drv)
1630{
1631 return 1;
1632}
1633
263756ec
KS
1634static char *media_string(ide_drive_t *drive)
1635{
1636 switch (drive->media) {
1637 case ide_disk:
1638 return "disk";
1639 case ide_cdrom:
1640 return "cdrom";
1641 case ide_tape:
1642 return "tape";
1643 case ide_floppy:
1644 return "floppy";
a7a832de
DK
1645 case ide_optical:
1646 return "optical";
263756ec
KS
1647 default:
1648 return "UNKNOWN";
1649 }
1650}
1651
1652static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
1653{
1654 ide_drive_t *drive = to_ide_device(dev);
1655 return sprintf(buf, "%s\n", media_string(drive));
1656}
1657
1658static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
1659{
1660 ide_drive_t *drive = to_ide_device(dev);
1661 return sprintf(buf, "%s\n", drive->name);
1662}
1663
1664static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
1665{
1666 ide_drive_t *drive = to_ide_device(dev);
1667 return sprintf(buf, "ide:m-%s\n", media_string(drive));
1668}
1669
e11b9035
BZ
1670static ssize_t model_show(struct device *dev, struct device_attribute *attr,
1671 char *buf)
1672{
1673 ide_drive_t *drive = to_ide_device(dev);
1674 return sprintf(buf, "%s\n", drive->id->model);
1675}
1676
1677static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
1678 char *buf)
1679{
1680 ide_drive_t *drive = to_ide_device(dev);
1681 return sprintf(buf, "%s\n", drive->id->fw_rev);
1682}
1683
1684static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
1685 char *buf)
1686{
1687 ide_drive_t *drive = to_ide_device(dev);
1688 return sprintf(buf, "%s\n", drive->id->serial_no);
1689}
1690
263756ec
KS
1691static struct device_attribute ide_dev_attrs[] = {
1692 __ATTR_RO(media),
1693 __ATTR_RO(drivename),
1694 __ATTR_RO(modalias),
e11b9035
BZ
1695 __ATTR_RO(model),
1696 __ATTR_RO(firmware),
1697 __ATTR(serial, 0400, serial_show, NULL),
263756ec
KS
1698 __ATTR_NULL
1699};
1700
7eff2e7a 1701static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
263756ec
KS
1702{
1703 ide_drive_t *drive = to_ide_device(dev);
7eff2e7a
KS
1704
1705 add_uevent_var(env, "MEDIA=%s", media_string(drive));
1706 add_uevent_var(env, "DRIVENAME=%s", drive->name);
1707 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
263756ec
KS
1708 return 0;
1709}
1710
4031bbe4
RK
1711static int generic_ide_probe(struct device *dev)
1712{
1713 ide_drive_t *drive = to_ide_device(dev);
1714 ide_driver_t *drv = to_ide_driver(dev->driver);
1715
1716 return drv->probe ? drv->probe(drive) : -ENODEV;
1717}
1718
1719static int generic_ide_remove(struct device *dev)
1720{
1721 ide_drive_t *drive = to_ide_device(dev);
1722 ide_driver_t *drv = to_ide_driver(dev->driver);
1723
1724 if (drv->remove)
1725 drv->remove(drive);
1726
1727 return 0;
1728}
1729
1730static void generic_ide_shutdown(struct device *dev)
1731{
1732 ide_drive_t *drive = to_ide_device(dev);
1733 ide_driver_t *drv = to_ide_driver(dev->driver);
1734
1735 if (dev->driver && drv->shutdown)
1736 drv->shutdown(drive);
1737}
1738
1da177e4
LT
1739struct bus_type ide_bus_type = {
1740 .name = "ide",
8604affd 1741 .match = ide_bus_match,
263756ec 1742 .uevent = ide_uevent,
4031bbe4
RK
1743 .probe = generic_ide_probe,
1744 .remove = generic_ide_remove,
1745 .shutdown = generic_ide_shutdown,
263756ec 1746 .dev_attrs = ide_dev_attrs,
1da177e4
LT
1747 .suspend = generic_ide_suspend,
1748 .resume = generic_ide_resume,
1749};
1750
8604affd
BZ
1751EXPORT_SYMBOL_GPL(ide_bus_type);
1752
1da177e4
LT
1753/*
1754 * This is gets invoked once during initialization, to set *everything* up
1755 */
1756static int __init ide_init(void)
1757{
349ae23f
RD
1758 int ret;
1759
1da177e4 1760 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver " REVISION "\n");
1da177e4
LT
1761 system_bus_speed = ide_system_bus_speed();
1762
349ae23f
RD
1763 ret = bus_register(&ide_bus_type);
1764 if (ret < 0) {
1765 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
1766 return ret;
1767 }
1da177e4
LT
1768
1769 init_ide_data();
1770
5cbf79cd 1771 proc_ide_create();
1da177e4
LT
1772
1773#ifdef CONFIG_BLK_DEV_ALI14XX
1774 if (probe_ali14xx)
1775 (void)ali14xx_init();
1776#endif
1777#ifdef CONFIG_BLK_DEV_UMC8672
1778 if (probe_umc8672)
1779 (void)umc8672_init();
1780#endif
1781#ifdef CONFIG_BLK_DEV_DTC2278
1782 if (probe_dtc2278)
1783 (void)dtc2278_init();
1784#endif
1785#ifdef CONFIG_BLK_DEV_HT6560B
1786 if (probe_ht6560b)
1787 (void)ht6560b_init();
1788#endif
1789#ifdef CONFIG_BLK_DEV_QD65XX
1790 if (probe_qd65xx)
1791 (void)qd65xx_init();
1792#endif
1793
1da177e4
LT
1794 /* Probe for special PCI and other "known" interface chipsets. */
1795 probe_for_hwifs();
1da177e4 1796
1da177e4
LT
1797 return 0;
1798}
1799
1800#ifdef MODULE
1801static char *options = NULL;
1802module_param(options, charp, 0);
1803MODULE_LICENSE("GPL");
1804
1805static void __init parse_options (char *line)
1806{
1807 char *next = line;
1808
1809 if (line == NULL || !*line)
1810 return;
1811 while ((line = next) != NULL) {
1812 if ((next = strchr(line,' ')) != NULL)
1813 *next++ = 0;
1814 if (!ide_setup(line))
1815 printk (KERN_INFO "Unknown option '%s'\n", line);
1816 }
1817}
1818
fbd8ad30 1819int __init init_module (void)
1da177e4
LT
1820{
1821 parse_options(options);
1822 return ide_init();
1823}
1824
eb797227 1825void __exit cleanup_module (void)
1da177e4
LT
1826{
1827 int index;
1828
1829 for (index = 0; index < MAX_HWIFS; ++index)
1830 ide_unregister(index);
1831
6855036a
TH
1832#ifdef CONFIG_BLK_DEV_IDEPNP
1833 pnpide_exit();
1834#endif
1835
1da177e4 1836 proc_ide_destroy();
1da177e4
LT
1837
1838 bus_unregister(&ide_bus_type);
1839}
1840
1841#else /* !MODULE */
1842
1843__setup("", ide_setup);
1844
1845module_init(ide_init);
1846
1847#endif /* MODULE */
This page took 0.59771 seconds and 5 git commands to generate.