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) |
Pavel Machek | fc41069 | 2008-07-23 19:56:02 +0200 | [diff] [blame] | 3 | * Copyright (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 | #include <linux/module.h> |
| 48 | #include <linux/types.h> |
| 49 | #include <linux/string.h> |
| 50 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/interrupt.h> |
| 52 | #include <linux/major.h> |
| 53 | #include <linux/errno.h> |
| 54 | #include <linux/genhd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <linux/slab.h> |
| 56 | #include <linux/init.h> |
| 57 | #include <linux/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <linux/ide.h> |
Bartlomiej Zolnierkiewicz | 3ceca72 | 2008-10-10 22:39:27 +0200 | [diff] [blame] | 59 | #include <linux/hdreg.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <linux/completion.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <linux/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | |
| 64 | /* default maximum number of failures */ |
| 65 | #define IDE_DEFAULT_MAX_FAILURES 1 |
| 66 | |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 67 | struct class *ide_port_class; |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR, |
| 70 | IDE2_MAJOR, IDE3_MAJOR, |
| 71 | IDE4_MAJOR, IDE5_MAJOR, |
| 72 | IDE6_MAJOR, IDE7_MAJOR, |
| 73 | IDE8_MAJOR, IDE9_MAJOR }; |
| 74 | |
Matthias Kaehlcke | ef29888 | 2007-07-09 23:17:55 +0200 | [diff] [blame] | 75 | DEFINE_MUTEX(ide_cfg_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 77 | __cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock); |
| 78 | EXPORT_SYMBOL(ide_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 80 | static void ide_port_init_devices_data(ide_hwif_t *); |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | /* |
| 83 | * Do not even *think* about calling this! |
| 84 | */ |
Bartlomiej Zolnierkiewicz | cbb010c | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 85 | void ide_init_port_data(ide_hwif_t *hwif, unsigned int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* bulk initialize hwif & drive info with zeros */ |
| 88 | memset(hwif, 0, sizeof(ide_hwif_t)); |
| 89 | |
| 90 | /* fill in any non-zero initial values */ |
| 91 | hwif->index = index; |
| 92 | hwif->major = ide_hwif_to_major[index]; |
| 93 | |
| 94 | hwif->name[0] = 'i'; |
| 95 | hwif->name[1] = 'd'; |
| 96 | hwif->name[2] = 'e'; |
| 97 | hwif->name[3] = '0' + index; |
| 98 | |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 99 | init_completion(&hwif->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 101 | hwif->tp_ops = &default_tp_ops; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 102 | |
| 103 | ide_port_init_devices_data(hwif); |
| 104 | } |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 105 | |
| 106 | static void ide_port_init_devices_data(ide_hwif_t *hwif) |
| 107 | { |
| 108 | int unit; |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | for (unit = 0; unit < MAX_DRIVES; ++unit) { |
| 111 | ide_drive_t *drive = &hwif->drives[unit]; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 112 | u8 j = (hwif->index * MAX_DRIVES) + unit; |
| 113 | |
| 114 | memset(drive, 0, sizeof(*drive)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | drive->media = ide_disk; |
Bartlomiej Zolnierkiewicz | 7f612f2 | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 117 | drive->select = (unit << 4) | ATA_DEVICE_OBS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | drive->hwif = hwif; |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 119 | drive->ready_stat = ATA_DRDY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | drive->bad_wstat = BAD_W_STAT; |
| 121 | drive->special.b.recalibrate = 1; |
| 122 | drive->special.b.set_geometry = 1; |
| 123 | drive->name[0] = 'h'; |
| 124 | drive->name[1] = 'd'; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 125 | drive->name[2] = 'a' + j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | drive->max_failures = IDE_DEFAULT_MAX_FAILURES; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | INIT_LIST_HEAD(&drive->list); |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 129 | init_completion(&drive->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | } |
| 131 | } |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 132 | |
Bartlomiej Zolnierkiewicz | 71bf9f6 | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 133 | /* Called with ide_lock held. */ |
Bartlomiej Zolnierkiewicz | 2dde786 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 134 | static void __ide_port_unregister_devices(ide_hwif_t *hwif) |
Bartlomiej Zolnierkiewicz | 71bf9f6 | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 135 | { |
| 136 | int i; |
| 137 | |
| 138 | for (i = 0; i < MAX_DRIVES; i++) { |
| 139 | ide_drive_t *drive = &hwif->drives[i]; |
| 140 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 141 | if (drive->dev_flags & IDE_DFLAG_PRESENT) { |
Bartlomiej Zolnierkiewicz | 71bf9f6 | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 142 | spin_unlock_irq(&ide_lock); |
| 143 | device_unregister(&drive->gendev); |
| 144 | wait_for_completion(&drive->gendev_rel_comp); |
| 145 | spin_lock_irq(&ide_lock); |
| 146 | } |
| 147 | } |
| 148 | } |
| 149 | |
Bartlomiej Zolnierkiewicz | 2dde786 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 150 | void ide_port_unregister_devices(ide_hwif_t *hwif) |
| 151 | { |
| 152 | mutex_lock(&ide_cfg_mtx); |
| 153 | spin_lock_irq(&ide_lock); |
| 154 | __ide_port_unregister_devices(hwif); |
| 155 | hwif->present = 0; |
| 156 | ide_port_init_devices_data(hwif); |
| 157 | spin_unlock_irq(&ide_lock); |
| 158 | mutex_unlock(&ide_cfg_mtx); |
| 159 | } |
| 160 | EXPORT_SYMBOL_GPL(ide_port_unregister_devices); |
| 161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | /** |
Sergei Shtylylov | 020e322 | 2006-10-03 01:14:13 -0700 | [diff] [blame] | 163 | * ide_unregister - free an IDE interface |
Bartlomiej Zolnierkiewicz | 387750c | 2008-04-27 15:38:31 +0200 | [diff] [blame] | 164 | * @hwif: IDE interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | * |
| 166 | * Perform the final unregister of an IDE interface. At the moment |
| 167 | * we don't refcount interfaces so this will also get split up. |
| 168 | * |
| 169 | * Locking: |
| 170 | * The caller must not hold the IDE locks |
| 171 | * The drive present/vanishing is not yet properly locked |
| 172 | * Take care with the callbacks. These have been split to avoid |
| 173 | * deadlocking the IDE layer. The shutdown callback is called |
| 174 | * before we take the lock and free resources. It is up to the |
| 175 | * caller to be sure there is no pending I/O here, and that |
Sergei Shtylylov | 020e322 | 2006-10-03 01:14:13 -0700 | [diff] [blame] | 176 | * the interface will not be reopened (present/vanishing locking |
| 177 | * 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] | 178 | * call the cleanup callback with the ide locks held. |
| 179 | * |
| 180 | * Unregister restores the hwif structures to the default state. |
| 181 | * This is raving bonkers. |
| 182 | */ |
| 183 | |
Bartlomiej Zolnierkiewicz | 387750c | 2008-04-27 15:38:31 +0200 | [diff] [blame] | 184 | void ide_unregister(ide_hwif_t *hwif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
Bartlomiej Zolnierkiewicz | 387750c | 2008-04-27 15:38:31 +0200 | [diff] [blame] | 186 | ide_hwif_t *g; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | ide_hwgroup_t *hwgroup; |
Bartlomiej Zolnierkiewicz | 71bf9f6 | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 188 | int irq_count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | BUG_ON(in_interrupt()); |
| 191 | BUG_ON(irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Bartlomiej Zolnierkiewicz | bd8a59e | 2008-07-05 20:30:51 +0200 | [diff] [blame] | 193 | mutex_lock(&ide_cfg_mtx); |
| 194 | |
| 195 | spin_lock_irq(&ide_lock); |
| 196 | if (hwif->present) { |
| 197 | __ide_port_unregister_devices(hwif); |
| 198 | hwif->present = 0; |
| 199 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | spin_unlock_irq(&ide_lock); |
| 201 | |
Bartlomiej Zolnierkiewicz | 5cbf79c | 2007-05-10 00:01:11 +0200 | [diff] [blame] | 202 | ide_proc_unregister_port(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
| 204 | hwgroup = hwif->hwgroup; |
| 205 | /* |
| 206 | * free the irq if we were the only hwif using it |
| 207 | */ |
| 208 | g = hwgroup->hwif; |
| 209 | do { |
| 210 | if (g->irq == hwif->irq) |
| 211 | ++irq_count; |
| 212 | g = g->next; |
| 213 | } while (g != hwgroup->hwif); |
| 214 | if (irq_count == 1) |
| 215 | free_irq(hwif->irq, hwgroup); |
| 216 | |
Bartlomiej Zolnierkiewicz | 96e5ad3 | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 217 | ide_remove_port_from_hwgroup(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 219 | device_unregister(hwif->portdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | device_unregister(&hwif->gendev); |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 221 | wait_for_completion(&hwif->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
| 223 | /* |
| 224 | * Remove us from the kernel's knowledge |
| 225 | */ |
| 226 | blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS); |
| 227 | kfree(hwif->sg_table); |
| 228 | unregister_blkdev(hwif->major, hwif->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | |
Bartlomiej Zolnierkiewicz | 2bbd57c | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 230 | ide_release_dma_engine(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Matthias Kaehlcke | ef29888 | 2007-07-09 23:17:55 +0200 | [diff] [blame] | 232 | mutex_unlock(&ide_cfg_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 235 | void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw) |
| 236 | { |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 237 | memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports)); |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 238 | hwif->irq = hw->irq; |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 239 | hwif->chipset = hw->chipset; |
Bartlomiej Zolnierkiewicz | c56c564 | 2008-07-16 20:33:40 +0200 | [diff] [blame] | 240 | hwif->dev = hw->dev; |
| 241 | hwif->gendev.parent = hw->parent ? hw->parent : hw->dev; |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 242 | hwif->ack_intr = hw->ack_intr; |
Bartlomiej Zolnierkiewicz | d6276b5 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 243 | hwif->config_data = hw->config; |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 244 | } |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | /* |
| 247 | * Locks for IDE setting functionality |
| 248 | */ |
| 249 | |
Matthias Kaehlcke | f9383c4 | 2007-07-09 23:17:56 +0200 | [diff] [blame] | 250 | DEFINE_MUTEX(ide_setting_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 252 | ide_devset_get(io_32bit, io_32bit); |
| 253 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 254 | static int set_io_32bit(ide_drive_t *drive, int arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 256 | if (drive->dev_flags & IDE_DFLAG_NO_IO_32BIT) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 257 | return -EPERM; |
| 258 | |
| 259 | if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1)) |
| 260 | return -EINVAL; |
| 261 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | drive->io_32bit = arg; |
Bartlomiej Zolnierkiewicz | 644a9d7 | 2007-12-12 23:32:00 +0100 | [diff] [blame] | 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | return 0; |
| 265 | } |
| 266 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 267 | ide_devset_get_flag(ksettings, IDE_DFLAG_KEEP_SETTINGS); |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 268 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 269 | static int set_ksettings(ide_drive_t *drive, int arg) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 270 | { |
| 271 | if (arg < 0 || arg > 1) |
| 272 | return -EINVAL; |
| 273 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 274 | if (arg) |
| 275 | drive->dev_flags |= IDE_DFLAG_KEEP_SETTINGS; |
| 276 | else |
| 277 | drive->dev_flags &= ~IDE_DFLAG_KEEP_SETTINGS; |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 278 | |
| 279 | return 0; |
| 280 | } |
| 281 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 282 | ide_devset_get_flag(using_dma, IDE_DFLAG_USING_DMA); |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 283 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 284 | static int set_using_dma(ide_drive_t *drive, int arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | { |
| 286 | #ifdef CONFIG_BLK_DEV_IDEDMA |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 287 | int err = -EPERM; |
| 288 | |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 289 | if (arg < 0 || arg > 1) |
| 290 | return -EINVAL; |
| 291 | |
Bartlomiej Zolnierkiewicz | 48fb268 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 292 | if (ata_id_has_dma(drive->id) == 0) |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 293 | goto out; |
| 294 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 295 | if (drive->hwif->dma_ops == NULL) |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 296 | goto out; |
| 297 | |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 298 | err = 0; |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | if (arg) { |
Bartlomiej Zolnierkiewicz | 23b1bd4 | 2008-01-25 22:17:19 +0100 | [diff] [blame] | 301 | if (ide_set_dma(drive)) |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 302 | err = -EIO; |
Bartlomiej Zolnierkiewicz | 7469aaf | 2007-02-17 02:40:26 +0100 | [diff] [blame] | 303 | } else |
| 304 | ide_dma_off(drive); |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 305 | |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 306 | out: |
| 307 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | #else |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 309 | if (arg < 0 || arg > 1) |
| 310 | return -EINVAL; |
| 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | return -EPERM; |
| 313 | #endif |
| 314 | } |
| 315 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 316 | /* |
| 317 | * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away |
| 318 | */ |
| 319 | static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio) |
| 320 | { |
| 321 | switch (req_pio) { |
| 322 | case 202: |
| 323 | case 201: |
| 324 | case 200: |
| 325 | case 102: |
| 326 | case 101: |
| 327 | case 100: |
| 328 | return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0; |
| 329 | case 9: |
| 330 | case 8: |
| 331 | return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0; |
| 332 | case 7: |
| 333 | case 6: |
| 334 | return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0; |
| 335 | default: |
| 336 | return 0; |
| 337 | } |
| 338 | } |
| 339 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 340 | static int set_pio_mode(ide_drive_t *drive, int arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | { |
Bartlomiej Zolnierkiewicz | 784506c | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 342 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 343 | const struct ide_port_ops *port_ops = hwif->port_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 345 | if (arg < 0 || arg > 255) |
| 346 | return -EINVAL; |
| 347 | |
Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 348 | if (port_ops == NULL || port_ops->set_pio_mode == NULL || |
Bartlomiej Zolnierkiewicz | 784506c | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 349 | (hwif->host_flags & IDE_HFLAG_NO_SET_MODE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | return -ENOSYS; |
Bartlomiej Zolnierkiewicz | 26bcb87 | 2007-10-11 23:54:00 +0200 | [diff] [blame] | 351 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 352 | if (set_pio_mode_abuse(drive->hwif, arg)) { |
| 353 | if (arg == 8 || arg == 9) { |
| 354 | unsigned long flags; |
Bartlomiej Zolnierkiewicz | 145b75e | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 355 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 356 | /* take lock for IDE_DFLAG_[NO_]UNMASK/[NO_]IO_32BIT */ |
| 357 | spin_lock_irqsave(&ide_lock, flags); |
| 358 | port_ops->set_pio_mode(drive, arg); |
| 359 | spin_unlock_irqrestore(&ide_lock, flags); |
| 360 | } else |
| 361 | port_ops->set_pio_mode(drive, arg); |
| 362 | } else { |
| 363 | int keep_dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA); |
Bartlomiej Zolnierkiewicz | 145b75e | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 364 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 365 | ide_set_pio(drive, arg); |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 366 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 367 | if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) { |
| 368 | if (keep_dma) |
| 369 | ide_dma_on(drive); |
| 370 | } |
| 371 | } |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | return 0; |
| 374 | } |
| 375 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 376 | ide_devset_get_flag(unmaskirq, IDE_DFLAG_UNMASK); |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 377 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 378 | static int set_unmaskirq(ide_drive_t *drive, int arg) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 379 | { |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 380 | if (drive->dev_flags & IDE_DFLAG_NO_UNMASK) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 381 | return -EPERM; |
| 382 | |
| 383 | if (arg < 0 || arg > 1) |
| 384 | return -EINVAL; |
| 385 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 386 | if (arg) |
| 387 | drive->dev_flags |= IDE_DFLAG_UNMASK; |
| 388 | else |
| 389 | drive->dev_flags &= ~IDE_DFLAG_UNMASK; |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 390 | |
| 391 | return 0; |
| 392 | } |
| 393 | |
Bartlomiej Zolnierkiewicz | f879048 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 394 | ide_ext_devset_rw_sync(io_32bit, io_32bit); |
| 395 | ide_ext_devset_rw_sync(keepsettings, ksettings); |
| 396 | ide_ext_devset_rw_sync(unmaskirq, unmaskirq); |
| 397 | ide_ext_devset_rw_sync(using_dma, using_dma); |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 398 | __IDE_DEVSET(pio_mode, DS_SYNC, NULL, set_pio_mode); |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 399 | |
David Brownell | b887d2e | 2006-08-14 23:11:05 -0700 | [diff] [blame] | 400 | static int generic_ide_suspend(struct device *dev, pm_message_t mesg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | { |
Bartlomiej Zolnierkiewicz | 1ea1031 | 2008-10-13 21:39:35 +0200 | [diff] [blame] | 402 | ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive); |
Hannes Reinecke | e3a59b4 | 2007-02-07 18:19:37 +0100 | [diff] [blame] | 403 | ide_hwif_t *hwif = HWIF(drive); |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 404 | struct request *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | struct request_pm_state rqpm; |
| 406 | ide_task_t args; |
Shaohua Li | 5e32132 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 407 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Bartlomiej Zolnierkiewicz | 1ea1031 | 2008-10-13 21:39:35 +0200 | [diff] [blame] | 409 | /* call ACPI _GTM only once */ |
| 410 | if ((drive->dn & 1) == 0 || pair == NULL) |
Hannes Reinecke | e3a59b4 | 2007-02-07 18:19:37 +0100 | [diff] [blame] | 411 | ide_acpi_get_timing(hwif); |
| 412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | memset(&rqpm, 0, sizeof(rqpm)); |
| 414 | memset(&args, 0, sizeof(args)); |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 415 | rq = blk_get_request(drive->queue, READ, __GFP_WAIT); |
| 416 | rq->cmd_type = REQ_TYPE_PM_SUSPEND; |
| 417 | rq->special = &args; |
| 418 | rq->data = &rqpm; |
Bartlomiej Zolnierkiewicz | 0d346ba | 2008-10-13 21:39:38 +0200 | [diff] [blame] | 419 | rqpm.pm_step = IDE_PM_START_SUSPEND; |
David Brownell | b887d2e | 2006-08-14 23:11:05 -0700 | [diff] [blame] | 420 | if (mesg.event == PM_EVENT_PRETHAW) |
| 421 | mesg.event = PM_EVENT_FREEZE; |
| 422 | rqpm.pm_state = mesg.event; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 424 | ret = blk_execute_rq(drive->queue, NULL, rq, 0); |
| 425 | blk_put_request(rq); |
Bartlomiej Zolnierkiewicz | 1ea1031 | 2008-10-13 21:39:35 +0200 | [diff] [blame] | 426 | |
| 427 | /* call ACPI _PS3 only after both devices are suspended */ |
| 428 | if (ret == 0 && ((drive->dn & 1) || pair == NULL)) |
Shaohua Li | 5e32132 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 429 | ide_acpi_set_state(hwif, 0); |
Bartlomiej Zolnierkiewicz | 1ea1031 | 2008-10-13 21:39:35 +0200 | [diff] [blame] | 430 | |
Shaohua Li | 5e32132 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 431 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | static int generic_ide_resume(struct device *dev) |
| 435 | { |
Bartlomiej Zolnierkiewicz | 1ea1031 | 2008-10-13 21:39:35 +0200 | [diff] [blame] | 436 | ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive); |
Hannes Reinecke | e3a59b4 | 2007-02-07 18:19:37 +0100 | [diff] [blame] | 437 | ide_hwif_t *hwif = HWIF(drive); |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 438 | struct request *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | struct request_pm_state rqpm; |
| 440 | ide_task_t args; |
Lee Trager | 0d2157f | 2007-06-08 15:14:30 +0200 | [diff] [blame] | 441 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Bartlomiej Zolnierkiewicz | 1ea1031 | 2008-10-13 21:39:35 +0200 | [diff] [blame] | 443 | /* call ACPI _PS0 / _STM only once */ |
| 444 | if ((drive->dn & 1) == 0 || pair == NULL) { |
Shaohua Li | 5e32132 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 445 | ide_acpi_set_state(hwif, 1); |
Hannes Reinecke | e3a59b4 | 2007-02-07 18:19:37 +0100 | [diff] [blame] | 446 | ide_acpi_push_timing(hwif); |
Shaohua Li | 5e32132 | 2007-10-11 23:53:58 +0200 | [diff] [blame] | 447 | } |
Hannes Reinecke | e3a59b4 | 2007-02-07 18:19:37 +0100 | [diff] [blame] | 448 | |
| 449 | ide_acpi_exec_tfs(drive); |
| 450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | memset(&rqpm, 0, sizeof(rqpm)); |
| 452 | memset(&args, 0, sizeof(args)); |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 453 | rq = blk_get_request(drive->queue, READ, __GFP_WAIT); |
| 454 | rq->cmd_type = REQ_TYPE_PM_RESUME; |
| 455 | rq->cmd_flags |= REQ_PREEMPT; |
| 456 | rq->special = &args; |
| 457 | rq->data = &rqpm; |
Bartlomiej Zolnierkiewicz | 0d346ba | 2008-10-13 21:39:38 +0200 | [diff] [blame] | 458 | rqpm.pm_step = IDE_PM_START_RESUME; |
Pavel Machek | ca078ba | 2005-09-03 15:56:57 -0700 | [diff] [blame] | 459 | rqpm.pm_state = PM_EVENT_ON; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 461 | err = blk_execute_rq(drive->queue, NULL, rq, 1); |
| 462 | blk_put_request(rq); |
Lee Trager | 0d2157f | 2007-06-08 15:14:30 +0200 | [diff] [blame] | 463 | |
Rafael J. Wysocki | ce9b2b0 | 2007-06-16 02:24:43 +0200 | [diff] [blame] | 464 | if (err == 0 && dev->driver) { |
| 465 | ide_driver_t *drv = to_ide_driver(dev->driver); |
| 466 | |
| 467 | if (drv->resume) |
| 468 | drv->resume(drive); |
| 469 | } |
Lee Trager | 0d2157f | 2007-06-08 15:14:30 +0200 | [diff] [blame] | 470 | |
| 471 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | } |
| 473 | |
Bartlomiej Zolnierkiewicz | 08da591 | 2008-07-24 22:53:15 +0200 | [diff] [blame] | 474 | /** |
| 475 | * ide_device_get - get an additional reference to a ide_drive_t |
| 476 | * @drive: device to get a reference to |
| 477 | * |
| 478 | * Gets a reference to the ide_drive_t and increments the use count of the |
| 479 | * underlying LLDD module. |
| 480 | */ |
| 481 | int ide_device_get(ide_drive_t *drive) |
| 482 | { |
| 483 | struct device *host_dev; |
| 484 | struct module *module; |
| 485 | |
| 486 | if (!get_device(&drive->gendev)) |
| 487 | return -ENXIO; |
| 488 | |
| 489 | host_dev = drive->hwif->host->dev[0]; |
| 490 | module = host_dev ? host_dev->driver->owner : NULL; |
| 491 | |
| 492 | if (module && !try_module_get(module)) { |
| 493 | put_device(&drive->gendev); |
| 494 | return -ENXIO; |
| 495 | } |
| 496 | |
| 497 | return 0; |
| 498 | } |
| 499 | EXPORT_SYMBOL_GPL(ide_device_get); |
| 500 | |
| 501 | /** |
| 502 | * ide_device_put - release a reference to a ide_drive_t |
| 503 | * @drive: device to release a reference on |
| 504 | * |
| 505 | * Release a reference to the ide_drive_t and decrements the use count of |
| 506 | * the underlying LLDD module. |
| 507 | */ |
| 508 | void ide_device_put(ide_drive_t *drive) |
| 509 | { |
| 510 | #ifdef CONFIG_MODULE_UNLOAD |
| 511 | struct device *host_dev = drive->hwif->host->dev[0]; |
| 512 | struct module *module = host_dev ? host_dev->driver->owner : NULL; |
| 513 | |
| 514 | if (module) |
| 515 | module_put(module); |
| 516 | #endif |
| 517 | put_device(&drive->gendev); |
| 518 | } |
| 519 | EXPORT_SYMBOL_GPL(ide_device_put); |
| 520 | |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 521 | static int ide_bus_match(struct device *dev, struct device_driver *drv) |
| 522 | { |
| 523 | return 1; |
| 524 | } |
| 525 | |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 526 | static char *media_string(ide_drive_t *drive) |
| 527 | { |
| 528 | switch (drive->media) { |
| 529 | case ide_disk: |
| 530 | return "disk"; |
| 531 | case ide_cdrom: |
| 532 | return "cdrom"; |
| 533 | case ide_tape: |
| 534 | return "tape"; |
| 535 | case ide_floppy: |
| 536 | return "floppy"; |
Danny Kukawka | a7a832d | 2007-04-10 22:39:14 +0200 | [diff] [blame] | 537 | case ide_optical: |
| 538 | return "optical"; |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 539 | default: |
| 540 | return "UNKNOWN"; |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 545 | { |
| 546 | ide_drive_t *drive = to_ide_device(dev); |
| 547 | return sprintf(buf, "%s\n", media_string(drive)); |
| 548 | } |
| 549 | |
| 550 | static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 551 | { |
| 552 | ide_drive_t *drive = to_ide_device(dev); |
| 553 | return sprintf(buf, "%s\n", drive->name); |
| 554 | } |
| 555 | |
| 556 | static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 557 | { |
| 558 | ide_drive_t *drive = to_ide_device(dev); |
| 559 | return sprintf(buf, "ide:m-%s\n", media_string(drive)); |
| 560 | } |
| 561 | |
Bartlomiej Zolnierkiewicz | e11b903 | 2007-12-12 23:31:58 +0100 | [diff] [blame] | 562 | static ssize_t model_show(struct device *dev, struct device_attribute *attr, |
| 563 | char *buf) |
| 564 | { |
| 565 | ide_drive_t *drive = to_ide_device(dev); |
Bartlomiej Zolnierkiewicz | 4dde449 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 566 | return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_PROD]); |
Bartlomiej Zolnierkiewicz | e11b903 | 2007-12-12 23:31:58 +0100 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | static ssize_t firmware_show(struct device *dev, struct device_attribute *attr, |
| 570 | char *buf) |
| 571 | { |
| 572 | ide_drive_t *drive = to_ide_device(dev); |
Bartlomiej Zolnierkiewicz | 4dde449 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 573 | return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_FW_REV]); |
Bartlomiej Zolnierkiewicz | e11b903 | 2007-12-12 23:31:58 +0100 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | static ssize_t serial_show(struct device *dev, struct device_attribute *attr, |
| 577 | char *buf) |
| 578 | { |
| 579 | ide_drive_t *drive = to_ide_device(dev); |
Bartlomiej Zolnierkiewicz | 4dde449 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 580 | return sprintf(buf, "%s\n", (char *)&drive->id[ATA_ID_SERNO]); |
Bartlomiej Zolnierkiewicz | e11b903 | 2007-12-12 23:31:58 +0100 | [diff] [blame] | 581 | } |
| 582 | |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 583 | static struct device_attribute ide_dev_attrs[] = { |
| 584 | __ATTR_RO(media), |
| 585 | __ATTR_RO(drivename), |
| 586 | __ATTR_RO(modalias), |
Bartlomiej Zolnierkiewicz | e11b903 | 2007-12-12 23:31:58 +0100 | [diff] [blame] | 587 | __ATTR_RO(model), |
| 588 | __ATTR_RO(firmware), |
| 589 | __ATTR(serial, 0400, serial_show, NULL), |
Elias Oltmanns | 4abdc6e | 2008-10-13 21:39:50 +0200 | [diff] [blame] | 590 | __ATTR(unload_heads, 0644, ide_park_show, ide_park_store), |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 591 | __ATTR_NULL |
| 592 | }; |
| 593 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 594 | static int ide_uevent(struct device *dev, struct kobj_uevent_env *env) |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 595 | { |
| 596 | ide_drive_t *drive = to_ide_device(dev); |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 597 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 598 | add_uevent_var(env, "MEDIA=%s", media_string(drive)); |
| 599 | add_uevent_var(env, "DRIVENAME=%s", drive->name); |
| 600 | add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive)); |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 601 | return 0; |
| 602 | } |
| 603 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 604 | static int generic_ide_probe(struct device *dev) |
| 605 | { |
| 606 | ide_drive_t *drive = to_ide_device(dev); |
| 607 | ide_driver_t *drv = to_ide_driver(dev->driver); |
| 608 | |
| 609 | return drv->probe ? drv->probe(drive) : -ENODEV; |
| 610 | } |
| 611 | |
| 612 | static int generic_ide_remove(struct device *dev) |
| 613 | { |
| 614 | ide_drive_t *drive = to_ide_device(dev); |
| 615 | ide_driver_t *drv = to_ide_driver(dev->driver); |
| 616 | |
| 617 | if (drv->remove) |
| 618 | drv->remove(drive); |
| 619 | |
| 620 | return 0; |
| 621 | } |
| 622 | |
| 623 | static void generic_ide_shutdown(struct device *dev) |
| 624 | { |
| 625 | ide_drive_t *drive = to_ide_device(dev); |
| 626 | ide_driver_t *drv = to_ide_driver(dev->driver); |
| 627 | |
| 628 | if (dev->driver && drv->shutdown) |
| 629 | drv->shutdown(drive); |
| 630 | } |
| 631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | struct bus_type ide_bus_type = { |
| 633 | .name = "ide", |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 634 | .match = ide_bus_match, |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 635 | .uevent = ide_uevent, |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 636 | .probe = generic_ide_probe, |
| 637 | .remove = generic_ide_remove, |
| 638 | .shutdown = generic_ide_shutdown, |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 639 | .dev_attrs = ide_dev_attrs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | .suspend = generic_ide_suspend, |
| 641 | .resume = generic_ide_resume, |
| 642 | }; |
| 643 | |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 644 | EXPORT_SYMBOL_GPL(ide_bus_type); |
| 645 | |
Bartlomiej Zolnierkiewicz | ebae41a | 2008-04-27 15:38:29 +0200 | [diff] [blame] | 646 | int ide_vlb_clk; |
| 647 | EXPORT_SYMBOL_GPL(ide_vlb_clk); |
| 648 | |
| 649 | module_param_named(vlb_clock, ide_vlb_clk, int, 0); |
| 650 | MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)"); |
| 651 | |
| 652 | int ide_pci_clk; |
| 653 | EXPORT_SYMBOL_GPL(ide_pci_clk); |
| 654 | |
| 655 | module_param_named(pci_clock, ide_pci_clk, int, 0); |
| 656 | MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)"); |
| 657 | |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 658 | static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp) |
| 659 | { |
| 660 | int a, b, i, j = 1; |
| 661 | unsigned int *dev_param_mask = (unsigned int *)kp->arg; |
| 662 | |
| 663 | if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 && |
| 664 | sscanf(s, "%d.%d", &a, &b) != 2) |
| 665 | return -EINVAL; |
| 666 | |
| 667 | i = a * MAX_DRIVES + b; |
| 668 | |
| 669 | if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1) |
| 670 | return -EINVAL; |
| 671 | |
| 672 | if (j) |
| 673 | *dev_param_mask |= (1 << i); |
| 674 | else |
| 675 | *dev_param_mask &= (1 << i); |
| 676 | |
| 677 | return 0; |
| 678 | } |
| 679 | |
| 680 | static unsigned int ide_nodma; |
| 681 | |
| 682 | module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0); |
| 683 | MODULE_PARM_DESC(nodma, "disallow DMA for a device"); |
| 684 | |
| 685 | static unsigned int ide_noflush; |
| 686 | |
| 687 | module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0); |
| 688 | MODULE_PARM_DESC(noflush, "disable flush requests for a device"); |
| 689 | |
| 690 | static unsigned int ide_noprobe; |
| 691 | |
| 692 | module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0); |
| 693 | MODULE_PARM_DESC(noprobe, "skip probing for a device"); |
| 694 | |
| 695 | static unsigned int ide_nowerr; |
| 696 | |
| 697 | module_param_call(nowerr, ide_set_dev_param_mask, NULL, &ide_nowerr, 0); |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 698 | MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device"); |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 699 | |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 700 | static unsigned int ide_cdroms; |
| 701 | |
| 702 | module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0); |
| 703 | MODULE_PARM_DESC(cdrom, "force device as a CD-ROM"); |
| 704 | |
| 705 | struct chs_geom { |
| 706 | unsigned int cyl; |
| 707 | u8 head; |
| 708 | u8 sect; |
| 709 | }; |
| 710 | |
| 711 | static unsigned int ide_disks; |
| 712 | static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES]; |
| 713 | |
| 714 | static int ide_set_disk_chs(const char *str, struct kernel_param *kp) |
| 715 | { |
| 716 | int a, b, c = 0, h = 0, s = 0, i, j = 1; |
| 717 | |
| 718 | if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 && |
| 719 | sscanf(str, "%d.%d:%d", &a, &b, &j) != 3) |
| 720 | return -EINVAL; |
| 721 | |
| 722 | i = a * MAX_DRIVES + b; |
| 723 | |
| 724 | if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1) |
| 725 | return -EINVAL; |
| 726 | |
| 727 | if (c > INT_MAX || h > 255 || s > 255) |
| 728 | return -EINVAL; |
| 729 | |
| 730 | if (j) |
| 731 | ide_disks |= (1 << i); |
| 732 | else |
| 733 | ide_disks &= (1 << i); |
| 734 | |
| 735 | ide_disks_chs[i].cyl = c; |
| 736 | ide_disks_chs[i].head = h; |
| 737 | ide_disks_chs[i].sect = s; |
| 738 | |
| 739 | return 0; |
| 740 | } |
| 741 | |
| 742 | module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0); |
| 743 | MODULE_PARM_DESC(chs, "force device as a disk (using CHS)"); |
| 744 | |
Bartlomiej Zolnierkiewicz | 123995b | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 745 | static void ide_dev_apply_params(ide_drive_t *drive, u8 unit) |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 746 | { |
Bartlomiej Zolnierkiewicz | 123995b | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 747 | int i = drive->hwif->index * MAX_DRIVES + unit; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 748 | |
| 749 | if (ide_nodma & (1 << i)) { |
| 750 | printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 751 | drive->dev_flags |= IDE_DFLAG_NODMA; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 752 | } |
| 753 | if (ide_noflush & (1 << i)) { |
| 754 | printk(KERN_INFO "ide: disabling flush requests for %s\n", |
| 755 | drive->name); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 756 | drive->dev_flags |= IDE_DFLAG_NOFLUSH; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 757 | } |
| 758 | if (ide_noprobe & (1 << i)) { |
| 759 | printk(KERN_INFO "ide: skipping probe for %s\n", drive->name); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 760 | drive->dev_flags |= IDE_DFLAG_NOPROBE; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 761 | } |
| 762 | if (ide_nowerr & (1 << i)) { |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 763 | printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n", |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 764 | drive->name); |
| 765 | drive->bad_wstat = BAD_R_STAT; |
| 766 | } |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 767 | if (ide_cdroms & (1 << i)) { |
| 768 | printk(KERN_INFO "ide: forcing %s as a CD-ROM\n", drive->name); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 769 | drive->dev_flags |= IDE_DFLAG_PRESENT; |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 770 | drive->media = ide_cdrom; |
| 771 | /* an ATAPI device ignores DRDY */ |
| 772 | drive->ready_stat = 0; |
| 773 | } |
| 774 | if (ide_disks & (1 << i)) { |
| 775 | drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl; |
| 776 | drive->head = drive->bios_head = ide_disks_chs[i].head; |
| 777 | drive->sect = drive->bios_sect = ide_disks_chs[i].sect; |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 778 | |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 779 | printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n", |
| 780 | drive->name, |
| 781 | drive->cyl, drive->head, drive->sect); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 782 | |
| 783 | drive->dev_flags |= IDE_DFLAG_FORCED_GEOM | IDE_DFLAG_PRESENT; |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 784 | drive->media = ide_disk; |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 785 | drive->ready_stat = ATA_DRDY; |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 786 | } |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 787 | } |
| 788 | |
Bartlomiej Zolnierkiewicz | 9fd91d9 | 2008-04-27 15:38:23 +0200 | [diff] [blame] | 789 | static unsigned int ide_ignore_cable; |
| 790 | |
| 791 | static int ide_set_ignore_cable(const char *s, struct kernel_param *kp) |
| 792 | { |
| 793 | int i, j = 1; |
| 794 | |
| 795 | if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1) |
| 796 | return -EINVAL; |
| 797 | |
| 798 | if (i >= MAX_HWIFS || j < 0 || j > 1) |
| 799 | return -EINVAL; |
| 800 | |
| 801 | if (j) |
| 802 | ide_ignore_cable |= (1 << i); |
| 803 | else |
| 804 | ide_ignore_cable &= (1 << i); |
| 805 | |
| 806 | return 0; |
| 807 | } |
| 808 | |
| 809 | module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0); |
| 810 | MODULE_PARM_DESC(ignore_cable, "ignore cable detection"); |
| 811 | |
| 812 | void ide_port_apply_params(ide_hwif_t *hwif) |
| 813 | { |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 814 | int i; |
| 815 | |
Bartlomiej Zolnierkiewicz | 9fd91d9 | 2008-04-27 15:38:23 +0200 | [diff] [blame] | 816 | if (ide_ignore_cable & (1 << hwif->index)) { |
| 817 | printk(KERN_INFO "ide: ignoring cable detection for %s\n", |
| 818 | hwif->name); |
| 819 | hwif->cbl = ATA_CBL_PATA40_SHORT; |
| 820 | } |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 821 | |
| 822 | for (i = 0; i < MAX_DRIVES; i++) |
Bartlomiej Zolnierkiewicz | 123995b | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 823 | ide_dev_apply_params(&hwif->drives[i], i); |
Bartlomiej Zolnierkiewicz | 9fd91d9 | 2008-04-27 15:38:23 +0200 | [diff] [blame] | 824 | } |
| 825 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | /* |
| 827 | * This is gets invoked once during initialization, to set *everything* up |
| 828 | */ |
| 829 | static int __init ide_init(void) |
| 830 | { |
Randy Dunlap | 349ae23 | 2006-10-03 01:14:23 -0700 | [diff] [blame] | 831 | int ret; |
| 832 | |
Bartlomiej Zolnierkiewicz | eba8ff9 | 2008-02-11 00:32:13 +0100 | [diff] [blame] | 833 | printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n"); |
Bartlomiej Zolnierkiewicz | 537f06c | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 834 | |
Randy Dunlap | 349ae23 | 2006-10-03 01:14:23 -0700 | [diff] [blame] | 835 | ret = bus_register(&ide_bus_type); |
| 836 | if (ret < 0) { |
| 837 | printk(KERN_WARNING "IDE: bus_register error: %d\n", ret); |
| 838 | return ret; |
| 839 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 841 | ide_port_class = class_create(THIS_MODULE, "ide_port"); |
| 842 | if (IS_ERR(ide_port_class)) { |
| 843 | ret = PTR_ERR(ide_port_class); |
| 844 | goto out_port_class; |
| 845 | } |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 846 | |
Bartlomiej Zolnierkiewicz | 5cbf79c | 2007-05-10 00:01:11 +0200 | [diff] [blame] | 847 | proc_ide_create(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | return 0; |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 850 | |
| 851 | out_port_class: |
| 852 | bus_unregister(&ide_bus_type); |
| 853 | |
| 854 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } |
| 856 | |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 857 | static void __exit ide_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | proc_ide_destroy(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 861 | class_destroy(ide_port_class); |
| 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | bus_unregister(&ide_bus_type); |
| 864 | } |
| 865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | module_init(ide_init); |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 867 | module_exit(ide_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 869 | MODULE_LICENSE("GPL"); |