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 | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 77 | static void ide_port_init_devices_data(ide_hwif_t *); |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* |
| 80 | * Do not even *think* about calling this! |
| 81 | */ |
Bartlomiej Zolnierkiewicz | cbb010c | 2008-01-26 20:13:06 +0100 | [diff] [blame] | 82 | void ide_init_port_data(ide_hwif_t *hwif, unsigned int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /* bulk initialize hwif & drive info with zeros */ |
| 85 | memset(hwif, 0, sizeof(ide_hwif_t)); |
| 86 | |
| 87 | /* fill in any non-zero initial values */ |
| 88 | hwif->index = index; |
| 89 | hwif->major = ide_hwif_to_major[index]; |
| 90 | |
| 91 | hwif->name[0] = 'i'; |
| 92 | hwif->name[1] = 'd'; |
| 93 | hwif->name[2] = 'e'; |
| 94 | hwif->name[3] = '0' + index; |
| 95 | |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 96 | init_completion(&hwif->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Bartlomiej Zolnierkiewicz | 374e042 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 98 | hwif->tp_ops = &default_tp_ops; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 99 | |
| 100 | ide_port_init_devices_data(hwif); |
| 101 | } |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 102 | |
| 103 | static void ide_port_init_devices_data(ide_hwif_t *hwif) |
| 104 | { |
| 105 | int unit; |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | for (unit = 0; unit < MAX_DRIVES; ++unit) { |
| 108 | ide_drive_t *drive = &hwif->drives[unit]; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 109 | u8 j = (hwif->index * MAX_DRIVES) + unit; |
| 110 | |
| 111 | memset(drive, 0, sizeof(*drive)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | drive->media = ide_disk; |
Bartlomiej Zolnierkiewicz | 7f612f2 | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 114 | drive->select = (unit << 4) | ATA_DEVICE_OBS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | drive->hwif = hwif; |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 116 | drive->ready_stat = ATA_DRDY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | drive->bad_wstat = BAD_W_STAT; |
| 118 | drive->special.b.recalibrate = 1; |
| 119 | drive->special.b.set_geometry = 1; |
| 120 | drive->name[0] = 'h'; |
| 121 | drive->name[1] = 'd'; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 122 | drive->name[2] = 'a' + j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | drive->max_failures = IDE_DEFAULT_MAX_FAILURES; |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | INIT_LIST_HEAD(&drive->list); |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 126 | init_completion(&drive->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | } |
Bartlomiej Zolnierkiewicz | 43514ed | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 129 | |
Bartlomiej Zolnierkiewicz | 2dde786 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 130 | static void __ide_port_unregister_devices(ide_hwif_t *hwif) |
Bartlomiej Zolnierkiewicz | 71bf9f6 | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 131 | { |
| 132 | int i; |
| 133 | |
| 134 | for (i = 0; i < MAX_DRIVES; i++) { |
| 135 | ide_drive_t *drive = &hwif->drives[i]; |
| 136 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 137 | if (drive->dev_flags & IDE_DFLAG_PRESENT) { |
Bartlomiej Zolnierkiewicz | 71bf9f6 | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 138 | device_unregister(&drive->gendev); |
| 139 | wait_for_completion(&drive->gendev_rel_comp); |
Bartlomiej Zolnierkiewicz | 71bf9f6 | 2008-04-18 00:46:22 +0200 | [diff] [blame] | 140 | } |
| 141 | } |
| 142 | } |
| 143 | |
Bartlomiej Zolnierkiewicz | 2dde786 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 144 | void ide_port_unregister_devices(ide_hwif_t *hwif) |
| 145 | { |
| 146 | mutex_lock(&ide_cfg_mtx); |
Bartlomiej Zolnierkiewicz | 2dde786 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 147 | __ide_port_unregister_devices(hwif); |
| 148 | hwif->present = 0; |
| 149 | ide_port_init_devices_data(hwif); |
Bartlomiej Zolnierkiewicz | 2dde786 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 150 | mutex_unlock(&ide_cfg_mtx); |
| 151 | } |
| 152 | EXPORT_SYMBOL_GPL(ide_port_unregister_devices); |
| 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | /** |
Sergei Shtylylov | 020e322 | 2006-10-03 01:14:13 -0700 | [diff] [blame] | 155 | * ide_unregister - free an IDE interface |
Bartlomiej Zolnierkiewicz | 387750c | 2008-04-27 15:38:31 +0200 | [diff] [blame] | 156 | * @hwif: IDE interface |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | * |
| 158 | * Perform the final unregister of an IDE interface. At the moment |
| 159 | * we don't refcount interfaces so this will also get split up. |
| 160 | * |
| 161 | * Locking: |
| 162 | * The caller must not hold the IDE locks |
| 163 | * The drive present/vanishing is not yet properly locked |
| 164 | * Take care with the callbacks. These have been split to avoid |
| 165 | * deadlocking the IDE layer. The shutdown callback is called |
| 166 | * before we take the lock and free resources. It is up to the |
| 167 | * 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] | 168 | * the interface will not be reopened (present/vanishing locking |
| 169 | * 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] | 170 | * call the cleanup callback with the ide locks held. |
| 171 | * |
| 172 | * Unregister restores the hwif structures to the default state. |
| 173 | * This is raving bonkers. |
| 174 | */ |
| 175 | |
Bartlomiej Zolnierkiewicz | 387750c | 2008-04-27 15:38:31 +0200 | [diff] [blame] | 176 | void ide_unregister(ide_hwif_t *hwif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | BUG_ON(in_interrupt()); |
| 179 | BUG_ON(irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Bartlomiej Zolnierkiewicz | bd8a59e | 2008-07-05 20:30:51 +0200 | [diff] [blame] | 181 | mutex_lock(&ide_cfg_mtx); |
| 182 | |
Bartlomiej Zolnierkiewicz | bd8a59e | 2008-07-05 20:30:51 +0200 | [diff] [blame] | 183 | if (hwif->present) { |
| 184 | __ide_port_unregister_devices(hwif); |
| 185 | hwif->present = 0; |
| 186 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Bartlomiej Zolnierkiewicz | 5cbf79c | 2007-05-10 00:01:11 +0200 | [diff] [blame] | 188 | ide_proc_unregister_port(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Bartlomiej Zolnierkiewicz | ae86afa | 2009-01-06 17:20:48 +0100 | [diff] [blame] | 190 | free_irq(hwif->irq, hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 192 | device_unregister(hwif->portdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | device_unregister(&hwif->gendev); |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 194 | wait_for_completion(&hwif->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
| 196 | /* |
| 197 | * Remove us from the kernel's knowledge |
| 198 | */ |
| 199 | blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS); |
| 200 | kfree(hwif->sg_table); |
| 201 | unregister_blkdev(hwif->major, hwif->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Bartlomiej Zolnierkiewicz | 2bbd57c | 2008-10-13 21:39:47 +0200 | [diff] [blame] | 203 | ide_release_dma_engine(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Matthias Kaehlcke | ef29888 | 2007-07-09 23:17:55 +0200 | [diff] [blame] | 205 | mutex_unlock(&ide_cfg_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 208 | void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw) |
| 209 | { |
Bartlomiej Zolnierkiewicz | 4c3032d | 2008-04-27 15:38:32 +0200 | [diff] [blame] | 210 | memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports)); |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 211 | hwif->irq = hw->irq; |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 212 | hwif->chipset = hw->chipset; |
Bartlomiej Zolnierkiewicz | c56c564 | 2008-07-16 20:33:40 +0200 | [diff] [blame] | 213 | hwif->dev = hw->dev; |
| 214 | hwif->gendev.parent = hw->parent ? hw->parent : hw->dev; |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 215 | hwif->ack_intr = hw->ack_intr; |
Bartlomiej Zolnierkiewicz | d6276b5 | 2008-07-23 19:55:56 +0200 | [diff] [blame] | 216 | hwif->config_data = hw->config; |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 217 | } |
Bartlomiej Zolnierkiewicz | 57c802e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* |
| 220 | * Locks for IDE setting functionality |
| 221 | */ |
| 222 | |
Matthias Kaehlcke | f9383c4 | 2007-07-09 23:17:56 +0200 | [diff] [blame] | 223 | DEFINE_MUTEX(ide_setting_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 225 | ide_devset_get(io_32bit, io_32bit); |
| 226 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 227 | static int set_io_32bit(ide_drive_t *drive, int arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 229 | if (drive->dev_flags & IDE_DFLAG_NO_IO_32BIT) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 230 | return -EPERM; |
| 231 | |
| 232 | if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1)) |
| 233 | return -EINVAL; |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | drive->io_32bit = arg; |
Bartlomiej Zolnierkiewicz | 644a9d7 | 2007-12-12 23:32:00 +0100 | [diff] [blame] | 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return 0; |
| 238 | } |
| 239 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 240 | ide_devset_get_flag(ksettings, IDE_DFLAG_KEEP_SETTINGS); |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 241 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 242 | static int set_ksettings(ide_drive_t *drive, int arg) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 243 | { |
| 244 | if (arg < 0 || arg > 1) |
| 245 | return -EINVAL; |
| 246 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 247 | if (arg) |
| 248 | drive->dev_flags |= IDE_DFLAG_KEEP_SETTINGS; |
| 249 | else |
| 250 | drive->dev_flags &= ~IDE_DFLAG_KEEP_SETTINGS; |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 255 | ide_devset_get_flag(using_dma, IDE_DFLAG_USING_DMA); |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 256 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 257 | static int set_using_dma(ide_drive_t *drive, int arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | { |
| 259 | #ifdef CONFIG_BLK_DEV_IDEDMA |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 260 | int err = -EPERM; |
| 261 | |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 262 | if (arg < 0 || arg > 1) |
| 263 | return -EINVAL; |
| 264 | |
Bartlomiej Zolnierkiewicz | 48fb268 | 2008-10-10 22:39:19 +0200 | [diff] [blame] | 265 | if (ata_id_has_dma(drive->id) == 0) |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 266 | goto out; |
| 267 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 268 | if (drive->hwif->dma_ops == NULL) |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 269 | goto out; |
| 270 | |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 271 | err = 0; |
| 272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | if (arg) { |
Bartlomiej Zolnierkiewicz | 23b1bd4 | 2008-01-25 22:17:19 +0100 | [diff] [blame] | 274 | if (ide_set_dma(drive)) |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 275 | err = -EIO; |
Bartlomiej Zolnierkiewicz | 7469aaf | 2007-02-17 02:40:26 +0100 | [diff] [blame] | 276 | } else |
| 277 | ide_dma_off(drive); |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 278 | |
Bartlomiej Zolnierkiewicz | 8799620 | 2007-03-26 23:03:19 +0200 | [diff] [blame] | 279 | out: |
| 280 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | #else |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 282 | if (arg < 0 || arg > 1) |
| 283 | return -EINVAL; |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | return -EPERM; |
| 286 | #endif |
| 287 | } |
| 288 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 289 | /* |
| 290 | * handle HDIO_SET_PIO_MODE ioctl abusers here, eventually it will go away |
| 291 | */ |
| 292 | static int set_pio_mode_abuse(ide_hwif_t *hwif, u8 req_pio) |
| 293 | { |
| 294 | switch (req_pio) { |
| 295 | case 202: |
| 296 | case 201: |
| 297 | case 200: |
| 298 | case 102: |
| 299 | case 101: |
| 300 | case 100: |
| 301 | return (hwif->host_flags & IDE_HFLAG_ABUSE_DMA_MODES) ? 1 : 0; |
| 302 | case 9: |
| 303 | case 8: |
| 304 | return (hwif->host_flags & IDE_HFLAG_ABUSE_PREFETCH) ? 1 : 0; |
| 305 | case 7: |
| 306 | case 6: |
| 307 | return (hwif->host_flags & IDE_HFLAG_ABUSE_FAST_DEVSEL) ? 1 : 0; |
| 308 | default: |
| 309 | return 0; |
| 310 | } |
| 311 | } |
| 312 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 313 | static int set_pio_mode(ide_drive_t *drive, int arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Bartlomiej Zolnierkiewicz | 784506c | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 315 | ide_hwif_t *hwif = drive->hwif; |
Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 316 | const struct ide_port_ops *port_ops = hwif->port_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 318 | if (arg < 0 || arg > 255) |
| 319 | return -EINVAL; |
| 320 | |
Bartlomiej Zolnierkiewicz | ac95bee | 2008-04-26 22:25:14 +0200 | [diff] [blame] | 321 | if (port_ops == NULL || port_ops->set_pio_mode == NULL || |
Bartlomiej Zolnierkiewicz | 784506c | 2008-04-26 17:36:43 +0200 | [diff] [blame] | 322 | (hwif->host_flags & IDE_HFLAG_NO_SET_MODE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | return -ENOSYS; |
Bartlomiej Zolnierkiewicz | 26bcb87 | 2007-10-11 23:54:00 +0200 | [diff] [blame] | 324 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 325 | if (set_pio_mode_abuse(drive->hwif, arg)) { |
| 326 | if (arg == 8 || arg == 9) { |
| 327 | unsigned long flags; |
Bartlomiej Zolnierkiewicz | 145b75e | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 328 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 329 | /* take lock for IDE_DFLAG_[NO_]UNMASK/[NO_]IO_32BIT */ |
Bartlomiej Zolnierkiewicz | b65fac3 | 2009-01-06 17:20:50 +0100 | [diff] [blame^] | 330 | spin_lock_irqsave(&hwif->lock, flags); |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 331 | port_ops->set_pio_mode(drive, arg); |
Bartlomiej Zolnierkiewicz | b65fac3 | 2009-01-06 17:20:50 +0100 | [diff] [blame^] | 332 | spin_unlock_irqrestore(&hwif->lock, flags); |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 333 | } else |
| 334 | port_ops->set_pio_mode(drive, arg); |
| 335 | } else { |
| 336 | int keep_dma = !!(drive->dev_flags & IDE_DFLAG_USING_DMA); |
Bartlomiej Zolnierkiewicz | 145b75e | 2008-01-26 20:13:11 +0100 | [diff] [blame] | 337 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 338 | ide_set_pio(drive, arg); |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 339 | |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 340 | if (hwif->host_flags & IDE_HFLAG_SET_PIO_MODE_KEEP_DMA) { |
| 341 | if (keep_dma) |
| 342 | ide_dma_on(drive); |
| 343 | } |
| 344 | } |
FUJITA Tomonori | 5b11471 | 2008-07-15 21:21:44 +0200 | [diff] [blame] | 345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | return 0; |
| 347 | } |
| 348 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 349 | ide_devset_get_flag(unmaskirq, IDE_DFLAG_UNMASK); |
Bartlomiej Zolnierkiewicz | 8185d5a | 2008-10-10 22:39:28 +0200 | [diff] [blame] | 350 | |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 351 | static int set_unmaskirq(ide_drive_t *drive, int arg) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 352 | { |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 353 | if (drive->dev_flags & IDE_DFLAG_NO_UNMASK) |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 354 | return -EPERM; |
| 355 | |
| 356 | if (arg < 0 || arg > 1) |
| 357 | return -EINVAL; |
| 358 | |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 359 | if (arg) |
| 360 | drive->dev_flags |= IDE_DFLAG_UNMASK; |
| 361 | else |
| 362 | drive->dev_flags &= ~IDE_DFLAG_UNMASK; |
Bartlomiej Zolnierkiewicz | 1497943 | 2007-05-10 00:01:10 +0200 | [diff] [blame] | 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
Bartlomiej Zolnierkiewicz | f879048 | 2008-10-13 21:39:45 +0200 | [diff] [blame] | 367 | ide_ext_devset_rw_sync(io_32bit, io_32bit); |
| 368 | ide_ext_devset_rw_sync(keepsettings, ksettings); |
| 369 | ide_ext_devset_rw_sync(unmaskirq, unmaskirq); |
| 370 | ide_ext_devset_rw_sync(using_dma, using_dma); |
Bartlomiej Zolnierkiewicz | 6982daf | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 371 | __IDE_DEVSET(pio_mode, DS_SYNC, NULL, set_pio_mode); |
Elias Oltmanns | 92f1f8f | 2008-10-10 22:39:40 +0200 | [diff] [blame] | 372 | |
Bartlomiej Zolnierkiewicz | 08da591 | 2008-07-24 22:53:15 +0200 | [diff] [blame] | 373 | /** |
| 374 | * ide_device_get - get an additional reference to a ide_drive_t |
| 375 | * @drive: device to get a reference to |
| 376 | * |
| 377 | * Gets a reference to the ide_drive_t and increments the use count of the |
| 378 | * underlying LLDD module. |
| 379 | */ |
| 380 | int ide_device_get(ide_drive_t *drive) |
| 381 | { |
| 382 | struct device *host_dev; |
| 383 | struct module *module; |
| 384 | |
| 385 | if (!get_device(&drive->gendev)) |
| 386 | return -ENXIO; |
| 387 | |
| 388 | host_dev = drive->hwif->host->dev[0]; |
| 389 | module = host_dev ? host_dev->driver->owner : NULL; |
| 390 | |
| 391 | if (module && !try_module_get(module)) { |
| 392 | put_device(&drive->gendev); |
| 393 | return -ENXIO; |
| 394 | } |
| 395 | |
| 396 | return 0; |
| 397 | } |
| 398 | EXPORT_SYMBOL_GPL(ide_device_get); |
| 399 | |
| 400 | /** |
| 401 | * ide_device_put - release a reference to a ide_drive_t |
| 402 | * @drive: device to release a reference on |
| 403 | * |
| 404 | * Release a reference to the ide_drive_t and decrements the use count of |
| 405 | * the underlying LLDD module. |
| 406 | */ |
| 407 | void ide_device_put(ide_drive_t *drive) |
| 408 | { |
| 409 | #ifdef CONFIG_MODULE_UNLOAD |
| 410 | struct device *host_dev = drive->hwif->host->dev[0]; |
| 411 | struct module *module = host_dev ? host_dev->driver->owner : NULL; |
| 412 | |
| 413 | if (module) |
| 414 | module_put(module); |
| 415 | #endif |
| 416 | put_device(&drive->gendev); |
| 417 | } |
| 418 | EXPORT_SYMBOL_GPL(ide_device_put); |
| 419 | |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 420 | static int ide_bus_match(struct device *dev, struct device_driver *drv) |
| 421 | { |
| 422 | return 1; |
| 423 | } |
| 424 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 425 | static int ide_uevent(struct device *dev, struct kobj_uevent_env *env) |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 426 | { |
| 427 | ide_drive_t *drive = to_ide_device(dev); |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 428 | |
Bartlomiej Zolnierkiewicz | ebdab07 | 2009-01-02 16:12:48 +0100 | [diff] [blame] | 429 | add_uevent_var(env, "MEDIA=%s", ide_media_string(drive)); |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 430 | add_uevent_var(env, "DRIVENAME=%s", drive->name); |
Bartlomiej Zolnierkiewicz | ebdab07 | 2009-01-02 16:12:48 +0100 | [diff] [blame] | 431 | add_uevent_var(env, "MODALIAS=ide:m-%s", ide_media_string(drive)); |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 432 | return 0; |
| 433 | } |
| 434 | |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 435 | static int generic_ide_probe(struct device *dev) |
| 436 | { |
| 437 | ide_drive_t *drive = to_ide_device(dev); |
| 438 | ide_driver_t *drv = to_ide_driver(dev->driver); |
| 439 | |
| 440 | return drv->probe ? drv->probe(drive) : -ENODEV; |
| 441 | } |
| 442 | |
| 443 | static int generic_ide_remove(struct device *dev) |
| 444 | { |
| 445 | ide_drive_t *drive = to_ide_device(dev); |
| 446 | ide_driver_t *drv = to_ide_driver(dev->driver); |
| 447 | |
| 448 | if (drv->remove) |
| 449 | drv->remove(drive); |
| 450 | |
| 451 | return 0; |
| 452 | } |
| 453 | |
| 454 | static void generic_ide_shutdown(struct device *dev) |
| 455 | { |
| 456 | ide_drive_t *drive = to_ide_device(dev); |
| 457 | ide_driver_t *drv = to_ide_driver(dev->driver); |
| 458 | |
| 459 | if (dev->driver && drv->shutdown) |
| 460 | drv->shutdown(drive); |
| 461 | } |
| 462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | struct bus_type ide_bus_type = { |
| 464 | .name = "ide", |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 465 | .match = ide_bus_match, |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 466 | .uevent = ide_uevent, |
Russell King | 4031bbe | 2006-01-06 11:41:00 +0000 | [diff] [blame] | 467 | .probe = generic_ide_probe, |
| 468 | .remove = generic_ide_remove, |
| 469 | .shutdown = generic_ide_shutdown, |
Kay Sievers | 263756e | 2005-12-12 18:03:44 +0100 | [diff] [blame] | 470 | .dev_attrs = ide_dev_attrs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | .suspend = generic_ide_suspend, |
| 472 | .resume = generic_ide_resume, |
| 473 | }; |
| 474 | |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 475 | EXPORT_SYMBOL_GPL(ide_bus_type); |
| 476 | |
Bartlomiej Zolnierkiewicz | ebae41a | 2008-04-27 15:38:29 +0200 | [diff] [blame] | 477 | int ide_vlb_clk; |
| 478 | EXPORT_SYMBOL_GPL(ide_vlb_clk); |
| 479 | |
| 480 | module_param_named(vlb_clock, ide_vlb_clk, int, 0); |
| 481 | MODULE_PARM_DESC(vlb_clock, "VLB clock frequency (in MHz)"); |
| 482 | |
| 483 | int ide_pci_clk; |
| 484 | EXPORT_SYMBOL_GPL(ide_pci_clk); |
| 485 | |
| 486 | module_param_named(pci_clock, ide_pci_clk, int, 0); |
| 487 | MODULE_PARM_DESC(pci_clock, "PCI bus clock frequency (in MHz)"); |
| 488 | |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 489 | static int ide_set_dev_param_mask(const char *s, struct kernel_param *kp) |
| 490 | { |
| 491 | int a, b, i, j = 1; |
| 492 | unsigned int *dev_param_mask = (unsigned int *)kp->arg; |
| 493 | |
| 494 | if (sscanf(s, "%d.%d:%d", &a, &b, &j) != 3 && |
| 495 | sscanf(s, "%d.%d", &a, &b) != 2) |
| 496 | return -EINVAL; |
| 497 | |
| 498 | i = a * MAX_DRIVES + b; |
| 499 | |
| 500 | if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1) |
| 501 | return -EINVAL; |
| 502 | |
| 503 | if (j) |
| 504 | *dev_param_mask |= (1 << i); |
| 505 | else |
| 506 | *dev_param_mask &= (1 << i); |
| 507 | |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | static unsigned int ide_nodma; |
| 512 | |
| 513 | module_param_call(nodma, ide_set_dev_param_mask, NULL, &ide_nodma, 0); |
| 514 | MODULE_PARM_DESC(nodma, "disallow DMA for a device"); |
| 515 | |
| 516 | static unsigned int ide_noflush; |
| 517 | |
| 518 | module_param_call(noflush, ide_set_dev_param_mask, NULL, &ide_noflush, 0); |
| 519 | MODULE_PARM_DESC(noflush, "disable flush requests for a device"); |
| 520 | |
| 521 | static unsigned int ide_noprobe; |
| 522 | |
| 523 | module_param_call(noprobe, ide_set_dev_param_mask, NULL, &ide_noprobe, 0); |
| 524 | MODULE_PARM_DESC(noprobe, "skip probing for a device"); |
| 525 | |
| 526 | static unsigned int ide_nowerr; |
| 527 | |
| 528 | 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] | 529 | MODULE_PARM_DESC(nowerr, "ignore the ATA_DF bit for a device"); |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 530 | |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 531 | static unsigned int ide_cdroms; |
| 532 | |
| 533 | module_param_call(cdrom, ide_set_dev_param_mask, NULL, &ide_cdroms, 0); |
| 534 | MODULE_PARM_DESC(cdrom, "force device as a CD-ROM"); |
| 535 | |
| 536 | struct chs_geom { |
| 537 | unsigned int cyl; |
| 538 | u8 head; |
| 539 | u8 sect; |
| 540 | }; |
| 541 | |
| 542 | static unsigned int ide_disks; |
| 543 | static struct chs_geom ide_disks_chs[MAX_HWIFS * MAX_DRIVES]; |
| 544 | |
| 545 | static int ide_set_disk_chs(const char *str, struct kernel_param *kp) |
| 546 | { |
| 547 | int a, b, c = 0, h = 0, s = 0, i, j = 1; |
| 548 | |
| 549 | if (sscanf(str, "%d.%d:%d,%d,%d", &a, &b, &c, &h, &s) != 5 && |
| 550 | sscanf(str, "%d.%d:%d", &a, &b, &j) != 3) |
| 551 | return -EINVAL; |
| 552 | |
| 553 | i = a * MAX_DRIVES + b; |
| 554 | |
| 555 | if (i >= MAX_HWIFS * MAX_DRIVES || j < 0 || j > 1) |
| 556 | return -EINVAL; |
| 557 | |
| 558 | if (c > INT_MAX || h > 255 || s > 255) |
| 559 | return -EINVAL; |
| 560 | |
| 561 | if (j) |
| 562 | ide_disks |= (1 << i); |
| 563 | else |
| 564 | ide_disks &= (1 << i); |
| 565 | |
| 566 | ide_disks_chs[i].cyl = c; |
| 567 | ide_disks_chs[i].head = h; |
| 568 | ide_disks_chs[i].sect = s; |
| 569 | |
| 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | module_param_call(chs, ide_set_disk_chs, NULL, NULL, 0); |
| 574 | MODULE_PARM_DESC(chs, "force device as a disk (using CHS)"); |
| 575 | |
Bartlomiej Zolnierkiewicz | 123995b | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 576 | static void ide_dev_apply_params(ide_drive_t *drive, u8 unit) |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 577 | { |
Bartlomiej Zolnierkiewicz | 123995b | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 578 | int i = drive->hwif->index * MAX_DRIVES + unit; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 579 | |
| 580 | if (ide_nodma & (1 << i)) { |
| 581 | printk(KERN_INFO "ide: disallowing DMA for %s\n", drive->name); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 582 | drive->dev_flags |= IDE_DFLAG_NODMA; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 583 | } |
| 584 | if (ide_noflush & (1 << i)) { |
| 585 | printk(KERN_INFO "ide: disabling flush requests for %s\n", |
| 586 | drive->name); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 587 | drive->dev_flags |= IDE_DFLAG_NOFLUSH; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 588 | } |
| 589 | if (ide_noprobe & (1 << i)) { |
| 590 | printk(KERN_INFO "ide: skipping probe for %s\n", drive->name); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 591 | drive->dev_flags |= IDE_DFLAG_NOPROBE; |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 592 | } |
| 593 | if (ide_nowerr & (1 << i)) { |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 594 | printk(KERN_INFO "ide: ignoring the ATA_DF bit for %s\n", |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 595 | drive->name); |
| 596 | drive->bad_wstat = BAD_R_STAT; |
| 597 | } |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 598 | if (ide_cdroms & (1 << i)) { |
| 599 | 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] | 600 | drive->dev_flags |= IDE_DFLAG_PRESENT; |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 601 | drive->media = ide_cdrom; |
| 602 | /* an ATAPI device ignores DRDY */ |
| 603 | drive->ready_stat = 0; |
| 604 | } |
| 605 | if (ide_disks & (1 << i)) { |
| 606 | drive->cyl = drive->bios_cyl = ide_disks_chs[i].cyl; |
| 607 | drive->head = drive->bios_head = ide_disks_chs[i].head; |
| 608 | drive->sect = drive->bios_sect = ide_disks_chs[i].sect; |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 609 | |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 610 | printk(KERN_INFO "ide: forcing %s as a disk (%d/%d/%d)\n", |
| 611 | drive->name, |
| 612 | drive->cyl, drive->head, drive->sect); |
Bartlomiej Zolnierkiewicz | 97100fc | 2008-10-13 21:39:36 +0200 | [diff] [blame] | 613 | |
| 614 | drive->dev_flags |= IDE_DFLAG_FORCED_GEOM | IDE_DFLAG_PRESENT; |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 615 | drive->media = ide_disk; |
Bartlomiej Zolnierkiewicz | 3a7d248 | 2008-10-10 22:39:21 +0200 | [diff] [blame] | 616 | drive->ready_stat = ATA_DRDY; |
Bartlomiej Zolnierkiewicz | 4706a7e | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 617 | } |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 618 | } |
| 619 | |
Bartlomiej Zolnierkiewicz | 9fd91d9 | 2008-04-27 15:38:23 +0200 | [diff] [blame] | 620 | static unsigned int ide_ignore_cable; |
| 621 | |
| 622 | static int ide_set_ignore_cable(const char *s, struct kernel_param *kp) |
| 623 | { |
| 624 | int i, j = 1; |
| 625 | |
| 626 | if (sscanf(s, "%d:%d", &i, &j) != 2 && sscanf(s, "%d", &i) != 1) |
| 627 | return -EINVAL; |
| 628 | |
| 629 | if (i >= MAX_HWIFS || j < 0 || j > 1) |
| 630 | return -EINVAL; |
| 631 | |
| 632 | if (j) |
| 633 | ide_ignore_cable |= (1 << i); |
| 634 | else |
| 635 | ide_ignore_cable &= (1 << i); |
| 636 | |
| 637 | return 0; |
| 638 | } |
| 639 | |
| 640 | module_param_call(ignore_cable, ide_set_ignore_cable, NULL, NULL, 0); |
| 641 | MODULE_PARM_DESC(ignore_cable, "ignore cable detection"); |
| 642 | |
| 643 | void ide_port_apply_params(ide_hwif_t *hwif) |
| 644 | { |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 645 | int i; |
| 646 | |
Bartlomiej Zolnierkiewicz | 9fd91d9 | 2008-04-27 15:38:23 +0200 | [diff] [blame] | 647 | if (ide_ignore_cable & (1 << hwif->index)) { |
| 648 | printk(KERN_INFO "ide: ignoring cable detection for %s\n", |
| 649 | hwif->name); |
| 650 | hwif->cbl = ATA_CBL_PATA40_SHORT; |
| 651 | } |
Bartlomiej Zolnierkiewicz | 6e87543 | 2008-04-27 15:38:30 +0200 | [diff] [blame] | 652 | |
| 653 | for (i = 0; i < MAX_DRIVES; i++) |
Bartlomiej Zolnierkiewicz | 123995b | 2008-10-13 21:39:40 +0200 | [diff] [blame] | 654 | ide_dev_apply_params(&hwif->drives[i], i); |
Bartlomiej Zolnierkiewicz | 9fd91d9 | 2008-04-27 15:38:23 +0200 | [diff] [blame] | 655 | } |
| 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | /* |
| 658 | * This is gets invoked once during initialization, to set *everything* up |
| 659 | */ |
| 660 | static int __init ide_init(void) |
| 661 | { |
Randy Dunlap | 349ae23 | 2006-10-03 01:14:23 -0700 | [diff] [blame] | 662 | int ret; |
| 663 | |
Bartlomiej Zolnierkiewicz | eba8ff9 | 2008-02-11 00:32:13 +0100 | [diff] [blame] | 664 | printk(KERN_INFO "Uniform Multi-Platform E-IDE driver\n"); |
Bartlomiej Zolnierkiewicz | 537f06c | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 665 | |
Randy Dunlap | 349ae23 | 2006-10-03 01:14:23 -0700 | [diff] [blame] | 666 | ret = bus_register(&ide_bus_type); |
| 667 | if (ret < 0) { |
| 668 | printk(KERN_WARNING "IDE: bus_register error: %d\n", ret); |
| 669 | return ret; |
| 670 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 672 | ide_port_class = class_create(THIS_MODULE, "ide_port"); |
| 673 | if (IS_ERR(ide_port_class)) { |
| 674 | ret = PTR_ERR(ide_port_class); |
| 675 | goto out_port_class; |
| 676 | } |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 677 | |
Bartlomiej Zolnierkiewicz | 5cbf79c | 2007-05-10 00:01:11 +0200 | [diff] [blame] | 678 | proc_ide_create(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | return 0; |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 681 | |
| 682 | out_port_class: |
| 683 | bus_unregister(&ide_bus_type); |
| 684 | |
| 685 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } |
| 687 | |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 688 | static void __exit ide_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | proc_ide_destroy(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
Bartlomiej Zolnierkiewicz | f74c914 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 692 | class_destroy(ide_port_class); |
| 693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | bus_unregister(&ide_bus_type); |
| 695 | } |
| 696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | module_init(ide_init); |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 698 | module_exit(ide_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
Bartlomiej Zolnierkiewicz | 931ee0d | 2008-07-15 21:21:47 +0200 | [diff] [blame] | 700 | MODULE_LICENSE("GPL"); |