ide: update ide_unregister() documentation
[linux-2.6] / drivers / ide / ide.c
1 /*
2  *  Copyright (C) 1994-1998         Linus Torvalds & authors (see below)
3  *  Copyright (C) 2003-2005, 2007   Bartlomiej Zolnierkiewicz
4  */
5
6 /*
7  *  Mostly written by Mark Lord  <mlord@pobox.com>
8  *                and Gadi Oxman <gadio@netvision.net.il>
9  *                and Andre Hedrick <andre@linux-ide.org>
10  *
11  *  See linux/MAINTAINERS for address of current maintainer.
12  *
13  * This is the multiple IDE interface driver, as evolved from hd.c.
14  * It supports up to MAX_HWIFS IDE interfaces, on one or more IRQs
15  *   (usually 14 & 15).
16  * There can be up to two drives per interface, as per the ATA-2 spec.
17  *
18  * ...
19  *
20  *  From hd.c:
21  *  |
22  *  | It traverses the request-list, using interrupts to jump between functions.
23  *  | As nearly all functions can be called within interrupts, we may not sleep.
24  *  | Special care is recommended.  Have Fun!
25  *  |
26  *  | modified by Drew Eckhardt to check nr of hd's from the CMOS.
27  *  |
28  *  | Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
29  *  | in the early extended-partition checks and added DM partitions.
30  *  |
31  *  | Early work on error handling by Mika Liljeberg (liljeber@cs.Helsinki.FI).
32  *  |
33  *  | IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
34  *  | and general streamlining by Mark Lord (mlord@pobox.com).
35  *
36  *  October, 1994 -- Complete line-by-line overhaul for linux 1.1.x, by:
37  *
38  *      Mark Lord       (mlord@pobox.com)               (IDE Perf.Pkg)
39  *      Delman Lee      (delman@ieee.org)               ("Mr. atdisk2")
40  *      Scott Snyder    (snyder@fnald0.fnal.gov)        (ATAPI IDE cd-rom)
41  *
42  *  This was a rewrite of just about everything from hd.c, though some original
43  *  code is still sprinkled about.  Think of it as a major evolution, with
44  *  inspiration from lots of linux users, esp.  hamish@zot.apana.org.au
45  */
46
47 #include <linux/module.h>
48 #include <linux/types.h>
49 #include <linux/string.h>
50 #include <linux/kernel.h>
51 #include <linux/interrupt.h>
52 #include <linux/major.h>
53 #include <linux/errno.h>
54 #include <linux/genhd.h>
55 #include <linux/slab.h>
56 #include <linux/init.h>
57 #include <linux/pci.h>
58 #include <linux/ide.h>
59 #include <linux/hdreg.h>
60 #include <linux/completion.h>
61 #include <linux/device.h>
62
63
64 /* default maximum number of failures */
65 #define IDE_DEFAULT_MAX_FAILURES        1
66
67 struct class *ide_port_class;
68
69 static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR,
70                                         IDE2_MAJOR, IDE3_MAJOR,
71                                         IDE4_MAJOR, IDE5_MAJOR,
72                                         IDE6_MAJOR, IDE7_MAJOR,
73                                         IDE8_MAJOR, IDE9_MAJOR };
74
75 DEFINE_MUTEX(ide_cfg_mtx);
76
77 static void ide_port_init_devices_data(ide_hwif_t *);
78
79 /*
80  * Do not even *think* about calling this!
81  */
82 void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
83 {
84         /* bulk initialize hwif & drive info with zeros */
85         memset(hwif, 0, sizeof(ide_hwif_t));
86
87         /* fill in any non-zero initial values */
88         hwif->index     = index;
89         hwif->major     = ide_hwif_to_major[index];
90
91         hwif->name[0]   = 'i';
92         hwif->name[1]   = 'd';
93         hwif->name[2]   = 'e';
94         hwif->name[3]   = '0' + index;
95
96         init_completion(&hwif->gendev_rel_comp);
97
98         hwif->tp_ops = &default_tp_ops;
99
100         ide_port_init_devices_data(hwif);
101 }
102
103 static void ide_port_init_devices_data(ide_hwif_t *hwif)
104 {
105         int unit;
106
107         for (unit = 0; unit < MAX_DRIVES; ++unit) {
108                 ide_drive_t *drive = &hwif->drives[unit];
109                 u8 j = (hwif->index * MAX_DRIVES) + unit;
110
111                 memset(drive, 0, sizeof(*drive));
112
113                 drive->media                    = ide_disk;
114                 drive->select                   = (unit << 4) | ATA_DEVICE_OBS;
115                 drive->hwif                     = hwif;
116                 drive->ready_stat               = ATA_DRDY;
117                 drive->bad_wstat                = BAD_W_STAT;
118                 drive->special.b.recalibrate    = 1;
119                 drive->special.b.set_geometry   = 1;
120                 drive->name[0]                  = 'h';
121                 drive->name[1]                  = 'd';
122                 drive->name[2]                  = 'a' + j;
123                 drive->max_failures             = IDE_DEFAULT_MAX_FAILURES;
124
125                 INIT_LIST_HEAD(&drive->list);
126                 init_completion(&drive->gendev_rel_comp);
127         }
128 }
129
130 static void __ide_port_unregister_devices(ide_hwif_t *hwif)
131 {
132         int i;
133
134         for (i = 0; i < MAX_DRIVES; i++) {
135                 ide_drive_t *drive = &hwif->drives[i];
136
137                 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
138                         device_unregister(&drive->gendev);
139                         wait_for_completion(&drive->gendev_rel_comp);
140                 }
141         }
142 }
143
144 void ide_port_unregister_devices(ide_hwif_t *hwif)
145 {
146         mutex_lock(&ide_cfg_mtx);
147         __ide_port_unregister_devices(hwif);
148         hwif->present = 0;
149         ide_port_init_devices_data(hwif);
150         mutex_unlock(&ide_cfg_mtx);
151 }
152 EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
153
154 /**
155  *      ide_unregister          -       free an IDE interface
156  *      @hwif: IDE interface
157  *
158  *      Perform the final unregister of an IDE interface.
159  *
160  *      Locking:
161  *      The caller must not hold the IDE locks.
162  *
163  *      It is up to the caller to be sure there is no pending I/O here,
164  *      and that the interface will not be reopened (present/vanishing
165  *      locking isn't yet done BTW).
166  */
167
168 void ide_unregister(ide_hwif_t *hwif)
169 {
170         BUG_ON(in_interrupt());
171         BUG_ON(irqs_disabled());
172
173         mutex_lock(&ide_cfg_mtx);
174
175         if (hwif->present) {
176                 __ide_port_unregister_devices(hwif);
177                 hwif->present = 0;
178         }
179
180         ide_proc_unregister_port(hwif);
181
182         free_irq(hwif->irq, hwif);
183
184         device_unregister(hwif->portdev);
185         device_unregister(&hwif->gendev);
186         wait_for_completion(&hwif->gendev_rel_comp);
187
188         /*
189          * Remove us from the kernel's knowledge
190          */
191         blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
192         kfree(hwif->sg_table);
193         unregister_blkdev(hwif->major, hwif->name);
194
195         ide_release_dma_engine(hwif);
196
197         mutex_unlock(&ide_cfg_mtx);
198 }
199
200 void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
201 {
202         memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
203         hwif->irq = hw->irq;
204         hwif->chipset = hw->chipset;
205         hwif->dev = hw->dev;
206         hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
207         hwif->ack_intr = hw->ack_intr;
208         hwif->config_data = hw->config;
209 }
210
211 /*
212  *      Locks for IDE setting functionality
213  */
214
215 DEFINE_MUTEX(ide_setting_mtx);
216
217 ide_devset_get(io_32bit, io_32bit);
218
219 static int set_io_32bit(ide_drive_t *drive, int arg)
220 {
221         if (drive->dev_flags & IDE_DFLAG_NO_IO_32BIT)
222                 return -EPERM;
223
224         if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
225                 return -EINVAL;
226
227         drive->io_32bit = arg;
228
229         return 0;
230 }
231
232 ide_devset_get_flag(ksettings, IDE_DFLAG_KEEP_SETTINGS);
233
234 static int set_ksettings(ide_drive_t *drive, int arg)
235 {
236         if (arg < 0 || arg > 1)
237                 return -EINVAL;
238
239         if (arg)
240                 drive->dev_flags |= IDE_DFLAG_KEEP_SETTINGS;
241         else
242                 drive->dev_flags &= ~IDE_DFLAG_KEEP_SETTINGS;
243
244         return 0;
245 }
246
247 ide_devset_get_flag(using_dma, IDE_DFLAG_USING_DMA);
248
249 static int set_using_dma(ide_drive_t *drive, int arg)
250 {
251 #ifdef CONFIG_BLK_DEV_IDEDMA
252         int err = -EPERM;
253
254         if (arg < 0 || arg > 1)
255                 return -EINVAL;
256
257         if (ata_id_has_dma(drive->id) == 0)
258                 goto out;
259
260         if (drive->hwif->dma_ops == NULL)
261                 goto out;
262
263         err = 0;
264
265         if (arg) {
266                 if (ide_set_dma(drive))
267                         err = -EIO;
268         } else
269                 ide_dma_off(drive);
270
271 out:
272         return err;
273 #else
274         if (arg < 0 || arg > 1)
275                 return -EINVAL;
276
277         return -EPERM;
278 #endif
279 }
280
281 /*
282  * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away
283  */
284 static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio)
285 {
286         switch (req_pio) {
287         case 202:
288         case 201:
289         case 200:
290         case 102:
291         case 101:
292         case 100:
293                 return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0;
294         case 9:
295         case 8:
296                 return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0;
297         case 7:
298         case 6:
299                 return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0;
300         default:
301                 return 0;
302         }
303 }
304
305 static int set_pio_mode(ide_drive_t *drive, int arg)
306 {
307         ide_hwif_t *hwif = drive->hwif;
308         const struct ide_port_ops *port_ops = hwif->port_ops;
309
310         if (arg < 0 || arg > 255)
311                 return -EINVAL;
312
313         if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
314             (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
315                 return -ENOSYS;
316
317         if (set_pio_mode_abuse(drive->hwif, arg)) {
318                 if (arg == 8 || arg == 9) {
319                         unsigned long flags;
320
321                         /* take lock for IDE_DFLAG_[NO_]UNMASK/[NO_]IO_32BIT */
322                         spin_lock_irqsave(&hwif->lock, flags);
323                         port_ops->set_pio_mode(drive, arg);
324                         spin_unlock_irqrestore(&hwif->lock, flags);
325                 } else
326                         port_ops->set_pio_mode(drive, arg);
327         } else {
328                 int keep_dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA);
329
330                 ide_set_pio(drive, arg);
331
332                 if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) {
333                         if (keep_dma)
334                                 ide_dma_on(drive);
335                 }
336         }
337
338         return 0;
339 }
340
341 ide_devset_get_flag(unmaskirq, IDE_DFLAG_UNMASK);
342
343 static int set_unmaskirq(ide_drive_t *drive, int arg)
344 {
345         if (drive->dev_flags & IDE_DFLAG_NO_UNMASK)
346                 return -EPERM;
347
348         if (arg < 0 || arg > 1)
349                 return -EINVAL;
350
351         if (arg)
352                 drive->dev_flags |= IDE_DFLAG_UNMASK;
353         else
354                 drive->dev_flags &= ~IDE_DFLAG_UNMASK;
355
356         return 0;
357 }
358
359 ide_ext_devset_rw_sync(io_32bit, io_32bit);
360 ide_ext_devset_rw_sync(keepsettings, ksettings);
361 ide_ext_devset_rw_sync(unmaskirq, unmaskirq);
362 ide_ext_devset_rw_sync(using_dma, using_dma);
363 __IDE_DEVSET(pio_mode, DS_SYNC, NULL, set_pio_mode);
364
365 /**
366  * ide_device_get       -       get an additional reference to a ide_drive_t
367  * @drive:      device to get a reference to
368  *
369  * Gets a reference to the ide_drive_t and increments the use count of the
370  * underlying LLDD module.
371  */
372 int ide_device_get(ide_drive_t *drive)
373 {
374         struct device *host_dev;
375         struct module *module;
376
377         if (!get_device(&drive->gendev))
378                 return -ENXIO;
379
380         host_dev = drive->hwif->host->dev[0];
381         module = host_dev ? host_dev->driver->owner : NULL;
382
383         if (module && !try_module_get(module)) {
384                 put_device(&drive->gendev);
385                 return -ENXIO;
386         }
387
388         return 0;
389 }
390 EXPORT_SYMBOL_GPL(ide_device_get);
391
392 /**
393  * ide_device_put       -       release a reference to a ide_drive_t
394  * @drive:      device to release a reference on
395  *
396  * Release a reference to the ide_drive_t and decrements the use count of
397  * the underlying LLDD module.
398  */
399 void ide_device_put(ide_drive_t *drive)
400 {
401 #ifdef CONFIG_MODULE_UNLOAD
402         struct device *host_dev = drive->hwif->host->dev[0];
403         struct module *module = host_dev ? host_dev->driver->owner : NULL;
404
405         if (module)
406                 module_put(module);
407 #endif
408         put_device(&drive->gendev);
409 }
410 EXPORT_SYMBOL_GPL(ide_device_put);
411
412 static int ide_bus_match(struct device *dev, struct device_driver *drv)
413 {
414         return 1;
415 }
416
417 static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
418 {
419         ide_drive_t *drive = to_ide_device(dev);
420
421         add_uevent_var(env, "MEDIA=%s", ide_media_string(drive));
422         add_uevent_var(env, "DRIVENAME=%s", drive->name);
423         add_uevent_var(env, "MODALIAS=ide:m-%s", ide_media_string(drive));
424         return 0;
425 }
426
427 static int generic_ide_probe(struct device *dev)
428 {
429         ide_drive_t *drive = to_ide_device(dev);
430         ide_driver_t *drv = to_ide_driver(dev->driver);
431
432         return drv->probe ? drv->probe(drive) : -ENODEV;
433 }
434
435 static int generic_ide_remove(struct device *dev)
436 {
437         ide_drive_t *drive = to_ide_device(dev);
438         ide_driver_t *drv = to_ide_driver(dev->driver);
439
440         if (drv->remove)
441                 drv->remove(drive);
442
443         return 0;
444 }
445
446 static void generic_ide_shutdown(struct device *dev)
447 {
448         ide_drive_t *drive = to_ide_device(dev);
449         ide_driver_t *drv = to_ide_driver(dev->driver);
450
451         if (dev->driver && drv->shutdown)
452                 drv->shutdown(drive);
453 }
454
455 struct bus_type ide_bus_type = {
456         .name           = "ide",
457         .match          = ide_bus_match,
458         .uevent         = ide_uevent,
459         .probe          = generic_ide_probe,
460         .remove         = generic_ide_remove,
461         .shutdown       = generic_ide_shutdown,
462         .dev_attrs      = ide_dev_attrs,
463         .suspend        = generic_ide_suspend,
464         .resume         = generic_ide_resume,
465 };
466
467 EXPORT_SYMBOL_GPL(ide_bus_type);
468
469 int ide_vlb_clk;
470 EXPORT_SYMBOL_GPL(ide_vlb_clk);
471
472 module_param_named(vlb_clock, ide_vlb_clk, int, 0);
473 MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
474
475 int ide_pci_clk;
476 EXPORT_SYMBOL_GPL(ide_pci_clk);
477
478 module_param_named(pci_clock, ide_pci_clk, int, 0);
479 MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
480
481 static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
482 {
483         int a, b, i, j = 1;
484         unsigned int *dev_param_mask = (unsigned int *)kp->arg;
485
486         if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
487             sscanf(s, "%d.%d", &a, &b) != 2)
488                 return -EINVAL;
489
490         i = a * MAX_DRIVES + b;
491
492         if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
493                 return -EINVAL;
494
495         if (j)
496                 *dev_param_mask |= (1 << i);
497         else
498                 *dev_param_mask &= (1 << i);
499
500         return 0;
501 }
502
503 static unsigned int ide_nodma;
504
505 module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
506 MODULE_PARM_DESC(nodma, "disallow DMA for a device");
507
508 static unsigned int ide_noflush;
509
510 module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
511 MODULE_PARM_DESC(noflush, "disable flush requests for a device");
512
513 static unsigned int ide_noprobe;
514
515 module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
516 MODULE_PARM_DESC(noprobe, "skip probing for a device");
517
518 static unsigned int ide_nowerr;
519
520 module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
521 MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device");
522
523 static unsigned int ide_cdroms;
524
525 module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
526 MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
527
528 struct chs_geom {
529         unsigned int    cyl;
530         u8              head;
531         u8              sect;
532 };
533
534 static unsigned int ide_disks;
535 static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
536
537 static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
538 {
539         int a, b, c = 0, h = 0, s = 0, i, j = 1;
540
541         if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
542             sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
543                 return -EINVAL;
544
545         i = a * MAX_DRIVES + b;
546
547         if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
548                 return -EINVAL;
549
550         if (c > INT_MAX || h > 255 || s > 255)
551                 return -EINVAL;
552
553         if (j)
554                 ide_disks |= (1 << i);
555         else
556                 ide_disks &= (1 << i);
557
558         ide_disks_chs[i].cyl  = c;
559         ide_disks_chs[i].head = h;
560         ide_disks_chs[i].sect = s;
561
562         return 0;
563 }
564
565 module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
566 MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
567
568 static void ide_dev_apply_params(ide_drive_t *drive, u8 unit)
569 {
570         int i = drive->hwif->index * MAX_DRIVES + unit;
571
572         if (ide_nodma & (1 << i)) {
573                 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
574                 drive->dev_flags |= IDE_DFLAG_NODMA;
575         }
576         if (ide_noflush & (1 << i)) {
577                 printk(KERN_INFO "ide: disabling flush requests for %s\n",
578                                  drive->name);
579                 drive->dev_flags |= IDE_DFLAG_NOFLUSH;
580         }
581         if (ide_noprobe & (1 << i)) {
582                 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
583                 drive->dev_flags |= IDE_DFLAG_NOPROBE;
584         }
585         if (ide_nowerr & (1 << i)) {
586                 printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n",
587                                  drive->name);
588                 drive->bad_wstat = BAD_R_STAT;
589         }
590         if (ide_cdroms & (1 << i)) {
591                 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
592                 drive->dev_flags |= IDE_DFLAG_PRESENT;
593                 drive->media = ide_cdrom;
594                 /* an ATAPI device ignores DRDY */
595                 drive->ready_stat = 0;
596         }
597         if (ide_disks & (1 << i)) {
598                 drive->cyl  = drive->bios_cyl  = ide_disks_chs[i].cyl;
599                 drive->head = drive->bios_head = ide_disks_chs[i].head;
600                 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
601
602                 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
603                                  drive->name,
604                                  drive->cyl, drive->head, drive->sect);
605
606                 drive->dev_flags |= IDE_DFLAG_FORCED_GEOM | IDE_DFLAG_PRESENT;
607                 drive->media = ide_disk;
608                 drive->ready_stat = ATA_DRDY;
609         }
610 }
611
612 static unsigned int ide_ignore_cable;
613
614 static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
615 {
616         int i, j = 1;
617
618         if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
619                 return -EINVAL;
620
621         if (i >= MAX_HWIFS || j < 0 || j > 1)
622                 return -EINVAL;
623
624         if (j)
625                 ide_ignore_cable |= (1 << i);
626         else
627                 ide_ignore_cable &= (1 << i);
628
629         return 0;
630 }
631
632 module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
633 MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
634
635 void ide_port_apply_params(ide_hwif_t *hwif)
636 {
637         int i;
638
639         if (ide_ignore_cable & (1 << hwif->index)) {
640                 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
641                                  hwif->name);
642                 hwif->cbl = ATA_CBL_PATA40_SHORT;
643         }
644
645         for (i = 0; i < MAX_DRIVES; i++)
646                 ide_dev_apply_params(&hwif->drives[i], i);
647 }
648
649 /*
650  * This is gets invoked once during initialization, to set *everything* up
651  */
652 static int __init ide_init(void)
653 {
654         int ret;
655
656         printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
657
658         ret = bus_register(&ide_bus_type);
659         if (ret < 0) {
660                 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
661                 return ret;
662         }
663
664         ide_port_class = class_create(THIS_MODULE, "ide_port");
665         if (IS_ERR(ide_port_class)) {
666                 ret = PTR_ERR(ide_port_class);
667                 goto out_port_class;
668         }
669
670         proc_ide_create();
671
672         return 0;
673
674 out_port_class:
675         bus_unregister(&ide_bus_type);
676
677         return ret;
678 }
679
680 static void __exit ide_exit(void)
681 {
682         proc_ide_destroy();
683
684         class_destroy(ide_port_class);
685
686         bus_unregister(&ide_bus_type);
687 }
688
689 module_init(ide_init);
690 module_exit(ide_exit);
691
692 MODULE_LICENSE("GPL");