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