]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/ide/ide.c
19181493e7227b2512f8288da63503ecc4c5a054
[linux-2.6-omap-h63xx.git] / 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 __cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
78 EXPORT_SYMBOL(ide_lock);
79
80 static void ide_port_init_devices_data(ide_hwif_t *);
81
82 /*
83  * Do not even *think* about calling this!
84  */
85 void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
86 {
87         /* bulk initialize hwif & drive info with zeros */
88         memset(hwif, 0, sizeof(ide_hwif_t));
89
90         /* fill in any non-zero initial values */
91         hwif->index     = index;
92         hwif->major     = ide_hwif_to_major[index];
93
94         hwif->name[0]   = 'i';
95         hwif->name[1]   = 'd';
96         hwif->name[2]   = 'e';
97         hwif->name[3]   = '0' + index;
98
99         init_completion(&hwif->gendev_rel_comp);
100
101         hwif->tp_ops = &default_tp_ops;
102
103         ide_port_init_devices_data(hwif);
104 }
105
106 static void ide_port_init_devices_data(ide_hwif_t *hwif)
107 {
108         int unit;
109
110         for (unit = 0; unit < MAX_DRIVES; ++unit) {
111                 ide_drive_t *drive = &hwif->drives[unit];
112                 u8 j = (hwif->index * MAX_DRIVES) + unit;
113
114                 memset(drive, 0, sizeof(*drive));
115
116                 drive->media                    = ide_disk;
117                 drive->select.all               = (unit<<4)|0xa0;
118                 drive->hwif                     = hwif;
119                 drive->ready_stat               = ATA_DRDY;
120                 drive->bad_wstat                = BAD_W_STAT;
121                 drive->special.b.recalibrate    = 1;
122                 drive->special.b.set_geometry   = 1;
123                 drive->name[0]                  = 'h';
124                 drive->name[1]                  = 'd';
125                 drive->name[2]                  = 'a' + j;
126                 drive->max_failures             = IDE_DEFAULT_MAX_FAILURES;
127
128                 INIT_LIST_HEAD(&drive->list);
129                 init_completion(&drive->gendev_rel_comp);
130         }
131 }
132
133 /* Called with ide_lock held. */
134 static void __ide_port_unregister_devices(ide_hwif_t *hwif)
135 {
136         int i;
137
138         for (i = 0; i < MAX_DRIVES; i++) {
139                 ide_drive_t *drive = &hwif->drives[i];
140
141                 if (drive->present) {
142                         spin_unlock_irq(&ide_lock);
143                         device_unregister(&drive->gendev);
144                         wait_for_completion(&drive->gendev_rel_comp);
145                         spin_lock_irq(&ide_lock);
146                 }
147         }
148 }
149
150 void ide_port_unregister_devices(ide_hwif_t *hwif)
151 {
152         mutex_lock(&ide_cfg_mtx);
153         spin_lock_irq(&ide_lock);
154         __ide_port_unregister_devices(hwif);
155         hwif->present = 0;
156         ide_port_init_devices_data(hwif);
157         spin_unlock_irq(&ide_lock);
158         mutex_unlock(&ide_cfg_mtx);
159 }
160 EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
161
162 /**
163  *      ide_unregister          -       free an IDE interface
164  *      @hwif: IDE interface
165  *
166  *      Perform the final unregister of an IDE interface. At the moment
167  *      we don't refcount interfaces so this will also get split up.
168  *
169  *      Locking:
170  *      The caller must not hold the IDE locks
171  *      The drive present/vanishing is not yet properly locked
172  *      Take care with the callbacks. These have been split to avoid
173  *      deadlocking the IDE layer. The shutdown callback is called
174  *      before we take the lock and free resources. It is up to the
175  *      caller to be sure there is no pending I/O here, and that
176  *      the interface will not be reopened (present/vanishing locking
177  *      isn't yet done BTW). After we commit to the final kill we
178  *      call the cleanup callback with the ide locks held.
179  *
180  *      Unregister restores the hwif structures to the default state.
181  *      This is raving bonkers.
182  */
183
184 void ide_unregister(ide_hwif_t *hwif)
185 {
186         ide_hwif_t *g;
187         ide_hwgroup_t *hwgroup;
188         int irq_count = 0;
189
190         BUG_ON(in_interrupt());
191         BUG_ON(irqs_disabled());
192
193         mutex_lock(&ide_cfg_mtx);
194
195         spin_lock_irq(&ide_lock);
196         if (hwif->present) {
197                 __ide_port_unregister_devices(hwif);
198                 hwif->present = 0;
199         }
200         spin_unlock_irq(&ide_lock);
201
202         ide_proc_unregister_port(hwif);
203
204         hwgroup = hwif->hwgroup;
205         /*
206          * free the irq if we were the only hwif using it
207          */
208         g = hwgroup->hwif;
209         do {
210                 if (g->irq == hwif->irq)
211                         ++irq_count;
212                 g = g->next;
213         } while (g != hwgroup->hwif);
214         if (irq_count == 1)
215                 free_irq(hwif->irq, hwgroup);
216
217         ide_remove_port_from_hwgroup(hwif);
218
219         device_unregister(hwif->portdev);
220         device_unregister(&hwif->gendev);
221         wait_for_completion(&hwif->gendev_rel_comp);
222
223         /*
224          * Remove us from the kernel's knowledge
225          */
226         blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
227         kfree(hwif->sg_table);
228         unregister_blkdev(hwif->major, hwif->name);
229
230         if (hwif->dma_base)
231                 ide_release_dma_engine(hwif);
232
233         mutex_unlock(&ide_cfg_mtx);
234 }
235
236 void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
237 {
238         memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
239         hwif->irq = hw->irq;
240         hwif->chipset = hw->chipset;
241         hwif->dev = hw->dev;
242         hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
243         hwif->ack_intr = hw->ack_intr;
244         hwif->config_data = hw->config;
245 }
246
247 /*
248  *      Locks for IDE setting functionality
249  */
250
251 DEFINE_MUTEX(ide_setting_mtx);
252
253 /**
254  *      ide_spin_wait_hwgroup   -       wait for group
255  *      @drive: drive in the group
256  *
257  *      Wait for an IDE device group to go non busy and then return
258  *      holding the ide_lock which guards the hwgroup->busy status
259  *      and right to use it.
260  */
261
262 int ide_spin_wait_hwgroup (ide_drive_t *drive)
263 {
264         ide_hwgroup_t *hwgroup = HWGROUP(drive);
265         unsigned long timeout = jiffies + (3 * HZ);
266
267         spin_lock_irq(&ide_lock);
268
269         while (hwgroup->busy) {
270                 unsigned long lflags;
271                 spin_unlock_irq(&ide_lock);
272                 local_irq_set(lflags);
273                 if (time_after(jiffies, timeout)) {
274                         local_irq_restore(lflags);
275                         printk(KERN_ERR "%s: channel busy\n", drive->name);
276                         return -EBUSY;
277                 }
278                 local_irq_restore(lflags);
279                 spin_lock_irq(&ide_lock);
280         }
281         return 0;
282 }
283
284 EXPORT_SYMBOL(ide_spin_wait_hwgroup);
285
286 ide_devset_get(io_32bit, io_32bit);
287
288 int set_io_32bit(ide_drive_t *drive, int arg)
289 {
290         if (drive->no_io_32bit)
291                 return -EPERM;
292
293         if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
294                 return -EINVAL;
295
296         if (ide_spin_wait_hwgroup(drive))
297                 return -EBUSY;
298
299         drive->io_32bit = arg;
300
301         spin_unlock_irq(&ide_lock);
302
303         return 0;
304 }
305
306 ide_devset_get(ksettings, keep_settings);
307
308 int set_ksettings(ide_drive_t *drive, int arg)
309 {
310         if (arg < 0 || arg > 1)
311                 return -EINVAL;
312
313         if (ide_spin_wait_hwgroup(drive))
314                 return -EBUSY;
315         drive->keep_settings = arg;
316         spin_unlock_irq(&ide_lock);
317
318         return 0;
319 }
320
321 ide_devset_get(using_dma, using_dma);
322
323 int set_using_dma(ide_drive_t *drive, int arg)
324 {
325 #ifdef CONFIG_BLK_DEV_IDEDMA
326         ide_hwif_t *hwif = drive->hwif;
327         int err = -EPERM;
328
329         if (arg < 0 || arg > 1)
330                 return -EINVAL;
331
332         if (ata_id_has_dma(drive->id) == 0)
333                 goto out;
334
335         if (hwif->dma_ops == NULL)
336                 goto out;
337
338         err = -EBUSY;
339         if (ide_spin_wait_hwgroup(drive))
340                 goto out;
341         /*
342          * set ->busy flag, unlock and let it ride
343          */
344         hwif->hwgroup->busy = 1;
345         spin_unlock_irq(&ide_lock);
346
347         err = 0;
348
349         if (arg) {
350                 if (ide_set_dma(drive))
351                         err = -EIO;
352         } else
353                 ide_dma_off(drive);
354
355         /*
356          * lock, clear ->busy flag and unlock before leaving
357          */
358         spin_lock_irq(&ide_lock);
359         hwif->hwgroup->busy = 0;
360         spin_unlock_irq(&ide_lock);
361 out:
362         return err;
363 #else
364         if (arg < 0 || arg > 1)
365                 return -EINVAL;
366
367         return -EPERM;
368 #endif
369 }
370
371 int set_pio_mode(ide_drive_t *drive, int arg)
372 {
373         struct request *rq;
374         ide_hwif_t *hwif = drive->hwif;
375         const struct ide_port_ops *port_ops = hwif->port_ops;
376
377         if (arg < 0 || arg > 255)
378                 return -EINVAL;
379
380         if (port_ops == NULL || port_ops->set_pio_mode == NULL ||
381             (hwif->host_flags & IDE_HFLAG_NO_SET_MODE))
382                 return -ENOSYS;
383
384         if (drive->special.b.set_tune)
385                 return -EBUSY;
386
387         rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
388         rq->cmd_type = REQ_TYPE_ATA_TASKFILE;
389
390         drive->tune_req = (u8) arg;
391         drive->special.b.set_tune = 1;
392
393         blk_execute_rq(drive->queue, NULL, rq, 0);
394         blk_put_request(rq);
395
396         return 0;
397 }
398
399 ide_devset_get(unmaskirq, unmask);
400
401 int set_unmaskirq(ide_drive_t *drive, int arg)
402 {
403         if (drive->no_unmask)
404                 return -EPERM;
405
406         if (arg < 0 || arg > 1)
407                 return -EINVAL;
408
409         if (ide_spin_wait_hwgroup(drive))
410                 return -EBUSY;
411         drive->unmask = arg;
412         spin_unlock_irq(&ide_lock);
413
414         return 0;
415 }
416
417 static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
418 {
419         ide_drive_t *drive = dev->driver_data;
420         ide_hwif_t *hwif = HWIF(drive);
421         struct request *rq;
422         struct request_pm_state rqpm;
423         ide_task_t args;
424         int ret;
425
426         /* Call ACPI _GTM only once */
427         if (!(drive->dn % 2))
428                 ide_acpi_get_timing(hwif);
429
430         memset(&rqpm, 0, sizeof(rqpm));
431         memset(&args, 0, sizeof(args));
432         rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
433         rq->cmd_type = REQ_TYPE_PM_SUSPEND;
434         rq->special = &args;
435         rq->data = &rqpm;
436         rqpm.pm_step = ide_pm_state_start_suspend;
437         if (mesg.event == PM_EVENT_PRETHAW)
438                 mesg.event = PM_EVENT_FREEZE;
439         rqpm.pm_state = mesg.event;
440
441         ret = blk_execute_rq(drive->queue, NULL, rq, 0);
442         blk_put_request(rq);
443         /* only call ACPI _PS3 after both drivers are suspended */
444         if (!ret && (((drive->dn % 2) && hwif->drives[0].present
445                  && hwif->drives[1].present)
446                  || !hwif->drives[0].present
447                  || !hwif->drives[1].present))
448                 ide_acpi_set_state(hwif, 0);
449         return ret;
450 }
451
452 static int generic_ide_resume(struct device *dev)
453 {
454         ide_drive_t *drive = dev->driver_data;
455         ide_hwif_t *hwif = HWIF(drive);
456         struct request *rq;
457         struct request_pm_state rqpm;
458         ide_task_t args;
459         int err;
460
461         /* Call ACPI _STM only once */
462         if (!(drive->dn % 2)) {
463                 ide_acpi_set_state(hwif, 1);
464                 ide_acpi_push_timing(hwif);
465         }
466
467         ide_acpi_exec_tfs(drive);
468
469         memset(&rqpm, 0, sizeof(rqpm));
470         memset(&args, 0, sizeof(args));
471         rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
472         rq->cmd_type = REQ_TYPE_PM_RESUME;
473         rq->cmd_flags |= REQ_PREEMPT;
474         rq->special = &args;
475         rq->data = &rqpm;
476         rqpm.pm_step = ide_pm_state_start_resume;
477         rqpm.pm_state = PM_EVENT_ON;
478
479         err = blk_execute_rq(drive->queue, NULL, rq, 1);
480         blk_put_request(rq);
481
482         if (err == 0 && dev->driver) {
483                 ide_driver_t *drv = to_ide_driver(dev->driver);
484
485                 if (drv->resume)
486                         drv->resume(drive);
487         }
488
489         return err;
490 }
491
492 static int generic_drive_reset(ide_drive_t *drive)
493 {
494         struct request *rq;
495         int ret = 0;
496
497         rq = blk_get_request(drive->queue, READ, __GFP_WAIT);
498         rq->cmd_type = REQ_TYPE_SPECIAL;
499         rq->cmd_len = 1;
500         rq->cmd[0] = REQ_DRIVE_RESET;
501         rq->cmd_flags |= REQ_SOFTBARRIER;
502         if (blk_execute_rq(drive->queue, NULL, rq, 1))
503                 ret = rq->errors;
504         blk_put_request(rq);
505         return ret;
506 }
507
508 static int ide_get_identity_ioctl(ide_drive_t *drive, unsigned int cmd,
509                                   unsigned long arg)
510 {
511         u16 *id = NULL;
512         int size = (cmd == HDIO_GET_IDENTITY) ? (ATA_ID_WORDS * 2) : 142;
513         int rc = 0;
514
515         if (drive->id_read == 0) {
516                 rc = -ENOMSG;
517                 goto out;
518         }
519
520         id = kmalloc(size, GFP_KERNEL);
521         if (id == NULL) {
522                 rc = -ENOMEM;
523                 goto out;
524         }
525
526         memcpy(id, drive->id, size);
527         ata_id_to_hd_driveid(id);
528
529         if (copy_to_user((void __user *)arg, id, size))
530                 rc = -EFAULT;
531
532         kfree(id);
533 out:
534         return rc;
535 }
536
537 static int ide_get_nice_ioctl(ide_drive_t *drive, unsigned long arg)
538 {
539         return put_user((drive->dsc_overlap << IDE_NICE_DSC_OVERLAP) |
540                         (drive->nice1 << IDE_NICE_1), (long __user *)arg);
541 }
542
543 static int ide_set_nice_ioctl(ide_drive_t *drive, unsigned long arg)
544 {
545         if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
546                 return -EPERM;
547
548         if (((arg >> IDE_NICE_DSC_OVERLAP) & 1) &&
549             (drive->media == ide_disk || drive->media == ide_floppy ||
550              drive->scsi))
551                 return -EPERM;
552
553         drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
554         drive->nice1 = (arg >> IDE_NICE_1) & 1;
555
556         return 0;
557 }
558
559 static const struct ide_ioctl_devset ide_ioctl_settings[] = {
560 { HDIO_GET_32BIT,        HDIO_SET_32BIT,        get_io_32bit,  set_io_32bit  },
561 { HDIO_GET_KEEPSETTINGS, HDIO_SET_KEEPSETTINGS, get_ksettings, set_ksettings },
562 { HDIO_GET_UNMASKINTR,   HDIO_SET_UNMASKINTR,   get_unmaskirq, set_unmaskirq },
563 { HDIO_GET_DMA,          HDIO_SET_DMA,          get_using_dma, set_using_dma },
564 { -1,                    HDIO_SET_PIO_MODE,     NULL,          set_pio_mode  },
565 { 0 }
566 };
567
568 int generic_ide_ioctl(ide_drive_t *drive, struct file *file,
569                       struct block_device *bdev,
570                       unsigned int cmd, unsigned long arg)
571 {
572         int err;
573
574         err = ide_setting_ioctl(drive, bdev, cmd, arg, ide_ioctl_settings);
575         if (err != -EOPNOTSUPP)
576                 return err;
577
578         switch (cmd) {
579         case HDIO_OBSOLETE_IDENTITY:
580         case HDIO_GET_IDENTITY:
581                 if (bdev != bdev->bd_contains)
582                         return -EINVAL;
583                 return ide_get_identity_ioctl(drive, cmd, arg);
584         case HDIO_GET_NICE:
585                 return ide_get_nice_ioctl(drive, arg);
586         case HDIO_SET_NICE:
587                 if (!capable(CAP_SYS_ADMIN))
588                         return -EACCES;
589                 return ide_set_nice_ioctl(drive, arg);
590 #ifdef CONFIG_IDE_TASK_IOCTL
591         case HDIO_DRIVE_TASKFILE:
592                 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
593                         return -EACCES;
594                 if (drive->media == ide_disk)
595                         return ide_taskfile_ioctl(drive, cmd, arg);
596                 return -ENOMSG;
597 #endif
598         case HDIO_DRIVE_CMD:
599                 if (!capable(CAP_SYS_RAWIO))
600                         return -EACCES;
601                 return ide_cmd_ioctl(drive, cmd, arg);
602         case HDIO_DRIVE_TASK:
603                 if (!capable(CAP_SYS_RAWIO))
604                         return -EACCES;
605                 return ide_task_ioctl(drive, cmd, arg);
606         case HDIO_DRIVE_RESET:
607                 if (!capable(CAP_SYS_ADMIN))
608                         return -EACCES;
609                 return generic_drive_reset(drive);
610         case HDIO_GET_BUSSTATE:
611                 if (!capable(CAP_SYS_ADMIN))
612                         return -EACCES;
613                 if (put_user(BUSSTATE_ON, (long __user *)arg))
614                         return -EFAULT;
615                 return 0;
616         case HDIO_SET_BUSSTATE:
617                 if (!capable(CAP_SYS_ADMIN))
618                         return -EACCES;
619                 return -EOPNOTSUPP;
620         default:
621                 return -EINVAL;
622         }
623 }
624 EXPORT_SYMBOL(generic_ide_ioctl);
625
626 int ide_setting_ioctl(ide_drive_t *drive, struct block_device *bdev,
627                       unsigned int cmd, unsigned long arg,
628                       const struct ide_ioctl_devset *s)
629 {
630         unsigned long flags;
631         int err = -EOPNOTSUPP;
632
633         for (; s->get_ioctl; s++) {
634                 if (s->get && s->get_ioctl == cmd)
635                         goto read_val;
636                 else if (s->set && s->set_ioctl == cmd)
637                         goto set_val;
638         }
639
640         return err;
641
642 read_val:
643         mutex_lock(&ide_setting_mtx);
644         spin_lock_irqsave(&ide_lock, flags);
645         err = s->get(drive);
646         spin_unlock_irqrestore(&ide_lock, flags);
647         mutex_unlock(&ide_setting_mtx);
648         return err >= 0 ? put_user(err, (long __user *)arg) : err;
649
650 set_val:
651         if (bdev != bdev->bd_contains)
652                 err = -EINVAL;
653         else {
654                 if (!capable(CAP_SYS_ADMIN))
655                         err = -EACCES;
656                 else {
657                         mutex_lock(&ide_setting_mtx);
658                         err = s->set(drive, arg);
659                         mutex_unlock(&ide_setting_mtx);
660                 }
661         }
662         return err;
663 }
664 EXPORT_SYMBOL_GPL(ide_setting_ioctl);
665
666 /**
667  * ide_device_get       -       get an additional reference to a ide_drive_t
668  * @drive:      device to get a reference to
669  *
670  * Gets a reference to the ide_drive_t and increments the use count of the
671  * underlying LLDD module.
672  */
673 int ide_device_get(ide_drive_t *drive)
674 {
675         struct device *host_dev;
676         struct module *module;
677
678         if (!get_device(&drive->gendev))
679                 return -ENXIO;
680
681         host_dev = drive->hwif->host->dev[0];
682         module = host_dev ? host_dev->driver->owner : NULL;
683
684         if (module && !try_module_get(module)) {
685                 put_device(&drive->gendev);
686                 return -ENXIO;
687         }
688
689         return 0;
690 }
691 EXPORT_SYMBOL_GPL(ide_device_get);
692
693 /**
694  * ide_device_put       -       release a reference to a ide_drive_t
695  * @drive:      device to release a reference on
696  *
697  * Release a reference to the ide_drive_t and decrements the use count of
698  * the underlying LLDD module.
699  */
700 void ide_device_put(ide_drive_t *drive)
701 {
702 #ifdef CONFIG_MODULE_UNLOAD
703         struct device *host_dev = drive->hwif->host->dev[0];
704         struct module *module = host_dev ? host_dev->driver->owner : NULL;
705
706         if (module)
707                 module_put(module);
708 #endif
709         put_device(&drive->gendev);
710 }
711 EXPORT_SYMBOL_GPL(ide_device_put);
712
713 static int ide_bus_match(struct device *dev, struct device_driver *drv)
714 {
715         return 1;
716 }
717
718 static char *media_string(ide_drive_t *drive)
719 {
720         switch (drive->media) {
721         case ide_disk:
722                 return "disk";
723         case ide_cdrom:
724                 return "cdrom";
725         case ide_tape:
726                 return "tape";
727         case ide_floppy:
728                 return "floppy";
729         case ide_optical:
730                 return "optical";
731         default:
732                 return "UNKNOWN";
733         }
734 }
735
736 static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
737 {
738         ide_drive_t *drive = to_ide_device(dev);
739         return sprintf(buf, "%s\n", media_string(drive));
740 }
741
742 static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
743 {
744         ide_drive_t *drive = to_ide_device(dev);
745         return sprintf(buf, "%s\n", drive->name);
746 }
747
748 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
749 {
750         ide_drive_t *drive = to_ide_device(dev);
751         return sprintf(buf, "ide:m-%s\n", media_string(drive));
752 }
753
754 static ssize_t model_show(struct device *dev, struct device_attribute *attr,
755                           char *buf)
756 {
757         ide_drive_t *drive = to_ide_device(dev);
758         return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_PROD]);
759 }
760
761 static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
762                              char *buf)
763 {
764         ide_drive_t *drive = to_ide_device(dev);
765         return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_FW_REV]);
766 }
767
768 static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
769                            char *buf)
770 {
771         ide_drive_t *drive = to_ide_device(dev);
772         return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_SERNO]);
773 }
774
775 static struct device_attribute ide_dev_attrs[] = {
776         __ATTR_RO(media),
777         __ATTR_RO(drivename),
778         __ATTR_RO(modalias),
779         __ATTR_RO(model),
780         __ATTR_RO(firmware),
781         __ATTR(serial, 0400, serial_show, NULL),
782         __ATTR_NULL
783 };
784
785 static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
786 {
787         ide_drive_t *drive = to_ide_device(dev);
788
789         add_uevent_var(env, "MEDIA=%s", media_string(drive));
790         add_uevent_var(env, "DRIVENAME=%s", drive->name);
791         add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
792         return 0;
793 }
794
795 static int generic_ide_probe(struct device *dev)
796 {
797         ide_drive_t *drive = to_ide_device(dev);
798         ide_driver_t *drv = to_ide_driver(dev->driver);
799
800         return drv->probe ? drv->probe(drive) : -ENODEV;
801 }
802
803 static int generic_ide_remove(struct device *dev)
804 {
805         ide_drive_t *drive = to_ide_device(dev);
806         ide_driver_t *drv = to_ide_driver(dev->driver);
807
808         if (drv->remove)
809                 drv->remove(drive);
810
811         return 0;
812 }
813
814 static void generic_ide_shutdown(struct device *dev)
815 {
816         ide_drive_t *drive = to_ide_device(dev);
817         ide_driver_t *drv = to_ide_driver(dev->driver);
818
819         if (dev->driver && drv->shutdown)
820                 drv->shutdown(drive);
821 }
822
823 struct bus_type ide_bus_type = {
824         .name           = "ide",
825         .match          = ide_bus_match,
826         .uevent         = ide_uevent,
827         .probe          = generic_ide_probe,
828         .remove         = generic_ide_remove,
829         .shutdown       = generic_ide_shutdown,
830         .dev_attrs      = ide_dev_attrs,
831         .suspend        = generic_ide_suspend,
832         .resume         = generic_ide_resume,
833 };
834
835 EXPORT_SYMBOL_GPL(ide_bus_type);
836
837 int ide_vlb_clk;
838 EXPORT_SYMBOL_GPL(ide_vlb_clk);
839
840 module_param_named(vlb_clock, ide_vlb_clk, int, 0);
841 MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)");
842
843 int ide_pci_clk;
844 EXPORT_SYMBOL_GPL(ide_pci_clk);
845
846 module_param_named(pci_clock, ide_pci_clk, int, 0);
847 MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)");
848
849 static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp)
850 {
851         int a, b, i, j = 1;
852         unsigned int *dev_param_mask = (unsigned int *)kp->arg;
853
854         if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 &&
855             sscanf(s, "%d.%d", &a, &b) != 2)
856                 return -EINVAL;
857
858         i = a * MAX_DRIVES + b;
859
860         if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
861                 return -EINVAL;
862
863         if (j)
864                 *dev_param_mask |= (1 << i);
865         else
866                 *dev_param_mask &= (1 << i);
867
868         return 0;
869 }
870
871 static unsigned int ide_nodma;
872
873 module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0);
874 MODULE_PARM_DESC(nodma, "disallow DMA for a device");
875
876 static unsigned int ide_noflush;
877
878 module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0);
879 MODULE_PARM_DESC(noflush, "disable flush requests for a device");
880
881 static unsigned int ide_noprobe;
882
883 module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0);
884 MODULE_PARM_DESC(noprobe, "skip probing for a device");
885
886 static unsigned int ide_nowerr;
887
888 module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0);
889 MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device");
890
891 static unsigned int ide_cdroms;
892
893 module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0);
894 MODULE_PARM_DESC(cdrom, "force device as a CD-ROM");
895
896 struct chs_geom {
897         unsigned int    cyl;
898         u8              head;
899         u8              sect;
900 };
901
902 static unsigned int ide_disks;
903 static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES];
904
905 static int ide_set_disk_chs(const char *str, struct kernel_param *kp)
906 {
907         int a, b, c = 0, h = 0, s = 0, i, j = 1;
908
909         if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 &&
910             sscanf(str, "%d.%d:%d", &a, &b, &j) != 3)
911                 return -EINVAL;
912
913         i = a * MAX_DRIVES + b;
914
915         if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1)
916                 return -EINVAL;
917
918         if (c > INT_MAX || h > 255 || s > 255)
919                 return -EINVAL;
920
921         if (j)
922                 ide_disks |= (1 << i);
923         else
924                 ide_disks &= (1 << i);
925
926         ide_disks_chs[i].cyl  = c;
927         ide_disks_chs[i].head = h;
928         ide_disks_chs[i].sect = s;
929
930         return 0;
931 }
932
933 module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0);
934 MODULE_PARM_DESC(chs, "force device as a disk (using CHS)");
935
936 static void ide_dev_apply_params(ide_drive_t *drive)
937 {
938         int i = drive->hwif->index * MAX_DRIVES + drive->select.b.unit;
939
940         if (ide_nodma & (1 << i)) {
941                 printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name);
942                 drive->nodma = 1;
943         }
944         if (ide_noflush & (1 << i)) {
945                 printk(KERN_INFO "ide: disabling flush requests for %s\n",
946                                  drive->name);
947                 drive->noflush = 1;
948         }
949         if (ide_noprobe & (1 << i)) {
950                 printk(KERN_INFO "ide: skipping probe for %s\n", drive->name);
951                 drive->noprobe = 1;
952         }
953         if (ide_nowerr & (1 << i)) {
954                 printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n",
955                                  drive->name);
956                 drive->bad_wstat = BAD_R_STAT;
957         }
958         if (ide_cdroms & (1 << i)) {
959                 printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name);
960                 drive->present = 1;
961                 drive->media = ide_cdrom;
962                 /* an ATAPI device ignores DRDY */
963                 drive->ready_stat = 0;
964         }
965         if (ide_disks & (1 << i)) {
966                 drive->cyl  = drive->bios_cyl  = ide_disks_chs[i].cyl;
967                 drive->head = drive->bios_head = ide_disks_chs[i].head;
968                 drive->sect = drive->bios_sect = ide_disks_chs[i].sect;
969                 drive->forced_geom = 1;
970                 printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n",
971                                  drive->name,
972                                  drive->cyl, drive->head, drive->sect);
973                 drive->present = 1;
974                 drive->media = ide_disk;
975                 drive->ready_stat = ATA_DRDY;
976         }
977 }
978
979 static unsigned int ide_ignore_cable;
980
981 static int ide_set_ignore_cable(const char *s, struct kernel_param *kp)
982 {
983         int i, j = 1;
984
985         if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1)
986                 return -EINVAL;
987
988         if (i >= MAX_HWIFS || j < 0 || j > 1)
989                 return -EINVAL;
990
991         if (j)
992                 ide_ignore_cable |= (1 << i);
993         else
994                 ide_ignore_cable &= (1 << i);
995
996         return 0;
997 }
998
999 module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0);
1000 MODULE_PARM_DESC(ignore_cable, "ignore cable detection");
1001
1002 void ide_port_apply_params(ide_hwif_t *hwif)
1003 {
1004         int i;
1005
1006         if (ide_ignore_cable & (1 << hwif->index)) {
1007                 printk(KERN_INFO "ide: ignoring cable detection for %s\n",
1008                                  hwif->name);
1009                 hwif->cbl = ATA_CBL_PATA40_SHORT;
1010         }
1011
1012         for (i = 0; i < MAX_DRIVES; i++)
1013                 ide_dev_apply_params(&hwif->drives[i]);
1014 }
1015
1016 /*
1017  * This is gets invoked once during initialization, to set *everything* up
1018  */
1019 static int __init ide_init(void)
1020 {
1021         int ret;
1022
1023         printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n");
1024
1025         ret = bus_register(&ide_bus_type);
1026         if (ret < 0) {
1027                 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
1028                 return ret;
1029         }
1030
1031         ide_port_class = class_create(THIS_MODULE, "ide_port");
1032         if (IS_ERR(ide_port_class)) {
1033                 ret = PTR_ERR(ide_port_class);
1034                 goto out_port_class;
1035         }
1036
1037         proc_ide_create();
1038
1039         return 0;
1040
1041 out_port_class:
1042         bus_unregister(&ide_bus_type);
1043
1044         return ret;
1045 }
1046
1047 static void __exit ide_exit(void)
1048 {
1049         proc_ide_destroy();
1050
1051         class_destroy(ide_port_class);
1052
1053         bus_unregister(&ide_bus_type);
1054 }
1055
1056 module_init(ide_init);
1057 module_exit(ide_exit);
1058
1059 MODULE_LICENSE("GPL");