blob: 166acd513d5bd9249f78f9a8dfafc62494b0acd5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
3 * Copyrifht (C) 2003-2005, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
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 Torvalds1da177e2005-04-16 15:20:36 -070018 * ...
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 Torvalds1da177e2005-04-16 15:20:36 -070045 */
46
47#define REVISION "Revision: 7.00alpha2"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _IDE_C /* Tell ide.h it's really us */
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/module.h>
52#include <linux/types.h>
53#include <linux/string.h>
54#include <linux/kernel.h>
55#include <linux/timer.h>
56#include <linux/mm.h>
57#include <linux/interrupt.h>
58#include <linux/major.h>
59#include <linux/errno.h>
60#include <linux/genhd.h>
61#include <linux/blkpg.h>
62#include <linux/slab.h>
63#include <linux/init.h>
64#include <linux/pci.h>
65#include <linux/delay.h>
66#include <linux/ide.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/completion.h>
68#include <linux/reboot.h>
69#include <linux/cdrom.h>
70#include <linux/seq_file.h>
71#include <linux/device.h>
72#include <linux/bitops.h>
73
74#include <asm/byteorder.h>
75#include <asm/irq.h>
76#include <asm/uaccess.h>
77#include <asm/io.h>
78
79
80/* default maximum number of failures */
81#define IDE_DEFAULT_MAX_FAILURES 1
82
83static 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
89static int idebus_parameter; /* holds the "idebus=" parameter */
90static int system_bus_speed; /* holds what we think is VESA/PCI bus speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Matthias Kaehlckeef298882007-07-09 23:17:55 +020092DEFINE_MUTEX(ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 __cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
94
Bartlomiej Zolnierkiewicz6d208b32007-05-10 00:01:11 +020095#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +010096int ide_scan_direction; /* THIS was formerly 2.2.x pci=reverse */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#endif
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099int noautodma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100101#ifdef CONFIG_BLK_DEV_IDEACPI
102int ide_noacpi = 0;
103int ide_noacpitfs = 1;
104int ide_noacpionboot = 1;
105#endif
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*
108 * This is declared extern in ide.h, for access by other IDE modules:
109 */
110ide_hwif_t ide_hwifs[MAX_HWIFS]; /* master data repository */
111
112EXPORT_SYMBOL(ide_hwifs);
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Do not even *think* about calling this!
116 */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100117void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 unsigned int unit;
120
121 /* bulk initialize hwif & drive info with zeros */
122 memset(hwif, 0, sizeof(ide_hwif_t));
123
124 /* fill in any non-zero initial values */
125 hwif->index = index;
126 hwif->major = ide_hwif_to_major[index];
127
128 hwif->name[0] = 'i';
129 hwif->name[1] = 'd';
130 hwif->name[2] = 'e';
131 hwif->name[3] = '0' + index;
132
133 hwif->bus_state = BUSSTATE_ON;
134
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800135 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 default_hwif_iops(hwif);
138 default_hwif_transport(hwif);
139 for (unit = 0; unit < MAX_DRIVES; ++unit) {
140 ide_drive_t *drive = &hwif->drives[unit];
141
142 drive->media = ide_disk;
143 drive->select.all = (unit<<4)|0xa0;
144 drive->hwif = hwif;
145 drive->ctl = 0x08;
146 drive->ready_stat = READY_STAT;
147 drive->bad_wstat = BAD_W_STAT;
148 drive->special.b.recalibrate = 1;
149 drive->special.b.set_geometry = 1;
150 drive->name[0] = 'h';
151 drive->name[1] = 'd';
152 drive->name[2] = 'a' + (index * MAX_DRIVES) + unit;
153 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
154 drive->using_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 drive->vdma = 0;
156 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800157 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159}
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100160EXPORT_SYMBOL_GPL(ide_init_port_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162static void init_hwif_default(ide_hwif_t *hwif, unsigned int index)
163{
164 hw_regs_t hw;
165
166 memset(&hw, 0, sizeof(hw_regs_t));
167
168 ide_init_hwif_ports(&hw, ide_default_io_base(index), 0, &hwif->irq);
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 memcpy(hwif->io_ports, hw.io_ports, sizeof(hw.io_ports));
171
172 hwif->noprobe = !hwif->io_ports[IDE_DATA_OFFSET];
173#ifdef CONFIG_BLK_DEV_HD
174 if (hwif->io_ports[IDE_DATA_OFFSET] == HD_DATA)
175 hwif->noprobe = 1; /* may be overridden by ide_setup() */
176#endif
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
180 * init_ide_data() sets reasonable default values into all fields
181 * of all instances of the hwifs and drives, but only on the first call.
182 * Subsequent calls have no effect (they don't wipe out anything).
183 *
184 * This routine is normally called at driver initialization time,
185 * but may also be called MUCH earlier during kernel "command-line"
186 * parameter processing. As such, we cannot depend on any other parts
187 * of the kernel (such as memory allocation) to be functioning yet.
188 *
189 * This is too bad, as otherwise we could dynamically allocate the
190 * ide_drive_t structs as needed, rather than always consuming memory
191 * for the max possible number (MAX_HWIFS * MAX_DRIVES) of them.
192 *
193 * FIXME: We should stuff the setup data into __init and copy the
194 * relevant hwifs/allocate them properly during boot.
195 */
196#define MAGIC_COOKIE 0x12345678
197static void __init init_ide_data (void)
198{
199 ide_hwif_t *hwif;
200 unsigned int index;
201 static unsigned long magic_cookie = MAGIC_COOKIE;
202
203 if (magic_cookie != MAGIC_COOKIE)
204 return; /* already initialized */
205 magic_cookie = 0;
206
207 /* Initialise all interface structures */
208 for (index = 0; index < MAX_HWIFS; ++index) {
209 hwif = &ide_hwifs[index];
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100210 ide_init_port_data(hwif, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 init_hwif_default(hwif, index);
212#if !defined(CONFIG_PPC32) || !defined(CONFIG_PCI)
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200213 hwif->irq =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 ide_init_default_irq(hwif->io_ports[IDE_DATA_OFFSET]);
215#endif
216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219/**
220 * ide_system_bus_speed - guess bus speed
221 *
222 * ide_system_bus_speed() returns what we think is the system VESA/PCI
223 * bus speed (in MHz). This is used for calculating interface PIO timings.
224 * The default is 40 for known PCI systems, 50 otherwise.
225 * The "idebus=xx" parameter can be used to override this value.
226 * The actual value to be used is computed/displayed the first time
227 * through. Drivers should only use this as a last resort.
228 *
229 * Returns a guessed speed in MHz.
230 */
231
232static int ide_system_bus_speed(void)
233{
234#ifdef CONFIG_PCI
235 static struct pci_device_id pci_default[] = {
236 { PCI_DEVICE(PCI_ANY_ID, PCI_ANY_ID) },
237 { }
238 };
239#else
240#define pci_default 0
241#endif /* CONFIG_PCI */
242
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100243 /* user supplied value */
244 if (idebus_parameter)
245 return idebus_parameter;
246
247 /* safe default value for PCI or VESA and PCI*/
248 return pci_dev_present(pci_default) ? 33 : 50;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Bartlomiej Zolnierkiewiczbaa8f3e2007-10-20 00:32:31 +0200251ide_hwif_t * ide_find_port(unsigned long base)
252{
253 ide_hwif_t *hwif;
254 int i;
255
256 for (i = 0; i < MAX_HWIFS; i++) {
257 hwif = &ide_hwifs[i];
258 if (hwif->io_ports[IDE_DATA_OFFSET] == base)
259 goto found;
260 }
261
262 for (i = 0; i < MAX_HWIFS; i++) {
263 hwif = &ide_hwifs[i];
264 if (hwif->io_ports[IDE_DATA_OFFSET] == 0)
265 goto found;
266 }
267
268 hwif = NULL;
269found:
270 return hwif;
271}
272
273EXPORT_SYMBOL_GPL(ide_find_port);
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static struct resource* hwif_request_region(ide_hwif_t *hwif,
276 unsigned long addr, int num)
277{
278 struct resource *res = request_region(addr, num, hwif->name);
279
280 if (!res)
281 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
282 hwif->name, addr, addr+num-1);
283 return res;
284}
285
286/**
287 * ide_hwif_request_regions - request resources for IDE
288 * @hwif: interface to use
289 *
290 * Requests all the needed resources for an interface.
291 * Right now core IDE code does this work which is deeply wrong.
292 * MMIO leaves it to the controller driver,
293 * PIO will migrate this way over time.
294 */
295
296int ide_hwif_request_regions(ide_hwif_t *hwif)
297{
298 unsigned long addr;
299 unsigned int i;
300
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100301 if (hwif->mmio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 addr = hwif->io_ports[IDE_CONTROL_OFFSET];
304 if (addr && !hwif_request_region(hwif, addr, 1))
305 goto control_region_busy;
306 hwif->straight8 = 0;
307 addr = hwif->io_ports[IDE_DATA_OFFSET];
308 if ((addr | 7) == hwif->io_ports[IDE_STATUS_OFFSET]) {
309 if (!hwif_request_region(hwif, addr, 8))
310 goto data_region_busy;
311 hwif->straight8 = 1;
312 return 0;
313 }
314 for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
315 addr = hwif->io_ports[i];
316 if (!hwif_request_region(hwif, addr, 1)) {
317 while (--i)
318 release_region(addr, 1);
319 goto data_region_busy;
320 }
321 }
322 return 0;
323
324data_region_busy:
325 addr = hwif->io_ports[IDE_CONTROL_OFFSET];
326 if (addr)
327 release_region(addr, 1);
328control_region_busy:
329 /* If any errors are return, we drop the hwif interface. */
330 return -EBUSY;
331}
332
333/**
334 * ide_hwif_release_regions - free IDE resources
335 *
336 * Note that we only release the standard ports,
337 * and do not even try to handle any extra ports
338 * allocated for weird IDE interface chipsets.
339 *
340 * Note also that we don't yet handle mmio resources here. More
341 * importantly our caller should be doing this so we need to
342 * restructure this as a helper function for drivers.
343 */
344
345void ide_hwif_release_regions(ide_hwif_t *hwif)
346{
347 u32 i = 0;
348
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100349 if (hwif->mmio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return;
351 if (hwif->io_ports[IDE_CONTROL_OFFSET])
352 release_region(hwif->io_ports[IDE_CONTROL_OFFSET], 1);
353 if (hwif->straight8) {
354 release_region(hwif->io_ports[IDE_DATA_OFFSET], 8);
355 return;
356 }
357 for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++)
358 if (hwif->io_ports[i])
359 release_region(hwif->io_ports[i], 1);
360}
361
362/**
363 * ide_hwif_restore - restore hwif to template
364 * @hwif: hwif to update
365 * @tmp_hwif: template
366 *
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700367 * Restore hwif to a previous state by copying most settings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * from the template.
369 */
370
371static void ide_hwif_restore(ide_hwif_t *hwif, ide_hwif_t *tmp_hwif)
372{
373 hwif->hwgroup = tmp_hwif->hwgroup;
374
375 hwif->gendev.parent = tmp_hwif->gendev.parent;
376
377 hwif->proc = tmp_hwif->proc;
378
379 hwif->major = tmp_hwif->major;
380 hwif->straight8 = tmp_hwif->straight8;
381 hwif->bus_state = tmp_hwif->bus_state;
382
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +0200383 hwif->host_flags = tmp_hwif->host_flags;
384
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200385 hwif->pio_mask = tmp_hwif->pio_mask;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 hwif->ultra_mask = tmp_hwif->ultra_mask;
388 hwif->mwdma_mask = tmp_hwif->mwdma_mask;
389 hwif->swdma_mask = tmp_hwif->swdma_mask;
390
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200391 hwif->cbl = tmp_hwif->cbl;
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 hwif->chipset = tmp_hwif->chipset;
394 hwif->hold = tmp_hwif->hold;
395
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100396 hwif->dev = tmp_hwif->dev;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#ifdef CONFIG_BLK_DEV_IDEPCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 hwif->cds = tmp_hwif->cds;
400#endif
401
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200402 hwif->set_pio_mode = tmp_hwif->set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200403 hwif->set_dma_mode = tmp_hwif->set_dma_mode;
Sergei Shtylyovb4e44362007-10-11 23:53:58 +0200404 hwif->mdma_filter = tmp_hwif->mdma_filter;
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200405 hwif->udma_filter = tmp_hwif->udma_filter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 hwif->selectproc = tmp_hwif->selectproc;
407 hwif->reset_poll = tmp_hwif->reset_poll;
408 hwif->pre_reset = tmp_hwif->pre_reset;
409 hwif->resetproc = tmp_hwif->resetproc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 hwif->maskproc = tmp_hwif->maskproc;
411 hwif->quirkproc = tmp_hwif->quirkproc;
412 hwif->busproc = tmp_hwif->busproc;
413
414 hwif->ata_input_data = tmp_hwif->ata_input_data;
415 hwif->ata_output_data = tmp_hwif->ata_output_data;
416 hwif->atapi_input_bytes = tmp_hwif->atapi_input_bytes;
417 hwif->atapi_output_bytes = tmp_hwif->atapi_output_bytes;
418
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100419 hwif->dma_host_set = tmp_hwif->dma_host_set;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 hwif->dma_setup = tmp_hwif->dma_setup;
421 hwif->dma_exec_cmd = tmp_hwif->dma_exec_cmd;
422 hwif->dma_start = tmp_hwif->dma_start;
423 hwif->ide_dma_end = tmp_hwif->ide_dma_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 hwif->ide_dma_test_irq = tmp_hwif->ide_dma_test_irq;
Albert Leef0dd8712007-02-17 02:40:21 +0100425 hwif->ide_dma_clear_irq = tmp_hwif->ide_dma_clear_irq;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200426 hwif->dma_lost_irq = tmp_hwif->dma_lost_irq;
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200427 hwif->dma_timeout = tmp_hwif->dma_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 hwif->OUTB = tmp_hwif->OUTB;
430 hwif->OUTBSYNC = tmp_hwif->OUTBSYNC;
431 hwif->OUTW = tmp_hwif->OUTW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 hwif->OUTSW = tmp_hwif->OUTSW;
433 hwif->OUTSL = tmp_hwif->OUTSL;
434
435 hwif->INB = tmp_hwif->INB;
436 hwif->INW = tmp_hwif->INW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 hwif->INSW = tmp_hwif->INSW;
438 hwif->INSL = tmp_hwif->INSL;
439
440 hwif->sg_max_nents = tmp_hwif->sg_max_nents;
441
442 hwif->mmio = tmp_hwif->mmio;
443 hwif->rqsize = tmp_hwif->rqsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445#ifndef CONFIG_BLK_DEV_IDECS
446 hwif->irq = tmp_hwif->irq;
447#endif
448
449 hwif->dma_base = tmp_hwif->dma_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 hwif->dma_command = tmp_hwif->dma_command;
451 hwif->dma_vendor1 = tmp_hwif->dma_vendor1;
452 hwif->dma_status = tmp_hwif->dma_status;
453 hwif->dma_vendor3 = tmp_hwif->dma_vendor3;
454 hwif->dma_prdtable = tmp_hwif->dma_prdtable;
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 hwif->config_data = tmp_hwif->config_data;
457 hwif->select_data = tmp_hwif->select_data;
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700458 hwif->extra_base = tmp_hwif->extra_base;
459 hwif->extra_ports = tmp_hwif->extra_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 hwif->hwif_data = tmp_hwif->hwif_data;
462}
463
Bartlomiej Zolnierkiewiczfbd13082008-02-01 23:09:36 +0100464void ide_remove_port_from_hwgroup(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100465{
466 ide_hwgroup_t *hwgroup = hwif->hwgroup;
467
468 spin_lock_irq(&ide_lock);
469 /*
470 * Remove us from the hwgroup, and free
471 * the hwgroup if we were the only member
472 */
473 if (hwif->next == hwif) {
474 BUG_ON(hwgroup->hwif != hwif);
475 kfree(hwgroup);
476 } else {
477 /* There is another interface in hwgroup.
478 * Unlink us, and set hwgroup->drive and ->hwif to
479 * something sane.
480 */
481 ide_hwif_t *g = hwgroup->hwif;
482
483 while (g->next != hwif)
484 g = g->next;
485 g->next = hwif->next;
486 if (hwgroup->hwif == hwif) {
487 /* Chose a random hwif for hwgroup->hwif.
488 * It's guaranteed that there are no drives
489 * left in the hwgroup.
490 */
491 BUG_ON(hwgroup->drive != NULL);
492 hwgroup->hwif = g;
493 }
494 BUG_ON(hwgroup->hwif == hwif);
495 }
496 spin_unlock_irq(&ide_lock);
497}
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700500 * ide_unregister - free an IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * @index: index of interface (will change soon to a pointer)
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +0100502 * @init_default: init default hwif flag
503 * @restore: restore hwif flag
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 *
505 * Perform the final unregister of an IDE interface. At the moment
506 * we don't refcount interfaces so this will also get split up.
507 *
508 * Locking:
509 * The caller must not hold the IDE locks
510 * The drive present/vanishing is not yet properly locked
511 * Take care with the callbacks. These have been split to avoid
512 * deadlocking the IDE layer. The shutdown callback is called
513 * before we take the lock and free resources. It is up to the
514 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700515 * the interface will not be reopened (present/vanishing locking
516 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * call the cleanup callback with the ide locks held.
518 *
519 * Unregister restores the hwif structures to the default state.
520 * This is raving bonkers.
521 */
522
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +0100523void ide_unregister(unsigned int index, int init_default, int restore)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 ide_drive_t *drive;
526 ide_hwif_t *hwif, *g;
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200527 static ide_hwif_t tmp_hwif; /* protected by ide_cfg_mtx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200529 int irq_count = 0, unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 BUG_ON(index >= MAX_HWIFS);
532
533 BUG_ON(in_interrupt());
534 BUG_ON(irqs_disabled());
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200535 mutex_lock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 spin_lock_irq(&ide_lock);
537 hwif = &ide_hwifs[index];
538 if (!hwif->present)
539 goto abort;
540 for (unit = 0; unit < MAX_DRIVES; ++unit) {
541 drive = &hwif->drives[unit];
Greg Kroah-Hartman94f6c592005-06-20 21:15:16 -0700542 if (!drive->present)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 continue;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200544 spin_unlock_irq(&ide_lock);
545 device_unregister(&drive->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800546 wait_for_completion(&drive->gendev_rel_comp);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200547 spin_lock_irq(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 hwif->present = 0;
550
551 spin_unlock_irq(&ide_lock);
552
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200553 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 hwgroup = hwif->hwgroup;
556 /*
557 * free the irq if we were the only hwif using it
558 */
559 g = hwgroup->hwif;
560 do {
561 if (g->irq == hwif->irq)
562 ++irq_count;
563 g = g->next;
564 } while (g != hwgroup->hwif);
565 if (irq_count == 1)
566 free_irq(hwif->irq, hwgroup);
567
Bartlomiej Zolnierkiewicz96e5ad32008-02-01 23:09:35 +0100568 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800571 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /*
574 * Remove us from the kernel's knowledge
575 */
576 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
577 kfree(hwif->sg_table);
578 unregister_blkdev(hwif->major, hwif->name);
579 spin_lock_irq(&ide_lock);
580
581 if (hwif->dma_base) {
582 (void) ide_release_dma(hwif);
583
584 hwif->dma_base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 hwif->dma_command = 0;
586 hwif->dma_vendor1 = 0;
587 hwif->dma_status = 0;
588 hwif->dma_vendor3 = 0;
589 hwif->dma_prdtable = 0;
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700590
591 hwif->extra_base = 0;
592 hwif->extra_ports = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594
Bartlomiej Zolnierkiewicz7cba97f2008-02-01 23:09:35 +0100595 /*
596 * Note that we only release the standard ports,
597 * and do not even try to handle any extra ports
598 * allocated for weird IDE interface chipsets.
599 */
600 ide_hwif_release_regions(hwif);
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* copy original settings */
603 tmp_hwif = *hwif;
604
605 /* restore hwif data to pristine status */
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100606 ide_init_port_data(hwif, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +0100608 if (init_default)
609 init_hwif_default(hwif, index);
610
611 if (restore)
612 ide_hwif_restore(hwif, &tmp_hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614abort:
615 spin_unlock_irq(&ide_lock);
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200616 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619EXPORT_SYMBOL(ide_unregister);
620
621
622/**
623 * ide_setup_ports - set up IDE interface ports
624 * @hw: register descriptions
625 * @base: base register
626 * @offsets: table of register offsets
627 * @ctrl: control register
628 * @ack_irq: IRQ ack
629 * @irq: interrupt lie
630 *
631 * Setup hw_regs_t structure described by parameters. You
632 * may set up the hw structure yourself OR use this routine to
633 * do it for you. This is basically a helper
634 *
635 */
636
637void ide_setup_ports ( hw_regs_t *hw,
638 unsigned long base, int *offsets,
639 unsigned long ctrl, unsigned long intr,
640 ide_ack_intr_t *ack_intr,
641/*
642 * ide_io_ops_t *iops,
643 */
644 int irq)
645{
646 int i;
647
Roman Zippel2c3e0262006-06-23 02:04:51 -0700648 memset(hw, 0, sizeof(hw_regs_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 for (i = 0; i < IDE_NR_PORTS; i++) {
650 if (offsets[i] == -1) {
651 switch(i) {
652 case IDE_CONTROL_OFFSET:
653 hw->io_ports[i] = ctrl;
654 break;
655#if defined(CONFIG_AMIGA) || defined(CONFIG_MAC)
656 case IDE_IRQ_OFFSET:
657 hw->io_ports[i] = intr;
658 break;
659#endif /* (CONFIG_AMIGA) || (CONFIG_MAC) */
660 default:
661 hw->io_ports[i] = 0;
662 break;
663 }
664 } else {
665 hw->io_ports[i] = base + offsets[i];
666 }
667 }
668 hw->irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 hw->ack_intr = ack_intr;
670/*
671 * hw->iops = iops;
672 */
673}
674
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100675void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
676{
677 memcpy(hwif->io_ports, hw->io_ports, sizeof(hwif->io_ports));
678 hwif->irq = hw->irq;
679 hwif->noprobe = 0;
680 hwif->chipset = hw->chipset;
681 hwif->gendev.parent = hw->dev;
682 hwif->ack_intr = hw->ack_intr;
683}
684EXPORT_SYMBOL_GPL(ide_init_port_hw);
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/**
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200687 * ide_register_hw - register IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 * @hw: hardware registers
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100689 * @quirkproc: quirkproc function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 * @hwifp: pointer to returned hwif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 *
692 * Register an IDE interface, specifying exactly the registers etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 *
694 * Returns -1 on error.
695 */
696
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100697int ide_register_hw(hw_regs_t *hw, void (*quirkproc)(ide_drive_t *),
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100698 ide_hwif_t **hwifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
700 int index, retry = 1;
701 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100702 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewicz795d74b2008-01-26 20:13:03 +0100703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 do {
705 for (index = 0; index < MAX_HWIFS; ++index) {
706 hwif = &ide_hwifs[index];
Bartlomiej Zolnierkiewicz8f173b52007-10-20 00:32:32 +0200707 if (hwif->io_ports[IDE_DATA_OFFSET] == hw->io_ports[IDE_DATA_OFFSET])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 goto found;
709 }
710 for (index = 0; index < MAX_HWIFS; ++index) {
711 hwif = &ide_hwifs[index];
712 if (hwif->hold)
713 continue;
Bartlomiej Zolnierkiewicz795d74b2008-01-26 20:13:03 +0100714 if (!hwif->present && hwif->mate == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 goto found;
716 }
717 for (index = 0; index < MAX_HWIFS; index++)
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +0100718 ide_unregister(index, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 } while (retry--);
720 return -1;
721found:
722 if (hwif->present)
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +0100723 ide_unregister(index, 0, 1);
Bartlomiej Zolnierkiewiczead741d2008-02-02 19:56:38 +0100724 else if (!hwif->hold)
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100725 ide_init_port_data(hwif, index);
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100726
727 ide_init_port_hw(hwif, hw);
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100728 hwif->quirkproc = quirkproc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100730 idx[0] = index;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200731
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100732 ide_device_add(idx, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 if (hwifp)
735 *hwifp = hwif;
736
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +0100737 return hwif->present ? index : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740EXPORT_SYMBOL(ide_register_hw);
741
742/*
743 * Locks for IDE setting functionality
744 */
745
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200746DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200748EXPORT_SYMBOL_GPL(ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 * ide_spin_wait_hwgroup - wait for group
752 * @drive: drive in the group
753 *
754 * Wait for an IDE device group to go non busy and then return
755 * holding the ide_lock which guards the hwgroup->busy status
756 * and right to use it.
757 */
758
759int ide_spin_wait_hwgroup (ide_drive_t *drive)
760{
761 ide_hwgroup_t *hwgroup = HWGROUP(drive);
762 unsigned long timeout = jiffies + (3 * HZ);
763
764 spin_lock_irq(&ide_lock);
765
766 while (hwgroup->busy) {
767 unsigned long lflags;
768 spin_unlock_irq(&ide_lock);
769 local_irq_set(lflags);
770 if (time_after(jiffies, timeout)) {
771 local_irq_restore(lflags);
772 printk(KERN_ERR "%s: channel busy\n", drive->name);
773 return -EBUSY;
774 }
775 local_irq_restore(lflags);
776 spin_lock_irq(&ide_lock);
777 }
778 return 0;
779}
780
781EXPORT_SYMBOL(ide_spin_wait_hwgroup);
782
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200783int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200785 if (drive->no_io_32bit)
786 return -EPERM;
787
788 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
789 return -EINVAL;
790
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100791 if (ide_spin_wait_hwgroup(drive))
792 return -EBUSY;
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 drive->io_32bit = arg;
Bartlomiej Zolnierkiewicz644a9d72007-12-12 23:32:00 +0100795
796 spin_unlock_irq(&ide_lock);
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return 0;
799}
800
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200801static int set_ksettings(ide_drive_t *drive, int arg)
802{
803 if (arg < 0 || arg > 1)
804 return -EINVAL;
805
806 if (ide_spin_wait_hwgroup(drive))
807 return -EBUSY;
808 drive->keep_settings = arg;
809 spin_unlock_irq(&ide_lock);
810
811 return 0;
812}
813
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200814int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200817 ide_hwif_t *hwif = drive->hwif;
818 int err = -EPERM;
819
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200820 if (arg < 0 || arg > 1)
821 return -EINVAL;
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (!drive->id || !(drive->id->capability & 1))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200824 goto out;
825
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100826 if (hwif->dma_host_set == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200827 goto out;
828
829 err = -EBUSY;
830 if (ide_spin_wait_hwgroup(drive))
831 goto out;
832 /*
833 * set ->busy flag, unlock and let it ride
834 */
835 hwif->hwgroup->busy = 1;
836 spin_unlock_irq(&ide_lock);
837
838 err = 0;
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (arg) {
Bartlomiej Zolnierkiewicz23b1bd42008-01-25 22:17:19 +0100841 if (ide_set_dma(drive))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200842 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100843 } else
844 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200845
846 /*
847 * lock, clear ->busy flag and unlock before leaving
848 */
849 spin_lock_irq(&ide_lock);
850 hwif->hwgroup->busy = 0;
851 spin_unlock_irq(&ide_lock);
852out:
853 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200855 if (arg < 0 || arg > 1)
856 return -EINVAL;
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return -EPERM;
859#endif
860}
861
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200862int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 struct request rq;
865
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200866 if (arg < 0 || arg > 255)
867 return -EINVAL;
868
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200869 if (drive->hwif->set_pio_mode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (drive->special.b.set_tune)
873 return -EBUSY;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 ide_init_drive_cmd(&rq);
Bartlomiej Zolnierkiewicz852738f2008-01-26 20:13:12 +0100876 rq.cmd_type = REQ_TYPE_ATA_TASKFILE;
Bartlomiej Zolnierkiewicz145b75e2008-01-26 20:13:11 +0100877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 drive->tune_req = (u8) arg;
879 drive->special.b.set_tune = 1;
880 (void) ide_do_drive_cmd(drive, &rq, ide_wait);
881 return 0;
882}
883
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200884static int set_unmaskirq(ide_drive_t *drive, int arg)
885{
886 if (drive->no_unmask)
887 return -EPERM;
888
889 if (arg < 0 || arg > 1)
890 return -EINVAL;
891
892 if (ide_spin_wait_hwgroup(drive))
893 return -EBUSY;
894 drive->unmask = arg;
895 spin_unlock_irq(&ide_lock);
896
897 return 0;
898}
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900/**
901 * system_bus_clock - clock guess
902 *
903 * External version of the bus clock guess used by very old IDE drivers
904 * for things like VLB timings. Should not be used.
905 */
906
907int system_bus_clock (void)
908{
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +0100909 return system_bus_speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912EXPORT_SYMBOL(system_bus_clock);
913
David Brownellb887d2e2006-08-14 23:11:05 -0700914static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100917 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 struct request rq;
919 struct request_pm_state rqpm;
920 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200921 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100923 /* Call ACPI _GTM only once */
924 if (!(drive->dn % 2))
925 ide_acpi_get_timing(hwif);
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 memset(&rq, 0, sizeof(rq));
928 memset(&rqpm, 0, sizeof(rqpm));
929 memset(&args, 0, sizeof(args));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200930 rq.cmd_type = REQ_TYPE_PM_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 rq.special = &args;
Jens Axboec00895a2006-09-30 20:29:12 +0200932 rq.data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 rqpm.pm_step = ide_pm_state_start_suspend;
David Brownellb887d2e2006-08-14 23:11:05 -0700934 if (mesg.event == PM_EVENT_PRETHAW)
935 mesg.event = PM_EVENT_FREEZE;
936 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Shaohua Li5e321322007-10-11 23:53:58 +0200938 ret = ide_do_drive_cmd(drive, &rq, ide_wait);
939 /* only call ACPI _PS3 after both drivers are suspended */
940 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
941 && hwif->drives[1].present)
942 || !hwif->drives[0].present
943 || !hwif->drives[1].present))
944 ide_acpi_set_state(hwif, 0);
945 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948static int generic_ide_resume(struct device *dev)
949{
950 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100951 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 struct request rq;
953 struct request_pm_state rqpm;
954 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200955 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100957 /* Call ACPI _STM only once */
Shaohua Li5e321322007-10-11 23:53:58 +0200958 if (!(drive->dn % 2)) {
959 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100960 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200961 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100962
963 ide_acpi_exec_tfs(drive);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 memset(&rq, 0, sizeof(rq));
966 memset(&rqpm, 0, sizeof(rqpm));
967 memset(&args, 0, sizeof(args));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200968 rq.cmd_type = REQ_TYPE_PM_RESUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 rq.special = &args;
Jens Axboec00895a2006-09-30 20:29:12 +0200970 rq.data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 rqpm.pm_step = ide_pm_state_start_resume;
Pavel Machekca078ba2005-09-03 15:56:57 -0700972 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Lee Trager0d2157f2007-06-08 15:14:30 +0200974 err = ide_do_drive_cmd(drive, &rq, ide_head_wait);
975
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200976 if (err == 0 && dev->driver) {
977 ide_driver_t *drv = to_ide_driver(dev->driver);
978
979 if (drv->resume)
980 drv->resume(drive);
981 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200982
983 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
986int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
987 unsigned int cmd, unsigned long arg)
988{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200989 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 ide_driver_t *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 void __user *p = (void __user *)arg;
Linus Torvalds19850262007-07-17 15:57:42 -0700992 int err = 0, (*setfunc)(ide_drive_t *, int);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200993 u8 *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200995 switch (cmd) {
996 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
997 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
998 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
999 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
1000 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
1001 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
1002 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
1003 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
1004 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 case HDIO_OBSOLETE_IDENTITY:
1009 case HDIO_GET_IDENTITY:
1010 if (bdev != bdev->bd_contains)
1011 return -EINVAL;
1012 if (drive->id_read == 0)
1013 return -ENOMSG;
1014 if (copy_to_user(p, drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
1015 return -EFAULT;
1016 return 0;
1017
1018 case HDIO_GET_NICE:
1019 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
1020 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
1021 drive->nice0 << IDE_NICE_0 |
1022 drive->nice1 << IDE_NICE_1 |
1023 drive->nice2 << IDE_NICE_2,
1024 (long __user *) arg);
1025
1026#ifdef CONFIG_IDE_TASK_IOCTL
1027 case HDIO_DRIVE_TASKFILE:
1028 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1029 return -EACCES;
1030 switch(drive->media) {
1031 case ide_disk:
1032 return ide_taskfile_ioctl(drive, cmd, arg);
1033 default:
1034 return -ENOMSG;
1035 }
1036#endif /* CONFIG_IDE_TASK_IOCTL */
1037
1038 case HDIO_DRIVE_CMD:
1039 if (!capable(CAP_SYS_RAWIO))
1040 return -EACCES;
1041 return ide_cmd_ioctl(drive, cmd, arg);
1042
1043 case HDIO_DRIVE_TASK:
1044 if (!capable(CAP_SYS_RAWIO))
1045 return -EACCES;
1046 return ide_task_ioctl(drive, cmd, arg);
1047
1048 case HDIO_SCAN_HWIF:
1049 {
1050 hw_regs_t hw;
1051 int args[3];
1052 if (!capable(CAP_SYS_RAWIO)) return -EACCES;
1053 if (copy_from_user(args, p, 3 * sizeof(int)))
1054 return -EFAULT;
1055 memset(&hw, 0, sizeof(hw));
1056 ide_init_hwif_ports(&hw, (unsigned long) args[0],
1057 (unsigned long) args[1], NULL);
1058 hw.irq = args[2];
Bartlomiej Zolnierkiewiczcbb010c2008-01-26 20:13:06 +01001059 if (ide_register_hw(&hw, NULL, NULL) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return -EIO;
1061 return 0;
1062 }
1063 case HDIO_UNREGISTER_HWIF:
1064 if (!capable(CAP_SYS_RAWIO)) return -EACCES;
1065 /* (arg > MAX_HWIFS) checked in function */
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +01001066 ide_unregister(arg, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return 0;
1068 case HDIO_SET_NICE:
1069 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
1070 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
1071 return -EPERM;
1072 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
1073 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
1074 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
1075 drive->dsc_overlap = 0;
1076 return -EPERM;
1077 }
1078 drive->nice1 = (arg >> IDE_NICE_1) & 1;
1079 return 0;
1080 case HDIO_DRIVE_RESET:
1081 {
1082 unsigned long flags;
1083 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
1084
1085 /*
1086 * Abort the current command on the
1087 * group if there is one, taking
1088 * care not to allow anything else
1089 * to be queued and to die on the
1090 * spot if we miss one somehow
1091 */
1092
1093 spin_lock_irqsave(&ide_lock, flags);
1094
Alan Cox913759a2006-10-03 01:14:33 -07001095 if (HWGROUP(drive)->resetting) {
1096 spin_unlock_irqrestore(&ide_lock, flags);
1097 return -EBUSY;
1098 }
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 ide_abort(drive, "drive reset");
1101
Eric Sesterhenn125e1872006-06-23 02:06:06 -07001102 BUG_ON(HWGROUP(drive)->handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /* Ensure nothing gets queued after we
1105 drop the lock. Reset will clear the busy */
1106
1107 HWGROUP(drive)->busy = 1;
1108 spin_unlock_irqrestore(&ide_lock, flags);
1109 (void) ide_do_reset(drive);
1110
1111 return 0;
1112 }
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 case HDIO_GET_BUSSTATE:
1115 if (!capable(CAP_SYS_ADMIN))
1116 return -EACCES;
1117 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
1118 return -EFAULT;
1119 return 0;
1120
1121 case HDIO_SET_BUSSTATE:
1122 if (!capable(CAP_SYS_ADMIN))
1123 return -EACCES;
1124 if (HWIF(drive)->busproc)
1125 return HWIF(drive)->busproc(drive, (int)arg);
1126 return -EOPNOTSUPP;
1127 default:
1128 return -EINVAL;
1129 }
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001130
1131read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001132 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001133 spin_lock_irqsave(&ide_lock, flags);
1134 err = *val;
1135 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001136 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001137 return err >= 0 ? put_user(err, (long __user *)arg) : err;
1138
1139set_val:
1140 if (bdev != bdev->bd_contains)
1141 err = -EINVAL;
1142 else {
1143 if (!capable(CAP_SYS_ADMIN))
1144 err = -EACCES;
1145 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001146 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001147 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001148 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001149 }
1150 }
1151 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
1154EXPORT_SYMBOL(generic_ide_ioctl);
1155
1156/*
1157 * stridx() returns the offset of c within s,
1158 * or -1 if c is '\0' or not found within s.
1159 */
1160static int __init stridx (const char *s, char c)
1161{
1162 char *i = strchr(s, c);
1163 return (i && c) ? i - s : -1;
1164}
1165
1166/*
1167 * match_parm() does parsing for ide_setup():
1168 *
1169 * 1. the first char of s must be '='.
1170 * 2. if the remainder matches one of the supplied keywords,
1171 * the index (1 based) of the keyword is negated and returned.
1172 * 3. if the remainder is a series of no more than max_vals numbers
1173 * separated by commas, the numbers are saved in vals[] and a
1174 * count of how many were saved is returned. Base10 is assumed,
1175 * and base16 is allowed when prefixed with "0x".
1176 * 4. otherwise, zero is returned.
1177 */
1178static int __init match_parm (char *s, const char *keywords[], int vals[], int max_vals)
1179{
1180 static const char *decimal = "0123456789";
1181 static const char *hex = "0123456789abcdef";
1182 int i, n;
1183
1184 if (*s++ == '=') {
1185 /*
1186 * Try matching against the supplied keywords,
1187 * and return -(index+1) if we match one
1188 */
1189 if (keywords != NULL) {
1190 for (i = 0; *keywords != NULL; ++i) {
1191 if (!strcmp(s, *keywords++))
1192 return -(i+1);
1193 }
1194 }
1195 /*
1196 * Look for a series of no more than "max_vals"
1197 * numeric values separated by commas, in base10,
1198 * or base16 when prefixed with "0x".
1199 * Return a count of how many were found.
1200 */
1201 for (n = 0; (i = stridx(decimal, *s)) >= 0;) {
1202 vals[n] = i;
1203 while ((i = stridx(decimal, *++s)) >= 0)
1204 vals[n] = (vals[n] * 10) + i;
1205 if (*s == 'x' && !vals[n]) {
1206 while ((i = stridx(hex, *++s)) >= 0)
1207 vals[n] = (vals[n] * 0x10) + i;
1208 }
1209 if (++n == max_vals)
1210 break;
1211 if (*s == ',' || *s == ';')
1212 ++s;
1213 }
1214 if (!*s)
1215 return n;
1216 }
1217 return 0; /* zero = nothing matched */
1218}
1219
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001220extern int probe_ali14xx;
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001221extern int probe_umc8672;
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001222extern int probe_dtc2278;
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001223extern int probe_ht6560b;
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001224extern int probe_qd65xx;
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +01001225extern int cmd640_vlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227static int __initdata is_chipset_set[MAX_HWIFS];
1228
1229/*
1230 * ide_setup() gets called VERY EARLY during initialization,
1231 * to handle kernel "command line" strings beginning with "hdx=" or "ide".
1232 *
1233 * Remember to update Documentation/ide.txt if you change something here.
1234 */
1235static int __init ide_setup(char *s)
1236{
1237 int i, vals[3];
1238 ide_hwif_t *hwif;
1239 ide_drive_t *drive;
1240 unsigned int hw, unit;
1241 const char max_drive = 'a' + ((MAX_HWIFS * MAX_DRIVES) - 1);
1242 const char max_hwif = '0' + (MAX_HWIFS - 1);
1243
1244
1245 if (strncmp(s,"hd",2) == 0 && s[2] == '=') /* hd= is for hd.c */
1246 return 0; /* driver and not us */
1247
1248 if (strncmp(s,"ide",3) && strncmp(s,"idebus",6) && strncmp(s,"hd",2))
1249 return 0;
1250
1251 printk(KERN_INFO "ide_setup: %s", s);
1252 init_ide_data ();
1253
1254#ifdef CONFIG_BLK_DEV_IDEDOUBLER
1255 if (!strcmp(s, "ide=doubler")) {
1256 extern int ide_doubler;
1257
1258 printk(" : Enabled support for IDE doublers\n");
1259 ide_doubler = 1;
1260 return 1;
1261 }
1262#endif /* CONFIG_BLK_DEV_IDEDOUBLER */
1263
1264 if (!strcmp(s, "ide=nodma")) {
1265 printk(" : Prevented DMA\n");
1266 noautodma = 1;
Bartlomiej Zolnierkiewiczc2237012007-10-16 22:29:58 +02001267 goto obsolete_option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
Bartlomiej Zolnierkiewicz6d208b32007-05-10 00:01:11 +02001270#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (!strcmp(s, "ide=reverse")) {
1272 ide_scan_direction = 1;
1273 printk(" : Enabled support for IDE inverse scan order.\n");
1274 return 1;
1275 }
Bartlomiej Zolnierkiewicz6d208b32007-05-10 00:01:11 +02001276#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Hannes Reineckee3a59b42007-02-07 18:19:37 +01001278#ifdef CONFIG_BLK_DEV_IDEACPI
1279 if (!strcmp(s, "ide=noacpi")) {
1280 //printk(" : Disable IDE ACPI support.\n");
1281 ide_noacpi = 1;
1282 return 1;
1283 }
1284 if (!strcmp(s, "ide=acpigtf")) {
1285 //printk(" : Enable IDE ACPI _GTF support.\n");
1286 ide_noacpitfs = 0;
1287 return 1;
1288 }
1289 if (!strcmp(s, "ide=acpionboot")) {
1290 //printk(" : Call IDE ACPI methods on boot.\n");
1291 ide_noacpionboot = 0;
1292 return 1;
1293 }
1294#endif /* CONFIG_BLK_DEV_IDEACPI */
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /*
1297 * Look for drive options: "hdx="
1298 */
1299 if (s[0] == 'h' && s[1] == 'd' && s[2] >= 'a' && s[2] <= max_drive) {
1300 const char *hd_words[] = {
Bartlomiej Zolnierkiewiczc2237012007-10-16 22:29:58 +02001301 "none", "noprobe", "nowerr", "cdrom", "nodma",
Bartlomiej Zolnierkiewicz9e47be02008-01-26 20:13:09 +01001302 "autotune", "noautotune", "-8", "-9", "-10",
Jens Axboe36193482006-07-28 08:54:59 +02001303 "noflush", "remap", "remap63", "scsi", NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 unit = s[2] - 'a';
1305 hw = unit / MAX_DRIVES;
1306 unit = unit % MAX_DRIVES;
1307 hwif = &ide_hwifs[hw];
1308 drive = &hwif->drives[unit];
1309 if (strncmp(s + 4, "ide-", 4) == 0) {
1310 strlcpy(drive->driver_req, s + 4, sizeof(drive->driver_req));
1311 goto done;
1312 }
1313 switch (match_parm(&s[3], hd_words, vals, 3)) {
1314 case -1: /* "none" */
1315 case -2: /* "noprobe" */
1316 drive->noprobe = 1;
1317 goto done;
1318 case -3: /* "nowerr" */
1319 drive->bad_wstat = BAD_R_STAT;
1320 hwif->noprobe = 0;
1321 goto done;
1322 case -4: /* "cdrom" */
1323 drive->present = 1;
1324 drive->media = ide_cdrom;
1325 /* an ATAPI device ignores DRDY */
1326 drive->ready_stat = 0;
1327 hwif->noprobe = 0;
1328 goto done;
Bartlomiej Zolnierkiewiczc2237012007-10-16 22:29:58 +02001329 case -5: /* nodma */
1330 drive->nodma = 1;
1331 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 case -6: /* "autotune" */
1333 drive->autotune = IDE_TUNE_AUTO;
1334 goto obsolete_option;
1335 case -7: /* "noautotune" */
1336 drive->autotune = IDE_TUNE_NOAUTO;
1337 goto obsolete_option;
Jens Axboe36193482006-07-28 08:54:59 +02001338 case -11: /* noflush */
1339 drive->noflush = 1;
1340 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 case -12: /* "remap" */
1342 drive->remap_0_to_1 = 1;
1343 goto done;
1344 case -13: /* "remap63" */
1345 drive->sect0 = 63;
1346 goto done;
1347 case -14: /* "scsi" */
1348 drive->scsi = 1;
1349 goto done;
1350 case 3: /* cyl,head,sect */
1351 drive->media = ide_disk;
1352 drive->ready_stat = READY_STAT;
1353 drive->cyl = drive->bios_cyl = vals[0];
1354 drive->head = drive->bios_head = vals[1];
1355 drive->sect = drive->bios_sect = vals[2];
1356 drive->present = 1;
1357 drive->forced_geom = 1;
1358 hwif->noprobe = 0;
1359 goto done;
1360 default:
1361 goto bad_option;
1362 }
1363 }
1364
1365 if (s[0] != 'i' || s[1] != 'd' || s[2] != 'e')
1366 goto bad_option;
1367 /*
1368 * Look for bus speed option: "idebus="
1369 */
1370 if (s[3] == 'b' && s[4] == 'u' && s[5] == 's') {
1371 if (match_parm(&s[6], NULL, vals, 1) != 1)
1372 goto bad_option;
1373 if (vals[0] >= 20 && vals[0] <= 66) {
1374 idebus_parameter = vals[0];
1375 } else
1376 printk(" -- BAD BUS SPEED! Expected value from 20 to 66");
1377 goto done;
1378 }
1379 /*
1380 * Look for interface options: "idex="
1381 */
1382 if (s[3] >= '0' && s[3] <= max_hwif) {
1383 /*
1384 * Be VERY CAREFUL changing this: note hardcoded indexes below
1385 * (-8, -9, -10) are reserved to ease the hardcoding.
1386 */
1387 static const char *ide_words[] = {
Bartlomiej Zolnierkiewiczb6209a92007-03-03 17:48:55 +01001388 "noprobe", "serialize", "minus3", "minus4",
Bartlomiej Zolnierkiewicz1b516942007-10-16 22:29:57 +02001389 "reset", "minus6", "ata66", "minus8", "minus9",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 "minus10", "four", "qd65xx", "ht6560b", "cmd640_vlb",
1391 "dtc2278", "umc8672", "ali14xx", NULL };
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +02001392
1393 hw_regs_t hwregs;
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 hw = s[3] - '0';
1396 hwif = &ide_hwifs[hw];
1397 i = match_parm(&s[4], ide_words, vals, 3);
1398
1399 /*
1400 * Cryptic check to ensure chipset not already set for hwif.
1401 * Note: we can't depend on hwif->chipset here.
1402 */
1403 if ((i >= -18 && i <= -11) || (i > 0 && i <= 3)) {
1404 /* chipset already specified */
1405 if (is_chipset_set[hw])
1406 goto bad_option;
1407 if (i > -18 && i <= -11) {
1408 /* these drivers are for "ide0=" only */
1409 if (hw != 0)
1410 goto bad_hwif;
1411 /* chipset already specified for 2nd port */
1412 if (is_chipset_set[hw+1])
1413 goto bad_option;
1414 }
1415 is_chipset_set[hw] = 1;
1416 printk("\n");
1417 }
1418
1419 switch (i) {
1420#ifdef CONFIG_BLK_DEV_ALI14XX
1421 case -17: /* "ali14xx" */
1422 probe_ali14xx = 1;
1423 goto done;
1424#endif
1425#ifdef CONFIG_BLK_DEV_UMC8672
1426 case -16: /* "umc8672" */
1427 probe_umc8672 = 1;
1428 goto done;
1429#endif
1430#ifdef CONFIG_BLK_DEV_DTC2278
1431 case -15: /* "dtc2278" */
1432 probe_dtc2278 = 1;
1433 goto done;
1434#endif
1435#ifdef CONFIG_BLK_DEV_CMD640
1436 case -14: /* "cmd640_vlb" */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 cmd640_vlb = 1;
1438 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439#endif
1440#ifdef CONFIG_BLK_DEV_HT6560B
1441 case -13: /* "ht6560b" */
1442 probe_ht6560b = 1;
1443 goto done;
1444#endif
1445#ifdef CONFIG_BLK_DEV_QD65XX
1446 case -12: /* "qd65xx" */
1447 probe_qd65xx = 1;
1448 goto done;
1449#endif
1450#ifdef CONFIG_BLK_DEV_4DRIVES
1451 case -11: /* "four" drives on one set of ports */
1452 {
1453 ide_hwif_t *mate = &ide_hwifs[hw^1];
1454 mate->drives[0].select.all ^= 0x20;
1455 mate->drives[1].select.all ^= 0x20;
1456 hwif->chipset = mate->chipset = ide_4drives;
1457 mate->irq = hwif->irq;
1458 memcpy(mate->io_ports, hwif->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewiczb6209a92007-03-03 17:48:55 +01001459 hwif->mate = mate;
1460 mate->mate = hwif;
1461 hwif->serialized = mate->serialized = 1;
1462 goto obsolete_option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464#endif /* CONFIG_BLK_DEV_4DRIVES */
1465 case -10: /* minus10 */
1466 case -9: /* minus9 */
1467 case -8: /* minus8 */
Bartlomiej Zolnierkiewicz1b516942007-10-16 22:29:57 +02001468 case -6:
Bartlomiej Zolnierkiewiczb6209a92007-03-03 17:48:55 +01001469 case -4:
1470 case -3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 goto bad_option;
1472 case -7: /* ata66 */
1473#ifdef CONFIG_BLK_DEV_IDEPCI
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +02001474 /*
1475 * Use ATA_CBL_PATA40_SHORT so drive side
1476 * cable detection is also overriden.
1477 */
1478 hwif->cbl = ATA_CBL_PATA40_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 goto obsolete_option;
1480#else
1481 goto bad_hwif;
1482#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 case -5: /* "reset" */
1484 hwif->reset = 1;
1485 goto obsolete_option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 case -2: /* "serialize" */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 hwif->mate = &ide_hwifs[hw^1];
1488 hwif->mate->mate = hwif;
1489 hwif->serialized = hwif->mate->serialized = 1;
1490 goto obsolete_option;
1491
1492 case -1: /* "noprobe" */
1493 hwif->noprobe = 1;
1494 goto done;
1495
1496 case 1: /* base */
1497 vals[1] = vals[0] + 0x206; /* default ctl */
1498 case 2: /* base,ctl */
1499 vals[2] = 0; /* default irq = probe for it */
1500 case 3: /* base,ctl,irq */
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +02001501 memset(&hwregs, 0, sizeof(hwregs));
1502 ide_init_hwif_ports(&hwregs, vals[0], vals[1], &hwif->irq);
1503 memcpy(hwif->io_ports, hwregs.io_ports, sizeof(hwif->io_ports));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 hwif->irq = vals[2];
1505 hwif->noprobe = 0;
1506 hwif->chipset = ide_forced;
1507 goto obsolete_option;
1508
1509 case 0: goto bad_option;
1510 default:
1511 printk(" -- SUPPORT NOT CONFIGURED IN THIS KERNEL\n");
1512 return 1;
1513 }
1514 }
1515bad_option:
1516 printk(" -- BAD OPTION\n");
1517 return 1;
1518obsolete_option:
1519 printk(" -- OBSOLETE OPTION, WILL BE REMOVED SOON!\n");
1520 return 1;
1521bad_hwif:
1522 printk("-- NOT SUPPORTED ON ide%d", hw);
1523done:
1524 printk("\n");
1525 return 1;
1526}
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528EXPORT_SYMBOL(ide_lock);
1529
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001530static int ide_bus_match(struct device *dev, struct device_driver *drv)
1531{
1532 return 1;
1533}
1534
Kay Sievers263756e2005-12-12 18:03:44 +01001535static char *media_string(ide_drive_t *drive)
1536{
1537 switch (drive->media) {
1538 case ide_disk:
1539 return "disk";
1540 case ide_cdrom:
1541 return "cdrom";
1542 case ide_tape:
1543 return "tape";
1544 case ide_floppy:
1545 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +02001546 case ide_optical:
1547 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +01001548 default:
1549 return "UNKNOWN";
1550 }
1551}
1552
1553static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
1554{
1555 ide_drive_t *drive = to_ide_device(dev);
1556 return sprintf(buf, "%s\n", media_string(drive));
1557}
1558
1559static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
1560{
1561 ide_drive_t *drive = to_ide_device(dev);
1562 return sprintf(buf, "%s\n", drive->name);
1563}
1564
1565static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
1566{
1567 ide_drive_t *drive = to_ide_device(dev);
1568 return sprintf(buf, "ide:m-%s\n", media_string(drive));
1569}
1570
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +01001571static ssize_t model_show(struct device *dev, struct device_attribute *attr,
1572 char *buf)
1573{
1574 ide_drive_t *drive = to_ide_device(dev);
1575 return sprintf(buf, "%s\n", drive->id->model);
1576}
1577
1578static ssize_t firmware_show(struct device *dev, struct device_attribute *attr,
1579 char *buf)
1580{
1581 ide_drive_t *drive = to_ide_device(dev);
1582 return sprintf(buf, "%s\n", drive->id->fw_rev);
1583}
1584
1585static ssize_t serial_show(struct device *dev, struct device_attribute *attr,
1586 char *buf)
1587{
1588 ide_drive_t *drive = to_ide_device(dev);
1589 return sprintf(buf, "%s\n", drive->id->serial_no);
1590}
1591
Kay Sievers263756e2005-12-12 18:03:44 +01001592static struct device_attribute ide_dev_attrs[] = {
1593 __ATTR_RO(media),
1594 __ATTR_RO(drivename),
1595 __ATTR_RO(modalias),
Bartlomiej Zolnierkiewicze11b9032007-12-12 23:31:58 +01001596 __ATTR_RO(model),
1597 __ATTR_RO(firmware),
1598 __ATTR(serial, 0400, serial_show, NULL),
Kay Sievers263756e2005-12-12 18:03:44 +01001599 __ATTR_NULL
1600};
1601
Kay Sievers7eff2e72007-08-14 15:15:12 +02001602static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +01001603{
1604 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +01001605
Kay Sievers7eff2e72007-08-14 15:15:12 +02001606 add_uevent_var(env, "MEDIA=%s", media_string(drive));
1607 add_uevent_var(env, "DRIVENAME=%s", drive->name);
1608 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +01001609 return 0;
1610}
1611
Russell King4031bbe2006-01-06 11:41:00 +00001612static int generic_ide_probe(struct device *dev)
1613{
1614 ide_drive_t *drive = to_ide_device(dev);
1615 ide_driver_t *drv = to_ide_driver(dev->driver);
1616
1617 return drv->probe ? drv->probe(drive) : -ENODEV;
1618}
1619
1620static int generic_ide_remove(struct device *dev)
1621{
1622 ide_drive_t *drive = to_ide_device(dev);
1623 ide_driver_t *drv = to_ide_driver(dev->driver);
1624
1625 if (drv->remove)
1626 drv->remove(drive);
1627
1628 return 0;
1629}
1630
1631static void generic_ide_shutdown(struct device *dev)
1632{
1633 ide_drive_t *drive = to_ide_device(dev);
1634 ide_driver_t *drv = to_ide_driver(dev->driver);
1635
1636 if (dev->driver && drv->shutdown)
1637 drv->shutdown(drive);
1638}
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640struct bus_type ide_bus_type = {
1641 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001642 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +01001643 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +00001644 .probe = generic_ide_probe,
1645 .remove = generic_ide_remove,
1646 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +01001647 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 .suspend = generic_ide_suspend,
1649 .resume = generic_ide_resume,
1650};
1651
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001652EXPORT_SYMBOL_GPL(ide_bus_type);
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654/*
1655 * This is gets invoked once during initialization, to set *everything* up
1656 */
1657static int __init ide_init(void)
1658{
Randy Dunlap349ae232006-10-03 01:14:23 -07001659 int ret;
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver " REVISION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 system_bus_speed = ide_system_bus_speed();
1663
Bartlomiej Zolnierkiewicz537f06c2008-02-01 23:09:35 +01001664 printk(KERN_INFO "ide: Assuming %dMHz system bus speed "
1665 "for PIO modes%s\n", system_bus_speed,
1666 idebus_parameter ? "" : "; override with idebus=xx");
1667
Randy Dunlap349ae232006-10-03 01:14:23 -07001668 ret = bus_register(&ide_bus_type);
1669 if (ret < 0) {
1670 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
1671 return ret;
1672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 init_ide_data();
1675
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +02001676 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return 0;
1679}
1680
1681#ifdef MODULE
1682static char *options = NULL;
1683module_param(options, charp, 0);
1684MODULE_LICENSE("GPL");
1685
1686static void __init parse_options (char *line)
1687{
1688 char *next = line;
1689
1690 if (line == NULL || !*line)
1691 return;
1692 while ((line = next) != NULL) {
1693 if ((next = strchr(line,' ')) != NULL)
1694 *next++ = 0;
1695 if (!ide_setup(line))
1696 printk (KERN_INFO "Unknown option '%s'\n", line);
1697 }
1698}
1699
Sam Ravnborgfbd8ad32006-03-25 03:07:11 -08001700int __init init_module (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
1702 parse_options(options);
1703 return ide_init();
1704}
1705
Al Viroeb797222007-02-01 13:52:38 +00001706void __exit cleanup_module (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
1708 int index;
1709
1710 for (index = 0; index < MAX_HWIFS; ++index)
Bartlomiej Zolnierkiewiczf82c2b12008-02-02 19:56:39 +01001711 ide_unregister(index, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 bus_unregister(&ide_bus_type);
1716}
1717
1718#else /* !MODULE */
1719
1720__setup("", ide_setup);
1721
1722module_init(ide_init);
1723
1724#endif /* MODULE */