2 * linux/drivers/ide/ide.c Version 7.00beta2 Mar 05 2003
4 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
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>
12 * See linux/MAINTAINERS for address of current maintainer.
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
17 * There can be up to two drives per interface, as per the ATA-2 spec.
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!
27 * | modified by Drew Eckhardt to check nr of hd's from the CMOS.
29 * | Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
30 * | in the early extended-partition checks and added DM partitions.
32 * | Early work on error handling by Mika Liljeberg (liljeber@cs.Helsinki.FI).
34 * | IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
35 * | and general streamlining by Mark Lord (mlord@pobox.com).
37 * October, 1994 -- Complete line-by-line overhaul for linux 1.1.x, by:
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)
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
48 #define REVISION "Revision: 7.00alpha2"
49 #define VERSION "Id: ide.c 7.00a2 20020906"
51 #define _IDE_C /* Tell ide.h it's really us */
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>
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>
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>
76 #include <asm/byteorder.h>
78 #include <asm/uaccess.h>
82 /* default maximum number of failures */
83 #define IDE_DEFAULT_MAX_FAILURES 1
85 static 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
};
91 static int idebus_parameter
; /* holds the "idebus=" parameter */
92 static int system_bus_speed
; /* holds what we think is VESA/PCI bus speed */
94 DEFINE_MUTEX(ide_cfg_mtx
);
95 __cacheline_aligned_in_smp
DEFINE_SPINLOCK(ide_lock
);
97 #ifdef CONFIG_IDEPCI_PCIBUS_ORDER
98 static int ide_scan_direction
; /* THIS was formerly 2.2.x pci=reverse */
103 EXPORT_SYMBOL(noautodma
);
105 #ifdef CONFIG_BLK_DEV_IDEACPI
107 int ide_noacpitfs
= 1;
108 int ide_noacpionboot
= 1;
112 * This is declared extern in ide.h, for access by other IDE modules:
114 ide_hwif_t ide_hwifs
[MAX_HWIFS
]; /* master data repository */
116 EXPORT_SYMBOL(ide_hwifs
);
119 * Do not even *think* about calling this!
121 static void init_hwif_data(ide_hwif_t
*hwif
, unsigned int index
)
125 /* bulk initialize hwif & drive info with zeros */
126 memset(hwif
, 0, sizeof(ide_hwif_t
));
128 /* fill in any non-zero initial values */
130 hwif
->major
= ide_hwif_to_major
[index
];
135 hwif
->name
[3] = '0' + index
;
137 hwif
->bus_state
= BUSSTATE_ON
;
139 hwif
->atapi_dma
= 0; /* disable all atapi dma */
141 init_completion(&hwif
->gendev_rel_comp
);
143 default_hwif_iops(hwif
);
144 default_hwif_transport(hwif
);
145 for (unit
= 0; unit
< MAX_DRIVES
; ++unit
) {
146 ide_drive_t
*drive
= &hwif
->drives
[unit
];
148 drive
->media
= ide_disk
;
149 drive
->select
.all
= (unit
<<4)|0xa0;
152 drive
->ready_stat
= READY_STAT
;
153 drive
->bad_wstat
= BAD_W_STAT
;
154 drive
->special
.b
.recalibrate
= 1;
155 drive
->special
.b
.set_geometry
= 1;
156 drive
->name
[0] = 'h';
157 drive
->name
[1] = 'd';
158 drive
->name
[2] = 'a' + (index
* MAX_DRIVES
) + unit
;
159 drive
->max_failures
= IDE_DEFAULT_MAX_FAILURES
;
160 drive
->using_dma
= 0;
162 INIT_LIST_HEAD(&drive
->list
);
163 init_completion(&drive
->gendev_rel_comp
);
167 static void init_hwif_default(ide_hwif_t
*hwif
, unsigned int index
)
171 memset(&hw
, 0, sizeof(hw_regs_t
));
173 ide_init_hwif_ports(&hw
, ide_default_io_base(index
), 0, &hwif
->irq
);
175 memcpy(&hwif
->hw
, &hw
, sizeof(hw
));
176 memcpy(hwif
->io_ports
, hw
.io_ports
, sizeof(hw
.io_ports
));
178 hwif
->noprobe
= !hwif
->io_ports
[IDE_DATA_OFFSET
];
179 #ifdef CONFIG_BLK_DEV_HD
180 if (hwif
->io_ports
[IDE_DATA_OFFSET
] == HD_DATA
)
181 hwif
->noprobe
= 1; /* may be overridden by ide_setup() */
185 extern void ide_arm_init(void);
188 * init_ide_data() sets reasonable default values into all fields
189 * of all instances of the hwifs and drives, but only on the first call.
190 * Subsequent calls have no effect (they don't wipe out anything).
192 * This routine is normally called at driver initialization time,
193 * but may also be called MUCH earlier during kernel "command-line"
194 * parameter processing. As such, we cannot depend on any other parts
195 * of the kernel (such as memory allocation) to be functioning yet.
197 * This is too bad, as otherwise we could dynamically allocate the
198 * ide_drive_t structs as needed, rather than always consuming memory
199 * for the max possible number (MAX_HWIFS * MAX_DRIVES) of them.
201 * FIXME: We should stuff the setup data into __init and copy the
202 * relevant hwifs/allocate them properly during boot.
204 #define MAGIC_COOKIE 0x12345678
205 static void __init
init_ide_data (void)
209 static unsigned long magic_cookie
= MAGIC_COOKIE
;
211 if (magic_cookie
!= MAGIC_COOKIE
)
212 return; /* already initialized */
215 /* Initialise all interface structures */
216 for (index
= 0; index
< MAX_HWIFS
; ++index
) {
217 hwif
= &ide_hwifs
[index
];
218 init_hwif_data(hwif
, index
);
219 init_hwif_default(hwif
, index
);
220 #if !defined(CONFIG_PPC32) || !defined(CONFIG_PCI)
221 hwif
->irq
= hwif
->hw
.irq
=
222 ide_init_default_irq(hwif
->io_ports
[IDE_DATA_OFFSET
]);
225 #ifdef CONFIG_IDE_ARM
231 * ide_system_bus_speed - guess bus speed
233 * ide_system_bus_speed() returns what we think is the system VESA/PCI
234 * bus speed (in MHz). This is used for calculating interface PIO timings.
235 * The default is 40 for known PCI systems, 50 otherwise.
236 * The "idebus=xx" parameter can be used to override this value.
237 * The actual value to be used is computed/displayed the first time
238 * through. Drivers should only use this as a last resort.
240 * Returns a guessed speed in MHz.
243 static int ide_system_bus_speed(void)
246 static struct pci_device_id pci_default
[] = {
247 { PCI_DEVICE(PCI_ANY_ID
, PCI_ANY_ID
) },
251 #define pci_default 0
252 #endif /* CONFIG_PCI */
254 if (!system_bus_speed
) {
255 if (idebus_parameter
) {
256 /* user supplied value */
257 system_bus_speed
= idebus_parameter
;
258 } else if (pci_dev_present(pci_default
)) {
259 /* safe default value for PCI */
260 system_bus_speed
= 33;
262 /* safe default value for VESA and PCI */
263 system_bus_speed
= 50;
265 printk(KERN_INFO
"ide: Assuming %dMHz system bus speed "
266 "for PIO modes%s\n", system_bus_speed
,
267 idebus_parameter
? "" : "; override with idebus=xx");
269 return system_bus_speed
;
272 static struct resource
* hwif_request_region(ide_hwif_t
*hwif
,
273 unsigned long addr
, int num
)
275 struct resource
*res
= request_region(addr
, num
, hwif
->name
);
278 printk(KERN_ERR
"%s: I/O resource 0x%lX-0x%lX not free.\n",
279 hwif
->name
, addr
, addr
+num
-1);
284 * ide_hwif_request_regions - request resources for IDE
285 * @hwif: interface to use
287 * Requests all the needed resources for an interface.
288 * Right now core IDE code does this work which is deeply wrong.
289 * MMIO leaves it to the controller driver,
290 * PIO will migrate this way over time.
293 int ide_hwif_request_regions(ide_hwif_t
*hwif
)
300 addr
= hwif
->io_ports
[IDE_CONTROL_OFFSET
];
301 if (addr
&& !hwif_request_region(hwif
, addr
, 1))
302 goto control_region_busy
;
304 addr
= hwif
->io_ports
[IDE_DATA_OFFSET
];
305 if ((addr
| 7) == hwif
->io_ports
[IDE_STATUS_OFFSET
]) {
306 if (!hwif_request_region(hwif
, addr
, 8))
307 goto data_region_busy
;
311 for (i
= IDE_DATA_OFFSET
; i
<= IDE_STATUS_OFFSET
; i
++) {
312 addr
= hwif
->io_ports
[i
];
313 if (!hwif_request_region(hwif
, addr
, 1)) {
315 release_region(addr
, 1);
316 goto data_region_busy
;
322 addr
= hwif
->io_ports
[IDE_CONTROL_OFFSET
];
324 release_region(addr
, 1);
326 /* If any errors are return, we drop the hwif interface. */
331 * ide_hwif_release_regions - free IDE resources
333 * Note that we only release the standard ports,
334 * and do not even try to handle any extra ports
335 * allocated for weird IDE interface chipsets.
337 * Note also that we don't yet handle mmio resources here. More
338 * importantly our caller should be doing this so we need to
339 * restructure this as a helper function for drivers.
342 void ide_hwif_release_regions(ide_hwif_t
*hwif
)
348 if (hwif
->io_ports
[IDE_CONTROL_OFFSET
])
349 release_region(hwif
->io_ports
[IDE_CONTROL_OFFSET
], 1);
350 if (hwif
->straight8
) {
351 release_region(hwif
->io_ports
[IDE_DATA_OFFSET
], 8);
354 for (i
= IDE_DATA_OFFSET
; i
<= IDE_STATUS_OFFSET
; i
++)
355 if (hwif
->io_ports
[i
])
356 release_region(hwif
->io_ports
[i
], 1);
360 * ide_hwif_restore - restore hwif to template
361 * @hwif: hwif to update
362 * @tmp_hwif: template
364 * Restore hwif to a previous state by copying most settings
368 static void ide_hwif_restore(ide_hwif_t
*hwif
, ide_hwif_t
*tmp_hwif
)
370 hwif
->hwgroup
= tmp_hwif
->hwgroup
;
372 hwif
->gendev
.parent
= tmp_hwif
->gendev
.parent
;
374 hwif
->proc
= tmp_hwif
->proc
;
376 hwif
->major
= tmp_hwif
->major
;
377 hwif
->straight8
= tmp_hwif
->straight8
;
378 hwif
->bus_state
= tmp_hwif
->bus_state
;
380 hwif
->host_flags
= tmp_hwif
->host_flags
;
382 hwif
->pio_mask
= tmp_hwif
->pio_mask
;
384 hwif
->atapi_dma
= tmp_hwif
->atapi_dma
;
385 hwif
->ultra_mask
= tmp_hwif
->ultra_mask
;
386 hwif
->mwdma_mask
= tmp_hwif
->mwdma_mask
;
387 hwif
->swdma_mask
= tmp_hwif
->swdma_mask
;
389 hwif
->cbl
= tmp_hwif
->cbl
;
391 hwif
->chipset
= tmp_hwif
->chipset
;
392 hwif
->hold
= tmp_hwif
->hold
;
394 #ifdef CONFIG_BLK_DEV_IDEPCI
395 hwif
->pci_dev
= tmp_hwif
->pci_dev
;
396 hwif
->cds
= tmp_hwif
->cds
;
399 hwif
->tuneproc
= tmp_hwif
->tuneproc
;
400 hwif
->speedproc
= tmp_hwif
->speedproc
;
401 hwif
->udma_filter
= tmp_hwif
->udma_filter
;
402 hwif
->selectproc
= tmp_hwif
->selectproc
;
403 hwif
->reset_poll
= tmp_hwif
->reset_poll
;
404 hwif
->pre_reset
= tmp_hwif
->pre_reset
;
405 hwif
->resetproc
= tmp_hwif
->resetproc
;
406 hwif
->intrproc
= tmp_hwif
->intrproc
;
407 hwif
->maskproc
= tmp_hwif
->maskproc
;
408 hwif
->quirkproc
= tmp_hwif
->quirkproc
;
409 hwif
->busproc
= tmp_hwif
->busproc
;
411 hwif
->ata_input_data
= tmp_hwif
->ata_input_data
;
412 hwif
->ata_output_data
= tmp_hwif
->ata_output_data
;
413 hwif
->atapi_input_bytes
= tmp_hwif
->atapi_input_bytes
;
414 hwif
->atapi_output_bytes
= tmp_hwif
->atapi_output_bytes
;
416 hwif
->dma_setup
= tmp_hwif
->dma_setup
;
417 hwif
->dma_exec_cmd
= tmp_hwif
->dma_exec_cmd
;
418 hwif
->dma_start
= tmp_hwif
->dma_start
;
419 hwif
->ide_dma_end
= tmp_hwif
->ide_dma_end
;
420 hwif
->ide_dma_check
= tmp_hwif
->ide_dma_check
;
421 hwif
->ide_dma_on
= tmp_hwif
->ide_dma_on
;
422 hwif
->dma_off_quietly
= tmp_hwif
->dma_off_quietly
;
423 hwif
->ide_dma_test_irq
= tmp_hwif
->ide_dma_test_irq
;
424 hwif
->ide_dma_clear_irq
= tmp_hwif
->ide_dma_clear_irq
;
425 hwif
->dma_host_on
= tmp_hwif
->dma_host_on
;
426 hwif
->dma_host_off
= tmp_hwif
->dma_host_off
;
427 hwif
->dma_lost_irq
= tmp_hwif
->dma_lost_irq
;
428 hwif
->dma_timeout
= tmp_hwif
->dma_timeout
;
430 hwif
->OUTB
= tmp_hwif
->OUTB
;
431 hwif
->OUTBSYNC
= tmp_hwif
->OUTBSYNC
;
432 hwif
->OUTW
= tmp_hwif
->OUTW
;
433 hwif
->OUTSW
= tmp_hwif
->OUTSW
;
434 hwif
->OUTSL
= tmp_hwif
->OUTSL
;
436 hwif
->INB
= tmp_hwif
->INB
;
437 hwif
->INW
= tmp_hwif
->INW
;
438 hwif
->INSW
= tmp_hwif
->INSW
;
439 hwif
->INSL
= tmp_hwif
->INSL
;
441 hwif
->sg_max_nents
= tmp_hwif
->sg_max_nents
;
443 hwif
->mmio
= tmp_hwif
->mmio
;
444 hwif
->rqsize
= tmp_hwif
->rqsize
;
445 hwif
->no_lba48
= tmp_hwif
->no_lba48
;
447 #ifndef CONFIG_BLK_DEV_IDECS
448 hwif
->irq
= tmp_hwif
->irq
;
451 hwif
->dma_base
= tmp_hwif
->dma_base
;
452 hwif
->dma_master
= tmp_hwif
->dma_master
;
453 hwif
->dma_command
= tmp_hwif
->dma_command
;
454 hwif
->dma_vendor1
= tmp_hwif
->dma_vendor1
;
455 hwif
->dma_status
= tmp_hwif
->dma_status
;
456 hwif
->dma_vendor3
= tmp_hwif
->dma_vendor3
;
457 hwif
->dma_prdtable
= tmp_hwif
->dma_prdtable
;
459 hwif
->config_data
= tmp_hwif
->config_data
;
460 hwif
->select_data
= tmp_hwif
->select_data
;
461 hwif
->extra_base
= tmp_hwif
->extra_base
;
462 hwif
->extra_ports
= tmp_hwif
->extra_ports
;
463 hwif
->autodma
= tmp_hwif
->autodma
;
465 hwif
->hwif_data
= tmp_hwif
->hwif_data
;
469 * ide_unregister - free an IDE interface
470 * @index: index of interface (will change soon to a pointer)
472 * Perform the final unregister of an IDE interface. At the moment
473 * we don't refcount interfaces so this will also get split up.
476 * The caller must not hold the IDE locks
477 * The drive present/vanishing is not yet properly locked
478 * Take care with the callbacks. These have been split to avoid
479 * deadlocking the IDE layer. The shutdown callback is called
480 * before we take the lock and free resources. It is up to the
481 * caller to be sure there is no pending I/O here, and that
482 * the interface will not be reopened (present/vanishing locking
483 * isn't yet done BTW). After we commit to the final kill we
484 * call the cleanup callback with the ide locks held.
486 * Unregister restores the hwif structures to the default state.
487 * This is raving bonkers.
490 void ide_unregister(unsigned int index
)
493 ide_hwif_t
*hwif
, *g
;
494 static ide_hwif_t tmp_hwif
; /* protected by ide_cfg_mtx */
495 ide_hwgroup_t
*hwgroup
;
496 int irq_count
= 0, unit
;
498 BUG_ON(index
>= MAX_HWIFS
);
500 BUG_ON(in_interrupt());
501 BUG_ON(irqs_disabled());
502 mutex_lock(&ide_cfg_mtx
);
503 spin_lock_irq(&ide_lock
);
504 hwif
= &ide_hwifs
[index
];
507 for (unit
= 0; unit
< MAX_DRIVES
; ++unit
) {
508 drive
= &hwif
->drives
[unit
];
511 spin_unlock_irq(&ide_lock
);
512 device_unregister(&drive
->gendev
);
513 wait_for_completion(&drive
->gendev_rel_comp
);
514 spin_lock_irq(&ide_lock
);
518 spin_unlock_irq(&ide_lock
);
520 ide_proc_unregister_port(hwif
);
522 hwgroup
= hwif
->hwgroup
;
524 * free the irq if we were the only hwif using it
528 if (g
->irq
== hwif
->irq
)
531 } while (g
!= hwgroup
->hwif
);
533 free_irq(hwif
->irq
, hwgroup
);
535 spin_lock_irq(&ide_lock
);
537 * Note that we only release the standard ports,
538 * and do not even try to handle any extra ports
539 * allocated for weird IDE interface chipsets.
541 ide_hwif_release_regions(hwif
);
544 * Remove us from the hwgroup, and free
545 * the hwgroup if we were the only member
547 if (hwif
->next
== hwif
) {
548 BUG_ON(hwgroup
->hwif
!= hwif
);
551 /* There is another interface in hwgroup.
552 * Unlink us, and set hwgroup->drive and ->hwif to
556 while (g
->next
!= hwif
)
558 g
->next
= hwif
->next
;
559 if (hwgroup
->hwif
== hwif
) {
560 /* Chose a random hwif for hwgroup->hwif.
561 * It's guaranteed that there are no drives
562 * left in the hwgroup.
564 BUG_ON(hwgroup
->drive
!= NULL
);
567 BUG_ON(hwgroup
->hwif
== hwif
);
570 /* More messed up locking ... */
571 spin_unlock_irq(&ide_lock
);
572 device_unregister(&hwif
->gendev
);
573 wait_for_completion(&hwif
->gendev_rel_comp
);
576 * Remove us from the kernel's knowledge
578 blk_unregister_region(MKDEV(hwif
->major
, 0), MAX_DRIVES
<<PARTN_BITS
);
579 kfree(hwif
->sg_table
);
580 unregister_blkdev(hwif
->major
, hwif
->name
);
581 spin_lock_irq(&ide_lock
);
583 if (hwif
->dma_base
) {
584 (void) ide_release_dma(hwif
);
587 hwif
->dma_master
= 0;
588 hwif
->dma_command
= 0;
589 hwif
->dma_vendor1
= 0;
590 hwif
->dma_status
= 0;
591 hwif
->dma_vendor3
= 0;
592 hwif
->dma_prdtable
= 0;
594 hwif
->extra_base
= 0;
595 hwif
->extra_ports
= 0;
598 /* copy original settings */
601 /* restore hwif data to pristine status */
602 init_hwif_data(hwif
, index
);
603 init_hwif_default(hwif
, index
);
605 ide_hwif_restore(hwif
, &tmp_hwif
);
608 spin_unlock_irq(&ide_lock
);
609 mutex_unlock(&ide_cfg_mtx
);
612 EXPORT_SYMBOL(ide_unregister
);
616 * ide_setup_ports - set up IDE interface ports
617 * @hw: register descriptions
618 * @base: base register
619 * @offsets: table of register offsets
620 * @ctrl: control register
622 * @irq: interrupt lie
624 * Setup hw_regs_t structure described by parameters. You
625 * may set up the hw structure yourself OR use this routine to
626 * do it for you. This is basically a helper
630 void ide_setup_ports ( hw_regs_t
*hw
,
631 unsigned long base
, int *offsets
,
632 unsigned long ctrl
, unsigned long intr
,
633 ide_ack_intr_t
*ack_intr
,
635 * ide_io_ops_t *iops,
641 memset(hw
, 0, sizeof(hw_regs_t
));
642 for (i
= 0; i
< IDE_NR_PORTS
; i
++) {
643 if (offsets
[i
] == -1) {
645 case IDE_CONTROL_OFFSET
:
646 hw
->io_ports
[i
] = ctrl
;
648 #if defined(CONFIG_AMIGA) || defined(CONFIG_MAC)
650 hw
->io_ports
[i
] = intr
;
652 #endif /* (CONFIG_AMIGA) || (CONFIG_MAC) */
658 hw
->io_ports
[i
] = base
+ offsets
[i
];
663 hw
->ack_intr
= ack_intr
;
670 * ide_register_hw_with_fixup - register IDE interface
671 * @hw: hardware registers
672 * @initializing: set while initializing built-in drivers
673 * @hwifp: pointer to returned hwif
674 * @fixup: fixup function
676 * Register an IDE interface, specifying exactly the registers etc.
677 * Set init=1 iff calling before probes have taken place.
679 * Returns -1 on error.
682 int ide_register_hw_with_fixup(hw_regs_t
*hw
, int initializing
,
684 void(*fixup
)(ide_hwif_t
*hwif
))
686 int index
, retry
= 1;
690 for (index
= 0; index
< MAX_HWIFS
; ++index
) {
691 hwif
= &ide_hwifs
[index
];
692 if (hwif
->hw
.io_ports
[IDE_DATA_OFFSET
] == hw
->io_ports
[IDE_DATA_OFFSET
])
695 for (index
= 0; index
< MAX_HWIFS
; ++index
) {
696 hwif
= &ide_hwifs
[index
];
699 if ((!hwif
->present
&& !hwif
->mate
&& !initializing
) ||
700 (!hwif
->hw
.io_ports
[IDE_DATA_OFFSET
] && initializing
))
703 for (index
= 0; index
< MAX_HWIFS
; index
++)
704 ide_unregister(index
);
709 ide_unregister(index
);
710 else if (!hwif
->hold
) {
711 init_hwif_data(hwif
, index
);
712 init_hwif_default(hwif
, index
);
716 memcpy(&hwif
->hw
, hw
, sizeof(*hw
));
717 memcpy(hwif
->io_ports
, hwif
->hw
.io_ports
, sizeof(hwif
->hw
.io_ports
));
720 hwif
->chipset
= hw
->chipset
;
721 hwif
->gendev
.parent
= hw
->dev
;
724 probe_hwif_init_with_fixup(hwif
, fixup
);
725 ide_proc_register_port(hwif
);
731 return (initializing
|| hwif
->present
) ? index
: -1;
734 EXPORT_SYMBOL(ide_register_hw_with_fixup
);
736 int ide_register_hw(hw_regs_t
*hw
, int initializing
, ide_hwif_t
**hwifp
)
738 return ide_register_hw_with_fixup(hw
, initializing
, hwifp
, NULL
);
741 EXPORT_SYMBOL(ide_register_hw
);
744 * Locks for IDE setting functionality
747 DEFINE_MUTEX(ide_setting_mtx
);
749 EXPORT_SYMBOL_GPL(ide_setting_mtx
);
752 * ide_spin_wait_hwgroup - wait for group
753 * @drive: drive in the group
755 * Wait for an IDE device group to go non busy and then return
756 * holding the ide_lock which guards the hwgroup->busy status
757 * and right to use it.
760 int ide_spin_wait_hwgroup (ide_drive_t
*drive
)
762 ide_hwgroup_t
*hwgroup
= HWGROUP(drive
);
763 unsigned long timeout
= jiffies
+ (3 * HZ
);
765 spin_lock_irq(&ide_lock
);
767 while (hwgroup
->busy
) {
768 unsigned long lflags
;
769 spin_unlock_irq(&ide_lock
);
770 local_irq_set(lflags
);
771 if (time_after(jiffies
, timeout
)) {
772 local_irq_restore(lflags
);
773 printk(KERN_ERR
"%s: channel busy\n", drive
->name
);
776 local_irq_restore(lflags
);
777 spin_lock_irq(&ide_lock
);
782 EXPORT_SYMBOL(ide_spin_wait_hwgroup
);
784 int set_io_32bit(ide_drive_t
*drive
, int arg
)
786 if (drive
->no_io_32bit
)
789 if (arg
< 0 || arg
> 1 + (SUPPORT_VLB_SYNC
<< 1))
792 drive
->io_32bit
= arg
;
793 #ifdef CONFIG_BLK_DEV_DTC2278
794 if (HWIF(drive
)->chipset
== ide_dtc2278
)
795 HWIF(drive
)->drives
[!drive
->select
.b
.unit
].io_32bit
= arg
;
796 #endif /* CONFIG_BLK_DEV_DTC2278 */
800 static int set_ksettings(ide_drive_t
*drive
, int arg
)
802 if (arg
< 0 || arg
> 1)
805 if (ide_spin_wait_hwgroup(drive
))
807 drive
->keep_settings
= arg
;
808 spin_unlock_irq(&ide_lock
);
813 int set_using_dma(ide_drive_t
*drive
, int arg
)
815 #ifdef CONFIG_BLK_DEV_IDEDMA
816 ide_hwif_t
*hwif
= drive
->hwif
;
819 if (arg
< 0 || arg
> 1)
822 if (!drive
->id
|| !(drive
->id
->capability
& 1))
825 if (hwif
->ide_dma_check
== NULL
)
829 if (ide_spin_wait_hwgroup(drive
))
832 * set ->busy flag, unlock and let it ride
834 hwif
->hwgroup
->busy
= 1;
835 spin_unlock_irq(&ide_lock
);
840 hwif
->dma_off_quietly(drive
);
841 if (ide_set_dma(drive
) || hwif
->ide_dma_on(drive
))
847 * lock, clear ->busy flag and unlock before leaving
849 spin_lock_irq(&ide_lock
);
850 hwif
->hwgroup
->busy
= 0;
851 spin_unlock_irq(&ide_lock
);
855 if (arg
< 0 || arg
> 1)
862 int set_pio_mode(ide_drive_t
*drive
, int arg
)
866 if (arg
< 0 || arg
> 255)
869 if (!HWIF(drive
)->tuneproc
)
871 if (drive
->special
.b
.set_tune
)
873 ide_init_drive_cmd(&rq
);
874 drive
->tune_req
= (u8
) arg
;
875 drive
->special
.b
.set_tune
= 1;
876 (void) ide_do_drive_cmd(drive
, &rq
, ide_wait
);
880 static int set_unmaskirq(ide_drive_t
*drive
, int arg
)
882 if (drive
->no_unmask
)
885 if (arg
< 0 || arg
> 1)
888 if (ide_spin_wait_hwgroup(drive
))
891 spin_unlock_irq(&ide_lock
);
897 * system_bus_clock - clock guess
899 * External version of the bus clock guess used by very old IDE drivers
900 * for things like VLB timings. Should not be used.
903 int system_bus_clock (void)
905 return((int) ((!system_bus_speed
) ? ide_system_bus_speed() : system_bus_speed
));
908 EXPORT_SYMBOL(system_bus_clock
);
910 static int generic_ide_suspend(struct device
*dev
, pm_message_t mesg
)
912 ide_drive_t
*drive
= dev
->driver_data
;
913 ide_hwif_t
*hwif
= HWIF(drive
);
915 struct request_pm_state rqpm
;
918 /* Call ACPI _GTM only once */
919 if (!(drive
->dn
% 2))
920 ide_acpi_get_timing(hwif
);
922 memset(&rq
, 0, sizeof(rq
));
923 memset(&rqpm
, 0, sizeof(rqpm
));
924 memset(&args
, 0, sizeof(args
));
925 rq
.cmd_type
= REQ_TYPE_PM_SUSPEND
;
928 rqpm
.pm_step
= ide_pm_state_start_suspend
;
929 if (mesg
.event
== PM_EVENT_PRETHAW
)
930 mesg
.event
= PM_EVENT_FREEZE
;
931 rqpm
.pm_state
= mesg
.event
;
933 return ide_do_drive_cmd(drive
, &rq
, ide_wait
);
936 static int generic_ide_resume(struct device
*dev
)
938 ide_drive_t
*drive
= dev
->driver_data
;
939 ide_hwif_t
*hwif
= HWIF(drive
);
941 struct request_pm_state rqpm
;
945 /* Call ACPI _STM only once */
946 if (!(drive
->dn
% 2))
947 ide_acpi_push_timing(hwif
);
949 ide_acpi_exec_tfs(drive
);
951 memset(&rq
, 0, sizeof(rq
));
952 memset(&rqpm
, 0, sizeof(rqpm
));
953 memset(&args
, 0, sizeof(args
));
954 rq
.cmd_type
= REQ_TYPE_PM_RESUME
;
957 rqpm
.pm_step
= ide_pm_state_start_resume
;
958 rqpm
.pm_state
= PM_EVENT_ON
;
960 err
= ide_do_drive_cmd(drive
, &rq
, ide_head_wait
);
962 if (err
== 0 && dev
->driver
) {
963 ide_driver_t
*drv
= to_ide_driver(dev
->driver
);
972 int generic_ide_ioctl(ide_drive_t
*drive
, struct file
*file
, struct block_device
*bdev
,
973 unsigned int cmd
, unsigned long arg
)
977 void __user
*p
= (void __user
*)arg
;
978 int err
= 0, (*setfunc
)(ide_drive_t
*, int);
982 case HDIO_GET_32BIT
: val
= &drive
->io_32bit
; goto read_val
;
983 case HDIO_GET_KEEPSETTINGS
: val
= &drive
->keep_settings
; goto read_val
;
984 case HDIO_GET_UNMASKINTR
: val
= &drive
->unmask
; goto read_val
;
985 case HDIO_GET_DMA
: val
= &drive
->using_dma
; goto read_val
;
986 case HDIO_SET_32BIT
: setfunc
= set_io_32bit
; goto set_val
;
987 case HDIO_SET_KEEPSETTINGS
: setfunc
= set_ksettings
; goto set_val
;
988 case HDIO_SET_PIO_MODE
: setfunc
= set_pio_mode
; goto set_val
;
989 case HDIO_SET_UNMASKINTR
: setfunc
= set_unmaskirq
; goto set_val
;
990 case HDIO_SET_DMA
: setfunc
= set_using_dma
; goto set_val
;
994 case HDIO_OBSOLETE_IDENTITY
:
995 case HDIO_GET_IDENTITY
:
996 if (bdev
!= bdev
->bd_contains
)
998 if (drive
->id_read
== 0)
1000 if (copy_to_user(p
, drive
->id
, (cmd
== HDIO_GET_IDENTITY
) ? sizeof(*drive
->id
) : 142))
1005 return put_user(drive
->dsc_overlap
<< IDE_NICE_DSC_OVERLAP
|
1006 drive
->atapi_overlap
<< IDE_NICE_ATAPI_OVERLAP
|
1007 drive
->nice0
<< IDE_NICE_0
|
1008 drive
->nice1
<< IDE_NICE_1
|
1009 drive
->nice2
<< IDE_NICE_2
,
1010 (long __user
*) arg
);
1012 #ifdef CONFIG_IDE_TASK_IOCTL
1013 case HDIO_DRIVE_TASKFILE
:
1014 if (!capable(CAP_SYS_ADMIN
) || !capable(CAP_SYS_RAWIO
))
1016 switch(drive
->media
) {
1018 return ide_taskfile_ioctl(drive
, cmd
, arg
);
1022 #endif /* CONFIG_IDE_TASK_IOCTL */
1024 case HDIO_DRIVE_CMD
:
1025 if (!capable(CAP_SYS_RAWIO
))
1027 return ide_cmd_ioctl(drive
, cmd
, arg
);
1029 case HDIO_DRIVE_TASK
:
1030 if (!capable(CAP_SYS_RAWIO
))
1032 return ide_task_ioctl(drive
, cmd
, arg
);
1034 case HDIO_SCAN_HWIF
:
1038 if (!capable(CAP_SYS_RAWIO
)) return -EACCES
;
1039 if (copy_from_user(args
, p
, 3 * sizeof(int)))
1041 memset(&hw
, 0, sizeof(hw
));
1042 ide_init_hwif_ports(&hw
, (unsigned long) args
[0],
1043 (unsigned long) args
[1], NULL
);
1045 if (ide_register_hw(&hw
, 0, NULL
) == -1)
1049 case HDIO_UNREGISTER_HWIF
:
1050 if (!capable(CAP_SYS_RAWIO
)) return -EACCES
;
1051 /* (arg > MAX_HWIFS) checked in function */
1052 ide_unregister(arg
);
1055 if (!capable(CAP_SYS_ADMIN
)) return -EACCES
;
1056 if (arg
!= (arg
& ((1 << IDE_NICE_DSC_OVERLAP
) | (1 << IDE_NICE_1
))))
1058 drive
->dsc_overlap
= (arg
>> IDE_NICE_DSC_OVERLAP
) & 1;
1059 drv
= *(ide_driver_t
**)bdev
->bd_disk
->private_data
;
1060 if (drive
->dsc_overlap
&& !drv
->supports_dsc_overlap
) {
1061 drive
->dsc_overlap
= 0;
1064 drive
->nice1
= (arg
>> IDE_NICE_1
) & 1;
1066 case HDIO_DRIVE_RESET
:
1068 unsigned long flags
;
1069 if (!capable(CAP_SYS_ADMIN
)) return -EACCES
;
1072 * Abort the current command on the
1073 * group if there is one, taking
1074 * care not to allow anything else
1075 * to be queued and to die on the
1076 * spot if we miss one somehow
1079 spin_lock_irqsave(&ide_lock
, flags
);
1081 if (HWGROUP(drive
)->resetting
) {
1082 spin_unlock_irqrestore(&ide_lock
, flags
);
1086 ide_abort(drive
, "drive reset");
1088 BUG_ON(HWGROUP(drive
)->handler
);
1090 /* Ensure nothing gets queued after we
1091 drop the lock. Reset will clear the busy */
1093 HWGROUP(drive
)->busy
= 1;
1094 spin_unlock_irqrestore(&ide_lock
, flags
);
1095 (void) ide_do_reset(drive
);
1100 case HDIO_GET_BUSSTATE
:
1101 if (!capable(CAP_SYS_ADMIN
))
1103 if (put_user(HWIF(drive
)->bus_state
, (long __user
*)arg
))
1107 case HDIO_SET_BUSSTATE
:
1108 if (!capable(CAP_SYS_ADMIN
))
1110 if (HWIF(drive
)->busproc
)
1111 return HWIF(drive
)->busproc(drive
, (int)arg
);
1118 mutex_lock(&ide_setting_mtx
);
1119 spin_lock_irqsave(&ide_lock
, flags
);
1121 spin_unlock_irqrestore(&ide_lock
, flags
);
1122 mutex_unlock(&ide_setting_mtx
);
1123 return err
>= 0 ? put_user(err
, (long __user
*)arg
) : err
;
1126 if (bdev
!= bdev
->bd_contains
)
1129 if (!capable(CAP_SYS_ADMIN
))
1132 mutex_lock(&ide_setting_mtx
);
1133 err
= setfunc(drive
, arg
);
1134 mutex_unlock(&ide_setting_mtx
);
1140 EXPORT_SYMBOL(generic_ide_ioctl
);
1143 * stridx() returns the offset of c within s,
1144 * or -1 if c is '\0' or not found within s.
1146 static int __init
stridx (const char *s
, char c
)
1148 char *i
= strchr(s
, c
);
1149 return (i
&& c
) ? i
- s
: -1;
1153 * match_parm() does parsing for ide_setup():
1155 * 1. the first char of s must be '='.
1156 * 2. if the remainder matches one of the supplied keywords,
1157 * the index (1 based) of the keyword is negated and returned.
1158 * 3. if the remainder is a series of no more than max_vals numbers
1159 * separated by commas, the numbers are saved in vals[] and a
1160 * count of how many were saved is returned. Base10 is assumed,
1161 * and base16 is allowed when prefixed with "0x".
1162 * 4. otherwise, zero is returned.
1164 static int __init
match_parm (char *s
, const char *keywords
[], int vals
[], int max_vals
)
1166 static const char *decimal
= "0123456789";
1167 static const char *hex
= "0123456789abcdef";
1172 * Try matching against the supplied keywords,
1173 * and return -(index+1) if we match one
1175 if (keywords
!= NULL
) {
1176 for (i
= 0; *keywords
!= NULL
; ++i
) {
1177 if (!strcmp(s
, *keywords
++))
1182 * Look for a series of no more than "max_vals"
1183 * numeric values separated by commas, in base10,
1184 * or base16 when prefixed with "0x".
1185 * Return a count of how many were found.
1187 for (n
= 0; (i
= stridx(decimal
, *s
)) >= 0;) {
1189 while ((i
= stridx(decimal
, *++s
)) >= 0)
1190 vals
[n
] = (vals
[n
] * 10) + i
;
1191 if (*s
== 'x' && !vals
[n
]) {
1192 while ((i
= stridx(hex
, *++s
)) >= 0)
1193 vals
[n
] = (vals
[n
] * 0x10) + i
;
1195 if (++n
== max_vals
)
1197 if (*s
== ',' || *s
== ';')
1203 return 0; /* zero = nothing matched */
1206 #ifdef CONFIG_BLK_DEV_ALI14XX
1207 extern int probe_ali14xx
;
1208 extern int ali14xx_init(void);
1210 #ifdef CONFIG_BLK_DEV_UMC8672
1211 extern int probe_umc8672
;
1212 extern int umc8672_init(void);
1214 #ifdef CONFIG_BLK_DEV_DTC2278
1215 extern int probe_dtc2278
;
1216 extern int dtc2278_init(void);
1218 #ifdef CONFIG_BLK_DEV_HT6560B
1219 extern int probe_ht6560b
;
1220 extern int ht6560b_init(void);
1222 #ifdef CONFIG_BLK_DEV_QD65XX
1223 extern int probe_qd65xx
;
1224 extern int qd65xx_init(void);
1227 static int __initdata is_chipset_set
[MAX_HWIFS
];
1230 * ide_setup() gets called VERY EARLY during initialization,
1231 * to handle kernel "command line" strings beginning with "hdx=" or "ide".
1233 * Remember to update Documentation/ide.txt if you change something here.
1235 static int __init
ide_setup(char *s
)
1240 unsigned int hw
, unit
;
1241 const char max_drive
= 'a' + ((MAX_HWIFS
* MAX_DRIVES
) - 1);
1242 const char max_hwif
= '0' + (MAX_HWIFS
- 1);
1245 if (strncmp(s
,"hd",2) == 0 && s
[2] == '=') /* hd= is for hd.c */
1246 return 0; /* driver and not us */
1248 if (strncmp(s
,"ide",3) && strncmp(s
,"idebus",6) && strncmp(s
,"hd",2))
1251 printk(KERN_INFO
"ide_setup: %s", s
);
1254 #ifdef CONFIG_BLK_DEV_IDEDOUBLER
1255 if (!strcmp(s
, "ide=doubler")) {
1256 extern int ide_doubler
;
1258 printk(" : Enabled support for IDE doublers\n");
1262 #endif /* CONFIG_BLK_DEV_IDEDOUBLER */
1264 if (!strcmp(s
, "ide=nodma")) {
1265 printk(" : Prevented DMA\n");
1270 #ifdef CONFIG_IDEPCI_PCIBUS_ORDER
1271 if (!strcmp(s
, "ide=reverse")) {
1272 ide_scan_direction
= 1;
1273 printk(" : Enabled support for IDE inverse scan order.\n");
1278 #ifdef CONFIG_BLK_DEV_IDEACPI
1279 if (!strcmp(s
, "ide=noacpi")) {
1280 //printk(" : Disable IDE ACPI support.\n");
1284 if (!strcmp(s
, "ide=acpigtf")) {
1285 //printk(" : Enable IDE ACPI _GTF support.\n");
1289 if (!strcmp(s
, "ide=acpionboot")) {
1290 //printk(" : Call IDE ACPI methods on boot.\n");
1291 ide_noacpionboot
= 0;
1294 #endif /* CONFIG_BLK_DEV_IDEACPI */
1297 * Look for drive options: "hdx="
1299 if (s
[0] == 'h' && s
[1] == 'd' && s
[2] >= 'a' && s
[2] <= max_drive
) {
1300 const char *hd_words
[] = {
1301 "none", "noprobe", "nowerr", "cdrom", "minus5",
1302 "autotune", "noautotune", "minus8", "swapdata", "bswap",
1303 "noflush", "remap", "remap63", "scsi", NULL
};
1305 hw
= unit
/ MAX_DRIVES
;
1306 unit
= unit
% MAX_DRIVES
;
1307 hwif
= &ide_hwifs
[hw
];
1308 drive
= &hwif
->drives
[unit
];
1309 if (strncmp(s
+ 4, "ide-", 4) == 0) {
1310 strlcpy(drive
->driver_req
, s
+ 4, sizeof(drive
->driver_req
));
1313 switch (match_parm(&s
[3], hd_words
, vals
, 3)) {
1314 case -1: /* "none" */
1315 case -2: /* "noprobe" */
1318 case -3: /* "nowerr" */
1319 drive
->bad_wstat
= BAD_R_STAT
;
1322 case -4: /* "cdrom" */
1324 drive
->media
= ide_cdrom
;
1325 /* an ATAPI device ignores DRDY */
1326 drive
->ready_stat
= 0;
1329 case -6: /* "autotune" */
1330 drive
->autotune
= IDE_TUNE_AUTO
;
1331 goto obsolete_option
;
1332 case -7: /* "noautotune" */
1333 drive
->autotune
= IDE_TUNE_NOAUTO
;
1334 goto obsolete_option
;
1335 case -9: /* "swapdata" */
1336 case -10: /* "bswap" */
1339 case -11: /* noflush */
1342 case -12: /* "remap" */
1343 drive
->remap_0_to_1
= 1;
1345 case -13: /* "remap63" */
1348 case -14: /* "scsi" */
1351 case 3: /* cyl,head,sect */
1352 drive
->media
= ide_disk
;
1353 drive
->ready_stat
= READY_STAT
;
1354 drive
->cyl
= drive
->bios_cyl
= vals
[0];
1355 drive
->head
= drive
->bios_head
= vals
[1];
1356 drive
->sect
= drive
->bios_sect
= vals
[2];
1358 drive
->forced_geom
= 1;
1366 if (s
[0] != 'i' || s
[1] != 'd' || s
[2] != 'e')
1369 * Look for bus speed option: "idebus="
1371 if (s
[3] == 'b' && s
[4] == 'u' && s
[5] == 's') {
1372 if (match_parm(&s
[6], NULL
, vals
, 1) != 1)
1374 if (vals
[0] >= 20 && vals
[0] <= 66) {
1375 idebus_parameter
= vals
[0];
1377 printk(" -- BAD BUS SPEED! Expected value from 20 to 66");
1381 * Look for interface options: "idex="
1383 if (s
[3] >= '0' && s
[3] <= max_hwif
) {
1385 * Be VERY CAREFUL changing this: note hardcoded indexes below
1386 * (-8, -9, -10) are reserved to ease the hardcoding.
1388 static const char *ide_words
[] = {
1389 "noprobe", "serialize", "minus3", "minus4",
1390 "reset", "dma", "ata66", "minus8", "minus9",
1391 "minus10", "four", "qd65xx", "ht6560b", "cmd640_vlb",
1392 "dtc2278", "umc8672", "ali14xx", NULL
};
1394 hwif
= &ide_hwifs
[hw
];
1395 i
= match_parm(&s
[4], ide_words
, vals
, 3);
1398 * Cryptic check to ensure chipset not already set for hwif.
1399 * Note: we can't depend on hwif->chipset here.
1401 if ((i
>= -18 && i
<= -11) || (i
> 0 && i
<= 3)) {
1402 /* chipset already specified */
1403 if (is_chipset_set
[hw
])
1405 if (i
> -18 && i
<= -11) {
1406 /* these drivers are for "ide0=" only */
1409 /* chipset already specified for 2nd port */
1410 if (is_chipset_set
[hw
+1])
1413 is_chipset_set
[hw
] = 1;
1418 #ifdef CONFIG_BLK_DEV_ALI14XX
1419 case -17: /* "ali14xx" */
1423 #ifdef CONFIG_BLK_DEV_UMC8672
1424 case -16: /* "umc8672" */
1428 #ifdef CONFIG_BLK_DEV_DTC2278
1429 case -15: /* "dtc2278" */
1433 #ifdef CONFIG_BLK_DEV_CMD640
1434 case -14: /* "cmd640_vlb" */
1436 extern int cmd640_vlb
; /* flag for cmd640.c */
1441 #ifdef CONFIG_BLK_DEV_HT6560B
1442 case -13: /* "ht6560b" */
1446 #ifdef CONFIG_BLK_DEV_QD65XX
1447 case -12: /* "qd65xx" */
1451 #ifdef CONFIG_BLK_DEV_4DRIVES
1452 case -11: /* "four" drives on one set of ports */
1454 ide_hwif_t
*mate
= &ide_hwifs
[hw
^1];
1455 mate
->drives
[0].select
.all
^= 0x20;
1456 mate
->drives
[1].select
.all
^= 0x20;
1457 hwif
->chipset
= mate
->chipset
= ide_4drives
;
1458 mate
->irq
= hwif
->irq
;
1459 memcpy(mate
->io_ports
, hwif
->io_ports
, sizeof(hwif
->io_ports
));
1462 hwif
->serialized
= mate
->serialized
= 1;
1463 goto obsolete_option
;
1465 #endif /* CONFIG_BLK_DEV_4DRIVES */
1466 case -10: /* minus10 */
1467 case -9: /* minus9 */
1468 case -8: /* minus8 */
1472 case -7: /* ata66 */
1473 #ifdef CONFIG_BLK_DEV_IDEPCI
1475 * Use ATA_CBL_PATA40_SHORT so drive side
1476 * cable detection is also overriden.
1478 hwif
->cbl
= ATA_CBL_PATA40_SHORT
;
1479 goto obsolete_option
;
1485 goto obsolete_option
;
1486 case -5: /* "reset" */
1488 goto obsolete_option
;
1489 case -2: /* "serialize" */
1490 hwif
->mate
= &ide_hwifs
[hw
^1];
1491 hwif
->mate
->mate
= hwif
;
1492 hwif
->serialized
= hwif
->mate
->serialized
= 1;
1493 goto obsolete_option
;
1495 case -1: /* "noprobe" */
1500 vals
[1] = vals
[0] + 0x206; /* default ctl */
1501 case 2: /* base,ctl */
1502 vals
[2] = 0; /* default irq = probe for it */
1503 case 3: /* base,ctl,irq */
1504 hwif
->hw
.irq
= vals
[2];
1505 ide_init_hwif_ports(&hwif
->hw
, (unsigned long) vals
[0], (unsigned long) vals
[1], &hwif
->irq
);
1506 memcpy(hwif
->io_ports
, hwif
->hw
.io_ports
, sizeof(hwif
->io_ports
));
1507 hwif
->irq
= vals
[2];
1509 hwif
->chipset
= ide_forced
;
1510 goto obsolete_option
;
1512 case 0: goto bad_option
;
1514 printk(" -- SUPPORT NOT CONFIGURED IN THIS KERNEL\n");
1519 printk(" -- BAD OPTION\n");
1522 printk(" -- OBSOLETE OPTION, WILL BE REMOVED SOON!\n");
1525 printk("-- NOT SUPPORTED ON ide%d", hw
);
1531 extern void __init
pnpide_init(void);
1532 extern void __exit
pnpide_exit(void);
1533 extern void __init
h8300_ide_init(void);
1536 * probe_for_hwifs() finds/initializes "known" IDE interfaces
1538 static void __init
probe_for_hwifs (void)
1540 #ifdef CONFIG_IDEPCI_PCIBUS_ORDER
1541 ide_scan_pcibus(ide_scan_direction
);
1544 #ifdef CONFIG_ETRAX_IDE
1546 extern void init_e100_ide(void);
1549 #endif /* CONFIG_ETRAX_IDE */
1550 #ifdef CONFIG_BLK_DEV_CMD640
1552 extern void ide_probe_for_cmd640x(void);
1553 ide_probe_for_cmd640x();
1555 #endif /* CONFIG_BLK_DEV_CMD640 */
1556 #ifdef CONFIG_BLK_DEV_IDE_PMAC
1558 extern int pmac_ide_probe(void);
1559 (void)pmac_ide_probe();
1561 #endif /* CONFIG_BLK_DEV_IDE_PMAC */
1562 #ifdef CONFIG_BLK_DEV_GAYLE
1564 extern void gayle_init(void);
1567 #endif /* CONFIG_BLK_DEV_GAYLE */
1568 #ifdef CONFIG_BLK_DEV_FALCON_IDE
1570 extern void falconide_init(void);
1573 #endif /* CONFIG_BLK_DEV_FALCON_IDE */
1574 #ifdef CONFIG_BLK_DEV_MAC_IDE
1576 extern void macide_init(void);
1579 #endif /* CONFIG_BLK_DEV_MAC_IDE */
1580 #ifdef CONFIG_BLK_DEV_Q40IDE
1582 extern void q40ide_init(void);
1585 #endif /* CONFIG_BLK_DEV_Q40IDE */
1586 #ifdef CONFIG_BLK_DEV_BUDDHA
1588 extern void buddha_init(void);
1591 #endif /* CONFIG_BLK_DEV_BUDDHA */
1592 #ifdef CONFIG_BLK_DEV_IDEPNP
1604 EXPORT_SYMBOL(ide_lock
);
1606 static int ide_bus_match(struct device
*dev
, struct device_driver
*drv
)
1611 static char *media_string(ide_drive_t
*drive
)
1613 switch (drive
->media
) {
1629 static ssize_t
media_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1631 ide_drive_t
*drive
= to_ide_device(dev
);
1632 return sprintf(buf
, "%s\n", media_string(drive
));
1635 static ssize_t
drivename_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1637 ide_drive_t
*drive
= to_ide_device(dev
);
1638 return sprintf(buf
, "%s\n", drive
->name
);
1641 static ssize_t
modalias_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1643 ide_drive_t
*drive
= to_ide_device(dev
);
1644 return sprintf(buf
, "ide:m-%s\n", media_string(drive
));
1647 static struct device_attribute ide_dev_attrs
[] = {
1649 __ATTR_RO(drivename
),
1650 __ATTR_RO(modalias
),
1654 static int ide_uevent(struct device
*dev
, char **envp
, int num_envp
,
1655 char *buffer
, int buffer_size
)
1657 ide_drive_t
*drive
= to_ide_device(dev
);
1661 add_uevent_var(envp
, num_envp
, &i
, buffer
, buffer_size
, &length
,
1662 "MEDIA=%s", media_string(drive
));
1663 add_uevent_var(envp
, num_envp
, &i
, buffer
, buffer_size
, &length
,
1664 "DRIVENAME=%s", drive
->name
);
1665 add_uevent_var(envp
, num_envp
, &i
, buffer
, buffer_size
, &length
,
1666 "MODALIAS=ide:m-%s", media_string(drive
));
1671 static int generic_ide_probe(struct device
*dev
)
1673 ide_drive_t
*drive
= to_ide_device(dev
);
1674 ide_driver_t
*drv
= to_ide_driver(dev
->driver
);
1676 return drv
->probe
? drv
->probe(drive
) : -ENODEV
;
1679 static int generic_ide_remove(struct device
*dev
)
1681 ide_drive_t
*drive
= to_ide_device(dev
);
1682 ide_driver_t
*drv
= to_ide_driver(dev
->driver
);
1690 static void generic_ide_shutdown(struct device
*dev
)
1692 ide_drive_t
*drive
= to_ide_device(dev
);
1693 ide_driver_t
*drv
= to_ide_driver(dev
->driver
);
1695 if (dev
->driver
&& drv
->shutdown
)
1696 drv
->shutdown(drive
);
1699 struct bus_type ide_bus_type
= {
1701 .match
= ide_bus_match
,
1702 .uevent
= ide_uevent
,
1703 .probe
= generic_ide_probe
,
1704 .remove
= generic_ide_remove
,
1705 .shutdown
= generic_ide_shutdown
,
1706 .dev_attrs
= ide_dev_attrs
,
1707 .suspend
= generic_ide_suspend
,
1708 .resume
= generic_ide_resume
,
1711 EXPORT_SYMBOL_GPL(ide_bus_type
);
1714 * This is gets invoked once during initialization, to set *everything* up
1716 static int __init
ide_init(void)
1720 printk(KERN_INFO
"Uniform Multi-Platform E-IDE driver " REVISION
"\n");
1721 system_bus_speed
= ide_system_bus_speed();
1723 ret
= bus_register(&ide_bus_type
);
1725 printk(KERN_WARNING
"IDE: bus_register error: %d\n", ret
);
1733 #ifdef CONFIG_BLK_DEV_ALI14XX
1735 (void)ali14xx_init();
1737 #ifdef CONFIG_BLK_DEV_UMC8672
1739 (void)umc8672_init();
1741 #ifdef CONFIG_BLK_DEV_DTC2278
1743 (void)dtc2278_init();
1745 #ifdef CONFIG_BLK_DEV_HT6560B
1747 (void)ht6560b_init();
1749 #ifdef CONFIG_BLK_DEV_QD65XX
1751 (void)qd65xx_init();
1754 /* Probe for special PCI and other "known" interface chipsets. */
1761 static char *options
= NULL
;
1762 module_param(options
, charp
, 0);
1763 MODULE_LICENSE("GPL");
1765 static void __init
parse_options (char *line
)
1769 if (line
== NULL
|| !*line
)
1771 while ((line
= next
) != NULL
) {
1772 if ((next
= strchr(line
,' ')) != NULL
)
1774 if (!ide_setup(line
))
1775 printk (KERN_INFO
"Unknown option '%s'\n", line
);
1779 int __init
init_module (void)
1781 parse_options(options
);
1785 void __exit
cleanup_module (void)
1789 for (index
= 0; index
< MAX_HWIFS
; ++index
)
1790 ide_unregister(index
);
1792 #ifdef CONFIG_BLK_DEV_IDEPNP
1798 bus_unregister(&ide_bus_type
);
1803 __setup("", ide_setup
);
1805 module_init(ide_init
);