blob: 15741367eb35189bd63e5e08e0b6d214a10a9cf7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/ide/ide.c Version 7.00beta2 Mar 05 2003
3 *
4 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
5 */
6
7/*
8 * Mostly written by Mark Lord <mlord@pobox.com>
9 * and Gadi Oxman <gadio@netvision.net.il>
10 * and Andre Hedrick <andre@linux-ide.org>
11 *
12 * See linux/MAINTAINERS for address of current maintainer.
13 *
14 * This is the multiple IDE interface driver, as evolved from hd.c.
15 * It supports up to MAX_HWIFS IDE interfaces, on one or more IRQs
16 * (usually 14 & 15).
17 * There can be up to two drives per interface, as per the ATA-2 spec.
18 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * ...
20 *
21 * From hd.c:
22 * |
23 * | It traverses the request-list, using interrupts to jump between functions.
24 * | As nearly all functions can be called within interrupts, we may not sleep.
25 * | Special care is recommended. Have Fun!
26 * |
27 * | modified by Drew Eckhardt to check nr of hd's from the CMOS.
28 * |
29 * | Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
30 * | in the early extended-partition checks and added DM partitions.
31 * |
32 * | Early work on error handling by Mika Liljeberg (liljeber@cs.Helsinki.FI).
33 * |
34 * | IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
35 * | and general streamlining by Mark Lord (mlord@pobox.com).
36 *
37 * October, 1994 -- Complete line-by-line overhaul for linux 1.1.x, by:
38 *
39 * Mark Lord (mlord@pobox.com) (IDE Perf.Pkg)
40 * Delman Lee (delman@ieee.org) ("Mr. atdisk2")
41 * Scott Snyder (snyder@fnald0.fnal.gov) (ATAPI IDE cd-rom)
42 *
43 * This was a rewrite of just about everything from hd.c, though some original
44 * code is still sprinkled about. Think of it as a major evolution, with
45 * inspiration from lots of linux users, esp. hamish@zot.apana.org.au
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 */
47
48#define REVISION "Revision: 7.00alpha2"
49#define VERSION "Id: ide.c 7.00a2 20020906"
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define _IDE_C /* Tell ide.h it's really us */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/module.h>
54#include <linux/types.h>
55#include <linux/string.h>
56#include <linux/kernel.h>
57#include <linux/timer.h>
58#include <linux/mm.h>
59#include <linux/interrupt.h>
60#include <linux/major.h>
61#include <linux/errno.h>
62#include <linux/genhd.h>
63#include <linux/blkpg.h>
64#include <linux/slab.h>
65#include <linux/init.h>
66#include <linux/pci.h>
67#include <linux/delay.h>
68#include <linux/ide.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <linux/completion.h>
70#include <linux/reboot.h>
71#include <linux/cdrom.h>
72#include <linux/seq_file.h>
73#include <linux/device.h>
74#include <linux/bitops.h>
75
76#include <asm/byteorder.h>
77#include <asm/irq.h>
78#include <asm/uaccess.h>
79#include <asm/io.h>
80
81
82/* default maximum number of failures */
83#define IDE_DEFAULT_MAX_FAILURES 1
84
85static const u8 ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR,
86 IDE2_MAJOR, IDE3_MAJOR,
87 IDE4_MAJOR, IDE5_MAJOR,
88 IDE6_MAJOR, IDE7_MAJOR,
89 IDE8_MAJOR, IDE9_MAJOR };
90
91static int idebus_parameter; /* holds the "idebus=" parameter */
92static int system_bus_speed; /* holds what we think is VESA/PCI bus speed */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Matthias Kaehlckeef298882007-07-09 23:17:55 +020094DEFINE_MUTEX(ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 __cacheline_aligned_in_smp DEFINE_SPINLOCK(ide_lock);
96
Bartlomiej Zolnierkiewicz6d208b32007-05-10 00:01:11 +020097#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static int ide_scan_direction; /* THIS was formerly 2.2.x pci=reverse */
99#endif
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101int noautodma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100103#ifdef CONFIG_BLK_DEV_IDEACPI
104int ide_noacpi = 0;
105int ide_noacpitfs = 1;
106int ide_noacpionboot = 1;
107#endif
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * This is declared extern in ide.h, for access by other IDE modules:
111 */
112ide_hwif_t ide_hwifs[MAX_HWIFS]; /* master data repository */
113
114EXPORT_SYMBOL(ide_hwifs);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
117 * Do not even *think* about calling this!
118 */
119static void init_hwif_data(ide_hwif_t *hwif, unsigned int index)
120{
121 unsigned int unit;
122
123 /* bulk initialize hwif & drive info with zeros */
124 memset(hwif, 0, sizeof(ide_hwif_t));
125
126 /* fill in any non-zero initial values */
127 hwif->index = index;
128 hwif->major = ide_hwif_to_major[index];
129
130 hwif->name[0] = 'i';
131 hwif->name[1] = 'd';
132 hwif->name[2] = 'e';
133 hwif->name[3] = '0' + index;
134
135 hwif->bus_state = BUSSTATE_ON;
136
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800137 init_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 default_hwif_iops(hwif);
140 default_hwif_transport(hwif);
141 for (unit = 0; unit < MAX_DRIVES; ++unit) {
142 ide_drive_t *drive = &hwif->drives[unit];
143
144 drive->media = ide_disk;
145 drive->select.all = (unit<<4)|0xa0;
146 drive->hwif = hwif;
147 drive->ctl = 0x08;
148 drive->ready_stat = READY_STAT;
149 drive->bad_wstat = BAD_W_STAT;
150 drive->special.b.recalibrate = 1;
151 drive->special.b.set_geometry = 1;
152 drive->name[0] = 'h';
153 drive->name[1] = 'd';
154 drive->name[2] = 'a' + (index * MAX_DRIVES) + unit;
155 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
156 drive->using_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 drive->vdma = 0;
158 INIT_LIST_HEAD(&drive->list);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800159 init_completion(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 }
161}
162
163static void init_hwif_default(ide_hwif_t *hwif, unsigned int index)
164{
165 hw_regs_t hw;
166
167 memset(&hw, 0, sizeof(hw_regs_t));
168
169 ide_init_hwif_ports(&hw, ide_default_io_base(index), 0, &hwif->irq);
170
171 memcpy(&hwif->hw, &hw, sizeof(hw));
172 memcpy(hwif->io_ports, hw.io_ports, sizeof(hw.io_ports));
173
174 hwif->noprobe = !hwif->io_ports[IDE_DATA_OFFSET];
175#ifdef CONFIG_BLK_DEV_HD
176 if (hwif->io_ports[IDE_DATA_OFFSET] == HD_DATA)
177 hwif->noprobe = 1; /* may be overridden by ide_setup() */
178#endif
179}
180
181extern void ide_arm_init(void);
182
183/*
184 * init_ide_data() sets reasonable default values into all fields
185 * of all instances of the hwifs and drives, but only on the first call.
186 * Subsequent calls have no effect (they don't wipe out anything).
187 *
188 * This routine is normally called at driver initialization time,
189 * but may also be called MUCH earlier during kernel "command-line"
190 * parameter processing. As such, we cannot depend on any other parts
191 * of the kernel (such as memory allocation) to be functioning yet.
192 *
193 * This is too bad, as otherwise we could dynamically allocate the
194 * ide_drive_t structs as needed, rather than always consuming memory
195 * for the max possible number (MAX_HWIFS * MAX_DRIVES) of them.
196 *
197 * FIXME: We should stuff the setup data into __init and copy the
198 * relevant hwifs/allocate them properly during boot.
199 */
200#define MAGIC_COOKIE 0x12345678
201static void __init init_ide_data (void)
202{
203 ide_hwif_t *hwif;
204 unsigned int index;
205 static unsigned long magic_cookie = MAGIC_COOKIE;
206
207 if (magic_cookie != MAGIC_COOKIE)
208 return; /* already initialized */
209 magic_cookie = 0;
210
211 /* Initialise all interface structures */
212 for (index = 0; index < MAX_HWIFS; ++index) {
213 hwif = &ide_hwifs[index];
214 init_hwif_data(hwif, index);
215 init_hwif_default(hwif, index);
216#if !defined(CONFIG_PPC32) || !defined(CONFIG_PCI)
217 hwif->irq = hwif->hw.irq =
218 ide_init_default_irq(hwif->io_ports[IDE_DATA_OFFSET]);
219#endif
220 }
221#ifdef CONFIG_IDE_ARM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 ide_arm_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#endif
224}
225
226/**
227 * ide_system_bus_speed - guess bus speed
228 *
229 * ide_system_bus_speed() returns what we think is the system VESA/PCI
230 * bus speed (in MHz). This is used for calculating interface PIO timings.
231 * The default is 40 for known PCI systems, 50 otherwise.
232 * The "idebus=xx" parameter can be used to override this value.
233 * The actual value to be used is computed/displayed the first time
234 * through. Drivers should only use this as a last resort.
235 *
236 * Returns a guessed speed in MHz.
237 */
238
239static int ide_system_bus_speed(void)
240{
241#ifdef CONFIG_PCI
242 static struct pci_device_id pci_default[] = {
243 { PCI_DEVICE(PCI_ANY_ID, PCI_ANY_ID) },
244 { }
245 };
246#else
247#define pci_default 0
248#endif /* CONFIG_PCI */
249
250 if (!system_bus_speed) {
251 if (idebus_parameter) {
252 /* user supplied value */
253 system_bus_speed = idebus_parameter;
254 } else if (pci_dev_present(pci_default)) {
255 /* safe default value for PCI */
256 system_bus_speed = 33;
257 } else {
258 /* safe default value for VESA and PCI */
259 system_bus_speed = 50;
260 }
261 printk(KERN_INFO "ide: Assuming %dMHz system bus speed "
262 "for PIO modes%s\n", system_bus_speed,
263 idebus_parameter ? "" : "; override with idebus=xx");
264 }
265 return system_bus_speed;
266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static struct resource* hwif_request_region(ide_hwif_t *hwif,
269 unsigned long addr, int num)
270{
271 struct resource *res = request_region(addr, num, hwif->name);
272
273 if (!res)
274 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
275 hwif->name, addr, addr+num-1);
276 return res;
277}
278
279/**
280 * ide_hwif_request_regions - request resources for IDE
281 * @hwif: interface to use
282 *
283 * Requests all the needed resources for an interface.
284 * Right now core IDE code does this work which is deeply wrong.
285 * MMIO leaves it to the controller driver,
286 * PIO will migrate this way over time.
287 */
288
289int ide_hwif_request_regions(ide_hwif_t *hwif)
290{
291 unsigned long addr;
292 unsigned int i;
293
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100294 if (hwif->mmio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 addr = hwif->io_ports[IDE_CONTROL_OFFSET];
297 if (addr && !hwif_request_region(hwif, addr, 1))
298 goto control_region_busy;
299 hwif->straight8 = 0;
300 addr = hwif->io_ports[IDE_DATA_OFFSET];
301 if ((addr | 7) == hwif->io_ports[IDE_STATUS_OFFSET]) {
302 if (!hwif_request_region(hwif, addr, 8))
303 goto data_region_busy;
304 hwif->straight8 = 1;
305 return 0;
306 }
307 for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
308 addr = hwif->io_ports[i];
309 if (!hwif_request_region(hwif, addr, 1)) {
310 while (--i)
311 release_region(addr, 1);
312 goto data_region_busy;
313 }
314 }
315 return 0;
316
317data_region_busy:
318 addr = hwif->io_ports[IDE_CONTROL_OFFSET];
319 if (addr)
320 release_region(addr, 1);
321control_region_busy:
322 /* If any errors are return, we drop the hwif interface. */
323 return -EBUSY;
324}
325
326/**
327 * ide_hwif_release_regions - free IDE resources
328 *
329 * Note that we only release the standard ports,
330 * and do not even try to handle any extra ports
331 * allocated for weird IDE interface chipsets.
332 *
333 * Note also that we don't yet handle mmio resources here. More
334 * importantly our caller should be doing this so we need to
335 * restructure this as a helper function for drivers.
336 */
337
338void ide_hwif_release_regions(ide_hwif_t *hwif)
339{
340 u32 i = 0;
341
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100342 if (hwif->mmio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return;
344 if (hwif->io_ports[IDE_CONTROL_OFFSET])
345 release_region(hwif->io_ports[IDE_CONTROL_OFFSET], 1);
346 if (hwif->straight8) {
347 release_region(hwif->io_ports[IDE_DATA_OFFSET], 8);
348 return;
349 }
350 for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++)
351 if (hwif->io_ports[i])
352 release_region(hwif->io_ports[i], 1);
353}
354
355/**
356 * ide_hwif_restore - restore hwif to template
357 * @hwif: hwif to update
358 * @tmp_hwif: template
359 *
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700360 * Restore hwif to a previous state by copying most settings
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * from the template.
362 */
363
364static void ide_hwif_restore(ide_hwif_t *hwif, ide_hwif_t *tmp_hwif)
365{
366 hwif->hwgroup = tmp_hwif->hwgroup;
367
368 hwif->gendev.parent = tmp_hwif->gendev.parent;
369
370 hwif->proc = tmp_hwif->proc;
371
372 hwif->major = tmp_hwif->major;
373 hwif->straight8 = tmp_hwif->straight8;
374 hwif->bus_state = tmp_hwif->bus_state;
375
Bartlomiej Zolnierkiewicz6a824c92007-07-20 01:11:58 +0200376 hwif->host_flags = tmp_hwif->host_flags;
377
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200378 hwif->pio_mask = tmp_hwif->pio_mask;
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 hwif->ultra_mask = tmp_hwif->ultra_mask;
381 hwif->mwdma_mask = tmp_hwif->mwdma_mask;
382 hwif->swdma_mask = tmp_hwif->swdma_mask;
383
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200384 hwif->cbl = tmp_hwif->cbl;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 hwif->chipset = tmp_hwif->chipset;
387 hwif->hold = tmp_hwif->hold;
388
389#ifdef CONFIG_BLK_DEV_IDEPCI
390 hwif->pci_dev = tmp_hwif->pci_dev;
391 hwif->cds = tmp_hwif->cds;
392#endif
393
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200394 hwif->fixup = tmp_hwif->fixup;
395
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200396 hwif->set_pio_mode = tmp_hwif->set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200397 hwif->set_dma_mode = tmp_hwif->set_dma_mode;
Sergei Shtylyovb4e44362007-10-11 23:53:58 +0200398 hwif->mdma_filter = tmp_hwif->mdma_filter;
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200399 hwif->udma_filter = tmp_hwif->udma_filter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 hwif->selectproc = tmp_hwif->selectproc;
401 hwif->reset_poll = tmp_hwif->reset_poll;
402 hwif->pre_reset = tmp_hwif->pre_reset;
403 hwif->resetproc = tmp_hwif->resetproc;
404 hwif->intrproc = tmp_hwif->intrproc;
405 hwif->maskproc = tmp_hwif->maskproc;
406 hwif->quirkproc = tmp_hwif->quirkproc;
407 hwif->busproc = tmp_hwif->busproc;
408
409 hwif->ata_input_data = tmp_hwif->ata_input_data;
410 hwif->ata_output_data = tmp_hwif->ata_output_data;
411 hwif->atapi_input_bytes = tmp_hwif->atapi_input_bytes;
412 hwif->atapi_output_bytes = tmp_hwif->atapi_output_bytes;
413
414 hwif->dma_setup = tmp_hwif->dma_setup;
415 hwif->dma_exec_cmd = tmp_hwif->dma_exec_cmd;
416 hwif->dma_start = tmp_hwif->dma_start;
417 hwif->ide_dma_end = tmp_hwif->ide_dma_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 hwif->ide_dma_on = tmp_hwif->ide_dma_on;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100419 hwif->dma_off_quietly = tmp_hwif->dma_off_quietly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 hwif->ide_dma_test_irq = tmp_hwif->ide_dma_test_irq;
Albert Leef0dd8712007-02-17 02:40:21 +0100421 hwif->ide_dma_clear_irq = tmp_hwif->ide_dma_clear_irq;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100422 hwif->dma_host_on = tmp_hwif->dma_host_on;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100423 hwif->dma_host_off = tmp_hwif->dma_host_off;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200424 hwif->dma_lost_irq = tmp_hwif->dma_lost_irq;
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200425 hwif->dma_timeout = tmp_hwif->dma_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 hwif->OUTB = tmp_hwif->OUTB;
428 hwif->OUTBSYNC = tmp_hwif->OUTBSYNC;
429 hwif->OUTW = tmp_hwif->OUTW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 hwif->OUTSW = tmp_hwif->OUTSW;
431 hwif->OUTSL = tmp_hwif->OUTSL;
432
433 hwif->INB = tmp_hwif->INB;
434 hwif->INW = tmp_hwif->INW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 hwif->INSW = tmp_hwif->INSW;
436 hwif->INSL = tmp_hwif->INSL;
437
438 hwif->sg_max_nents = tmp_hwif->sg_max_nents;
439
440 hwif->mmio = tmp_hwif->mmio;
441 hwif->rqsize = tmp_hwif->rqsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443#ifndef CONFIG_BLK_DEV_IDECS
444 hwif->irq = tmp_hwif->irq;
445#endif
446
447 hwif->dma_base = tmp_hwif->dma_base;
448 hwif->dma_master = tmp_hwif->dma_master;
449 hwif->dma_command = tmp_hwif->dma_command;
450 hwif->dma_vendor1 = tmp_hwif->dma_vendor1;
451 hwif->dma_status = tmp_hwif->dma_status;
452 hwif->dma_vendor3 = tmp_hwif->dma_vendor3;
453 hwif->dma_prdtable = tmp_hwif->dma_prdtable;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 hwif->config_data = tmp_hwif->config_data;
456 hwif->select_data = tmp_hwif->select_data;
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700457 hwif->extra_base = tmp_hwif->extra_base;
458 hwif->extra_ports = tmp_hwif->extra_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 hwif->hwif_data = tmp_hwif->hwif_data;
461}
462
463/**
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700464 * ide_unregister - free an IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * @index: index of interface (will change soon to a pointer)
466 *
467 * Perform the final unregister of an IDE interface. At the moment
468 * we don't refcount interfaces so this will also get split up.
469 *
470 * Locking:
471 * The caller must not hold the IDE locks
472 * The drive present/vanishing is not yet properly locked
473 * Take care with the callbacks. These have been split to avoid
474 * deadlocking the IDE layer. The shutdown callback is called
475 * before we take the lock and free resources. It is up to the
476 * caller to be sure there is no pending I/O here, and that
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700477 * the interface will not be reopened (present/vanishing locking
478 * isn't yet done BTW). After we commit to the final kill we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 * call the cleanup callback with the ide locks held.
480 *
481 * Unregister restores the hwif structures to the default state.
482 * This is raving bonkers.
483 */
484
485void ide_unregister(unsigned int index)
486{
487 ide_drive_t *drive;
488 ide_hwif_t *hwif, *g;
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200489 static ide_hwif_t tmp_hwif; /* protected by ide_cfg_mtx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 ide_hwgroup_t *hwgroup;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200491 int irq_count = 0, unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 BUG_ON(index >= MAX_HWIFS);
494
495 BUG_ON(in_interrupt());
496 BUG_ON(irqs_disabled());
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200497 mutex_lock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 spin_lock_irq(&ide_lock);
499 hwif = &ide_hwifs[index];
500 if (!hwif->present)
501 goto abort;
502 for (unit = 0; unit < MAX_DRIVES; ++unit) {
503 drive = &hwif->drives[unit];
Greg Kroah-Hartman94f6c592005-06-20 21:15:16 -0700504 if (!drive->present)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 continue;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200506 spin_unlock_irq(&ide_lock);
507 device_unregister(&drive->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800508 wait_for_completion(&drive->gendev_rel_comp);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +0200509 spin_lock_irq(&ide_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 hwif->present = 0;
512
513 spin_unlock_irq(&ide_lock);
514
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200515 ide_proc_unregister_port(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 hwgroup = hwif->hwgroup;
518 /*
519 * free the irq if we were the only hwif using it
520 */
521 g = hwgroup->hwif;
522 do {
523 if (g->irq == hwif->irq)
524 ++irq_count;
525 g = g->next;
526 } while (g != hwgroup->hwif);
527 if (irq_count == 1)
528 free_irq(hwif->irq, hwgroup);
529
530 spin_lock_irq(&ide_lock);
531 /*
532 * Note that we only release the standard ports,
533 * and do not even try to handle any extra ports
534 * allocated for weird IDE interface chipsets.
535 */
536 ide_hwif_release_regions(hwif);
537
538 /*
539 * Remove us from the hwgroup, and free
540 * the hwgroup if we were the only member
541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (hwif->next == hwif) {
543 BUG_ON(hwgroup->hwif != hwif);
544 kfree(hwgroup);
545 } else {
546 /* There is another interface in hwgroup.
547 * Unlink us, and set hwgroup->drive and ->hwif to
548 * something sane.
549 */
550 g = hwgroup->hwif;
551 while (g->next != hwif)
552 g = g->next;
553 g->next = hwif->next;
554 if (hwgroup->hwif == hwif) {
555 /* Chose a random hwif for hwgroup->hwif.
556 * It's guaranteed that there are no drives
557 * left in the hwgroup.
558 */
559 BUG_ON(hwgroup->drive != NULL);
560 hwgroup->hwif = g;
561 }
562 BUG_ON(hwgroup->hwif == hwif);
563 }
564
565 /* More messed up locking ... */
566 spin_unlock_irq(&ide_lock);
567 device_unregister(&hwif->gendev);
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800568 wait_for_completion(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /*
571 * Remove us from the kernel's knowledge
572 */
573 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
574 kfree(hwif->sg_table);
575 unregister_blkdev(hwif->major, hwif->name);
576 spin_lock_irq(&ide_lock);
577
578 if (hwif->dma_base) {
579 (void) ide_release_dma(hwif);
580
581 hwif->dma_base = 0;
582 hwif->dma_master = 0;
583 hwif->dma_command = 0;
584 hwif->dma_vendor1 = 0;
585 hwif->dma_status = 0;
586 hwif->dma_vendor3 = 0;
587 hwif->dma_prdtable = 0;
Sergei Shtylylov020e3222006-10-03 01:14:13 -0700588
589 hwif->extra_base = 0;
590 hwif->extra_ports = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
592
593 /* copy original settings */
594 tmp_hwif = *hwif;
595
596 /* restore hwif data to pristine status */
597 init_hwif_data(hwif, index);
598 init_hwif_default(hwif, index);
599
600 ide_hwif_restore(hwif, &tmp_hwif);
601
602abort:
603 spin_unlock_irq(&ide_lock);
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200604 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
607EXPORT_SYMBOL(ide_unregister);
608
609
610/**
611 * ide_setup_ports - set up IDE interface ports
612 * @hw: register descriptions
613 * @base: base register
614 * @offsets: table of register offsets
615 * @ctrl: control register
616 * @ack_irq: IRQ ack
617 * @irq: interrupt lie
618 *
619 * Setup hw_regs_t structure described by parameters. You
620 * may set up the hw structure yourself OR use this routine to
621 * do it for you. This is basically a helper
622 *
623 */
624
625void ide_setup_ports ( hw_regs_t *hw,
626 unsigned long base, int *offsets,
627 unsigned long ctrl, unsigned long intr,
628 ide_ack_intr_t *ack_intr,
629/*
630 * ide_io_ops_t *iops,
631 */
632 int irq)
633{
634 int i;
635
Roman Zippel2c3e0262006-06-23 02:04:51 -0700636 memset(hw, 0, sizeof(hw_regs_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 for (i = 0; i < IDE_NR_PORTS; i++) {
638 if (offsets[i] == -1) {
639 switch(i) {
640 case IDE_CONTROL_OFFSET:
641 hw->io_ports[i] = ctrl;
642 break;
643#if defined(CONFIG_AMIGA) || defined(CONFIG_MAC)
644 case IDE_IRQ_OFFSET:
645 hw->io_ports[i] = intr;
646 break;
647#endif /* (CONFIG_AMIGA) || (CONFIG_MAC) */
648 default:
649 hw->io_ports[i] = 0;
650 break;
651 }
652 } else {
653 hw->io_ports[i] = base + offsets[i];
654 }
655 }
656 hw->irq = irq;
657 hw->dma = NO_DMA;
658 hw->ack_intr = ack_intr;
659/*
660 * hw->iops = iops;
661 */
662}
663
664/**
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200665 * ide_register_hw - register IDE interface
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 * @hw: hardware registers
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200667 * @fixup: fixup function
Bartlomiej Zolnierkiewicz869c56e2007-05-10 00:01:10 +0200668 * @initializing: set while initializing built-in drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * @hwifp: pointer to returned hwif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 *
671 * Register an IDE interface, specifying exactly the registers etc.
672 * Set init=1 iff calling before probes have taken place.
673 *
674 * Returns -1 on error.
675 */
676
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200677int ide_register_hw(hw_regs_t *hw, void (*fixup)(ide_hwif_t *),
678 int initializing, ide_hwif_t **hwifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 int index, retry = 1;
681 ide_hwif_t *hwif;
682
683 do {
684 for (index = 0; index < MAX_HWIFS; ++index) {
685 hwif = &ide_hwifs[index];
686 if (hwif->hw.io_ports[IDE_DATA_OFFSET] == hw->io_ports[IDE_DATA_OFFSET])
687 goto found;
688 }
689 for (index = 0; index < MAX_HWIFS; ++index) {
690 hwif = &ide_hwifs[index];
691 if (hwif->hold)
692 continue;
693 if ((!hwif->present && !hwif->mate && !initializing) ||
694 (!hwif->hw.io_ports[IDE_DATA_OFFSET] && initializing))
695 goto found;
696 }
697 for (index = 0; index < MAX_HWIFS; index++)
698 ide_unregister(index);
699 } while (retry--);
700 return -1;
701found:
702 if (hwif->present)
703 ide_unregister(index);
704 else if (!hwif->hold) {
705 init_hwif_data(hwif, index);
706 init_hwif_default(hwif, index);
707 }
708 if (hwif->present)
709 return -1;
710 memcpy(&hwif->hw, hw, sizeof(*hw));
711 memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->hw.io_ports));
712 hwif->irq = hw->irq;
713 hwif->noprobe = 0;
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200714 hwif->fixup = fixup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 hwif->chipset = hw->chipset;
Hannes Reinecke4349d5c2005-11-09 22:47:18 +0100716 hwif->gendev.parent = hw->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200718 if (initializing == 0) {
719 u8 idx[4] = { index, 0xff, 0xff, 0xff };
720
721 ide_device_add(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 }
723
724 if (hwifp)
725 *hwifp = hwif;
726
727 return (initializing || hwif->present) ? index : -1;
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730EXPORT_SYMBOL(ide_register_hw);
731
732/*
733 * Locks for IDE setting functionality
734 */
735
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200736DEFINE_MUTEX(ide_setting_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Matthias Kaehlckef9383c42007-07-09 23:17:56 +0200738EXPORT_SYMBOL_GPL(ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * ide_spin_wait_hwgroup - wait for group
742 * @drive: drive in the group
743 *
744 * Wait for an IDE device group to go non busy and then return
745 * holding the ide_lock which guards the hwgroup->busy status
746 * and right to use it.
747 */
748
749int ide_spin_wait_hwgroup (ide_drive_t *drive)
750{
751 ide_hwgroup_t *hwgroup = HWGROUP(drive);
752 unsigned long timeout = jiffies + (3 * HZ);
753
754 spin_lock_irq(&ide_lock);
755
756 while (hwgroup->busy) {
757 unsigned long lflags;
758 spin_unlock_irq(&ide_lock);
759 local_irq_set(lflags);
760 if (time_after(jiffies, timeout)) {
761 local_irq_restore(lflags);
762 printk(KERN_ERR "%s: channel busy\n", drive->name);
763 return -EBUSY;
764 }
765 local_irq_restore(lflags);
766 spin_lock_irq(&ide_lock);
767 }
768 return 0;
769}
770
771EXPORT_SYMBOL(ide_spin_wait_hwgroup);
772
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200773int set_io_32bit(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200775 if (drive->no_io_32bit)
776 return -EPERM;
777
778 if (arg < 0 || arg > 1 + (SUPPORT_VLB_SYNC << 1))
779 return -EINVAL;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 drive->io_32bit = arg;
782#ifdef CONFIG_BLK_DEV_DTC2278
783 if (HWIF(drive)->chipset == ide_dtc2278)
784 HWIF(drive)->drives[!drive->select.b.unit].io_32bit = arg;
785#endif /* CONFIG_BLK_DEV_DTC2278 */
786 return 0;
787}
788
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200789static int set_ksettings(ide_drive_t *drive, int arg)
790{
791 if (arg < 0 || arg > 1)
792 return -EINVAL;
793
794 if (ide_spin_wait_hwgroup(drive))
795 return -EBUSY;
796 drive->keep_settings = arg;
797 spin_unlock_irq(&ide_lock);
798
799 return 0;
800}
801
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200802int set_using_dma(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804#ifdef CONFIG_BLK_DEV_IDEDMA
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200805 ide_hwif_t *hwif = drive->hwif;
806 int err = -EPERM;
807
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200808 if (arg < 0 || arg > 1)
809 return -EINVAL;
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (!drive->id || !(drive->id->capability & 1))
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200812 goto out;
813
Bartlomiej Zolnierkiewicz0ae2e172007-10-16 22:29:55 +0200814 if (hwif->ide_dma_on == NULL)
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200815 goto out;
816
817 err = -EBUSY;
818 if (ide_spin_wait_hwgroup(drive))
819 goto out;
820 /*
821 * set ->busy flag, unlock and let it ride
822 */
823 hwif->hwgroup->busy = 1;
824 spin_unlock_irq(&ide_lock);
825
826 err = 0;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (arg) {
Bartlomiej Zolnierkiewicz793a9722007-05-16 00:51:43 +0200829 hwif->dma_off_quietly(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200830 if (ide_set_dma(drive) || hwif->ide_dma_on(drive))
831 err = -EIO;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100832 } else
833 ide_dma_off(drive);
Bartlomiej Zolnierkiewicz87996202007-03-26 23:03:19 +0200834
835 /*
836 * lock, clear ->busy flag and unlock before leaving
837 */
838 spin_lock_irq(&ide_lock);
839 hwif->hwgroup->busy = 0;
840 spin_unlock_irq(&ide_lock);
841out:
842 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843#else
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200844 if (arg < 0 || arg > 1)
845 return -EINVAL;
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return -EPERM;
848#endif
849}
850
Bartlomiej Zolnierkiewicz7662d042007-05-10 00:01:10 +0200851int set_pio_mode(ide_drive_t *drive, int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct request rq;
854
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200855 if (arg < 0 || arg > 255)
856 return -EINVAL;
857
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200858 if (drive->hwif->set_pio_mode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return -ENOSYS;
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (drive->special.b.set_tune)
862 return -EBUSY;
863 ide_init_drive_cmd(&rq);
864 drive->tune_req = (u8) arg;
865 drive->special.b.set_tune = 1;
866 (void) ide_do_drive_cmd(drive, &rq, ide_wait);
867 return 0;
868}
869
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200870static int set_unmaskirq(ide_drive_t *drive, int arg)
871{
872 if (drive->no_unmask)
873 return -EPERM;
874
875 if (arg < 0 || arg > 1)
876 return -EINVAL;
877
878 if (ide_spin_wait_hwgroup(drive))
879 return -EBUSY;
880 drive->unmask = arg;
881 spin_unlock_irq(&ide_lock);
882
883 return 0;
884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886/**
887 * system_bus_clock - clock guess
888 *
889 * External version of the bus clock guess used by very old IDE drivers
890 * for things like VLB timings. Should not be used.
891 */
892
893int system_bus_clock (void)
894{
895 return((int) ((!system_bus_speed) ? ide_system_bus_speed() : system_bus_speed ));
896}
897
898EXPORT_SYMBOL(system_bus_clock);
899
David Brownellb887d2e2006-08-14 23:11:05 -0700900static int generic_ide_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100903 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 struct request rq;
905 struct request_pm_state rqpm;
906 ide_task_t args;
Shaohua Li5e321322007-10-11 23:53:58 +0200907 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100909 /* Call ACPI _GTM only once */
910 if (!(drive->dn % 2))
911 ide_acpi_get_timing(hwif);
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 memset(&rq, 0, sizeof(rq));
914 memset(&rqpm, 0, sizeof(rqpm));
915 memset(&args, 0, sizeof(args));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200916 rq.cmd_type = REQ_TYPE_PM_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 rq.special = &args;
Jens Axboec00895a2006-09-30 20:29:12 +0200918 rq.data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 rqpm.pm_step = ide_pm_state_start_suspend;
David Brownellb887d2e2006-08-14 23:11:05 -0700920 if (mesg.event == PM_EVENT_PRETHAW)
921 mesg.event = PM_EVENT_FREEZE;
922 rqpm.pm_state = mesg.event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Shaohua Li5e321322007-10-11 23:53:58 +0200924 ret = ide_do_drive_cmd(drive, &rq, ide_wait);
925 /* only call ACPI _PS3 after both drivers are suspended */
926 if (!ret && (((drive->dn % 2) && hwif->drives[0].present
927 && hwif->drives[1].present)
928 || !hwif->drives[0].present
929 || !hwif->drives[1].present))
930 ide_acpi_set_state(hwif, 0);
931 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934static int generic_ide_resume(struct device *dev)
935{
936 ide_drive_t *drive = dev->driver_data;
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100937 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct request rq;
939 struct request_pm_state rqpm;
940 ide_task_t args;
Lee Trager0d2157f2007-06-08 15:14:30 +0200941 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100943 /* Call ACPI _STM only once */
Shaohua Li5e321322007-10-11 23:53:58 +0200944 if (!(drive->dn % 2)) {
945 ide_acpi_set_state(hwif, 1);
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100946 ide_acpi_push_timing(hwif);
Shaohua Li5e321322007-10-11 23:53:58 +0200947 }
Hannes Reineckee3a59b42007-02-07 18:19:37 +0100948
949 ide_acpi_exec_tfs(drive);
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 memset(&rq, 0, sizeof(rq));
952 memset(&rqpm, 0, sizeof(rqpm));
953 memset(&args, 0, sizeof(args));
Jens Axboe4aff5e22006-08-10 08:44:47 +0200954 rq.cmd_type = REQ_TYPE_PM_RESUME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 rq.special = &args;
Jens Axboec00895a2006-09-30 20:29:12 +0200956 rq.data = &rqpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 rqpm.pm_step = ide_pm_state_start_resume;
Pavel Machekca078ba2005-09-03 15:56:57 -0700958 rqpm.pm_state = PM_EVENT_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Lee Trager0d2157f2007-06-08 15:14:30 +0200960 err = ide_do_drive_cmd(drive, &rq, ide_head_wait);
961
Rafael J. Wysockice9b2b02007-06-16 02:24:43 +0200962 if (err == 0 && dev->driver) {
963 ide_driver_t *drv = to_ide_driver(dev->driver);
964
965 if (drv->resume)
966 drv->resume(drive);
967 }
Lee Trager0d2157f2007-06-08 15:14:30 +0200968
969 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
972int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device *bdev,
973 unsigned int cmd, unsigned long arg)
974{
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200975 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 ide_driver_t *drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 void __user *p = (void __user *)arg;
Linus Torvalds19850262007-07-17 15:57:42 -0700978 int err = 0, (*setfunc)(ide_drive_t *, int);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200979 u8 *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +0200981 switch (cmd) {
982 case HDIO_GET_32BIT: val = &drive->io_32bit; goto read_val;
983 case HDIO_GET_KEEPSETTINGS: val = &drive->keep_settings; goto read_val;
984 case HDIO_GET_UNMASKINTR: val = &drive->unmask; goto read_val;
985 case HDIO_GET_DMA: val = &drive->using_dma; goto read_val;
986 case HDIO_SET_32BIT: setfunc = set_io_32bit; goto set_val;
987 case HDIO_SET_KEEPSETTINGS: setfunc = set_ksettings; goto set_val;
988 case HDIO_SET_PIO_MODE: setfunc = set_pio_mode; goto set_val;
989 case HDIO_SET_UNMASKINTR: setfunc = set_unmaskirq; goto set_val;
990 case HDIO_SET_DMA: setfunc = set_using_dma; goto set_val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 case HDIO_OBSOLETE_IDENTITY:
995 case HDIO_GET_IDENTITY:
996 if (bdev != bdev->bd_contains)
997 return -EINVAL;
998 if (drive->id_read == 0)
999 return -ENOMSG;
1000 if (copy_to_user(p, drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
1001 return -EFAULT;
1002 return 0;
1003
1004 case HDIO_GET_NICE:
1005 return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
1006 drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
1007 drive->nice0 << IDE_NICE_0 |
1008 drive->nice1 << IDE_NICE_1 |
1009 drive->nice2 << IDE_NICE_2,
1010 (long __user *) arg);
1011
1012#ifdef CONFIG_IDE_TASK_IOCTL
1013 case HDIO_DRIVE_TASKFILE:
1014 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
1015 return -EACCES;
1016 switch(drive->media) {
1017 case ide_disk:
1018 return ide_taskfile_ioctl(drive, cmd, arg);
1019 default:
1020 return -ENOMSG;
1021 }
1022#endif /* CONFIG_IDE_TASK_IOCTL */
1023
1024 case HDIO_DRIVE_CMD:
1025 if (!capable(CAP_SYS_RAWIO))
1026 return -EACCES;
1027 return ide_cmd_ioctl(drive, cmd, arg);
1028
1029 case HDIO_DRIVE_TASK:
1030 if (!capable(CAP_SYS_RAWIO))
1031 return -EACCES;
1032 return ide_task_ioctl(drive, cmd, arg);
1033
1034 case HDIO_SCAN_HWIF:
1035 {
1036 hw_regs_t hw;
1037 int args[3];
1038 if (!capable(CAP_SYS_RAWIO)) return -EACCES;
1039 if (copy_from_user(args, p, 3 * sizeof(int)))
1040 return -EFAULT;
1041 memset(&hw, 0, sizeof(hw));
1042 ide_init_hwif_ports(&hw, (unsigned long) args[0],
1043 (unsigned long) args[1], NULL);
1044 hw.irq = args[2];
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +02001045 if (ide_register_hw(&hw, NULL, 0, NULL) == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return -EIO;
1047 return 0;
1048 }
1049 case HDIO_UNREGISTER_HWIF:
1050 if (!capable(CAP_SYS_RAWIO)) return -EACCES;
1051 /* (arg > MAX_HWIFS) checked in function */
1052 ide_unregister(arg);
1053 return 0;
1054 case HDIO_SET_NICE:
1055 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
1056 if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
1057 return -EPERM;
1058 drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
1059 drv = *(ide_driver_t **)bdev->bd_disk->private_data;
1060 if (drive->dsc_overlap && !drv->supports_dsc_overlap) {
1061 drive->dsc_overlap = 0;
1062 return -EPERM;
1063 }
1064 drive->nice1 = (arg >> IDE_NICE_1) & 1;
1065 return 0;
1066 case HDIO_DRIVE_RESET:
1067 {
1068 unsigned long flags;
1069 if (!capable(CAP_SYS_ADMIN)) return -EACCES;
1070
1071 /*
1072 * Abort the current command on the
1073 * group if there is one, taking
1074 * care not to allow anything else
1075 * to be queued and to die on the
1076 * spot if we miss one somehow
1077 */
1078
1079 spin_lock_irqsave(&ide_lock, flags);
1080
Alan Cox913759a2006-10-03 01:14:33 -07001081 if (HWGROUP(drive)->resetting) {
1082 spin_unlock_irqrestore(&ide_lock, flags);
1083 return -EBUSY;
1084 }
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 ide_abort(drive, "drive reset");
1087
Eric Sesterhenn125e1872006-06-23 02:06:06 -07001088 BUG_ON(HWGROUP(drive)->handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /* Ensure nothing gets queued after we
1091 drop the lock. Reset will clear the busy */
1092
1093 HWGROUP(drive)->busy = 1;
1094 spin_unlock_irqrestore(&ide_lock, flags);
1095 (void) ide_do_reset(drive);
1096
1097 return 0;
1098 }
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 case HDIO_GET_BUSSTATE:
1101 if (!capable(CAP_SYS_ADMIN))
1102 return -EACCES;
1103 if (put_user(HWIF(drive)->bus_state, (long __user *)arg))
1104 return -EFAULT;
1105 return 0;
1106
1107 case HDIO_SET_BUSSTATE:
1108 if (!capable(CAP_SYS_ADMIN))
1109 return -EACCES;
1110 if (HWIF(drive)->busproc)
1111 return HWIF(drive)->busproc(drive, (int)arg);
1112 return -EOPNOTSUPP;
1113 default:
1114 return -EINVAL;
1115 }
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001116
1117read_val:
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001118 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001119 spin_lock_irqsave(&ide_lock, flags);
1120 err = *val;
1121 spin_unlock_irqrestore(&ide_lock, flags);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001122 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001123 return err >= 0 ? put_user(err, (long __user *)arg) : err;
1124
1125set_val:
1126 if (bdev != bdev->bd_contains)
1127 err = -EINVAL;
1128 else {
1129 if (!capable(CAP_SYS_ADMIN))
1130 err = -EACCES;
1131 else {
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001132 mutex_lock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001133 err = setfunc(drive, arg);
Matthias Kaehlckef9383c42007-07-09 23:17:56 +02001134 mutex_unlock(&ide_setting_mtx);
Bartlomiej Zolnierkiewicz14979432007-05-10 00:01:10 +02001135 }
1136 }
1137 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140EXPORT_SYMBOL(generic_ide_ioctl);
1141
1142/*
1143 * stridx() returns the offset of c within s,
1144 * or -1 if c is '\0' or not found within s.
1145 */
1146static int __init stridx (const char *s, char c)
1147{
1148 char *i = strchr(s, c);
1149 return (i && c) ? i - s : -1;
1150}
1151
1152/*
1153 * match_parm() does parsing for ide_setup():
1154 *
1155 * 1. the first char of s must be '='.
1156 * 2. if the remainder matches one of the supplied keywords,
1157 * the index (1 based) of the keyword is negated and returned.
1158 * 3. if the remainder is a series of no more than max_vals numbers
1159 * separated by commas, the numbers are saved in vals[] and a
1160 * count of how many were saved is returned. Base10 is assumed,
1161 * and base16 is allowed when prefixed with "0x".
1162 * 4. otherwise, zero is returned.
1163 */
1164static int __init match_parm (char *s, const char *keywords[], int vals[], int max_vals)
1165{
1166 static const char *decimal = "0123456789";
1167 static const char *hex = "0123456789abcdef";
1168 int i, n;
1169
1170 if (*s++ == '=') {
1171 /*
1172 * Try matching against the supplied keywords,
1173 * and return -(index+1) if we match one
1174 */
1175 if (keywords != NULL) {
1176 for (i = 0; *keywords != NULL; ++i) {
1177 if (!strcmp(s, *keywords++))
1178 return -(i+1);
1179 }
1180 }
1181 /*
1182 * Look for a series of no more than "max_vals"
1183 * numeric values separated by commas, in base10,
1184 * or base16 when prefixed with "0x".
1185 * Return a count of how many were found.
1186 */
1187 for (n = 0; (i = stridx(decimal, *s)) >= 0;) {
1188 vals[n] = i;
1189 while ((i = stridx(decimal, *++s)) >= 0)
1190 vals[n] = (vals[n] * 10) + i;
1191 if (*s == 'x' && !vals[n]) {
1192 while ((i = stridx(hex, *++s)) >= 0)
1193 vals[n] = (vals[n] * 0x10) + i;
1194 }
1195 if (++n == max_vals)
1196 break;
1197 if (*s == ',' || *s == ';')
1198 ++s;
1199 }
1200 if (!*s)
1201 return n;
1202 }
1203 return 0; /* zero = nothing matched */
1204}
1205
1206#ifdef CONFIG_BLK_DEV_ALI14XX
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001207extern int probe_ali14xx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208extern int ali14xx_init(void);
1209#endif
1210#ifdef CONFIG_BLK_DEV_UMC8672
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001211extern int probe_umc8672;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212extern int umc8672_init(void);
1213#endif
1214#ifdef CONFIG_BLK_DEV_DTC2278
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001215extern int probe_dtc2278;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216extern int dtc2278_init(void);
1217#endif
1218#ifdef CONFIG_BLK_DEV_HT6560B
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001219extern int probe_ht6560b;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220extern int ht6560b_init(void);
1221#endif
1222#ifdef CONFIG_BLK_DEV_QD65XX
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +01001223extern int probe_qd65xx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224extern int qd65xx_init(void);
1225#endif
1226
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",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 "autotune", "noautotune", "minus8", "swapdata", "bswap",
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;
1338 case -9: /* "swapdata" */
1339 case -10: /* "bswap" */
1340 drive->bswap = 1;
1341 goto done;
Jens Axboe36193482006-07-28 08:54:59 +02001342 case -11: /* noflush */
1343 drive->noflush = 1;
1344 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 case -12: /* "remap" */
1346 drive->remap_0_to_1 = 1;
1347 goto done;
1348 case -13: /* "remap63" */
1349 drive->sect0 = 63;
1350 goto done;
1351 case -14: /* "scsi" */
1352 drive->scsi = 1;
1353 goto done;
1354 case 3: /* cyl,head,sect */
1355 drive->media = ide_disk;
1356 drive->ready_stat = READY_STAT;
1357 drive->cyl = drive->bios_cyl = vals[0];
1358 drive->head = drive->bios_head = vals[1];
1359 drive->sect = drive->bios_sect = vals[2];
1360 drive->present = 1;
1361 drive->forced_geom = 1;
1362 hwif->noprobe = 0;
1363 goto done;
1364 default:
1365 goto bad_option;
1366 }
1367 }
1368
1369 if (s[0] != 'i' || s[1] != 'd' || s[2] != 'e')
1370 goto bad_option;
1371 /*
1372 * Look for bus speed option: "idebus="
1373 */
1374 if (s[3] == 'b' && s[4] == 'u' && s[5] == 's') {
1375 if (match_parm(&s[6], NULL, vals, 1) != 1)
1376 goto bad_option;
1377 if (vals[0] >= 20 && vals[0] <= 66) {
1378 idebus_parameter = vals[0];
1379 } else
1380 printk(" -- BAD BUS SPEED! Expected value from 20 to 66");
1381 goto done;
1382 }
1383 /*
1384 * Look for interface options: "idex="
1385 */
1386 if (s[3] >= '0' && s[3] <= max_hwif) {
1387 /*
1388 * Be VERY CAREFUL changing this: note hardcoded indexes below
1389 * (-8, -9, -10) are reserved to ease the hardcoding.
1390 */
1391 static const char *ide_words[] = {
Bartlomiej Zolnierkiewiczb6209a92007-03-03 17:48:55 +01001392 "noprobe", "serialize", "minus3", "minus4",
Bartlomiej Zolnierkiewicz1b516942007-10-16 22:29:57 +02001393 "reset", "minus6", "ata66", "minus8", "minus9",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 "minus10", "four", "qd65xx", "ht6560b", "cmd640_vlb",
1395 "dtc2278", "umc8672", "ali14xx", NULL };
1396 hw = s[3] - '0';
1397 hwif = &ide_hwifs[hw];
1398 i = match_parm(&s[4], ide_words, vals, 3);
1399
1400 /*
1401 * Cryptic check to ensure chipset not already set for hwif.
1402 * Note: we can't depend on hwif->chipset here.
1403 */
1404 if ((i >= -18 && i <= -11) || (i > 0 && i <= 3)) {
1405 /* chipset already specified */
1406 if (is_chipset_set[hw])
1407 goto bad_option;
1408 if (i > -18 && i <= -11) {
1409 /* these drivers are for "ide0=" only */
1410 if (hw != 0)
1411 goto bad_hwif;
1412 /* chipset already specified for 2nd port */
1413 if (is_chipset_set[hw+1])
1414 goto bad_option;
1415 }
1416 is_chipset_set[hw] = 1;
1417 printk("\n");
1418 }
1419
1420 switch (i) {
1421#ifdef CONFIG_BLK_DEV_ALI14XX
1422 case -17: /* "ali14xx" */
1423 probe_ali14xx = 1;
1424 goto done;
1425#endif
1426#ifdef CONFIG_BLK_DEV_UMC8672
1427 case -16: /* "umc8672" */
1428 probe_umc8672 = 1;
1429 goto done;
1430#endif
1431#ifdef CONFIG_BLK_DEV_DTC2278
1432 case -15: /* "dtc2278" */
1433 probe_dtc2278 = 1;
1434 goto done;
1435#endif
1436#ifdef CONFIG_BLK_DEV_CMD640
1437 case -14: /* "cmd640_vlb" */
1438 {
1439 extern int cmd640_vlb; /* flag for cmd640.c */
1440 cmd640_vlb = 1;
1441 goto done;
1442 }
1443#endif
1444#ifdef CONFIG_BLK_DEV_HT6560B
1445 case -13: /* "ht6560b" */
1446 probe_ht6560b = 1;
1447 goto done;
1448#endif
1449#ifdef CONFIG_BLK_DEV_QD65XX
1450 case -12: /* "qd65xx" */
1451 probe_qd65xx = 1;
1452 goto done;
1453#endif
1454#ifdef CONFIG_BLK_DEV_4DRIVES
1455 case -11: /* "four" drives on one set of ports */
1456 {
1457 ide_hwif_t *mate = &ide_hwifs[hw^1];
1458 mate->drives[0].select.all ^= 0x20;
1459 mate->drives[1].select.all ^= 0x20;
1460 hwif->chipset = mate->chipset = ide_4drives;
1461 mate->irq = hwif->irq;
1462 memcpy(mate->io_ports, hwif->io_ports, sizeof(hwif->io_ports));
Bartlomiej Zolnierkiewiczb6209a92007-03-03 17:48:55 +01001463 hwif->mate = mate;
1464 mate->mate = hwif;
1465 hwif->serialized = mate->serialized = 1;
1466 goto obsolete_option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468#endif /* CONFIG_BLK_DEV_4DRIVES */
1469 case -10: /* minus10 */
1470 case -9: /* minus9 */
1471 case -8: /* minus8 */
Bartlomiej Zolnierkiewicz1b516942007-10-16 22:29:57 +02001472 case -6:
Bartlomiej Zolnierkiewiczb6209a92007-03-03 17:48:55 +01001473 case -4:
1474 case -3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 goto bad_option;
1476 case -7: /* ata66 */
1477#ifdef CONFIG_BLK_DEV_IDEPCI
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +02001478 /*
1479 * Use ATA_CBL_PATA40_SHORT so drive side
1480 * cable detection is also overriden.
1481 */
1482 hwif->cbl = ATA_CBL_PATA40_SHORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 goto obsolete_option;
1484#else
1485 goto bad_hwif;
1486#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 case -5: /* "reset" */
1488 hwif->reset = 1;
1489 goto obsolete_option;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 case -2: /* "serialize" */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 hwif->mate = &ide_hwifs[hw^1];
1492 hwif->mate->mate = hwif;
1493 hwif->serialized = hwif->mate->serialized = 1;
1494 goto obsolete_option;
1495
1496 case -1: /* "noprobe" */
1497 hwif->noprobe = 1;
1498 goto done;
1499
1500 case 1: /* base */
1501 vals[1] = vals[0] + 0x206; /* default ctl */
1502 case 2: /* base,ctl */
1503 vals[2] = 0; /* default irq = probe for it */
1504 case 3: /* base,ctl,irq */
1505 hwif->hw.irq = vals[2];
1506 ide_init_hwif_ports(&hwif->hw, (unsigned long) vals[0], (unsigned long) vals[1], &hwif->irq);
1507 memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
1508 hwif->irq = vals[2];
1509 hwif->noprobe = 0;
1510 hwif->chipset = ide_forced;
1511 goto obsolete_option;
1512
1513 case 0: goto bad_option;
1514 default:
1515 printk(" -- SUPPORT NOT CONFIGURED IN THIS KERNEL\n");
1516 return 1;
1517 }
1518 }
1519bad_option:
1520 printk(" -- BAD OPTION\n");
1521 return 1;
1522obsolete_option:
1523 printk(" -- OBSOLETE OPTION, WILL BE REMOVED SOON!\n");
1524 return 1;
1525bad_hwif:
1526 printk("-- NOT SUPPORTED ON ide%d", hw);
1527done:
1528 printk("\n");
1529 return 1;
1530}
1531
Al Viroeb797222007-02-01 13:52:38 +00001532extern void __init pnpide_init(void);
1533extern void __exit pnpide_exit(void);
1534extern void __init h8300_ide_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536/*
1537 * probe_for_hwifs() finds/initializes "known" IDE interfaces
1538 */
1539static void __init probe_for_hwifs (void)
1540{
Bartlomiej Zolnierkiewicz6d208b32007-05-10 00:01:11 +02001541#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 ide_scan_pcibus(ide_scan_direction);
Bartlomiej Zolnierkiewicz6d208b32007-05-10 00:01:11 +02001543#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545#ifdef CONFIG_ETRAX_IDE
1546 {
1547 extern void init_e100_ide(void);
1548 init_e100_ide();
1549 }
1550#endif /* CONFIG_ETRAX_IDE */
1551#ifdef CONFIG_BLK_DEV_CMD640
1552 {
1553 extern void ide_probe_for_cmd640x(void);
1554 ide_probe_for_cmd640x();
1555 }
1556#endif /* CONFIG_BLK_DEV_CMD640 */
1557#ifdef CONFIG_BLK_DEV_IDE_PMAC
1558 {
Andrew Morton9e5755b2007-03-03 17:48:54 +01001559 extern int pmac_ide_probe(void);
1560 (void)pmac_ide_probe();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
1562#endif /* CONFIG_BLK_DEV_IDE_PMAC */
1563#ifdef CONFIG_BLK_DEV_GAYLE
1564 {
1565 extern void gayle_init(void);
1566 gayle_init();
1567 }
1568#endif /* CONFIG_BLK_DEV_GAYLE */
1569#ifdef CONFIG_BLK_DEV_FALCON_IDE
1570 {
1571 extern void falconide_init(void);
1572 falconide_init();
1573 }
1574#endif /* CONFIG_BLK_DEV_FALCON_IDE */
1575#ifdef CONFIG_BLK_DEV_MAC_IDE
1576 {
1577 extern void macide_init(void);
1578 macide_init();
1579 }
1580#endif /* CONFIG_BLK_DEV_MAC_IDE */
1581#ifdef CONFIG_BLK_DEV_Q40IDE
1582 {
1583 extern void q40ide_init(void);
1584 q40ide_init();
1585 }
1586#endif /* CONFIG_BLK_DEV_Q40IDE */
1587#ifdef CONFIG_BLK_DEV_BUDDHA
1588 {
1589 extern void buddha_init(void);
1590 buddha_init();
1591 }
1592#endif /* CONFIG_BLK_DEV_BUDDHA */
1593#ifdef CONFIG_BLK_DEV_IDEPNP
1594 pnpide_init();
1595#endif
1596#ifdef CONFIG_H8300
1597 h8300_ide_init();
1598#endif
1599}
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601/*
1602 * Probe module
1603 */
1604
1605EXPORT_SYMBOL(ide_lock);
1606
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001607static int ide_bus_match(struct device *dev, struct device_driver *drv)
1608{
1609 return 1;
1610}
1611
Kay Sievers263756e2005-12-12 18:03:44 +01001612static char *media_string(ide_drive_t *drive)
1613{
1614 switch (drive->media) {
1615 case ide_disk:
1616 return "disk";
1617 case ide_cdrom:
1618 return "cdrom";
1619 case ide_tape:
1620 return "tape";
1621 case ide_floppy:
1622 return "floppy";
Danny Kukawkaa7a832d2007-04-10 22:39:14 +02001623 case ide_optical:
1624 return "optical";
Kay Sievers263756e2005-12-12 18:03:44 +01001625 default:
1626 return "UNKNOWN";
1627 }
1628}
1629
1630static ssize_t media_show(struct device *dev, struct device_attribute *attr, char *buf)
1631{
1632 ide_drive_t *drive = to_ide_device(dev);
1633 return sprintf(buf, "%s\n", media_string(drive));
1634}
1635
1636static ssize_t drivename_show(struct device *dev, struct device_attribute *attr, char *buf)
1637{
1638 ide_drive_t *drive = to_ide_device(dev);
1639 return sprintf(buf, "%s\n", drive->name);
1640}
1641
1642static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
1643{
1644 ide_drive_t *drive = to_ide_device(dev);
1645 return sprintf(buf, "ide:m-%s\n", media_string(drive));
1646}
1647
1648static struct device_attribute ide_dev_attrs[] = {
1649 __ATTR_RO(media),
1650 __ATTR_RO(drivename),
1651 __ATTR_RO(modalias),
1652 __ATTR_NULL
1653};
1654
Kay Sievers7eff2e72007-08-14 15:15:12 +02001655static int ide_uevent(struct device *dev, struct kobj_uevent_env *env)
Kay Sievers263756e2005-12-12 18:03:44 +01001656{
1657 ide_drive_t *drive = to_ide_device(dev);
Kay Sievers263756e2005-12-12 18:03:44 +01001658
Kay Sievers7eff2e72007-08-14 15:15:12 +02001659 add_uevent_var(env, "MEDIA=%s", media_string(drive));
1660 add_uevent_var(env, "DRIVENAME=%s", drive->name);
1661 add_uevent_var(env, "MODALIAS=ide:m-%s", media_string(drive));
Kay Sievers263756e2005-12-12 18:03:44 +01001662 return 0;
1663}
1664
Russell King4031bbe2006-01-06 11:41:00 +00001665static int generic_ide_probe(struct device *dev)
1666{
1667 ide_drive_t *drive = to_ide_device(dev);
1668 ide_driver_t *drv = to_ide_driver(dev->driver);
1669
1670 return drv->probe ? drv->probe(drive) : -ENODEV;
1671}
1672
1673static int generic_ide_remove(struct device *dev)
1674{
1675 ide_drive_t *drive = to_ide_device(dev);
1676 ide_driver_t *drv = to_ide_driver(dev->driver);
1677
1678 if (drv->remove)
1679 drv->remove(drive);
1680
1681 return 0;
1682}
1683
1684static void generic_ide_shutdown(struct device *dev)
1685{
1686 ide_drive_t *drive = to_ide_device(dev);
1687 ide_driver_t *drv = to_ide_driver(dev->driver);
1688
1689 if (dev->driver && drv->shutdown)
1690 drv->shutdown(drive);
1691}
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693struct bus_type ide_bus_type = {
1694 .name = "ide",
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001695 .match = ide_bus_match,
Kay Sievers263756e2005-12-12 18:03:44 +01001696 .uevent = ide_uevent,
Russell King4031bbe2006-01-06 11:41:00 +00001697 .probe = generic_ide_probe,
1698 .remove = generic_ide_remove,
1699 .shutdown = generic_ide_shutdown,
Kay Sievers263756e2005-12-12 18:03:44 +01001700 .dev_attrs = ide_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 .suspend = generic_ide_suspend,
1702 .resume = generic_ide_resume,
1703};
1704
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001705EXPORT_SYMBOL_GPL(ide_bus_type);
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707/*
1708 * This is gets invoked once during initialization, to set *everything* up
1709 */
1710static int __init ide_init(void)
1711{
Randy Dunlap349ae232006-10-03 01:14:23 -07001712 int ret;
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 printk(KERN_INFO "Uniform Multi-Platform E-IDE driver " REVISION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 system_bus_speed = ide_system_bus_speed();
1716
Randy Dunlap349ae232006-10-03 01:14:23 -07001717 ret = bus_register(&ide_bus_type);
1718 if (ret < 0) {
1719 printk(KERN_WARNING "IDE: bus_register error: %d\n", ret);
1720 return ret;
1721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 init_ide_data();
1724
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +02001725 proc_ide_create();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727#ifdef CONFIG_BLK_DEV_ALI14XX
1728 if (probe_ali14xx)
1729 (void)ali14xx_init();
1730#endif
1731#ifdef CONFIG_BLK_DEV_UMC8672
1732 if (probe_umc8672)
1733 (void)umc8672_init();
1734#endif
1735#ifdef CONFIG_BLK_DEV_DTC2278
1736 if (probe_dtc2278)
1737 (void)dtc2278_init();
1738#endif
1739#ifdef CONFIG_BLK_DEV_HT6560B
1740 if (probe_ht6560b)
1741 (void)ht6560b_init();
1742#endif
1743#ifdef CONFIG_BLK_DEV_QD65XX
1744 if (probe_qd65xx)
1745 (void)qd65xx_init();
1746#endif
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 /* Probe for special PCI and other "known" interface chipsets. */
1749 probe_for_hwifs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 return 0;
1752}
1753
1754#ifdef MODULE
1755static char *options = NULL;
1756module_param(options, charp, 0);
1757MODULE_LICENSE("GPL");
1758
1759static void __init parse_options (char *line)
1760{
1761 char *next = line;
1762
1763 if (line == NULL || !*line)
1764 return;
1765 while ((line = next) != NULL) {
1766 if ((next = strchr(line,' ')) != NULL)
1767 *next++ = 0;
1768 if (!ide_setup(line))
1769 printk (KERN_INFO "Unknown option '%s'\n", line);
1770 }
1771}
1772
Sam Ravnborgfbd8ad32006-03-25 03:07:11 -08001773int __init init_module (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 parse_options(options);
1776 return ide_init();
1777}
1778
Al Viroeb797222007-02-01 13:52:38 +00001779void __exit cleanup_module (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 int index;
1782
1783 for (index = 0; index < MAX_HWIFS; ++index)
1784 ide_unregister(index);
1785
Tejun Heo68550362007-01-27 13:47:02 +01001786#ifdef CONFIG_BLK_DEV_IDEPNP
1787 pnpide_exit();
1788#endif
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 proc_ide_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 bus_unregister(&ide_bus_type);
1793}
1794
1795#else /* !MODULE */
1796
1797__setup("", ide_setup);
1798
1799module_init(ide_init);
1800
1801#endif /* MODULE */