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