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