ide.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:111k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/ide.c Version 6.31 June 9, 2000
  3.  *
  4.  *  Copyright (C) 1994-1998  Linus Torvalds & authors (see below)
  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 (usually 14 & 15).
  15.  * There can be up to two drives per interface, as per the ATA-2 spec.
  16.  *
  17.  * Primary:    ide0, port 0x1f0; major=3;  hda is minor=0; hdb is minor=64
  18.  * Secondary:  ide1, port 0x170; major=22; hdc is minor=0; hdd is minor=64
  19.  * Tertiary:   ide2, port 0x???; major=33; hde is minor=0; hdf is minor=64
  20.  * Quaternary: ide3, port 0x???; major=34; hdg is minor=0; hdh is minor=64
  21.  * ...
  22.  *
  23.  *  From hd.c:
  24.  *  |
  25.  *  | It traverses the request-list, using interrupts to jump between functions.
  26.  *  | As nearly all functions can be called within interrupts, we may not sleep.
  27.  *  | Special care is recommended.  Have Fun!
  28.  *  |
  29.  *  | modified by Drew Eckhardt to check nr of hd's from the CMOS.
  30.  *  |
  31.  *  | Thanks to Branko Lankester, lankeste@fwi.uva.nl, who found a bug
  32.  *  | in the early extended-partition checks and added DM partitions.
  33.  *  |
  34.  *  | Early work on error handling by Mika Liljeberg (liljeber@cs.Helsinki.FI).
  35.  *  |
  36.  *  | IRQ-unmask, drive-id, multiple-mode, support for ">16 heads",
  37.  *  | and general streamlining by Mark Lord (mlord@pobox.com).
  38.  *
  39.  *  October, 1994 -- Complete line-by-line overhaul for linux 1.1.x, by:
  40.  *
  41.  * Mark Lord (mlord@pobox.com) (IDE Perf.Pkg)
  42.  * Delman Lee (delman@ieee.org) ("Mr. atdisk2")
  43.  * Scott Snyder (snyder@fnald0.fnal.gov) (ATAPI IDE cd-rom)
  44.  *
  45.  *  This was a rewrite of just about everything from hd.c, though some original
  46.  *  code is still sprinkled about.  Think of it as a major evolution, with
  47.  *  inspiration from lots of linux users, esp.  hamish@zot.apana.org.au
  48.  *
  49.  *  Version 1.0 ALPHA initial code, primary i/f working okay
  50.  *  Version 1.3 BETA dual i/f on shared irq tested & working!
  51.  *  Version 1.4 BETA added auto probing for irq(s)
  52.  *  Version 1.5 BETA added ALPHA (untested) support for IDE cd-roms,
  53.  *  ...
  54.  * Version 5.50 allow values as small as 20 for idebus=
  55.  * Version 5.51 force non io_32bit in drive_cmd_intr()
  56.  * change delay_10ms() to delay_50ms() to fix problems
  57.  * Version 5.52 fix incorrect invalidation of removable devices
  58.  * add "hdx=slow" command line option
  59.  * Version 5.60 start to modularize the driver; the disk and ATAPI
  60.  *  drivers can be compiled as loadable modules.
  61.  * move IDE probe code to ide-probe.c
  62.  * move IDE disk code to ide-disk.c
  63.  * add support for generic IDE device subdrivers
  64.  * add m68k code from Geert Uytterhoeven
  65.  * probe all interfaces by default
  66.  * add ioctl to (re)probe an interface
  67.  * Version 6.00 use per device request queues
  68.  * attempt to optimize shared hwgroup performance
  69.  * add ioctl to manually adjust bandwidth algorithms
  70.  * add kerneld support for the probe module
  71.  * fix bug in ide_error()
  72.  * fix bug in the first ide_get_lock() call for Atari
  73.  * don't flush leftover data for ATAPI devices
  74.  * Version 6.01 clear hwgroup->active while the hwgroup sleeps
  75.  * support HDIO_GETGEO for floppies
  76.  * Version 6.02 fix ide_ack_intr() call
  77.  * check partition table on floppies
  78.  * Version 6.03 handle bad status bit sequencing in ide_wait_stat()
  79.  * Version 6.10 deleted old entries from this list of updates
  80.  * replaced triton.c with ide-dma.c generic PCI DMA
  81.  * added support for BIOS-enabled UltraDMA
  82.  * rename all "promise" things to "pdc4030"
  83.  * fix EZ-DRIVE handling on small disks
  84.  * Version 6.11 fix probe error in ide_scan_devices()
  85.  * fix ancient "jiffies" polling bugs
  86.  * mask all hwgroup interrupts on each irq entry
  87.  * Version 6.12 integrate ioctl and proc interfaces
  88.  * fix parsing of "idex=" command line parameter
  89.  * Version 6.13 add support for ide4/ide5 courtesy rjones@orchestream.com
  90.  * Version 6.14 fixed IRQ sharing among PCI devices
  91.  * Version 6.15 added SMP awareness to IDE drivers
  92.  * Version 6.16 fixed various bugs; even more SMP friendly
  93.  * Version 6.17 fix for newest EZ-Drive problem
  94.  * Version 6.18 default unpartitioned-disk translation now "BIOS LBA"
  95.  * Version 6.19 Re-design for a UNIFORM driver for all platforms,
  96.  *   model based on suggestions from Russell King and
  97.  *   Geert Uytterhoeven
  98.  * Promise DC4030VL now supported.
  99.  * add support for ide6/ide7
  100.  * delay_50ms() changed to ide_delay_50ms() and exported.
  101.  * Version 6.20 Added/Fixed Generic ATA-66 support and hwif detection.
  102.  * Added hdx=flash to allow for second flash disk
  103.  *   detection w/o the hang loop.
  104.  * Added support for ide8/ide9
  105.  * Added idex=ata66 for the quirky chipsets that are
  106.  *   ATA-66 compliant, but have yet to determine a method
  107.  *   of verification of the 80c cable presence.
  108.  *   Specifically Promise's PDC20262 chipset.
  109.  * Version 6.21 Fixing/Fixed SMP spinlock issue with insight from an old
  110.  *   hat that clarified original low level driver design.
  111.  * Version 6.30 Added SMP support; fixed multmode issues.  -ml
  112.  * Version 6.31 Debug Share INTR's and request queue streaming
  113.  * Native ATA-100 support
  114.  * Prep for Cascades Project
  115.  *
  116.  *  Some additional driver compile-time options are in ./include/linux/ide.h
  117.  *
  118.  *  To do, in likely order of completion:
  119.  * - modify kernel to obtain BIOS geometry for drives on 2nd/3rd/4th i/f
  120.  *
  121.  */
  122. #define REVISION "Revision: 6.31"
  123. #define VERSION "Id: ide.c 6.31 2000/06/09"
  124. #undef REALLY_SLOW_IO /* most systems can safely undef this */
  125. #define _IDE_C /* Tell ide.h it's really us */
  126. #include <linux/config.h>
  127. #include <linux/module.h>
  128. #include <linux/types.h>
  129. #include <linux/string.h>
  130. #include <linux/kernel.h>
  131. #include <linux/timer.h>
  132. #include <linux/mm.h>
  133. #include <linux/interrupt.h>
  134. #include <linux/major.h>
  135. #include <linux/errno.h>
  136. #include <linux/genhd.h>
  137. #include <linux/blkpg.h>
  138. #include <linux/slab.h>
  139. #ifndef MODULE
  140. #include <linux/init.h>
  141. #endif /* MODULE */
  142. #include <linux/pci.h>
  143. #include <linux/delay.h>
  144. #include <linux/ide.h>
  145. #include <linux/devfs_fs_kernel.h>
  146. #include <linux/completion.h>
  147. #include <asm/byteorder.h>
  148. #include <asm/irq.h>
  149. #include <asm/uaccess.h>
  150. #include <asm/io.h>
  151. #include <asm/bitops.h>
  152. #include "ide_modes.h"
  153. #ifdef CONFIG_KMOD
  154. #include <linux/kmod.h>
  155. #endif /* CONFIG_KMOD */
  156. /* default maximum number of failures */
  157. #define IDE_DEFAULT_MAX_FAILURES  1
  158. static const byte ide_hwif_to_major[] = { IDE0_MAJOR, IDE1_MAJOR, IDE2_MAJOR, IDE3_MAJOR, IDE4_MAJOR, IDE5_MAJOR, IDE6_MAJOR, IDE7_MAJOR, IDE8_MAJOR, IDE9_MAJOR };
  159. static int idebus_parameter; /* holds the "idebus=" parameter */
  160. static int system_bus_speed; /* holds what we think is VESA/PCI bus speed */
  161. static int initializing;     /* set while initializing built-in drivers */
  162. #ifdef CONFIG_BLK_DEV_IDEPCI
  163. static int ide_scan_direction; /* THIS was formerly 2.2.x pci=reverse */
  164. #endif /* CONFIG_BLK_DEV_IDEPCI */
  165. #if defined(__mc68000__) || defined(CONFIG_APUS)
  166. /*
  167.  * ide_lock is used by the Atari code to obtain access to the IDE interrupt,
  168.  * which is shared between several drivers.
  169.  */
  170. static int ide_lock;
  171. #endif /* __mc68000__ || CONFIG_APUS */
  172. int noautodma = 0;
  173. /*
  174.  * ide_modules keeps track of the available IDE chipset/probe/driver modules.
  175.  */
  176. ide_module_t *ide_modules;
  177. ide_module_t *ide_probe;
  178. /*
  179.  * This is declared extern in ide.h, for access by other IDE modules:
  180.  */
  181. ide_hwif_t ide_hwifs[MAX_HWIFS]; /* master data repository */
  182. #if (DISK_RECOVERY_TIME > 0)
  183. /*
  184.  * For really screwy hardware (hey, at least it *can* be used with Linux)
  185.  * we can enforce a minimum delay time between successive operations.
  186.  */
  187. static unsigned long read_timer (void)
  188. {
  189. unsigned long t, flags;
  190. int i;
  191. __save_flags(flags); /* local CPU only */
  192. __cli(); /* local CPU only */
  193. t = jiffies * 11932;
  194.      outb_p(0, 0x43);
  195. i = inb_p(0x40);
  196. i |= inb(0x40) << 8;
  197. __restore_flags(flags); /* local CPU only */
  198. return (t - i);
  199. }
  200. #endif /* DISK_RECOVERY_TIME */
  201. static inline void set_recovery_timer (ide_hwif_t *hwif)
  202. {
  203. #if (DISK_RECOVERY_TIME > 0)
  204. hwif->last_time = read_timer();
  205. #endif /* DISK_RECOVERY_TIME */
  206. }
  207. /*
  208.  * Do not even *think* about calling this!
  209.  */
  210. static void init_hwif_data (unsigned int index)
  211. {
  212. unsigned int unit;
  213. ide_hwif_t *hwif = &ide_hwifs[index];
  214. /* bulk initialize hwif & drive info with zeros */
  215. memset(hwif, 0, sizeof(ide_hwif_t));
  216. /* fill in any non-zero initial values */
  217. hwif->index     = index;
  218. hwif->noprobe = 1;
  219. hwif->major = ide_hwif_to_major[index];
  220. hwif->name[0] = 'i';
  221. hwif->name[1] = 'd';
  222. hwif->name[2] = 'e';
  223. hwif->name[3] = '0' + index;
  224. hwif->bus_state = BUSSTATE_ON;
  225. for (unit = 0; unit < MAX_DRIVES; ++unit) {
  226. ide_drive_t *drive = &hwif->drives[unit];
  227. drive->media = ide_disk;
  228. drive->select.all = (unit<<4)|0xa0;
  229. drive->hwif = hwif;
  230. drive->ctl = 0x08;
  231. drive->ready_stat = READY_STAT;
  232. drive->bad_wstat = BAD_W_STAT;
  233. drive->special.b.recalibrate = 1;
  234. drive->special.b.set_geometry = 1;
  235. drive->name[0] = 'h';
  236. drive->name[1] = 'd';
  237. drive->name[2] = 'a' + (index * MAX_DRIVES) + unit;
  238. drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
  239. init_waitqueue_head(&drive->wqueue);
  240. }
  241. }
  242. /*
  243.  * Old compatability function - initialise ports using ide_default_io_base
  244.  */
  245. static void ide_old_init_default_hwifs(void)
  246. {
  247. unsigned int index;
  248. ide_ioreg_t base;
  249. ide_hwif_t *hwif;
  250. for (index = 0; index < MAX_HWIFS; index++) {
  251. hwif = &ide_hwifs[index];
  252. base = ide_default_io_base(index);
  253. if (base) {
  254. ide_init_hwif_ports(&hwif->hw, base, 0, &hwif->hw.irq);
  255. memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->hw.io_ports));
  256. hwif->noprobe = 0;
  257. }
  258. }
  259. }
  260. /*
  261.  * init_ide_data() sets reasonable default values into all fields
  262.  * of all instances of the hwifs and drives, but only on the first call.
  263.  * Subsequent calls have no effect (they don't wipe out anything).
  264.  *
  265.  * This routine is normally called at driver initialization time,
  266.  * but may also be called MUCH earlier during kernel "command-line"
  267.  * parameter processing.  As such, we cannot depend on any other parts
  268.  * of the kernel (such as memory allocation) to be functioning yet.
  269.  *
  270.  * This is too bad, as otherwise we could dynamically allocate the
  271.  * ide_drive_t structs as needed, rather than always consuming memory
  272.  * for the max possible number (MAX_HWIFS * MAX_DRIVES) of them.
  273.  */
  274. #define MAGIC_COOKIE 0x12345678
  275. static void __init init_ide_data (void)
  276. {
  277. unsigned int index;
  278. static unsigned long magic_cookie = MAGIC_COOKIE;
  279. if (magic_cookie != MAGIC_COOKIE)
  280. return; /* already initialized */
  281. magic_cookie = 0;
  282. /* Initialise all interface structures */
  283. for (index = 0; index < MAX_HWIFS; ++index)
  284. init_hwif_data(index);
  285. /* Add default hw interfaces */
  286. ide_old_init_default_hwifs();
  287. ide_init_default_hwifs();
  288. #ifdef CONFIG_BLK_DEV_HD
  289. /* Check for any clashes with hd.c driver */
  290. for (index = 0; index < MAX_HWIFS; ++index)
  291. if (ide_hwifs[index].hw.io_ports[IDE_DATA_OFFSET] == HD_DATA)
  292. hwif->noprobe = 1; /* may be overridden by ide_setup() */
  293. #endif /* CONFIG_BLK_DEV_HD */
  294. idebus_parameter = 0;
  295. system_bus_speed = 0;
  296. }
  297. /*
  298.  * CompactFlash cards and their brethern pretend to be removable hard disks, except:
  299.  * (1) they never have a slave unit, and
  300.  * (2) they don't have doorlock mechanisms.
  301.  * This test catches them, and is invoked elsewhere when setting appropriate config bits.
  302.  *
  303.  * FIXME: This treatment is probably applicable for *all* PCMCIA (PC CARD) devices,
  304.  * so in linux 2.3.x we should change this to just treat all PCMCIA drives this way,
  305.  * and get rid of the model-name tests below (too big of an interface change for 2.2.x).
  306.  * At that time, we might also consider parameterizing the timeouts and retries,
  307.  * since these are MUCH faster than mechanical drives. -M.Lord
  308.  */
  309. int drive_is_flashcard (ide_drive_t *drive)
  310. {
  311. struct hd_driveid *id = drive->id;
  312. if (drive->removable && id != NULL) {
  313. if (id->config == 0x848a) return 1; /* CompactFlash */
  314. if (!strncmp(id->model, "KODAK ATA_FLASH", 15) /* Kodak */
  315.  || !strncmp(id->model, "Hitachi CV", 10) /* Hitachi */
  316.  || !strncmp(id->model, "SunDisk SDCFB", 13) /* SunDisk */
  317.  || !strncmp(id->model, "HAGIWARA HPC", 12) /* Hagiwara */
  318.  || !strncmp(id->model, "LEXAR ATA_FLASH", 15) /* Lexar */
  319.  || !strncmp(id->model, "ATA_FLASH", 9)) /* Simple Tech */
  320. {
  321. return 1; /* yes, it is a flash memory card */
  322. }
  323. }
  324. return 0; /* no, it is not a flash memory card */
  325. }
  326. /*
  327.  * ide_system_bus_speed() returns what we think is the system VESA/PCI
  328.  * bus speed (in MHz).  This is used for calculating interface PIO timings.
  329.  * The default is 40 for known PCI systems, 50 otherwise.
  330.  * The "idebus=xx" parameter can be used to override this value.
  331.  * The actual value to be used is computed/displayed the first time through.
  332.  */
  333. int ide_system_bus_speed (void)
  334. {
  335. if (!system_bus_speed) {
  336. if (idebus_parameter)
  337. system_bus_speed = idebus_parameter; /* user supplied value */
  338. #ifdef CONFIG_PCI
  339. else if (pci_present())
  340. system_bus_speed = 33; /* safe default value for PCI */
  341. #endif /* CONFIG_PCI */
  342. else
  343. system_bus_speed = 50; /* safe default value for VESA and PCI */
  344. printk("ide: Assuming %dMHz system bus speed for PIO modes%sn", system_bus_speed,
  345. idebus_parameter ? "" : "; override with idebus=xx");
  346. }
  347. return system_bus_speed;
  348. }
  349. #if SUPPORT_VLB_SYNC
  350. /*
  351.  * Some localbus EIDE interfaces require a special access sequence
  352.  * when using 32-bit I/O instructions to transfer data.  We call this
  353.  * the "vlb_sync" sequence, which consists of three successive reads
  354.  * of the sector count register location, with interrupts disabled
  355.  * to ensure that the reads all happen together.
  356.  */
  357. static inline void do_vlb_sync (ide_ioreg_t port) {
  358. (void) inb (port);
  359. (void) inb (port);
  360. (void) inb (port);
  361. }
  362. #endif /* SUPPORT_VLB_SYNC */
  363. /*
  364.  * This is used for most PIO data transfers *from* the IDE interface
  365.  */
  366. void ide_input_data (ide_drive_t *drive, void *buffer, unsigned int wcount)
  367. {
  368. byte io_32bit;
  369. /* first check if this controller has defined a special function
  370.  * for handling polled ide transfers
  371.  */
  372. if(HWIF(drive)->ideproc) {
  373. HWIF(drive)->ideproc(ideproc_ide_input_data,
  374.      drive, buffer, wcount);
  375. return;
  376. }
  377. io_32bit = drive->io_32bit;
  378. if (io_32bit) {
  379. #if SUPPORT_VLB_SYNC
  380. if (io_32bit & 2) {
  381. unsigned long flags;
  382. __save_flags(flags); /* local CPU only */
  383. __cli(); /* local CPU only */
  384. do_vlb_sync(IDE_NSECTOR_REG);
  385. insl(IDE_DATA_REG, buffer, wcount);
  386. __restore_flags(flags); /* local CPU only */
  387. } else
  388. #endif /* SUPPORT_VLB_SYNC */
  389. insl(IDE_DATA_REG, buffer, wcount);
  390. } else {
  391. #if SUPPORT_SLOW_DATA_PORTS
  392. if (drive->slow) {
  393. unsigned short *ptr = (unsigned short *) buffer;
  394. while (wcount--) {
  395. *ptr++ = inw_p(IDE_DATA_REG);
  396. *ptr++ = inw_p(IDE_DATA_REG);
  397. }
  398. } else
  399. #endif /* SUPPORT_SLOW_DATA_PORTS */
  400. insw(IDE_DATA_REG, buffer, wcount<<1);
  401. }
  402. }
  403. /*
  404.  * This is used for most PIO data transfers *to* the IDE interface
  405.  */
  406. void ide_output_data (ide_drive_t *drive, void *buffer, unsigned int wcount)
  407. {
  408. byte io_32bit;
  409. if(HWIF(drive)->ideproc) {
  410. HWIF(drive)->ideproc(ideproc_ide_output_data,
  411.      drive, buffer, wcount);
  412. return;
  413. }
  414. io_32bit = drive->io_32bit;
  415. if (io_32bit) {
  416. #if SUPPORT_VLB_SYNC
  417. if (io_32bit & 2) {
  418. unsigned long flags;
  419. __save_flags(flags); /* local CPU only */
  420. __cli(); /* local CPU only */
  421. do_vlb_sync(IDE_NSECTOR_REG);
  422. outsl(IDE_DATA_REG, buffer, wcount);
  423. __restore_flags(flags); /* local CPU only */
  424. } else
  425. #endif /* SUPPORT_VLB_SYNC */
  426. outsl(IDE_DATA_REG, buffer, wcount);
  427. } else {
  428. #if SUPPORT_SLOW_DATA_PORTS
  429. if (drive->slow) {
  430. unsigned short *ptr = (unsigned short *) buffer;
  431. while (wcount--) {
  432. outw_p(*ptr++, IDE_DATA_REG);
  433. outw_p(*ptr++, IDE_DATA_REG);
  434. }
  435. } else
  436. #endif /* SUPPORT_SLOW_DATA_PORTS */
  437. outsw(IDE_DATA_REG, buffer, wcount<<1);
  438. }
  439. }
  440. /*
  441.  * The following routines are mainly used by the ATAPI drivers.
  442.  *
  443.  * These routines will round up any request for an odd number of bytes,
  444.  * so if an odd bytecount is specified, be sure that there's at least one
  445.  * extra byte allocated for the buffer.
  446.  */
  447. void atapi_input_bytes (ide_drive_t *drive, void *buffer, unsigned int bytecount)
  448. {
  449. if(HWIF(drive)->ideproc) {
  450. HWIF(drive)->ideproc(ideproc_atapi_input_bytes,
  451.      drive, buffer, bytecount);
  452. return;
  453. }
  454. ++bytecount;
  455. #if defined(CONFIG_ATARI) || defined(CONFIG_Q40)
  456. if (MACH_IS_ATARI || MACH_IS_Q40) {
  457. /* Atari has a byte-swapped IDE interface */
  458. insw_swapw(IDE_DATA_REG, buffer, bytecount / 2);
  459. return;
  460. }
  461. #endif /* CONFIG_ATARI */
  462. ide_input_data (drive, buffer, bytecount / 4);
  463. if ((bytecount & 0x03) >= 2)
  464. insw (IDE_DATA_REG, ((byte *)buffer) + (bytecount & ~0x03), 1);
  465. }
  466. void atapi_output_bytes (ide_drive_t *drive, void *buffer, unsigned int bytecount)
  467. {
  468. if(HWIF(drive)->ideproc) {
  469. HWIF(drive)->ideproc(ideproc_atapi_output_bytes,
  470.      drive, buffer, bytecount);
  471. return;
  472. }
  473. ++bytecount;
  474. #if defined(CONFIG_ATARI) || defined(CONFIG_Q40)
  475. if (MACH_IS_ATARI || MACH_IS_Q40) {
  476. /* Atari has a byte-swapped IDE interface */
  477. outsw_swapw(IDE_DATA_REG, buffer, bytecount / 2);
  478. return;
  479. }
  480. #endif /* CONFIG_ATARI */
  481. ide_output_data (drive, buffer, bytecount / 4);
  482. if ((bytecount & 0x03) >= 2)
  483. outsw (IDE_DATA_REG, ((byte *)buffer) + (bytecount & ~0x03), 1);
  484. }
  485. /*
  486.  * Needed for PCI irq sharing
  487.  */
  488. static inline int drive_is_ready (ide_drive_t *drive)
  489. {
  490. byte stat = 0;
  491. if (drive->waiting_for_dma)
  492. return HWIF(drive)->dmaproc(ide_dma_test_irq, drive);
  493. #if 0
  494. udelay(1); /* need to guarantee 400ns since last command was issued */
  495. #endif
  496. #ifdef CONFIG_IDEPCI_SHARE_IRQ
  497. /*
  498.  * We do a passive status test under shared PCI interrupts on
  499.  * cards that truly share the ATA side interrupt, but may also share
  500.  * an interrupt with another pci card/device.  We make no assumptions
  501.  * about possible isa-pnp and pci-pnp issues yet.
  502.  */
  503. if (IDE_CONTROL_REG)
  504. stat = GET_ALTSTAT();
  505. else
  506. #endif /* CONFIG_IDEPCI_SHARE_IRQ */
  507. stat = GET_STAT(); /* Note: this may clear a pending IRQ!! */
  508. if (stat & BUSY_STAT)
  509. return 0; /* drive busy:  definitely not interrupting */
  510. return 1; /* drive ready: *might* be interrupting */
  511. }
  512. /*
  513.  * This is our end_request replacement function.
  514.  */
  515. void ide_end_request (byte uptodate, ide_hwgroup_t *hwgroup)
  516. {
  517. struct request *rq;
  518. unsigned long flags;
  519. ide_drive_t *drive = hwgroup->drive;
  520. spin_lock_irqsave(&io_request_lock, flags);
  521. rq = hwgroup->rq;
  522. /*
  523.  * decide whether to reenable DMA -- 3 is a random magic for now,
  524.  * if we DMA timeout more than 3 times, just stay in PIO
  525.  */
  526. if (drive->state == DMA_PIO_RETRY && drive->retry_pio <= 3) {
  527. drive->state = 0;
  528. hwgroup->hwif->dmaproc(ide_dma_on, drive);
  529. }
  530. if (!end_that_request_first(rq, uptodate, hwgroup->drive->name)) {
  531. add_blkdev_randomness(MAJOR(rq->rq_dev));
  532. blkdev_dequeue_request(rq);
  533.          hwgroup->rq = NULL;
  534. end_that_request_last(rq);
  535. }
  536. spin_unlock_irqrestore(&io_request_lock, flags);
  537. }
  538. /*
  539.  * This should get invoked any time we exit the driver to
  540.  * wait for an interrupt response from a drive.  handler() points
  541.  * at the appropriate code to handle the next interrupt, and a
  542.  * timer is started to prevent us from waiting forever in case
  543.  * something goes wrong (see the ide_timer_expiry() handler later on).
  544.  */
  545. void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler,
  546.       unsigned int timeout, ide_expiry_t *expiry)
  547. {
  548. unsigned long flags;
  549. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  550. spin_lock_irqsave(&io_request_lock, flags);
  551. if (hwgroup->handler != NULL) {
  552. printk("%s: ide_set_handler: handler not null; old=%p, new=%pn",
  553. drive->name, hwgroup->handler, handler);
  554. }
  555. hwgroup->handler = handler;
  556. hwgroup->expiry = expiry;
  557. hwgroup->timer.expires = jiffies + timeout;
  558. add_timer(&hwgroup->timer);
  559. spin_unlock_irqrestore(&io_request_lock, flags);
  560. }
  561. /*
  562.  * current_capacity() returns the capacity (in sectors) of a drive
  563.  * according to its current geometry/LBA settings.
  564.  */
  565. unsigned long current_capacity (ide_drive_t *drive)
  566. {
  567. if (!drive->present)
  568. return 0;
  569. if (drive->driver != NULL)
  570. return DRIVER(drive)->capacity(drive);
  571. return 0;
  572. }
  573. extern struct block_device_operations ide_fops[];
  574. /*
  575.  * ide_geninit() is called exactly *once* for each interface.
  576.  */
  577. void ide_geninit (ide_hwif_t *hwif)
  578. {
  579. unsigned int unit;
  580. struct gendisk *gd = hwif->gd;
  581. for (unit = 0; unit < MAX_DRIVES; ++unit) {
  582. ide_drive_t *drive = &hwif->drives[unit];
  583. if (!drive->present)
  584. continue;
  585. if (drive->media!=ide_disk && drive->media!=ide_floppy)
  586. continue;
  587. register_disk(gd,MKDEV(hwif->major,unit<<PARTN_BITS),
  588. #ifdef CONFIG_BLK_DEV_ISAPNP
  589. (drive->forced_geom && drive->noprobe) ? 1 :
  590. #endif /* CONFIG_BLK_DEV_ISAPNP */
  591. 1<<PARTN_BITS, ide_fops,
  592. current_capacity(drive));
  593. }
  594. }
  595. static ide_startstop_t do_reset1 (ide_drive_t *, int); /* needed below */
  596. /*
  597.  * atapi_reset_pollfunc() gets invoked to poll the interface for completion every 50ms
  598.  * during an atapi drive reset operation. If the drive has not yet responded,
  599.  * and we have not yet hit our maximum waiting time, then the timer is restarted
  600.  * for another 50ms.
  601.  */
  602. static ide_startstop_t atapi_reset_pollfunc (ide_drive_t *drive)
  603. {
  604. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  605. byte stat;
  606. SELECT_DRIVE(HWIF(drive),drive);
  607. udelay (10);
  608. if (OK_STAT(stat=GET_STAT(), 0, BUSY_STAT)) {
  609. printk("%s: ATAPI reset completen", drive->name);
  610. } else {
  611. if (0 < (signed long)(hwgroup->poll_timeout - jiffies)) {
  612. ide_set_handler (drive, &atapi_reset_pollfunc, HZ/20, NULL);
  613. return ide_started; /* continue polling */
  614. }
  615. hwgroup->poll_timeout = 0; /* end of polling */
  616. printk("%s: ATAPI reset timed-out, status=0x%02xn", drive->name, stat);
  617. return do_reset1 (drive, 1); /* do it the old fashioned way */
  618. }
  619. hwgroup->poll_timeout = 0; /* done polling */
  620. return ide_stopped;
  621. }
  622. /*
  623.  * reset_pollfunc() gets invoked to poll the interface for completion every 50ms
  624.  * during an ide reset operation. If the drives have not yet responded,
  625.  * and we have not yet hit our maximum waiting time, then the timer is restarted
  626.  * for another 50ms.
  627.  */
  628. static ide_startstop_t reset_pollfunc (ide_drive_t *drive)
  629. {
  630. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  631. ide_hwif_t *hwif = HWIF(drive);
  632. byte tmp;
  633. if (!OK_STAT(tmp=GET_STAT(), 0, BUSY_STAT)) {
  634. if (0 < (signed long)(hwgroup->poll_timeout - jiffies)) {
  635. ide_set_handler (drive, &reset_pollfunc, HZ/20, NULL);
  636. return ide_started; /* continue polling */
  637. }
  638. printk("%s: reset timed-out, status=0x%02xn", hwif->name, tmp);
  639. drive->failures++;
  640. } else  {
  641. printk("%s: reset: ", hwif->name);
  642. if ((tmp = GET_ERR()) == 1) {
  643. printk("successn");
  644. drive->failures = 0;
  645. } else {
  646. drive->failures++;
  647. #if FANCY_STATUS_DUMPS
  648. printk("master: ");
  649. switch (tmp & 0x7f) {
  650. case 1: printk("passed");
  651. break;
  652. case 2: printk("formatter device error");
  653. break;
  654. case 3: printk("sector buffer error");
  655. break;
  656. case 4: printk("ECC circuitry error");
  657. break;
  658. case 5: printk("controlling MPU error");
  659. break;
  660. default:printk("error (0x%02x?)", tmp);
  661. }
  662. if (tmp & 0x80)
  663. printk("; slave: failed");
  664. printk("n");
  665. #else
  666. printk("failedn");
  667. #endif /* FANCY_STATUS_DUMPS */
  668. }
  669. }
  670. hwgroup->poll_timeout = 0; /* done polling */
  671. return ide_stopped;
  672. }
  673. static void check_dma_crc (ide_drive_t *drive)
  674. {
  675. if (drive->crc_count) {
  676. (void) HWIF(drive)->dmaproc(ide_dma_off_quietly, drive);
  677. if ((HWIF(drive)->speedproc) != NULL)
  678. HWIF(drive)->speedproc(drive, ide_auto_reduce_xfer(drive));
  679. if (drive->current_speed >= XFER_SW_DMA_0)
  680. (void) HWIF(drive)->dmaproc(ide_dma_on, drive);
  681. } else {
  682. (void) HWIF(drive)->dmaproc(ide_dma_off, drive);
  683. }
  684. }
  685. static void pre_reset (ide_drive_t *drive)
  686. {
  687. if (drive->driver != NULL)
  688. DRIVER(drive)->pre_reset(drive);
  689. if (!drive->keep_settings) {
  690. if (drive->using_dma) {
  691. check_dma_crc(drive);
  692. } else {
  693. drive->unmask = 0;
  694. drive->io_32bit = 0;
  695. }
  696. return;
  697. }
  698. if (drive->using_dma)
  699. check_dma_crc(drive);
  700. }
  701. /*
  702.  * do_reset1() attempts to recover a confused drive by resetting it.
  703.  * Unfortunately, resetting a disk drive actually resets all devices on
  704.  * the same interface, so it can really be thought of as resetting the
  705.  * interface rather than resetting the drive.
  706.  *
  707.  * ATAPI devices have their own reset mechanism which allows them to be
  708.  * individually reset without clobbering other devices on the same interface.
  709.  *
  710.  * Unfortunately, the IDE interface does not generate an interrupt to let
  711.  * us know when the reset operation has finished, so we must poll for this.
  712.  * Equally poor, though, is the fact that this may a very long time to complete,
  713.  * (up to 30 seconds worstcase).  So, instead of busy-waiting here for it,
  714.  * we set a timer to poll at 50ms intervals.
  715.  */
  716. static ide_startstop_t do_reset1 (ide_drive_t *drive, int do_not_try_atapi)
  717. {
  718. unsigned int unit;
  719. unsigned long flags;
  720. ide_hwif_t *hwif = HWIF(drive);
  721. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  722. __save_flags(flags); /* local CPU only */
  723. __cli(); /* local CPU only */
  724. /* For an ATAPI device, first try an ATAPI SRST. */
  725. if (drive->media != ide_disk && !do_not_try_atapi) {
  726. pre_reset(drive);
  727. SELECT_DRIVE(hwif,drive);
  728. udelay (20);
  729. OUT_BYTE (WIN_SRST, IDE_COMMAND_REG);
  730. hwgroup->poll_timeout = jiffies + WAIT_WORSTCASE;
  731. ide_set_handler (drive, &atapi_reset_pollfunc, HZ/20, NULL);
  732. __restore_flags (flags); /* local CPU only */
  733. return ide_started;
  734. }
  735. /*
  736.  * First, reset any device state data we were maintaining
  737.  * for any of the drives on this interface.
  738.  */
  739. for (unit = 0; unit < MAX_DRIVES; ++unit)
  740. pre_reset(&hwif->drives[unit]);
  741. #if OK_TO_RESET_CONTROLLER
  742. if (!IDE_CONTROL_REG) {
  743. __restore_flags(flags);
  744. return ide_stopped;
  745. }
  746. /*
  747.  * Note that we also set nIEN while resetting the device,
  748.  * to mask unwanted interrupts from the interface during the reset.
  749.  * However, due to the design of PC hardware, this will cause an
  750.  * immediate interrupt due to the edge transition it produces.
  751.  * This single interrupt gives us a "fast poll" for drives that
  752.  * recover from reset very quickly, saving us the first 50ms wait time.
  753.  */
  754. OUT_BYTE(drive->ctl|6,IDE_CONTROL_REG); /* set SRST and nIEN */
  755. udelay(10); /* more than enough time */
  756. OUT_BYTE(drive->ctl|2,IDE_CONTROL_REG); /* clear SRST, leave nIEN */
  757. udelay(10); /* more than enough time */
  758. hwgroup->poll_timeout = jiffies + WAIT_WORSTCASE;
  759. ide_set_handler (drive, &reset_pollfunc, HZ/20, NULL);
  760. /*
  761.  * Some weird controller like resetting themselves to a strange
  762.  * state when the disks are reset this way. At least, the Winbond
  763.  * 553 documentation says that
  764.  */
  765. if (hwif->resetproc != NULL)
  766. hwif->resetproc(drive);
  767. #endif /* OK_TO_RESET_CONTROLLER */
  768. __restore_flags (flags); /* local CPU only */
  769. return ide_started;
  770. }
  771. /*
  772.  * ide_do_reset() is the entry point to the drive/interface reset code.
  773.  */
  774. ide_startstop_t ide_do_reset (ide_drive_t *drive)
  775. {
  776. return do_reset1 (drive, 0);
  777. }
  778. /*
  779.  * Clean up after success/failure of an explicit drive cmd
  780.  */
  781. void ide_end_drive_cmd (ide_drive_t *drive, byte stat, byte err)
  782. {
  783. unsigned long flags;
  784. struct request *rq;
  785. spin_lock_irqsave(&io_request_lock, flags);
  786. rq = HWGROUP(drive)->rq;
  787. spin_unlock_irqrestore(&io_request_lock, flags);
  788. if (rq->cmd == IDE_DRIVE_CMD) {
  789. byte *args = (byte *) rq->buffer;
  790. rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
  791. if (args) {
  792. args[0] = stat;
  793. args[1] = err;
  794. args[2] = IN_BYTE(IDE_NSECTOR_REG);
  795. }
  796. } else if (rq->cmd == IDE_DRIVE_TASK) {
  797. byte *args = (byte *) rq->buffer;
  798. rq->errors = !OK_STAT(stat,READY_STAT,BAD_STAT);
  799. if (args) {
  800. args[0] = stat;
  801. args[1] = err;
  802. args[2] = IN_BYTE(IDE_NSECTOR_REG);
  803. args[3] = IN_BYTE(IDE_SECTOR_REG);
  804. args[4] = IN_BYTE(IDE_LCYL_REG);
  805. args[5] = IN_BYTE(IDE_HCYL_REG);
  806. args[6] = IN_BYTE(IDE_SELECT_REG);
  807. }
  808. }
  809. spin_lock_irqsave(&io_request_lock, flags);
  810. blkdev_dequeue_request(rq);
  811. HWGROUP(drive)->rq = NULL;
  812. end_that_request_last(rq);
  813. spin_unlock_irqrestore(&io_request_lock, flags);
  814. }
  815. /*
  816.  * Error reporting, in human readable form (luxurious, but a memory hog).
  817.  */
  818. byte ide_dump_status (ide_drive_t *drive, const char *msg, byte stat)
  819. {
  820. unsigned long flags;
  821. byte err = 0;
  822. __save_flags (flags); /* local CPU only */
  823. ide__sti(); /* local CPU only */
  824. printk("%s: %s: status=0x%02x", drive->name, msg, stat);
  825. #if FANCY_STATUS_DUMPS
  826. printk(" { ");
  827. if (stat & BUSY_STAT)
  828. printk("Busy ");
  829. else {
  830. if (stat & READY_STAT) printk("DriveReady ");
  831. if (stat & WRERR_STAT) printk("DeviceFault ");
  832. if (stat & SEEK_STAT) printk("SeekComplete ");
  833. if (stat & DRQ_STAT) printk("DataRequest ");
  834. if (stat & ECC_STAT) printk("CorrectedError ");
  835. if (stat & INDEX_STAT) printk("Index ");
  836. if (stat & ERR_STAT) printk("Error ");
  837. }
  838. printk("}");
  839. #endif /* FANCY_STATUS_DUMPS */
  840. printk("n");
  841. if ((stat & (BUSY_STAT|ERR_STAT)) == ERR_STAT) {
  842. err = GET_ERR();
  843. printk("%s: %s: error=0x%02x", drive->name, msg, err);
  844. #if FANCY_STATUS_DUMPS
  845. if (drive->media == ide_disk) {
  846. printk(" { ");
  847. if (err & ABRT_ERR) printk("DriveStatusError ");
  848. if (err & ICRC_ERR) printk("%s", (err & ABRT_ERR) ? "BadCRC " : "BadSector ");
  849. if (err & ECC_ERR) printk("UncorrectableError ");
  850. if (err & ID_ERR) printk("SectorIdNotFound ");
  851. if (err & TRK0_ERR) printk("TrackZeroNotFound ");
  852. if (err & MARK_ERR) printk("AddrMarkNotFound ");
  853. printk("}");
  854. if ((err & (BBD_ERR | ABRT_ERR)) == BBD_ERR || (err & (ECC_ERR|ID_ERR|MARK_ERR))) {
  855. byte cur = IN_BYTE(IDE_SELECT_REG);
  856. if (cur & 0x40) { /* using LBA? */
  857. printk(", LBAsect=%ld", (unsigned long)
  858.  ((cur&0xf)<<24)
  859.  |(IN_BYTE(IDE_HCYL_REG)<<16)
  860.  |(IN_BYTE(IDE_LCYL_REG)<<8)
  861.  | IN_BYTE(IDE_SECTOR_REG));
  862. } else {
  863. printk(", CHS=%d/%d/%d",
  864.  (IN_BYTE(IDE_HCYL_REG)<<8) +
  865.   IN_BYTE(IDE_LCYL_REG),
  866.   cur & 0xf,
  867.   IN_BYTE(IDE_SECTOR_REG));
  868. }
  869. if (HWGROUP(drive) && HWGROUP(drive)->rq)
  870. printk(", sector=%ld", HWGROUP(drive)->rq->sector);
  871. }
  872. }
  873. #endif /* FANCY_STATUS_DUMPS */
  874. printk("n");
  875. }
  876. __restore_flags (flags); /* local CPU only */
  877. return err;
  878. }
  879. /*
  880.  * try_to_flush_leftover_data() is invoked in response to a drive
  881.  * unexpectedly having its DRQ_STAT bit set.  As an alternative to
  882.  * resetting the drive, this routine tries to clear the condition
  883.  * by read a sector's worth of data from the drive.  Of course,
  884.  * this may not help if the drive is *waiting* for data from *us*.
  885.  */
  886. static void try_to_flush_leftover_data (ide_drive_t *drive)
  887. {
  888. int i = (drive->mult_count ? drive->mult_count : 1) * SECTOR_WORDS;
  889. if (drive->media != ide_disk)
  890. return;
  891. while (i > 0) {
  892. u32 buffer[16];
  893. unsigned int wcount = (i > 16) ? 16 : i;
  894. i -= wcount;
  895. ide_input_data (drive, buffer, wcount);
  896. }
  897. }
  898. /*
  899.  * ide_error() takes action based on the error returned by the drive.
  900.  */
  901. ide_startstop_t ide_error (ide_drive_t *drive, const char *msg, byte stat)
  902. {
  903. struct request *rq;
  904. byte err;
  905. err = ide_dump_status(drive, msg, stat);
  906. if (drive == NULL || (rq = HWGROUP(drive)->rq) == NULL)
  907. return ide_stopped;
  908. /* retry only "normal" I/O: */
  909. if (rq->cmd == IDE_DRIVE_CMD || rq->cmd == IDE_DRIVE_TASK) {
  910. rq->errors = 1;
  911. ide_end_drive_cmd(drive, stat, err);
  912. return ide_stopped;
  913. }
  914. if (stat & BUSY_STAT || ((stat & WRERR_STAT) && !drive->nowerr)) { /* other bits are useless when BUSY */
  915. rq->errors |= ERROR_RESET;
  916. } else {
  917. if (drive->media == ide_disk && (stat & ERR_STAT)) {
  918. /* err has different meaning on cdrom and tape */
  919. if (err == ABRT_ERR) {
  920. if (drive->select.b.lba && IN_BYTE(IDE_COMMAND_REG) == WIN_SPECIFY)
  921. return ide_stopped; /* some newer drives don't support WIN_SPECIFY */
  922. } else if ((err & (ABRT_ERR | ICRC_ERR)) == (ABRT_ERR | ICRC_ERR)) {
  923. drive->crc_count++; /* UDMA crc error -- just retry the operation */
  924. } else if (err & (BBD_ERR | ECC_ERR)) /* retries won't help these */
  925. rq->errors = ERROR_MAX;
  926. else if (err & TRK0_ERR) /* help it find track zero */
  927. rq->errors |= ERROR_RECAL;
  928. }
  929. if ((stat & DRQ_STAT) && rq->cmd != WRITE)
  930. try_to_flush_leftover_data(drive);
  931. }
  932. if (GET_STAT() & (BUSY_STAT|DRQ_STAT))
  933. OUT_BYTE(WIN_IDLEIMMEDIATE,IDE_COMMAND_REG); /* force an abort */
  934. if (rq->errors >= ERROR_MAX) {
  935. if (drive->driver != NULL)
  936. DRIVER(drive)->end_request(0, HWGROUP(drive));
  937. else
  938.   ide_end_request(0, HWGROUP(drive));
  939. } else {
  940. if ((rq->errors & ERROR_RESET) == ERROR_RESET) {
  941. ++rq->errors;
  942. return ide_do_reset(drive);
  943. }
  944. if ((rq->errors & ERROR_RECAL) == ERROR_RECAL)
  945. drive->special.b.recalibrate = 1;
  946. ++rq->errors;
  947. }
  948. return ide_stopped;
  949. }
  950. /*
  951.  * Issue a simple drive command
  952.  * The drive must be selected beforehand.
  953.  */
  954. void ide_cmd (ide_drive_t *drive, byte cmd, byte nsect, ide_handler_t *handler)
  955. {
  956. ide_set_handler (drive, handler, WAIT_CMD, NULL);
  957. if (IDE_CONTROL_REG)
  958. OUT_BYTE(drive->ctl,IDE_CONTROL_REG); /* clear nIEN */
  959. SELECT_MASK(HWIF(drive),drive,0);
  960. OUT_BYTE(nsect,IDE_NSECTOR_REG);
  961. OUT_BYTE(cmd,IDE_COMMAND_REG);
  962. }
  963. /*
  964.  * drive_cmd_intr() is invoked on completion of a special DRIVE_CMD.
  965.  */
  966. static ide_startstop_t drive_cmd_intr (ide_drive_t *drive)
  967. {
  968. struct request *rq = HWGROUP(drive)->rq;
  969. byte *args = (byte *) rq->buffer;
  970. byte stat = GET_STAT();
  971. int retries = 10;
  972. ide__sti(); /* local CPU only */
  973. if ((stat & DRQ_STAT) && args && args[3]) {
  974. byte io_32bit = drive->io_32bit;
  975. drive->io_32bit = 0;
  976. ide_input_data(drive, &args[4], args[3] * SECTOR_WORDS);
  977. drive->io_32bit = io_32bit;
  978. while (((stat = GET_STAT()) & BUSY_STAT) && retries--)
  979. udelay(100);
  980. }
  981. if (!OK_STAT(stat, READY_STAT, BAD_STAT))
  982. return ide_error(drive, "drive_cmd", stat); /* calls ide_end_drive_cmd */
  983. ide_end_drive_cmd (drive, stat, GET_ERR());
  984. return ide_stopped;
  985. }
  986. /*
  987.  * do_special() is used to issue WIN_SPECIFY, WIN_RESTORE, and WIN_SETMULT
  988.  * commands to a drive.  It used to do much more, but has been scaled back.
  989.  */
  990. static ide_startstop_t do_special (ide_drive_t *drive)
  991. {
  992. special_t *s = &drive->special;
  993. #ifdef DEBUG
  994. printk("%s: do_special: 0x%02xn", drive->name, s->all);
  995. #endif
  996. if (s->b.set_tune) {
  997. ide_tuneproc_t *tuneproc = HWIF(drive)->tuneproc;
  998. s->b.set_tune = 0;
  999. if (tuneproc != NULL)
  1000. tuneproc(drive, drive->tune_req);
  1001. } else if (drive->driver != NULL) {
  1002. return DRIVER(drive)->special(drive);
  1003. } else if (s->all) {
  1004. printk("%s: bad special flag: 0x%02xn", drive->name, s->all);
  1005. s->all = 0;
  1006. }
  1007. return ide_stopped;
  1008. }
  1009. /*
  1010.  * This routine busy-waits for the drive status to be not "busy".
  1011.  * It then checks the status for all of the "good" bits and none
  1012.  * of the "bad" bits, and if all is okay it returns 0.  All other
  1013.  * cases return 1 after invoking ide_error() -- caller should just return.
  1014.  *
  1015.  * This routine should get fixed to not hog the cpu during extra long waits..
  1016.  * That could be done by busy-waiting for the first jiffy or two, and then
  1017.  * setting a timer to wake up at half second intervals thereafter,
  1018.  * until timeout is achieved, before timing out.
  1019.  */
  1020. int ide_wait_stat (ide_startstop_t *startstop, ide_drive_t *drive, byte good, byte bad, unsigned long timeout) {
  1021. byte stat;
  1022. int i;
  1023. unsigned long flags;
  1024.  
  1025. /* bail early if we've exceeded max_failures */
  1026. if (drive->max_failures && (drive->failures > drive->max_failures)) {
  1027. *startstop = ide_stopped;
  1028. return 1;
  1029. }
  1030. udelay(1); /* spec allows drive 400ns to assert "BUSY" */
  1031. if ((stat = GET_STAT()) & BUSY_STAT) {
  1032. __save_flags(flags); /* local CPU only */
  1033. ide__sti(); /* local CPU only */
  1034. timeout += jiffies;
  1035. while ((stat = GET_STAT()) & BUSY_STAT) {
  1036. if (0 < (signed long)(jiffies - timeout)) {
  1037. __restore_flags(flags); /* local CPU only */
  1038. *startstop = ide_error(drive, "status timeout", stat);
  1039. return 1;
  1040. }
  1041. }
  1042. __restore_flags(flags); /* local CPU only */
  1043. }
  1044. /*
  1045.  * Allow status to settle, then read it again.
  1046.  * A few rare drives vastly violate the 400ns spec here,
  1047.  * so we'll wait up to 10usec for a "good" status
  1048.  * rather than expensively fail things immediately.
  1049.  * This fix courtesy of Matthew Faupel & Niccolo Rigacci.
  1050.  */
  1051. for (i = 0; i < 10; i++) {
  1052. udelay(1);
  1053. if (OK_STAT((stat = GET_STAT()), good, bad))
  1054. return 0;
  1055. }
  1056. *startstop = ide_error(drive, "status error", stat);
  1057. return 1;
  1058. }
  1059. /*
  1060.  * execute_drive_cmd() issues a special drive command,
  1061.  * usually initiated by ioctl() from the external hdparm program.
  1062.  */
  1063. static ide_startstop_t execute_drive_cmd (ide_drive_t *drive, struct request *rq)
  1064. {
  1065. byte *args = rq->buffer;
  1066. if (args && rq->cmd == IDE_DRIVE_TASK) {
  1067. byte sel;
  1068. #ifdef DEBUG
  1069. printk("%s: DRIVE_TASK_CMD data=x%02x cmd=0x%02x fr=0x%02x ns=0x%02x sc=0x%02x lcyl=0x%02x hcyl=0x%02x sel=0x%02xn",
  1070. drive->name,
  1071. args[0], args[1], args[2], args[3],
  1072. args[4], args[5], args[6], args[7]);
  1073. #endif
  1074. OUT_BYTE(args[1], IDE_FEATURE_REG);
  1075. OUT_BYTE(args[3], IDE_SECTOR_REG);
  1076. OUT_BYTE(args[4], IDE_LCYL_REG);
  1077. OUT_BYTE(args[5], IDE_HCYL_REG);
  1078. sel = (args[6] & ~0x10);
  1079. if (drive->select.b.unit)
  1080. sel |= 0x10;
  1081. OUT_BYTE(sel, IDE_SELECT_REG);
  1082. ide_cmd(drive, args[0], args[2], &drive_cmd_intr);
  1083. return ide_started;
  1084. } else if (args) {
  1085. #ifdef DEBUG
  1086. printk("%s: DRIVE_CMD cmd=0x%02x sc=0x%02x fr=0x%02x xx=0x%02xn",
  1087.  drive->name, args[0], args[1], args[2], args[3]);
  1088. #endif
  1089. if (args[0] == WIN_SMART) {
  1090. OUT_BYTE(0x4f, IDE_LCYL_REG);
  1091. OUT_BYTE(0xc2, IDE_HCYL_REG);
  1092. OUT_BYTE(args[2],IDE_FEATURE_REG);
  1093. OUT_BYTE(args[1],IDE_SECTOR_REG);
  1094. ide_cmd(drive, args[0], args[3], &drive_cmd_intr);
  1095. return ide_started;
  1096. }
  1097. OUT_BYTE(args[2],IDE_FEATURE_REG);
  1098. ide_cmd(drive, args[0], args[1], &drive_cmd_intr);
  1099. return ide_started;
  1100. } else {
  1101. /*
  1102.  * NULL is actually a valid way of waiting for
  1103.  * all current requests to be flushed from the queue.
  1104.  */
  1105. #ifdef DEBUG
  1106. printk("%s: DRIVE_CMD (null)n", drive->name);
  1107. #endif
  1108. ide_end_drive_cmd(drive, GET_STAT(), GET_ERR());
  1109. return ide_stopped;
  1110. }
  1111. }
  1112. /*
  1113.  * start_request() initiates handling of a new I/O request
  1114.  */
  1115. static ide_startstop_t start_request (ide_drive_t *drive)
  1116. {
  1117. ide_startstop_t startstop;
  1118. unsigned long block, blockend;
  1119. struct request *rq = blkdev_entry_next_request(&drive->queue.queue_head);
  1120. unsigned int minor = MINOR(rq->rq_dev), unit = minor >> PARTN_BITS;
  1121. ide_hwif_t *hwif = HWIF(drive);
  1122. #ifdef DEBUG
  1123. printk("%s: start_request: current=0x%08lxn", hwif->name, (unsigned long) rq);
  1124. #endif
  1125. /* bail early if we've exceeded max_failures */
  1126. if (drive->max_failures && (drive->failures > drive->max_failures)) {
  1127. goto kill_rq;
  1128. }
  1129. if (unit >= MAX_DRIVES) {
  1130. printk("%s: bad device number: %sn", hwif->name, kdevname(rq->rq_dev));
  1131. goto kill_rq;
  1132. }
  1133. #ifdef DEBUG
  1134. if (rq->bh && !buffer_locked(rq->bh)) {
  1135. printk("%s: block not lockedn", drive->name);
  1136. goto kill_rq;
  1137. }
  1138. #endif
  1139. block    = rq->sector;
  1140. blockend = block + rq->nr_sectors;
  1141. if ((rq->cmd == READ || rq->cmd == WRITE) &&
  1142.     (drive->media == ide_disk || drive->media == ide_floppy)) {
  1143. if ((blockend < block) || (blockend > drive->part[minor&PARTN_MASK].nr_sects)) {
  1144. printk("%s%c: bad access: block=%ld, count=%ldn", drive->name,
  1145.  (minor&PARTN_MASK)?'0'+(minor&PARTN_MASK):' ', block, rq->nr_sectors);
  1146. goto kill_rq;
  1147. }
  1148. block += drive->part[minor&PARTN_MASK].start_sect + drive->sect0;
  1149. }
  1150. /* Yecch - this will shift the entire interval,
  1151.    possibly killing some innocent following sector */
  1152. if (block == 0 && drive->remap_0_to_1 == 1)
  1153. block = 1;  /* redirect MBR access to EZ-Drive partn table */
  1154. #if (DISK_RECOVERY_TIME > 0)
  1155. while ((read_timer() - hwif->last_time) < DISK_RECOVERY_TIME);
  1156. #endif
  1157. SELECT_DRIVE(hwif, drive);
  1158. if (ide_wait_stat(&startstop, drive, drive->ready_stat, BUSY_STAT|DRQ_STAT, WAIT_READY)) {
  1159. printk("%s: drive not ready for commandn", drive->name);
  1160. return startstop;
  1161. }
  1162. if (!drive->special.all) {
  1163. if (rq->cmd == IDE_DRIVE_CMD || rq->cmd == IDE_DRIVE_TASK) {
  1164. return execute_drive_cmd(drive, rq);
  1165. }
  1166. if (drive->driver != NULL) {
  1167. return (DRIVER(drive)->do_request(drive, rq, block));
  1168. }
  1169. printk("%s: media type %d not supportedn", drive->name, drive->media);
  1170. goto kill_rq;
  1171. }
  1172. return do_special(drive);
  1173. kill_rq:
  1174. if (drive->driver != NULL)
  1175. DRIVER(drive)->end_request(0, HWGROUP(drive));
  1176. else
  1177. ide_end_request(0, HWGROUP(drive));
  1178. return ide_stopped;
  1179. }
  1180. ide_startstop_t restart_request (ide_drive_t *drive)
  1181. {
  1182. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  1183. unsigned long flags;
  1184. spin_lock_irqsave(&io_request_lock, flags);
  1185. hwgroup->handler = NULL;
  1186. del_timer(&hwgroup->timer);
  1187. spin_unlock_irqrestore(&io_request_lock, flags);
  1188. return start_request(drive);
  1189. }
  1190. /*
  1191.  * ide_stall_queue() can be used by a drive to give excess bandwidth back
  1192.  * to the hwgroup by sleeping for timeout jiffies.
  1193.  */
  1194. void ide_stall_queue (ide_drive_t *drive, unsigned long timeout)
  1195. {
  1196. if (timeout > WAIT_WORSTCASE)
  1197. timeout = WAIT_WORSTCASE;
  1198. drive->sleep = timeout + jiffies;
  1199. }
  1200. #define WAKEUP(drive) ((drive)->service_start + 2 * (drive)->service_time)
  1201. /*
  1202.  * choose_drive() selects the next drive which will be serviced.
  1203.  */
  1204. static inline ide_drive_t *choose_drive (ide_hwgroup_t *hwgroup)
  1205. {
  1206. ide_drive_t *drive, *best;
  1207. repeat:
  1208. best = NULL;
  1209. drive = hwgroup->drive;
  1210. do {
  1211. if (!list_empty(&drive->queue.queue_head) && (!drive->sleep || 0 <= (signed long)(jiffies - drive->sleep))) {
  1212. if (!best
  1213.  || (drive->sleep && (!best->sleep || 0 < (signed long)(best->sleep - drive->sleep)))
  1214.  || (!best->sleep && 0 < (signed long)(WAKEUP(best) - WAKEUP(drive))))
  1215. {
  1216. if( !drive->queue.plugged )
  1217. best = drive;
  1218. }
  1219. }
  1220. } while ((drive = drive->next) != hwgroup->drive);
  1221. if (best && best->nice1 && !best->sleep && best != hwgroup->drive && best->service_time > WAIT_MIN_SLEEP) {
  1222. long t = (signed long)(WAKEUP(best) - jiffies);
  1223. if (t >= WAIT_MIN_SLEEP) {
  1224. /*
  1225.  * We *may* have some time to spare, but first let's see if
  1226.  * someone can potentially benefit from our nice mood today..
  1227.  */
  1228. drive = best->next;
  1229. do {
  1230. if (!drive->sleep
  1231.  && 0 < (signed long)(WAKEUP(drive) - (jiffies - best->service_time))
  1232.  && 0 < (signed long)((jiffies + t) - WAKEUP(drive)))
  1233. {
  1234. ide_stall_queue(best, IDE_MIN(t, 10 * WAIT_MIN_SLEEP));
  1235. goto repeat;
  1236. }
  1237. } while ((drive = drive->next) != best);
  1238. }
  1239. }
  1240. return best;
  1241. }
  1242. /*
  1243.  * Issue a new request to a drive from hwgroup
  1244.  * Caller must have already done spin_lock_irqsave(&io_request_lock, ..);
  1245.  *
  1246.  * A hwgroup is a serialized group of IDE interfaces.  Usually there is
  1247.  * exactly one hwif (interface) per hwgroup, but buggy controllers (eg. CMD640)
  1248.  * may have both interfaces in a single hwgroup to "serialize" access.
  1249.  * Or possibly multiple ISA interfaces can share a common IRQ by being grouped
  1250.  * together into one hwgroup for serialized access.
  1251.  *
  1252.  * Note also that several hwgroups can end up sharing a single IRQ,
  1253.  * possibly along with many other devices.  This is especially common in
  1254.  * PCI-based systems with off-board IDE controller cards.
  1255.  *
  1256.  * The IDE driver uses the single global io_request_lock spinlock to protect
  1257.  * access to the request queues, and to protect the hwgroup->busy flag.
  1258.  *
  1259.  * The first thread into the driver for a particular hwgroup sets the
  1260.  * hwgroup->busy flag to indicate that this hwgroup is now active,
  1261.  * and then initiates processing of the top request from the request queue.
  1262.  *
  1263.  * Other threads attempting entry notice the busy setting, and will simply
  1264.  * queue their new requests and exit immediately.  Note that hwgroup->busy
  1265.  * remains set even when the driver is merely awaiting the next interrupt.
  1266.  * Thus, the meaning is "this hwgroup is busy processing a request".
  1267.  *
  1268.  * When processing of a request completes, the completing thread or IRQ-handler
  1269.  * will start the next request from the queue.  If no more work remains,
  1270.  * the driver will clear the hwgroup->busy flag and exit.
  1271.  *
  1272.  * The io_request_lock (spinlock) is used to protect all access to the
  1273.  * hwgroup->busy flag, but is otherwise not needed for most processing in
  1274.  * the driver.  This makes the driver much more friendlier to shared IRQs
  1275.  * than previous designs, while remaining 100% (?) SMP safe and capable.
  1276.  */
  1277. /* --BenH: made non-static as ide-pmac.c uses it to kick the hwgroup back
  1278.  *         into life on wakeup from machine sleep.
  1279.  */ 
  1280. void ide_do_request(ide_hwgroup_t *hwgroup, int masked_irq)
  1281. {
  1282. ide_drive_t *drive;
  1283. ide_hwif_t *hwif;
  1284. ide_startstop_t startstop;
  1285. ide_get_lock(&ide_lock, ide_intr, hwgroup); /* for atari only: POSSIBLY BROKEN HERE(?) */
  1286. __cli(); /* necessary paranoia: ensure IRQs are masked on local CPU */
  1287. while (!hwgroup->busy) {
  1288. hwgroup->busy = 1;
  1289. drive = choose_drive(hwgroup);
  1290. if (drive == NULL) {
  1291. unsigned long sleep = 0;
  1292. hwgroup->rq = NULL;
  1293. drive = hwgroup->drive;
  1294. do {
  1295. if (drive->sleep && (!sleep || 0 < (signed long)(sleep - drive->sleep)))
  1296. sleep = drive->sleep;
  1297. } while ((drive = drive->next) != hwgroup->drive);
  1298. if (sleep) {
  1299. /*
  1300.  * Take a short snooze, and then wake up this hwgroup again.
  1301.  * This gives other hwgroups on the same a chance to
  1302.  * play fairly with us, just in case there are big differences
  1303.  * in relative throughputs.. don't want to hog the cpu too much.
  1304.  */
  1305. if (0 < (signed long)(jiffies + WAIT_MIN_SLEEP - sleep)) 
  1306. sleep = jiffies + WAIT_MIN_SLEEP;
  1307. #if 1
  1308. if (timer_pending(&hwgroup->timer))
  1309. printk("ide_set_handler: timer already activen");
  1310. #endif
  1311. hwgroup->sleeping = 1; /* so that ide_timer_expiry knows what to do */
  1312. mod_timer(&hwgroup->timer, sleep);
  1313. /* we purposely leave hwgroup->busy==1 while sleeping */
  1314. } else {
  1315. /* Ugly, but how can we sleep for the lock otherwise? perhaps from tq_disk? */
  1316. ide_release_lock(&ide_lock); /* for atari only */
  1317. hwgroup->busy = 0;
  1318. }
  1319. return; /* no more work for this hwgroup (for now) */
  1320. }
  1321. hwif = HWIF(drive);
  1322. if (hwgroup->hwif->sharing_irq && hwif != hwgroup->hwif && hwif->io_ports[IDE_CONTROL_OFFSET]) {
  1323. /* set nIEN for previous hwif */
  1324. SELECT_INTERRUPT(hwif, drive);
  1325. }
  1326. hwgroup->hwif = hwif;
  1327. hwgroup->drive = drive;
  1328. drive->sleep = 0;
  1329. drive->service_start = jiffies;
  1330. if ( drive->queue.plugged ) /* paranoia */
  1331. printk("%s: Huh? nuking plugged queuen", drive->name);
  1332. hwgroup->rq = blkdev_entry_next_request(&drive->queue.queue_head);
  1333. /*
  1334.  * Some systems have trouble with IDE IRQs arriving while
  1335.  * the driver is still setting things up.  So, here we disable
  1336.  * the IRQ used by this interface while the request is being started.
  1337.  * This may look bad at first, but pretty much the same thing
  1338.  * happens anyway when any interrupt comes in, IDE or otherwise
  1339.  *  -- the kernel masks the IRQ while it is being handled.
  1340.  */
  1341. if (masked_irq && hwif->irq != masked_irq)
  1342. disable_irq_nosync(hwif->irq);
  1343. spin_unlock(&io_request_lock);
  1344. ide__sti(); /* allow other IRQs while we start this request */
  1345. startstop = start_request(drive);
  1346. spin_lock_irq(&io_request_lock);
  1347. if (masked_irq && hwif->irq != masked_irq)
  1348. enable_irq(hwif->irq);
  1349. if (startstop == ide_stopped)
  1350. hwgroup->busy = 0;
  1351. }
  1352. }
  1353. /*
  1354.  * ide_get_queue() returns the queue which corresponds to a given device.
  1355.  */
  1356. request_queue_t *ide_get_queue (kdev_t dev)
  1357. {
  1358. ide_hwif_t *hwif = (ide_hwif_t *)blk_dev[MAJOR(dev)].data;
  1359. return &hwif->drives[DEVICE_NR(dev) & 1].queue;
  1360. }
  1361. /*
  1362.  * Passes the stuff to ide_do_request
  1363.  */
  1364. void do_ide_request(request_queue_t *q)
  1365. {
  1366. ide_do_request(q->queuedata, 0);
  1367. }
  1368. /*
  1369.  * un-busy the hwgroup etc, and clear any pending DMA status. we want to
  1370.  * retry the current request in pio mode instead of risking tossing it
  1371.  * all away
  1372.  */
  1373. void ide_dma_timeout_retry(ide_drive_t *drive)
  1374. {
  1375. ide_hwif_t *hwif = HWIF(drive);
  1376. struct request *rq;
  1377. /*
  1378.  * end current dma transaction
  1379.  */
  1380. (void) hwif->dmaproc(ide_dma_end, drive);
  1381. /*
  1382.  * complain a little, later we might remove some of this verbosity
  1383.  */
  1384. printk("%s: timeout waiting for DMAn", drive->name);
  1385. (void) hwif->dmaproc(ide_dma_timeout, drive);
  1386. /*
  1387.  * disable dma for now, but remember that we did so because of
  1388.  * a timeout -- we'll reenable after we finish this next request
  1389.  * (or rather the first chunk of it) in pio.
  1390.  */
  1391. drive->retry_pio++;
  1392. drive->state = DMA_PIO_RETRY;
  1393. (void) hwif->dmaproc(ide_dma_off_quietly, drive);
  1394. /*
  1395.  * un-busy drive etc (hwgroup->busy is cleared on return) and
  1396.  * make sure request is sane
  1397.  */
  1398. rq = HWGROUP(drive)->rq;
  1399. HWGROUP(drive)->rq = NULL;
  1400. rq->errors = 0;
  1401. rq->sector = rq->bh->b_rsector;
  1402. rq->current_nr_sectors = rq->bh->b_size >> 9;
  1403. rq->buffer = rq->bh->b_data;
  1404. }
  1405. /*
  1406.  * ide_timer_expiry() is our timeout function for all drive operations.
  1407.  * But note that it can also be invoked as a result of a "sleep" operation
  1408.  * triggered by the mod_timer() call in ide_do_request.
  1409.  */
  1410. void ide_timer_expiry (unsigned long data)
  1411. {
  1412. ide_hwgroup_t *hwgroup = (ide_hwgroup_t *) data;
  1413. ide_handler_t *handler;
  1414. ide_expiry_t *expiry;
  1415.   unsigned long flags;
  1416. unsigned long wait;
  1417. spin_lock_irqsave(&io_request_lock, flags);
  1418. del_timer(&hwgroup->timer);
  1419. if ((handler = hwgroup->handler) == NULL) {
  1420. /*
  1421.  * Either a marginal timeout occurred
  1422.  * (got the interrupt just as timer expired),
  1423.  * or we were "sleeping" to give other devices a chance.
  1424.  * Either way, we don't really want to complain about anything.
  1425.  */
  1426. if (hwgroup->sleeping) {
  1427. hwgroup->sleeping = 0;
  1428. hwgroup->busy = 0;
  1429. }
  1430. } else {
  1431. ide_drive_t *drive = hwgroup->drive;
  1432. if (!drive) {
  1433. printk("ide_timer_expiry: hwgroup->drive was NULLn");
  1434. hwgroup->handler = NULL;
  1435. } else {
  1436. ide_hwif_t *hwif;
  1437. ide_startstop_t startstop;
  1438. if (!hwgroup->busy) {
  1439. hwgroup->busy = 1; /* paranoia */
  1440. printk("%s: ide_timer_expiry: hwgroup->busy was 0 ??n", drive->name);
  1441. }
  1442. if ((expiry = hwgroup->expiry) != NULL) {
  1443. /* continue */
  1444. if ((wait = expiry(drive)) != 0) {
  1445. /* reset timer */
  1446. hwgroup->timer.expires  = jiffies + wait;
  1447. add_timer(&hwgroup->timer);
  1448. spin_unlock_irqrestore(&io_request_lock, flags);
  1449. return;
  1450. }
  1451. }
  1452. hwgroup->handler = NULL;
  1453. /*
  1454.  * We need to simulate a real interrupt when invoking
  1455.  * the handler() function, which means we need to globally
  1456.  * mask the specific IRQ:
  1457.  */
  1458. spin_unlock(&io_request_lock);
  1459. hwif  = HWIF(drive);
  1460. #if DISABLE_IRQ_NOSYNC
  1461. disable_irq_nosync(hwif->irq);
  1462. #else
  1463. disable_irq(hwif->irq); /* disable_irq_nosync ?? */
  1464. #endif /* DISABLE_IRQ_NOSYNC */
  1465. __cli(); /* local CPU only, as if we were handling an interrupt */
  1466. if (hwgroup->poll_timeout != 0) {
  1467. startstop = handler(drive);
  1468. } else if (drive_is_ready(drive)) {
  1469. if (drive->waiting_for_dma)
  1470. (void) hwgroup->hwif->dmaproc(ide_dma_lostirq, drive);
  1471. (void)ide_ack_intr(hwif);
  1472. printk("%s: lost interruptn", drive->name);
  1473. startstop = handler(drive);
  1474. } else {
  1475. if (drive->waiting_for_dma) {
  1476. startstop = ide_stopped;
  1477. ide_dma_timeout_retry(drive);
  1478. } else
  1479. startstop = ide_error(drive, "irq timeout", GET_STAT());
  1480. }
  1481. set_recovery_timer(hwif);
  1482. drive->service_time = jiffies - drive->service_start;
  1483. enable_irq(hwif->irq);
  1484. spin_lock_irq(&io_request_lock);
  1485. if (startstop == ide_stopped)
  1486. hwgroup->busy = 0;
  1487. }
  1488. }
  1489. ide_do_request(hwgroup, 0);
  1490. spin_unlock_irqrestore(&io_request_lock, flags);
  1491. }
  1492. /*
  1493.  * There's nothing really useful we can do with an unexpected interrupt,
  1494.  * other than reading the status register (to clear it), and logging it.
  1495.  * There should be no way that an irq can happen before we're ready for it,
  1496.  * so we needn't worry much about losing an "important" interrupt here.
  1497.  *
  1498.  * On laptops (and "green" PCs), an unexpected interrupt occurs whenever the
  1499.  * drive enters "idle", "standby", or "sleep" mode, so if the status looks
  1500.  * "good", we just ignore the interrupt completely.
  1501.  *
  1502.  * This routine assumes __cli() is in effect when called.
  1503.  *
  1504.  * If an unexpected interrupt happens on irq15 while we are handling irq14
  1505.  * and if the two interfaces are "serialized" (CMD640), then it looks like
  1506.  * we could screw up by interfering with a new request being set up for irq15.
  1507.  *
  1508.  * In reality, this is a non-issue.  The new command is not sent unless the
  1509.  * drive is ready to accept one, in which case we know the drive is not
  1510.  * trying to interrupt us.  And ide_set_handler() is always invoked before
  1511.  * completing the issuance of any new drive command, so we will not be
  1512.  * accidently invoked as a result of any valid command completion interrupt.
  1513.  *
  1514.  */
  1515. static void unexpected_intr (int irq, ide_hwgroup_t *hwgroup)
  1516. {
  1517. byte stat;
  1518. ide_hwif_t *hwif = hwgroup->hwif;
  1519. /*
  1520.  * handle the unexpected interrupt
  1521.  */
  1522. do {
  1523. if (hwif->irq == irq) {
  1524. stat = IN_BYTE(hwif->io_ports[IDE_STATUS_OFFSET]);
  1525. if (!OK_STAT(stat, READY_STAT, BAD_STAT)) {
  1526. /* Try to not flood the console with msgs */
  1527. static unsigned long last_msgtime, count;
  1528. ++count;
  1529. if (0 < (signed long)(jiffies - (last_msgtime + HZ))) {
  1530. last_msgtime = jiffies;
  1531. printk("%s%s: unexpected interrupt, status=0x%02x, count=%ldn",
  1532.  hwif->name, (hwif->next == hwgroup->hwif) ? "" : "(?)", stat, count);
  1533. }
  1534. }
  1535. }
  1536. } while ((hwif = hwif->next) != hwgroup->hwif);
  1537. }
  1538. /*
  1539.  * entry point for all interrupts, caller does __cli() for us
  1540.  */
  1541. void ide_intr (int irq, void *dev_id, struct pt_regs *regs)
  1542. {
  1543. unsigned long flags;
  1544. ide_hwgroup_t *hwgroup = (ide_hwgroup_t *)dev_id;
  1545. ide_hwif_t *hwif;
  1546. ide_drive_t *drive;
  1547. ide_handler_t *handler;
  1548. ide_startstop_t startstop;
  1549. spin_lock_irqsave(&io_request_lock, flags);
  1550. hwif = hwgroup->hwif;
  1551. if (!ide_ack_intr(hwif)) {
  1552. spin_unlock_irqrestore(&io_request_lock, flags);
  1553. return;
  1554. }
  1555. if ((handler = hwgroup->handler) == NULL || hwgroup->poll_timeout != 0) {
  1556. /*
  1557.  * Not expecting an interrupt from this drive.
  1558.  * That means this could be:
  1559.  * (1) an interrupt from another PCI device
  1560.  * sharing the same PCI INT# as us.
  1561.  * or (2) a drive just entered sleep or standby mode,
  1562.  * and is interrupting to let us know.
  1563.  * or (3) a spurious interrupt of unknown origin.
  1564.  *
  1565.  * For PCI, we cannot tell the difference,
  1566.  * so in that case we just ignore it and hope it goes away.
  1567.  */
  1568. #ifdef CONFIG_BLK_DEV_IDEPCI
  1569. if (IDE_PCI_DEVID_EQ(hwif->pci_devid, IDE_PCI_DEVID_NULL))
  1570. #endif /* CONFIG_BLK_DEV_IDEPCI */
  1571. {
  1572. /*
  1573.  * Probably not a shared PCI interrupt,
  1574.  * so we can safely try to do something about it:
  1575.  */
  1576. unexpected_intr(irq, hwgroup);
  1577. #ifdef CONFIG_BLK_DEV_IDEPCI
  1578. } else {
  1579. /*
  1580.  * Whack the status register, just in case we have a leftover pending IRQ.
  1581.  */
  1582. (void) IN_BYTE(hwif->io_ports[IDE_STATUS_OFFSET]);
  1583. #endif /* CONFIG_BLK_DEV_IDEPCI */
  1584. }
  1585. spin_unlock_irqrestore(&io_request_lock, flags);
  1586. return;
  1587. }
  1588. drive = hwgroup->drive;
  1589. if (!drive) {
  1590. /*
  1591.  * This should NEVER happen, and there isn't much we could do about it here.
  1592.  */
  1593. spin_unlock_irqrestore(&io_request_lock, flags);
  1594. return;
  1595. }
  1596. if (!drive_is_ready(drive)) {
  1597. /*
  1598.  * This happens regularly when we share a PCI IRQ with another device.
  1599.  * Unfortunately, it can also happen with some buggy drives that trigger
  1600.  * the IRQ before their status register is up to date.  Hopefully we have
  1601.  * enough advance overhead that the latter isn't a problem.
  1602.  */
  1603. spin_unlock_irqrestore(&io_request_lock, flags);
  1604. return;
  1605. }
  1606. if (!hwgroup->busy) {
  1607. hwgroup->busy = 1; /* paranoia */
  1608. printk("%s: ide_intr: hwgroup->busy was 0 ??n", drive->name);
  1609. }
  1610. hwgroup->handler = NULL;
  1611. del_timer(&hwgroup->timer);
  1612. spin_unlock(&io_request_lock);
  1613. if (drive->unmask)
  1614. ide__sti(); /* local CPU only */
  1615. startstop = handler(drive); /* service this interrupt, may set handler for next interrupt */
  1616. spin_lock_irq(&io_request_lock);
  1617. /*
  1618.  * Note that handler() may have set things up for another
  1619.  * interrupt to occur soon, but it cannot happen until
  1620.  * we exit from this routine, because it will be the
  1621.  * same irq as is currently being serviced here, and Linux
  1622.  * won't allow another of the same (on any CPU) until we return.
  1623.  */
  1624. set_recovery_timer(HWIF(drive));
  1625. drive->service_time = jiffies - drive->service_start;
  1626. if (startstop == ide_stopped) {
  1627. if (hwgroup->handler == NULL) { /* paranoia */
  1628. hwgroup->busy = 0;
  1629. ide_do_request(hwgroup, hwif->irq);
  1630. } else {
  1631. printk("%s: ide_intr: huh? expected NULL handler on exitn", drive->name);
  1632. }
  1633. }
  1634. spin_unlock_irqrestore(&io_request_lock, flags);
  1635. }
  1636. /*
  1637.  * get_info_ptr() returns the (ide_drive_t *) for a given device number.
  1638.  * It returns NULL if the given device number does not match any present drives.
  1639.  */
  1640. ide_drive_t *get_info_ptr (kdev_t i_rdev)
  1641. {
  1642. int major = MAJOR(i_rdev);
  1643. #if 0
  1644. int minor = MINOR(i_rdev) & PARTN_MASK;
  1645. #endif
  1646. unsigned int h;
  1647. for (h = 0; h < MAX_HWIFS; ++h) {
  1648. ide_hwif_t  *hwif = &ide_hwifs[h];
  1649. if (hwif->present && major == hwif->major) {
  1650. unsigned unit = DEVICE_NR(i_rdev);
  1651. if (unit < MAX_DRIVES) {
  1652. ide_drive_t *drive = &hwif->drives[unit];
  1653. #if 0
  1654. if ((drive->present) && (drive->part[minor].nr_sects))
  1655. #else
  1656. if (drive->present)
  1657. #endif
  1658. return drive;
  1659. }
  1660. break;
  1661. }
  1662. }
  1663. return NULL;
  1664. }
  1665. /*
  1666.  * This function is intended to be used prior to invoking ide_do_drive_cmd().
  1667.  */
  1668. void ide_init_drive_cmd (struct request *rq)
  1669. {
  1670. memset(rq, 0, sizeof(*rq));
  1671. rq->cmd = IDE_DRIVE_CMD;
  1672. }
  1673. /*
  1674.  * This function issues a special IDE device request
  1675.  * onto the request queue.
  1676.  *
  1677.  * If action is ide_wait, then the rq is queued at the end of the
  1678.  * request queue, and the function sleeps until it has been processed.
  1679.  * This is for use when invoked from an ioctl handler.
  1680.  *
  1681.  * If action is ide_preempt, then the rq is queued at the head of
  1682.  * the request queue, displacing the currently-being-processed
  1683.  * request and this function returns immediately without waiting
  1684.  * for the new rq to be completed.  This is VERY DANGEROUS, and is
  1685.  * intended for careful use by the ATAPI tape/cdrom driver code.
  1686.  *
  1687.  * If action is ide_next, then the rq is queued immediately after
  1688.  * the currently-being-processed-request (if any), and the function
  1689.  * returns without waiting for the new rq to be completed.  As above,
  1690.  * This is VERY DANGEROUS, and is intended for careful use by the
  1691.  * ATAPI tape/cdrom driver code.
  1692.  *
  1693.  * If action is ide_end, then the rq is queued at the end of the
  1694.  * request queue, and the function returns immediately without waiting
  1695.  * for the new rq to be completed. This is again intended for careful
  1696.  * use by the ATAPI tape/cdrom driver code.
  1697.  */
  1698. int ide_do_drive_cmd (ide_drive_t *drive, struct request *rq, ide_action_t action)
  1699. {
  1700. unsigned long flags;
  1701. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  1702. unsigned int major = HWIF(drive)->major;
  1703. struct list_head *queue_head = &drive->queue.queue_head;
  1704. DECLARE_COMPLETION(wait);
  1705. #ifdef CONFIG_BLK_DEV_PDC4030
  1706. if (HWIF(drive)->chipset == ide_pdc4030 && rq->buffer != NULL)
  1707. return -ENOSYS;  /* special drive cmds not supported */
  1708. #endif
  1709. rq->errors = 0;
  1710. rq->rq_status = RQ_ACTIVE;
  1711. rq->rq_dev = MKDEV(major,(drive->select.b.unit)<<PARTN_BITS);
  1712. if (action == ide_wait)
  1713. rq->waiting = &wait;
  1714. spin_lock_irqsave(&io_request_lock, flags);
  1715. if (list_empty(queue_head) || action == ide_preempt) {
  1716. if (action == ide_preempt)
  1717. hwgroup->rq = NULL;
  1718. } else {
  1719. if (action == ide_wait || action == ide_end) {
  1720. queue_head = queue_head->prev;
  1721. } else
  1722. queue_head = queue_head->next;
  1723. }
  1724. list_add(&rq->queue, queue_head);
  1725. ide_do_request(hwgroup, 0);
  1726. spin_unlock_irqrestore(&io_request_lock, flags);
  1727. if (action == ide_wait) {
  1728. wait_for_completion(&wait); /* wait for it to be serviced */
  1729. return rq->errors ? -EIO : 0; /* return -EIO if errors */
  1730. }
  1731. return 0;
  1732. }
  1733. /*
  1734.  * This routine is called to flush all partitions and partition tables
  1735.  * for a changed disk, and then re-read the new partition table.
  1736.  * If we are revalidating a disk because of a media change, then we
  1737.  * enter with usage == 0.  If we are using an ioctl, we automatically have
  1738.  * usage == 1 (we need an open channel to use an ioctl :-), so this
  1739.  * is our limit.
  1740.  */
  1741. int ide_revalidate_disk (kdev_t i_rdev)
  1742. {
  1743. ide_drive_t *drive;
  1744. ide_hwgroup_t *hwgroup;
  1745. unsigned int p, major, minor;
  1746. long flags;
  1747. if ((drive = get_info_ptr(i_rdev)) == NULL)
  1748. return -ENODEV;
  1749. major = MAJOR(i_rdev);
  1750. minor = drive->select.b.unit << PARTN_BITS;
  1751. hwgroup = HWGROUP(drive);
  1752. spin_lock_irqsave(&io_request_lock, flags);
  1753. if (drive->busy || (drive->usage > 1)) {
  1754. spin_unlock_irqrestore(&io_request_lock, flags);
  1755. return -EBUSY;
  1756. };
  1757. drive->busy = 1;
  1758. MOD_INC_USE_COUNT;
  1759. spin_unlock_irqrestore(&io_request_lock, flags);
  1760. for (p = 0; p < (1<<PARTN_BITS); ++p) {
  1761. if (drive->part[p].nr_sects > 0) {
  1762. kdev_t devp = MKDEV(major, minor+p);
  1763. invalidate_device(devp, 1);
  1764. }
  1765. drive->part[p].start_sect = 0;
  1766. drive->part[p].nr_sects   = 0;
  1767. };
  1768. if (DRIVER(drive)->revalidate)
  1769. DRIVER(drive)->revalidate(drive);
  1770. drive->busy = 0;
  1771. wake_up(&drive->wqueue);
  1772. MOD_DEC_USE_COUNT;
  1773. return 0;
  1774. }
  1775. static void revalidate_drives (void)
  1776. {
  1777. ide_hwif_t *hwif;
  1778. ide_drive_t *drive;
  1779. int index, unit;
  1780. for (index = 0; index < MAX_HWIFS; ++index) {
  1781. hwif = &ide_hwifs[index];
  1782. for (unit = 0; unit < MAX_DRIVES; ++unit) {
  1783. drive = &ide_hwifs[index].drives[unit];
  1784. if (drive->revalidate) {
  1785. drive->revalidate = 0;
  1786. if (!initializing)
  1787. (void) ide_revalidate_disk(MKDEV(hwif->major, unit<<PARTN_BITS));
  1788. }
  1789. }
  1790. }
  1791. }
  1792. static void ide_probe_module (void)
  1793. {
  1794. if (!ide_probe) {
  1795. #if defined(CONFIG_KMOD) && defined(CONFIG_BLK_DEV_IDE_MODULE)
  1796. (void) request_module("ide-probe-mod");
  1797. #endif /* (CONFIG_KMOD) && (CONFIG_BLK_DEV_IDE_MODULE) */
  1798. } else {
  1799. (void) ide_probe->init();
  1800. }
  1801. revalidate_drives();
  1802. }
  1803. static void ide_driver_module (void)
  1804. {
  1805. int index;
  1806. ide_module_t *module = ide_modules;
  1807. for (index = 0; index < MAX_HWIFS; ++index)
  1808. if (ide_hwifs[index].present)
  1809. goto search;
  1810. ide_probe_module();
  1811. search:
  1812. while (module) {
  1813. (void) module->init();
  1814. module = module->next;
  1815. }
  1816. revalidate_drives();
  1817. }
  1818. static int ide_open (struct inode * inode, struct file * filp)
  1819. {
  1820. ide_drive_t *drive;
  1821. if ((drive = get_info_ptr(inode->i_rdev)) == NULL)
  1822. return -ENXIO;
  1823. if (drive->driver == NULL)
  1824. ide_driver_module();
  1825. #ifdef CONFIG_KMOD
  1826. if (drive->driver == NULL) {
  1827. if (drive->media == ide_disk)
  1828. (void) request_module("ide-disk");
  1829. if (drive->media == ide_cdrom)
  1830. (void) request_module("ide-cd");
  1831. if (drive->media == ide_tape)
  1832. (void) request_module("ide-tape");
  1833. if (drive->media == ide_floppy)
  1834. (void) request_module("ide-floppy");
  1835. }
  1836. #endif /* CONFIG_KMOD */
  1837. while (drive->busy)
  1838. sleep_on(&drive->wqueue);
  1839. drive->usage++;
  1840. if (drive->driver != NULL)
  1841. return DRIVER(drive)->open(inode, filp, drive);
  1842. printk ("%s: driver not presentn", drive->name);
  1843. drive->usage--;
  1844. return -ENXIO;
  1845. }
  1846. /*
  1847.  * Releasing a block device means we sync() it, so that it can safely
  1848.  * be forgotten about...
  1849.  */
  1850. static int ide_release (struct inode * inode, struct file * file)
  1851. {
  1852. ide_drive_t *drive;
  1853. if ((drive = get_info_ptr(inode->i_rdev)) != NULL) {
  1854. drive->usage--;
  1855. if (drive->driver != NULL)
  1856. DRIVER(drive)->release(inode, file, drive);
  1857. }
  1858. return 0;
  1859. }
  1860. int ide_replace_subdriver (ide_drive_t *drive, const char *driver)
  1861. {
  1862. if (!drive->present || drive->busy || drive->usage)
  1863. goto abort;
  1864. if (drive->driver != NULL && DRIVER(drive)->cleanup(drive))
  1865. goto abort;
  1866. strncpy(drive->driver_req, driver, 9);
  1867. ide_driver_module();
  1868. drive->driver_req[0] = 0;
  1869. ide_driver_module();
  1870. if (DRIVER(drive) && !strcmp(DRIVER(drive)->name, driver))
  1871. return 0;
  1872. abort:
  1873. return 1;
  1874. }
  1875. #ifdef CONFIG_PROC_FS
  1876. ide_proc_entry_t generic_subdriver_entries[] = {
  1877. { "capacity", S_IFREG|S_IRUGO, proc_ide_read_capacity, NULL },
  1878. { NULL, 0, NULL, NULL }
  1879. };
  1880. #endif
  1881. /*
  1882.  * Note that we only release the standard ports,
  1883.  * and do not even try to handle any extra ports
  1884.  * allocated for weird IDE interface chipsets.
  1885.  */
  1886. void hwif_unregister (ide_hwif_t *hwif)
  1887. {
  1888. if (hwif->straight8) {
  1889. ide_release_region(hwif->io_ports[IDE_DATA_OFFSET], 8);
  1890. goto jump_eight;
  1891. }
  1892. if (hwif->io_ports[IDE_DATA_OFFSET])
  1893. ide_release_region(hwif->io_ports[IDE_DATA_OFFSET], 1);
  1894. if (hwif->io_ports[IDE_ERROR_OFFSET])
  1895. ide_release_region(hwif->io_ports[IDE_ERROR_OFFSET], 1);
  1896. if (hwif->io_ports[IDE_NSECTOR_OFFSET])
  1897. ide_release_region(hwif->io_ports[IDE_NSECTOR_OFFSET], 1);
  1898. if (hwif->io_ports[IDE_SECTOR_OFFSET])
  1899. ide_release_region(hwif->io_ports[IDE_SECTOR_OFFSET], 1);
  1900. if (hwif->io_ports[IDE_LCYL_OFFSET])
  1901. ide_release_region(hwif->io_ports[IDE_LCYL_OFFSET], 1);
  1902. if (hwif->io_ports[IDE_HCYL_OFFSET])
  1903. ide_release_region(hwif->io_ports[IDE_HCYL_OFFSET], 1);
  1904. if (hwif->io_ports[IDE_SELECT_OFFSET])
  1905. ide_release_region(hwif->io_ports[IDE_SELECT_OFFSET], 1);
  1906. if (hwif->io_ports[IDE_STATUS_OFFSET])
  1907. ide_release_region(hwif->io_ports[IDE_STATUS_OFFSET], 1);
  1908. jump_eight:
  1909. if (hwif->io_ports[IDE_CONTROL_OFFSET])
  1910. ide_release_region(hwif->io_ports[IDE_CONTROL_OFFSET], 1);
  1911. #if defined(CONFIG_AMIGA) || defined(CONFIG_MAC)
  1912. if (hwif->io_ports[IDE_IRQ_OFFSET])
  1913. ide_release_region(hwif->io_ports[IDE_IRQ_OFFSET], 1);
  1914. #endif /* (CONFIG_AMIGA) || (CONFIG_MAC) */
  1915. }
  1916. void ide_unregister (unsigned int index)
  1917. {
  1918. struct gendisk *gd;
  1919. ide_drive_t *drive, *d;
  1920. ide_hwif_t *hwif, *g;
  1921. ide_hwgroup_t *hwgroup;
  1922. int irq_count = 0, unit, i;
  1923. unsigned long flags;
  1924. unsigned int p, minor;
  1925. ide_hwif_t old_hwif;
  1926. if (index >= MAX_HWIFS)
  1927. return;
  1928. save_flags(flags); /* all CPUs */
  1929. cli(); /* all CPUs */
  1930. hwif = &ide_hwifs[index];
  1931. if (!hwif->present)
  1932. goto abort;
  1933. for (unit = 0; unit < MAX_DRIVES; ++unit) {
  1934. drive = &hwif->drives[unit];
  1935. if (!drive->present)
  1936. continue;
  1937. if (drive->busy || drive->usage)
  1938. goto abort;
  1939. if (drive->driver != NULL && DRIVER(drive)->cleanup(drive))
  1940. goto abort;
  1941. }
  1942. hwif->present = 0;
  1943. /*
  1944.  * All clear?  Then blow away the buffer cache
  1945.  */
  1946. sti();
  1947. for (unit = 0; unit < MAX_DRIVES; ++unit) {
  1948. drive = &hwif->drives[unit];
  1949. if (!drive->present)
  1950. continue;
  1951. minor = drive->select.b.unit << PARTN_BITS;
  1952. for (p = 0; p < (1<<PARTN_BITS); ++p) {
  1953. if (drive->part[p].nr_sects > 0) {
  1954. kdev_t devp = MKDEV(hwif->major, minor+p);
  1955. invalidate_device(devp, 0);
  1956. }
  1957. }
  1958. #ifdef CONFIG_PROC_FS
  1959. destroy_proc_ide_drives(hwif);
  1960. #endif
  1961. }
  1962. cli();
  1963. hwgroup = hwif->hwgroup;
  1964. /*
  1965.  * free the irq if we were the only hwif using it
  1966.  */
  1967. g = hwgroup->hwif;
  1968. do {
  1969. if (g->irq == hwif->irq)
  1970. ++irq_count;
  1971. g = g->next;
  1972. } while (g != hwgroup->hwif);
  1973. if (irq_count == 1)
  1974. free_irq(hwif->irq, hwgroup);
  1975. /*
  1976.  * Note that we only release the standard ports,
  1977.  * and do not even try to handle any extra ports
  1978.  * allocated for weird IDE interface chipsets.
  1979.  */
  1980. hwif_unregister(hwif);
  1981. /*
  1982.  * Remove us from the hwgroup, and free
  1983.  * the hwgroup if we were the only member
  1984.  */
  1985. d = hwgroup->drive;
  1986. for (i = 0; i < MAX_DRIVES; ++i) {
  1987. drive = &hwif->drives[i];
  1988. if (drive->de) {
  1989. devfs_unregister (drive->de);
  1990. drive->de = NULL;
  1991. }
  1992. if (!drive->present)
  1993. continue;
  1994. while (hwgroup->drive->next != drive)
  1995. hwgroup->drive = hwgroup->drive->next;
  1996. hwgroup->drive->next = drive->next;
  1997. if (hwgroup->drive == drive)
  1998. hwgroup->drive = NULL;
  1999. if (drive->id != NULL) {
  2000. kfree(drive->id);
  2001. drive->id = NULL;
  2002. }
  2003. drive->present = 0;
  2004. blk_cleanup_queue(&drive->queue);
  2005. }
  2006. if (d->present)
  2007. hwgroup->drive = d;
  2008. while (hwgroup->hwif->next != hwif)
  2009. hwgroup->hwif = hwgroup->hwif->next;
  2010. hwgroup->hwif->next = hwif->next;
  2011. if (hwgroup->hwif == hwif)
  2012. kfree(hwgroup);
  2013. else
  2014. hwgroup->hwif = HWIF(hwgroup->drive);
  2015. #if defined(CONFIG_BLK_DEV_IDEDMA) && !defined(CONFIG_DMA_NONPCI)
  2016. if (hwif->dma_base) {
  2017. (void) ide_release_dma(hwif);
  2018. hwif->dma_base = 0;
  2019. }
  2020. #endif /* (CONFIG_BLK_DEV_IDEDMA) && !(CONFIG_DMA_NONPCI) */
  2021. /*
  2022.  * Remove us from the kernel's knowledge
  2023.  */
  2024. unregister_blkdev(hwif->major, hwif->name);
  2025. kfree(blksize_size[hwif->major]);
  2026. kfree(max_sectors[hwif->major]);
  2027. kfree(max_readahead[hwif->major]);
  2028. blk_dev[hwif->major].data = NULL;
  2029. blk_dev[hwif->major].queue = NULL;
  2030. blksize_size[hwif->major] = NULL;
  2031. gd = hwif->gd;
  2032. if (gd) {
  2033. del_gendisk(gd);
  2034. kfree(gd->sizes);
  2035. kfree(gd->part);
  2036. if (gd->de_arr)
  2037. kfree (gd->de_arr);
  2038. if (gd->flags)
  2039. kfree (gd->flags);
  2040. kfree(gd);
  2041. hwif->gd = NULL;
  2042. }
  2043. old_hwif = *hwif;
  2044. init_hwif_data (index); /* restore hwif data to pristine status */
  2045. hwif->hwgroup = old_hwif.hwgroup;
  2046. hwif->tuneproc = old_hwif.tuneproc;
  2047. hwif->speedproc = old_hwif.speedproc;
  2048. hwif->selectproc = old_hwif.selectproc;
  2049. hwif->resetproc = old_hwif.resetproc;
  2050. hwif->intrproc = old_hwif.intrproc;
  2051. hwif->maskproc = old_hwif.maskproc;
  2052. hwif->quirkproc = old_hwif.quirkproc;
  2053. hwif->rwproc = old_hwif.rwproc;
  2054. hwif->ideproc = old_hwif.ideproc;
  2055. hwif->dmaproc = old_hwif.dmaproc;
  2056. hwif->busproc = old_hwif.busproc;
  2057. hwif->bus_state = old_hwif.bus_state;
  2058. hwif->dma_base = old_hwif.dma_base;
  2059. hwif->dma_extra = old_hwif.dma_extra;
  2060. hwif->config_data = old_hwif.config_data;
  2061. hwif->select_data = old_hwif.select_data;
  2062. hwif->proc = old_hwif.proc;
  2063. #ifndef CONFIG_BLK_DEV_IDECS
  2064. hwif->irq = old_hwif.irq;
  2065. #endif /* CONFIG_BLK_DEV_IDECS */
  2066. hwif->major = old_hwif.major;
  2067. hwif->chipset = old_hwif.chipset;
  2068. hwif->autodma = old_hwif.autodma;
  2069. hwif->udma_four = old_hwif.udma_four;
  2070. #ifdef CONFIG_BLK_DEV_IDEPCI
  2071. hwif->pci_dev = old_hwif.pci_dev;
  2072. hwif->pci_devid = old_hwif.pci_devid;
  2073. #endif /* CONFIG_BLK_DEV_IDEPCI */
  2074. hwif->straight8 = old_hwif.straight8;
  2075. hwif->hwif_data = old_hwif.hwif_data;
  2076. abort:
  2077. restore_flags(flags); /* all CPUs */
  2078. }
  2079. /*
  2080.  * Setup hw_regs_t structure described by parameters.  You
  2081.  * may set up the hw structure yourself OR use this routine to
  2082.  * do it for you.
  2083.  */
  2084. void ide_setup_ports ( hw_regs_t *hw,
  2085. ide_ioreg_t base, int *offsets,
  2086. ide_ioreg_t ctrl, ide_ioreg_t intr,
  2087. ide_ack_intr_t *ack_intr, int irq)
  2088. {
  2089. int i;
  2090. for (i = 0; i < IDE_NR_PORTS; i++) {
  2091. if (offsets[i] == -1) {
  2092. switch(i) {
  2093. case IDE_CONTROL_OFFSET:
  2094. hw->io_ports[i] = ctrl;
  2095. break;
  2096. #if defined(CONFIG_AMIGA) || defined(CONFIG_MAC)
  2097. case IDE_IRQ_OFFSET:
  2098. hw->io_ports[i] = intr;
  2099. break;
  2100. #endif /* (CONFIG_AMIGA) || (CONFIG_MAC) */
  2101. default:
  2102. hw->io_ports[i] = 0;
  2103. break;
  2104. }
  2105. } else {
  2106. hw->io_ports[i] = base + offsets[i];
  2107. }
  2108. }
  2109. hw->irq = irq;
  2110. hw->dma = NO_DMA;
  2111. hw->ack_intr = ack_intr;
  2112. }
  2113. /*
  2114.  * Register an IDE interface, specifing exactly the registers etc
  2115.  * Set init=1 iff calling before probes have taken place.
  2116.  */
  2117. int ide_register_hw (hw_regs_t *hw, ide_hwif_t **hwifp)
  2118. {
  2119. int index, retry = 1;
  2120. ide_hwif_t *hwif;
  2121. do {
  2122. for (index = 0; index < MAX_HWIFS; ++index) {
  2123. hwif = &ide_hwifs[index];
  2124. if (hwif->hw.io_ports[IDE_DATA_OFFSET] == hw->io_ports[IDE_DATA_OFFSET])
  2125. goto found;
  2126. }
  2127. for (index = 0; index < MAX_HWIFS; ++index) {
  2128. hwif = &ide_hwifs[index];
  2129. if ((!hwif->present && !hwif->mate && !initializing) ||
  2130.     (!hwif->hw.io_ports[IDE_DATA_OFFSET] && initializing))
  2131. goto found;
  2132. }
  2133. for (index = 0; index < MAX_HWIFS; index++)
  2134. ide_unregister(index);
  2135. } while (retry--);
  2136. return -1;
  2137. found:
  2138. if (hwif->present)
  2139. ide_unregister(index);
  2140. if (hwif->present)
  2141. return -1;
  2142. memcpy(&hwif->hw, hw, sizeof(*hw));
  2143. memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->hw.io_ports));
  2144. hwif->irq = hw->irq;
  2145. hwif->noprobe = 0;
  2146. if (!initializing) {
  2147. ide_probe_module();
  2148. #ifdef CONFIG_PROC_FS
  2149. create_proc_ide_interfaces();
  2150. #endif
  2151. ide_driver_module();
  2152. }
  2153. if (hwifp)
  2154. *hwifp = hwif;
  2155. return (initializing || hwif->present) ? index : -1;
  2156. }
  2157. /*
  2158.  * Compatability function with existing drivers.  If you want
  2159.  * something different, use the function above.
  2160.  */
  2161. int ide_register (int arg1, int arg2, int irq)
  2162. {
  2163. hw_regs_t hw;
  2164. ide_init_hwif_ports(&hw, (ide_ioreg_t) arg1, (ide_ioreg_t) arg2, NULL);
  2165. hw.irq = irq;
  2166. return ide_register_hw(&hw, NULL);
  2167. }
  2168. void ide_add_setting (ide_drive_t *drive, const char *name, int rw, int read_ioctl, int write_ioctl, int data_type, int min, int max, int mul_factor, int div_factor, void *data, ide_procset_t *set)
  2169. {
  2170. ide_settings_t **p = (ide_settings_t **) &drive->settings, *setting = NULL;
  2171. while ((*p) && strcmp((*p)->name, name) < 0)
  2172. p = &((*p)->next);
  2173. if ((setting = kmalloc(sizeof(*setting), GFP_KERNEL)) == NULL)
  2174. goto abort;
  2175. memset(setting, 0, sizeof(*setting));
  2176. if ((setting->name = kmalloc(strlen(name) + 1, GFP_KERNEL)) == NULL)
  2177. goto abort;
  2178. strcpy(setting->name, name); setting->rw = rw;
  2179. setting->read_ioctl = read_ioctl; setting->write_ioctl = write_ioctl;
  2180. setting->data_type = data_type; setting->min = min;
  2181. setting->max = max; setting->mul_factor = mul_factor;
  2182. setting->div_factor = div_factor; setting->data = data;
  2183. setting->set = set; setting->next = *p;
  2184. if (drive->driver)
  2185. setting->auto_remove = 1;
  2186. *p = setting;
  2187. return;
  2188. abort:
  2189. if (setting)
  2190. kfree(setting);
  2191. }
  2192. void ide_remove_setting (ide_drive_t *drive, char *name)
  2193. {
  2194. ide_settings_t **p = (ide_settings_t **) &drive->settings, *setting;
  2195. while ((*p) && strcmp((*p)->name, name))
  2196. p = &((*p)->next);
  2197. if ((setting = (*p)) == NULL)
  2198. return;
  2199. (*p) = setting->next;
  2200. kfree(setting->name);
  2201. kfree(setting);
  2202. }
  2203. static ide_settings_t *ide_find_setting_by_ioctl (ide_drive_t *drive, int cmd)
  2204. {
  2205. ide_settings_t *setting = drive->settings;
  2206. while (setting) {
  2207. if (setting->read_ioctl == cmd || setting->write_ioctl == cmd)
  2208. break;
  2209. setting = setting->next;
  2210. }
  2211. return setting;
  2212. }
  2213. ide_settings_t *ide_find_setting_by_name (ide_drive_t *drive, char *name)
  2214. {
  2215. ide_settings_t *setting = drive->settings;
  2216. while (setting) {
  2217. if (strcmp(setting->name, name) == 0)
  2218. break;
  2219. setting = setting->next;
  2220. }
  2221. return setting;
  2222. }
  2223. static void auto_remove_settings (ide_drive_t *drive)
  2224. {
  2225. ide_settings_t *setting;
  2226. repeat:
  2227. setting = drive->settings;
  2228. while (setting) {
  2229. if (setting->auto_remove) {
  2230. ide_remove_setting(drive, setting->name);
  2231. goto repeat;
  2232. }
  2233. setting = setting->next;
  2234. }
  2235. }
  2236. int ide_read_setting (ide_drive_t *drive, ide_settings_t *setting)
  2237. {
  2238. int val = -EINVAL;
  2239. unsigned long flags;
  2240. if ((setting->rw & SETTING_READ)) {
  2241. spin_lock_irqsave(&io_request_lock, flags);
  2242. switch(setting->data_type) {
  2243. case TYPE_BYTE:
  2244. val = *((u8 *) setting->data);
  2245. break;
  2246. case TYPE_SHORT:
  2247. val = *((u16 *) setting->data);
  2248. break;
  2249. case TYPE_INT:
  2250. case TYPE_INTA:
  2251. val = *((u32 *) setting->data);
  2252. break;
  2253. }
  2254. spin_unlock_irqrestore(&io_request_lock, flags);
  2255. }
  2256. return val;
  2257. }
  2258. int ide_spin_wait_hwgroup (ide_drive_t *drive)
  2259. {
  2260. ide_hwgroup_t *hwgroup = HWGROUP(drive);
  2261. unsigned long timeout = jiffies + (3 * HZ);
  2262. spin_lock_irq(&io_request_lock);
  2263. while (hwgroup->busy) {
  2264. unsigned long lflags;
  2265. spin_unlock_irq(&io_request_lock);
  2266. __save_flags(lflags); /* local CPU only */
  2267. __sti(); /* local CPU only; needed for jiffies */
  2268. if (0 < (signed long)(jiffies - timeout)) {
  2269. __restore_flags(lflags); /* local CPU only */
  2270. printk("%s: channel busyn", drive->name);
  2271. return -EBUSY;
  2272. }
  2273. __restore_flags(lflags); /* local CPU only */
  2274. spin_lock_irq(&io_request_lock);
  2275. }
  2276. return 0;
  2277. }
  2278. /*
  2279.  * FIXME:  This should be changed to enqueue a special request
  2280.  * to the driver to change settings, and then wait on a sema for completion.
  2281.  * The current scheme of polling is kludgey, though safe enough.
  2282.  */
  2283. int ide_write_setting (ide_drive_t *drive, ide_settings_t *setting, int val)
  2284. {
  2285. int i;
  2286. u32 *p;
  2287. if (!capable(CAP_SYS_ADMIN))
  2288. return -EACCES;
  2289. if (!(setting->rw & SETTING_WRITE))
  2290. return -EPERM;
  2291. if (val < setting->min || val > setting->max)
  2292. return -EINVAL;
  2293. if (setting->set)
  2294. return setting->set(drive, val);
  2295. if (ide_spin_wait_hwgroup(drive))
  2296. return -EBUSY;
  2297. switch (setting->data_type) {
  2298. case TYPE_BYTE:
  2299. *((u8 *) setting->data) = val;
  2300. break;
  2301. case TYPE_SHORT:
  2302. *((u16 *) setting->data) = val;
  2303. break;
  2304. case TYPE_INT:
  2305. *((u32 *) setting->data) = val;
  2306. break;
  2307. case TYPE_INTA:
  2308. p = (u32 *) setting->data;
  2309. for (i = 0; i < 1 << PARTN_BITS; i++, p++)
  2310. *p = val;
  2311. break;
  2312. }
  2313. spin_unlock_irq(&io_request_lock);
  2314. return 0;
  2315. }
  2316. static int set_io_32bit(ide_drive_t *drive, int arg)
  2317. {
  2318. drive->io_32bit = arg;
  2319. #ifdef CONFIG_BLK_DEV_DTC2278
  2320. if (HWIF(drive)->chipset == ide_dtc2278)
  2321. HWIF(drive)->drives[!drive->select.b.unit].io_32bit = arg;
  2322. #endif /* CONFIG_BLK_DEV_DTC2278 */
  2323. return 0;
  2324. }
  2325. static int set_using_dma (ide_drive_t *drive, int arg)
  2326. {
  2327. if (!drive->driver || !DRIVER(drive)->supports_dma)
  2328. return -EPERM;
  2329. if (!drive->id || !(drive->id->capability & 1) || !HWIF(drive)->dmaproc)
  2330. return -EPERM;
  2331. if (HWIF(drive)->dmaproc(arg ? ide_dma_on : ide_dma_off, drive))
  2332. return -EIO;
  2333. return 0;
  2334. }
  2335. static int set_pio_mode (ide_drive_t *drive, int arg)
  2336. {
  2337. struct request rq;
  2338. if (!HWIF(drive)->tuneproc)
  2339. return -ENOSYS;
  2340. if (drive->special.b.set_tune)
  2341. return -EBUSY;
  2342. ide_init_drive_cmd(&rq);
  2343. drive->tune_req = (byte) arg;
  2344. drive->special.b.set_tune = 1;
  2345. (void) ide_do_drive_cmd (drive, &rq, ide_wait);
  2346. return 0;
  2347. }
  2348. void ide_add_generic_settings (ide_drive_t *drive)
  2349. {
  2350. /*
  2351.  * drive setting name read/write access read ioctl write ioctl data type min max mul_factor div_factor data pointer set function
  2352.  */
  2353. ide_add_setting(drive, "io_32bit", drive->no_io_32bit ? SETTING_READ : SETTING_RW, HDIO_GET_32BIT, HDIO_SET_32BIT, TYPE_BYTE, 0, 1 + (SUPPORT_VLB_SYNC << 1), 1, 1, &drive->io_32bit, set_io_32bit);
  2354. ide_add_setting(drive, "keepsettings", SETTING_RW, HDIO_GET_KEEPSETTINGS, HDIO_SET_KEEPSETTINGS, TYPE_BYTE, 0, 1, 1, 1, &drive->keep_settings, NULL);
  2355. ide_add_setting(drive, "nice1", SETTING_RW, -1, -1, TYPE_BYTE, 0, 1, 1, 1, &drive->nice1, NULL);
  2356. ide_add_setting(drive, "pio_mode", SETTING_WRITE, -1, HDIO_SET_PIO_MODE, TYPE_BYTE, 0, 255, 1, 1, NULL, set_pio_mode);
  2357. ide_add_setting(drive, "slow", SETTING_RW, -1, -1, TYPE_BYTE, 0, 1, 1, 1, &drive->slow, NULL);
  2358. ide_add_setting(drive, "unmaskirq", drive->no_unmask ? SETTING_READ : SETTING_RW, HDIO_GET_UNMASKINTR, HDIO_SET_UNMASKINTR, TYPE_BYTE, 0, 1, 1, 1, &drive->unmask, NULL);
  2359. ide_add_setting(drive, "using_dma", SETTING_RW, HDIO_GET_DMA, HDIO_SET_DMA, TYPE_BYTE, 0, 1, 1, 1, &drive->using_dma, set_using_dma);
  2360. ide_add_setting(drive, "ide_scsi", SETTING_RW, -1, -1, TYPE_BYTE, 0, 1, 1, 1, &drive->scsi, NULL);
  2361. ide_add_setting(drive, "init_speed", SETTING_RW, -1, -1, TYPE_BYTE, 0, 69, 1, 1, &drive->init_speed, NULL);
  2362. ide_add_setting(drive, "current_speed", SETTING_RW, -1, -1, TYPE_BYTE, 0, 69, 1, 1, &drive->current_speed, NULL);
  2363. ide_add_setting(drive, "number", SETTING_RW, -1, -1, TYPE_BYTE, 0, 3, 1, 1, &drive->dn, NULL);
  2364. }
  2365. int ide_wait_cmd (ide_drive_t *drive, int cmd, int nsect, int feature, int sectors, byte *buf)
  2366. {
  2367. struct request rq;
  2368. byte buffer[4];
  2369. if (!buf)
  2370. buf = buffer;
  2371. memset(buf, 0, 4 + SECTOR_WORDS * 4 * sectors);
  2372. ide_init_drive_cmd(&rq);
  2373. rq.buffer = buf;
  2374. *buf++ = cmd;
  2375. *buf++ = nsect;
  2376. *buf++ = feature;
  2377. *buf++ = sectors;
  2378. return ide_do_drive_cmd(drive, &rq, ide_wait);
  2379. }
  2380. int ide_wait_cmd_task (ide_drive_t *drive, byte *buf)
  2381. {
  2382. struct request rq;
  2383. ide_init_drive_cmd(&rq);
  2384. rq.cmd = IDE_DRIVE_TASK;
  2385. rq.buffer = buf;
  2386. return ide_do_drive_cmd(drive, &rq, ide_wait);
  2387. }
  2388. /*
  2389.  * Delay for *at least* 50ms.  As we don't know how much time is left
  2390.  * until the next tick occurs, we wait an extra tick to be safe.
  2391.  * This is used only during the probing/polling for drives at boot time.
  2392.  *
  2393.  * However, its usefullness may be needed in other places, thus we export it now.
  2394.  * The future may change this to a millisecond setable delay.
  2395.  */
  2396. void ide_delay_50ms (void)
  2397. {
  2398. #ifndef CONFIG_BLK_DEV_IDECS
  2399. mdelay(50);
  2400. #else
  2401. __set_current_state(TASK_UNINTERRUPTIBLE);
  2402. schedule_timeout(HZ/20);
  2403. #endif /* CONFIG_BLK_DEV_IDECS */
  2404. }
  2405. int system_bus_clock (void)
  2406. {
  2407. return((int) ((!system_bus_speed) ? ide_system_bus_speed() : system_bus_speed ));
  2408. }
  2409. static int ide_ioctl (struct inode *inode, struct file *file,
  2410. unsigned int cmd, unsigned long arg)
  2411. {
  2412. int err = 0, major, minor;
  2413. ide_drive_t *drive;
  2414. struct request rq;
  2415. kdev_t dev;
  2416. ide_settings_t *setting;
  2417. if (!inode || !(dev = inode->i_rdev))
  2418. return -EINVAL;
  2419. major = MAJOR(dev); minor = MINOR(dev);
  2420. if ((drive = get_info_ptr(inode->i_rdev)) == NULL)
  2421. return -ENODEV;
  2422. if ((setting = ide_find_setting_by_ioctl(drive, cmd)) != NULL) {
  2423. if (cmd == setting->read_ioctl) {
  2424. err = ide_read_setting(drive, setting);
  2425. return err >= 0 ? put_user(err, (long *) arg) : err;
  2426. } else {
  2427. if ((MINOR(inode->i_rdev) & PARTN_MASK))
  2428. return -EINVAL;
  2429. return ide_write_setting(drive, setting, arg);
  2430. }
  2431. }
  2432. ide_init_drive_cmd (&rq);
  2433. switch (cmd) {
  2434. case HDIO_GETGEO:
  2435. {
  2436. struct hd_geometry *loc = (struct hd_geometry *) arg;
  2437. unsigned short bios_cyl = drive->bios_cyl; /* truncate */
  2438. if (!loc || (drive->media != ide_disk && drive->media != ide_floppy)) return -EINVAL;
  2439. if (put_user(drive->bios_head, (byte *) &loc->heads)) return -EFAULT;
  2440. if (put_user(drive->bios_sect, (byte *) &loc->sectors)) return -EFAULT;
  2441. if (put_user(bios_cyl, (unsigned short *) &loc->cylinders)) return -EFAULT;
  2442. if (put_user((unsigned)drive->part[MINOR(inode->i_rdev)&PARTN_MASK].start_sect,
  2443. (unsigned long *) &loc->start)) return -EFAULT;
  2444. return 0;
  2445. }
  2446. case HDIO_GETGEO_BIG:
  2447. {
  2448. struct hd_big_geometry *loc = (struct hd_big_geometry *) arg;
  2449. if (!loc || (drive->media != ide_disk && drive->media != ide_floppy)) return -EINVAL;
  2450. if (put_user(drive->bios_head, (byte *) &loc->heads)) return -EFAULT;
  2451. if (put_user(drive->bios_sect, (byte *) &loc->sectors)) return -EFAULT;
  2452. if (put_user(drive->bios_cyl, (unsigned int *) &loc->cylinders)) return -EFAULT;
  2453. if (put_user((unsigned)drive->part[MINOR(inode->i_rdev)&PARTN_MASK].start_sect,
  2454. (unsigned long *) &loc->start)) return -EFAULT;
  2455. return 0;
  2456. }
  2457. case HDIO_GETGEO_BIG_RAW:
  2458. {
  2459. struct hd_big_geometry *loc = (struct hd_big_geometry *) arg;
  2460. if (!loc || (drive->media != ide_disk && drive->media != ide_floppy)) return -EINVAL;
  2461. if (put_user(drive->head, (byte *) &loc->heads)) return -EFAULT;
  2462. if (put_user(drive->sect, (byte *) &loc->sectors)) return -EFAULT;
  2463. if (put_user(drive->cyl, (unsigned int *) &loc->cylinders)) return -EFAULT;
  2464. if (put_user((unsigned)drive->part[MINOR(inode->i_rdev)&PARTN_MASK].start_sect,
  2465. (unsigned long *) &loc->start)) return -EFAULT;
  2466. return 0;
  2467. }
  2468.   case BLKGETSIZE:   /* Return device size */
  2469. return put_user(drive->part[MINOR(inode->i_rdev)&PARTN_MASK].nr_sects, (unsigned long *) arg);
  2470.   case BLKGETSIZE64:
  2471. return put_user((u64)drive->part[MINOR(inode->i_rdev)&PARTN_MASK].nr_sects << 9, (u64 *) arg);
  2472. case BLKRRPART: /* Re-read partition tables */
  2473. if (!capable(CAP_SYS_ADMIN)) return -EACCES;
  2474. return ide_revalidate_disk(inode->i_rdev);
  2475. case HDIO_OBSOLETE_IDENTITY:
  2476. case HDIO_GET_IDENTITY:
  2477. if (MINOR(inode->i_rdev) & PARTN_MASK)
  2478. return -EINVAL;
  2479. if (drive->id == NULL)
  2480. return -ENOMSG;
  2481. if (copy_to_user((char *)arg, (char *)drive->id, (cmd == HDIO_GET_IDENTITY) ? sizeof(*drive->id) : 142))
  2482. return -EFAULT;
  2483. return 0;
  2484. case HDIO_GET_NICE:
  2485. return put_user(drive->dsc_overlap << IDE_NICE_DSC_OVERLAP |
  2486. drive->atapi_overlap << IDE_NICE_ATAPI_OVERLAP |
  2487. drive->nice0 <<  IDE_NICE_0 |
  2488. drive->nice1 << IDE_NICE_1 |
  2489. drive->nice2 << IDE_NICE_2,
  2490. (long *) arg);
  2491. case HDIO_DRIVE_CMD:
  2492. {
  2493. byte args[4], *argbuf = args;
  2494. byte xfer_rate = 0;
  2495. int argsize = 4;
  2496. if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) return -EACCES;
  2497. if (NULL == (void *) arg)
  2498. return ide_do_drive_cmd(drive, &rq, ide_wait);
  2499. if (copy_from_user(args, (void *)arg, 4))
  2500. return -EFAULT;
  2501. if (args[3]) {
  2502. argsize = 4 + (SECTOR_WORDS * 4 * args[3]);
  2503. argbuf = kmalloc(argsize, GFP_KERNEL);
  2504. if (argbuf == NULL)
  2505. return -ENOMEM;
  2506. memcpy(argbuf, args, 4);
  2507. }
  2508. if (set_transfer(drive, args[0], args[1], args[2])) {
  2509. xfer_rate = args[1];
  2510. if (ide_ata66_check(drive, args[0], args[1], args[2]))
  2511. goto abort;
  2512. }
  2513. err = ide_wait_cmd(drive, args[0], args[1], args[2], args[3], argbuf);
  2514. if (!err && xfer_rate) {
  2515. /* active-retuning-calls future */
  2516. if ((HWIF(drive)->speedproc) != NULL)
  2517. HWIF(drive)->speedproc(drive, xfer_rate);
  2518. ide_driveid_update(drive);
  2519. }
  2520. abort:
  2521. if (copy_to_user((void *)arg, argbuf, argsize))
  2522. err = -EFAULT;
  2523. if (argsize > 4)
  2524. kfree(argbuf);
  2525. return err;
  2526. }
  2527. case HDIO_DRIVE_TASK:
  2528. {
  2529. byte args[7], *argbuf = args;
  2530. int argsize = 7;
  2531. if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) return -EACCES;
  2532. if (copy_from_user(args, (void *)arg, 7))
  2533. return -EFAULT;
  2534. err = ide_wait_cmd_task(drive, argbuf);
  2535. if (copy_to_user((void *)arg, argbuf, argsize))
  2536. err = -EFAULT;
  2537. return err;
  2538. }
  2539. case HDIO_SCAN_HWIF:
  2540. {
  2541. int args[3];
  2542. if (!capable(CAP_SYS_ADMIN)) return -EACCES;
  2543. if (copy_from_user(args, (void *)arg, 3 * sizeof(int)))
  2544. return -EFAULT;
  2545. if (ide_register(args[0], args[1], args[2]) == -1)
  2546. return -EIO;
  2547. return 0;
  2548. }
  2549.         case HDIO_UNREGISTER_HWIF:
  2550. if (!capable(CAP_SYS_ADMIN)) return -EACCES;
  2551. /* (arg > MAX_HWIFS) checked in function */
  2552. ide_unregister(arg);
  2553. return 0;
  2554. case HDIO_SET_NICE:
  2555. if (!capable(CAP_SYS_ADMIN)) return -EACCES;
  2556. if (drive->driver == NULL)
  2557. return -EPERM;
  2558. if (arg != (arg & ((1 << IDE_NICE_DSC_OVERLAP) | (1 << IDE_NICE_1))))
  2559. return -EPERM;
  2560. drive->dsc_overlap = (arg >> IDE_NICE_DSC_OVERLAP) & 1;
  2561. if (drive->dsc_overlap && !DRIVER(drive)->supports_dsc_overlap) {
  2562. drive->dsc_overlap = 0;
  2563. return -EPERM;
  2564. }
  2565. drive->nice1 = (arg >> IDE_NICE_1) & 1;
  2566. return 0;
  2567. case HDIO_DRIVE_RESET:
  2568. if (!capable(CAP_SYS_ADMIN)) return -EACCES;
  2569. (void) ide_do_reset(drive);
  2570. if (drive->suspend_reset) {
  2571. /*
  2572.  * APM WAKE UP todo !!
  2573.  * int nogoodpower = 1;
  2574.  * while(nogoodpower) {
  2575.  * check_power1() or check_power2()
  2576.  * nogoodpower = 0;
  2577.  * } 
  2578.  * HWIF(drive)->multiproc(drive);
  2579.  */
  2580. return ide_revalidate_disk(inode->i_rdev);
  2581. }
  2582. return 0;
  2583. case BLKROSET:
  2584. case BLKROGET:
  2585. case BLKFLSBUF:
  2586. case BLKSSZGET:
  2587. case BLKPG:
  2588. case BLKELVGET:
  2589. case BLKELVSET:
  2590. case BLKBSZGET:
  2591. case BLKBSZSET:
  2592. return blk_ioctl(inode->i_rdev, cmd, arg);
  2593. case HDIO_GET_BUSSTATE:
  2594. if (!capable(CAP_SYS_ADMIN))
  2595. return -EACCES;
  2596. if (put_user(HWIF(drive)->bus_state, (long *)arg))
  2597. return -EFAULT;
  2598. return 0;
  2599. case HDIO_SET_BUSSTATE:
  2600. if (!capable(CAP_SYS_ADMIN))
  2601. return -EACCES;
  2602. if (HWIF(drive)->busproc)
  2603. HWIF(drive)->busproc(HWIF(drive), arg);
  2604. return 0;
  2605. default:
  2606. if (drive->driver != NULL)
  2607. return DRIVER(drive)->ioctl(drive, inode, file, cmd, arg);
  2608. return -EPERM;
  2609. }
  2610. }
  2611. static int ide_check_media_change (kdev_t i_rdev)
  2612. {
  2613. ide_drive_t *drive;
  2614. if ((drive = get_info_ptr(i_rdev)) == NULL)
  2615. return -ENODEV;
  2616. if (drive->driver != NULL)
  2617. return DRIVER(drive)->media_change(drive);
  2618. return 0;
  2619. }
  2620. void ide_fixstring (byte *s, const int bytecount, const int byteswap)
  2621. {
  2622. byte *p = s, *end = &s[bytecount & ~1]; /* bytecount must be even */
  2623. if (byteswap) {
  2624. /* convert from big-endian to host byte order */
  2625. for (p = end ; p != s;) {
  2626. unsigned short *pp = (unsigned short *) (p -= 2);
  2627. *pp = ntohs(*pp);
  2628. }
  2629. }
  2630. /* strip leading blanks */
  2631. while (s != end && *s == ' ')
  2632. ++s;
  2633. /* compress internal blanks and strip trailing blanks */
  2634. while (s != end && *s) {
  2635. if (*s++ != ' ' || (s != end && *s && *s != ' '))
  2636. *p++ = *(s-1);
  2637. }
  2638. /* wipe out trailing garbage */
  2639. while (p != end)
  2640. *p++ = '';
  2641. }
  2642. /*
  2643.  * stridx() returns the offset of c within s,
  2644.  * or -1 if c is '' or not found within s.
  2645.  */
  2646. static int __init stridx (const char *s, char c)
  2647. {
  2648. char *i = strchr(s, c);
  2649. return (i && c) ? i - s : -1;
  2650. }
  2651. /*
  2652.  * match_parm() does parsing for ide_setup():
  2653.  *
  2654.  * 1. the first char of s must be '='.
  2655.  * 2. if the remainder matches one of the supplied keywords,
  2656.  *     the index (1 based) of the keyword is negated and returned.
  2657.  * 3. if the remainder is a series of no more than max_vals numbers
  2658.  *     separated by commas, the numbers are saved in vals[] and a
  2659.  *     count of how many were saved is returned.  Base10 is assumed,
  2660.  *     and base16 is allowed when prefixed with "0x".
  2661.  * 4. otherwise, zero is returned.
  2662.  */
  2663. static int __init match_parm (char *s, const char *keywords[], int vals[], int max_vals)
  2664. {
  2665. static const char *decimal = "0123456789";
  2666. static const char *hex = "0123456789abcdef";
  2667. int i, n;
  2668. if (*s++ == '=') {
  2669. /*
  2670.  * Try matching against the supplied keywords,
  2671.  * and return -(index+1) if we match one
  2672.  */
  2673. if (keywords != NULL) {
  2674. for (i = 0; *keywords != NULL; ++i) {
  2675. if (!strcmp(s, *keywords++))
  2676. return -(i+1);
  2677. }
  2678. }
  2679. /*
  2680.  * Look for a series of no more than "max_vals"
  2681.  * numeric values separated by commas, in base10,
  2682.  * or base16 when prefixed with "0x".
  2683.  * Return a count of how many were found.
  2684.  */
  2685. for (n = 0; (i = stridx(decimal, *s)) >= 0;) {
  2686. vals[n] = i;
  2687. while ((i = stridx(decimal, *++s)) >= 0)
  2688. vals[n] = (vals[n] * 10) + i;
  2689. if (*s == 'x' && !vals[n]) {
  2690. while ((i = stridx(hex, *++s)) >= 0)
  2691. vals[n] = (vals[n] * 0x10) + i;
  2692. }
  2693. if (++n == max_vals)
  2694. break;
  2695. if (*s == ',' || *s == ';')
  2696. ++s;
  2697. }
  2698. if (!*s)
  2699. return n;
  2700. }
  2701. return 0; /* zero = nothing matched */
  2702. }
  2703. /*
  2704.  * ide_setup() gets called VERY EARLY during initialization,
  2705.  * to handle kernel "command line" strings beginning with "hdx="
  2706.  * or "ide".  Here is the complete set currently supported:
  2707.  *
  2708.  * "hdx="  is recognized for all "x" from "a" to "h", such as "hdc".
  2709.  * "idex=" is recognized for all "x" from "0" to "3", such as "ide1".
  2710.  *
  2711.  * "hdx=noprobe" : drive may be present, but do not probe for it
  2712.  * "hdx=none" : drive is NOT present, ignore cmos and do not probe
  2713.  * "hdx=nowerr" : ignore the WRERR_STAT bit on this drive
  2714.  * "hdx=cdrom" : drive is present, and is a cdrom drive
  2715.  * "hdx=cyl,head,sect" : disk drive is present, with specified geometry
  2716.  * "hdx=noremap" : do not remap 0->1 even though EZD was detected
  2717.  * "hdx=autotune" : driver will attempt to tune interface speed
  2718.  * to the fastest PIO mode supported,
  2719.  * if possible for this drive only.
  2720.  * Not fully supported by all chipset types,
  2721.  * and quite likely to cause trouble with
  2722.  * older/odd IDE drives.
  2723.  *
  2724.  * "hdx=slow" : insert a huge pause after each access to the data
  2725.  * port. Should be used only as a last resort.
  2726.  *
  2727.  * "hdx=swapdata" : when the drive is a disk, byte swap all data
  2728.  * "hdx=bswap" : same as above..........
  2729.  * "hdxlun=xx"          : set the drive last logical unit.
  2730.  * "hdx=flash" : allows for more than one ata_flash disk to be
  2731.  * registered. In most cases, only one device
  2732.  * will be present.
  2733.  * "hdx=scsi" : the return of the ide-scsi flag, this is useful for
  2734.  * allowwing ide-floppy, ide-tape, and ide-cdrom|writers
  2735.  * to use ide-scsi emulation on a device specific option.
  2736.  * "idebus=xx" : inform IDE driver of VESA/PCI bus speed in MHz,
  2737.  * where "xx" is between 20 and 66 inclusive,
  2738.  * used when tuning chipset PIO modes.
  2739.  * For PCI bus, 25 is correct for a P75 system,
  2740.  * 30 is correct for P90,P120,P180 systems,
  2741.  * and 33 is used for P100,P133,P166 systems.
  2742.  * If in doubt, use idebus=33 for PCI.
  2743.  * As for VLB, it is safest to not specify it.
  2744.  *
  2745.  * "idex=noprobe" : do not attempt to access/use this interface
  2746.  * "idex=base" : probe for an interface at the addr specified,
  2747.  * where "base" is usually 0x1f0 or 0x170
  2748.  * and "ctl" is assumed to be "base"+0x206
  2749.  * "idex=base,ctl" : specify both base and ctl
  2750.  * "idex=base,ctl,irq" : specify base, ctl, and irq number
  2751.  * "idex=autotune" : driver will attempt to tune interface speed
  2752.  * to the fastest PIO mode supported,
  2753.  * for all drives on this interface.
  2754.  * Not fully supported by all chipset types,
  2755.  * and quite likely to cause trouble with
  2756.  * older/odd IDE drives.
  2757.  * "idex=noautotune" : driver will NOT attempt to tune interface speed
  2758.  * This is the default for most chipsets,
  2759.  * except the cmd640.
  2760.  * "idex=serialize" : do not overlap operations on idex and ide(x^1)
  2761.  * "idex=four" : four drives on idex and ide(x^1) share same ports
  2762.  * "idex=reset" : reset interface before first use
  2763.  * "idex=dma" : enable DMA by default on both drives if possible
  2764.  * "idex=ata66" : informs the interface that it has an 80c cable
  2765.  * for chipsets that are ATA-66 capable, but
  2766.  * the ablity to bit test for detection is
  2767.  * currently unknown.
  2768.  * "ide=reverse" : Formerly called to pci sub-system, but now local.
  2769.  *
  2770.  * The following are valid ONLY on ide0, (except dc4030)
  2771.  * and the defaults for the base,ctl ports must not be altered.
  2772.  *
  2773.  * "ide0=dtc2278" : probe/support DTC2278 interface
  2774.  * "ide0=ht6560b" : probe/support HT6560B interface
  2775.  * "ide0=cmd640_vlb" : *REQUIRED* for VLB cards with the CMD640 chip
  2776.  *   (not for PCI -- automatically detected)
  2777.  * "ide0=qd65xx" : probe/support qd65xx interface
  2778.  * "ide0=ali14xx" : probe/support ali14xx chipsets (ALI M1439, M1443, M1445)
  2779.  * "ide0=umc8672" : probe/support umc8672 chipsets
  2780.  * "idex=dc4030" : probe/support Promise DC4030VL interface
  2781.  * "ide=doubler" : probe/support IDE doublers on Amiga
  2782.  */
  2783. int __init ide_setup (char *s)
  2784. {
  2785. int i, vals[3];
  2786. ide_hwif_t *hwif;
  2787. ide_drive_t *drive;
  2788. unsigned int hw, unit;
  2789. const char max_drive = 'a' + ((MAX_HWIFS * MAX_DRIVES) - 1);
  2790. const char max_hwif  = '0' + (MAX_HWIFS - 1);
  2791. if (strncmp(s,"hd",2) == 0 && s[2] == '=') /* hd= is for hd.c   */
  2792. return 0; /* driver and not us */
  2793. if (strncmp(s,"ide",3) &&
  2794.     strncmp(s,"idebus",6) &&
  2795.     strncmp(s,"hd",2)) /* hdx= & hdxlun= */
  2796. return 0;
  2797. printk("ide_setup: %s", s);
  2798. init_ide_data ();
  2799. #ifdef CONFIG_BLK_DEV_IDEDOUBLER
  2800. if (!strcmp(s, "ide=doubler")) {
  2801. extern int ide_doubler;
  2802. printk(" : Enabled support for IDE doublersn");
  2803. ide_doubler = 1;
  2804. return 1;
  2805. }
  2806. #endif /* CONFIG_BLK_DEV_IDEDOUBLER */
  2807. if (!strcmp(s, "ide=nodma")) {
  2808. printk("IDE: Prevented DMAn");
  2809. noautodma = 1;
  2810. return 1;
  2811. }
  2812. #ifdef CONFIG_BLK_DEV_IDEPCI
  2813. if (!strcmp(s, "ide=reverse")) {
  2814. ide_scan_direction = 1;
  2815. printk(" : Enabled support for IDE inverse scan order.n");
  2816. return 1;
  2817. }
  2818. #endif /* CONFIG_BLK_DEV_IDEPCI */
  2819. /*
  2820.  * Look for drive options:  "hdx="
  2821.  */
  2822. if (s[0] == 'h' && s[1] == 'd' && s[2] >= 'a' && s[2] <= max_drive) {
  2823. const char *hd_words[] = {"none", "noprobe", "nowerr", "cdrom",
  2824. "serialize", "autotune", "noautotune",
  2825. "slow", "swapdata", "bswap", "flash",
  2826. "remap", "noremap", "scsi", NULL};
  2827. unit = s[2] - 'a';
  2828. hw   = unit / MAX_DRIVES;
  2829. unit = unit % MAX_DRIVES;
  2830. hwif = &ide_hwifs[hw];
  2831. drive = &hwif->drives[unit];
  2832. if (strncmp(s + 4, "ide-", 4) == 0) {
  2833. strncpy(drive->driver_req, s + 4, 9);
  2834. goto done;
  2835. }
  2836. /*
  2837.  * Look for last lun option:  "hdxlun="
  2838.  */
  2839. if (s[3] == 'l' && s[4] == 'u' && s[5] == 'n') {
  2840. if (match_parm(&s[6], NULL, vals, 1) != 1)
  2841. goto bad_option;
  2842. if (vals[0] >= 0 && vals[0] <= 7) {
  2843. drive->last_lun = vals[0];
  2844. drive->forced_lun = 1;
  2845. } else
  2846. printk(" -- BAD LAST LUN! Expected value from 0 to 7");
  2847. goto done;
  2848. }
  2849. switch (match_parm(&s[3], hd_words, vals, 3)) {
  2850. case -1: /* "none" */
  2851. drive->nobios = 1;  /* drop into "noprobe" */
  2852. case -2: /* "noprobe" */
  2853. drive->noprobe = 1;
  2854. goto done;
  2855. case -3: /* "nowerr" */
  2856. drive->bad_wstat = BAD_R_STAT;
  2857. hwif->noprobe = 0;
  2858. goto done;
  2859. case -4: /* "cdrom" */
  2860. drive->present = 1;
  2861. drive->media = ide_cdrom;
  2862. hwif->noprobe = 0;
  2863. goto done;
  2864. case -5: /* "serialize" */
  2865. printk(" -- USE "ide%d=serialize" INSTEAD", hw);
  2866. goto do_serialize;
  2867. case -6: /* "autotune" */
  2868. drive->autotune = 1;
  2869. goto done;
  2870. case -7: /* "noautotune" */
  2871. drive->autotune = 2;
  2872. goto done;
  2873. case -8: /* "slow" */
  2874. drive->slow = 1;
  2875. goto done;
  2876. case -9: /* "swapdata" or "bswap" */
  2877. case -10:
  2878. drive->bswap = 1;
  2879. goto done;
  2880. case -11: /* "flash" */
  2881. drive->ata_flash = 1;
  2882. goto done;
  2883. case -12: /* "remap" */
  2884. drive->remap_0_to_1 = 1;
  2885. goto done;
  2886. case -13: /* "noremap" */
  2887. drive->remap_0_to_1 = 2;
  2888. goto done;
  2889. case -14: /* "scsi" */
  2890. #if defined(CONFIG_BLK_DEV_IDESCSI) && defined(CONFIG_SCSI)
  2891. drive->scsi = 1;
  2892. goto done;
  2893. #else
  2894. drive->scsi = 0;
  2895. goto bad_option;
  2896. #endif /* defined(CONFIG_BLK_DEV_IDESCSI) && defined(CONFIG_SCSI) */
  2897. case 3: /* cyl,head,sect */
  2898. drive->media = ide_disk;
  2899. drive->cyl = drive->bios_cyl  = vals[0];
  2900. drive->head = drive->bios_head = vals[1];
  2901. drive->sect = drive->bios_sect = vals[2];
  2902. drive->present = 1;
  2903. drive->forced_geom = 1;
  2904. hwif->noprobe = 0;
  2905. goto done;
  2906. default:
  2907. goto bad_option;
  2908. }
  2909. }
  2910. if (s[0] != 'i' || s[1] != 'd' || s[2] != 'e')
  2911. goto bad_option;
  2912. /*
  2913.  * Look for bus speed option:  "idebus="
  2914.  */
  2915. if (s[3] == 'b' && s[4] == 'u' && s[5] == 's') {
  2916. if (match_parm(&s[6], NULL, vals, 1) != 1)
  2917. goto bad_option;
  2918. if (vals[0] >= 20 && vals[0] <= 66) {
  2919. idebus_parameter = vals[0];
  2920. } else
  2921. printk(" -- BAD BUS SPEED! Expected value from 20 to 66");
  2922. goto done;
  2923. }
  2924. /*
  2925.  * Look for interface options:  "idex="
  2926.  */
  2927. if (s[3] >= '0' && s[3] <= max_hwif) {
  2928. /*
  2929.  * Be VERY CAREFUL changing this: note hardcoded indexes below
  2930.  * -8,-9,-10 : are reserved for future idex calls to ease the hardcoding.
  2931.  */
  2932. const char *ide_words[] = {
  2933. "noprobe", "serialize", "autotune", "noautotune", "reset", "dma", "ata66",
  2934. "minus8", "minus9", "minus10",
  2935. "four", "qd65xx", "ht6560b", "cmd640_vlb", "dtc2278", "umc8672", "ali14xx", "dc4030", NULL };
  2936. hw = s[3] - '0';
  2937. hwif = &ide_hwifs[hw];
  2938. i = match_parm(&s[4], ide_words, vals, 3);
  2939. /*
  2940.  * Cryptic check to ensure chipset not already set for hwif:
  2941.  */
  2942. if (i > 0 || i <= -11) { /* is parameter a chipset name? */
  2943. if (hwif->chipset != ide_unknown)
  2944. goto bad_option; /* chipset already specified */
  2945. if (i <= -11 && i != -18 && hw != 0)
  2946. goto bad_hwif; /* chipset drivers are for "ide0=" only */
  2947. if (i <= -11 && i != -18 && ide_hwifs[hw+1].chipset != ide_unknown)
  2948. goto bad_option; /* chipset for 2nd port already specified */
  2949. printk("n");
  2950. }
  2951. switch (i) {
  2952. #ifdef CONFIG_BLK_DEV_PDC4030
  2953. case -18: /* "dc4030" */
  2954. {
  2955. extern void init_pdc4030(void);
  2956. init_pdc4030();
  2957. goto done;
  2958. }
  2959. #endif /* CONFIG_BLK_DEV_PDC4030 */
  2960. #ifdef CONFIG_BLK_DEV_ALI14XX
  2961. case -17: /* "ali14xx" */
  2962. {
  2963. extern void init_ali14xx (void);
  2964. init_ali14xx();
  2965. goto done;
  2966. }
  2967. #endif /* CONFIG_BLK_DEV_ALI14XX */
  2968. #ifdef CONFIG_BLK_DEV_UMC8672
  2969. case -16: /* "umc8672" */
  2970. {
  2971. extern void init_umc8672 (void);
  2972. init_umc8672();
  2973. goto done;
  2974. }
  2975. #endif /* CONFIG_BLK_DEV_UMC8672 */
  2976. #ifdef CONFIG_BLK_DEV_DTC2278
  2977. case -15: /* "dtc2278" */
  2978. {
  2979. extern void init_dtc2278 (void);
  2980. init_dtc2278();
  2981. goto done;
  2982. }
  2983. #endif /* CONFIG_BLK_DEV_DTC2278 */
  2984. #ifdef CONFIG_BLK_DEV_CMD640
  2985. case -14: /* "cmd640_vlb" */
  2986. {
  2987. extern int cmd640_vlb; /* flag for cmd640.c */
  2988. cmd640_vlb = 1;
  2989. goto done;
  2990. }
  2991. #endif /* CONFIG_BLK_DEV_CMD640 */
  2992. #ifdef CONFIG_BLK_DEV_HT6560B
  2993. case -13: /* "ht6560b" */
  2994. {
  2995. extern void init_ht6560b (void);
  2996. init_ht6560b();
  2997. goto done;
  2998. }
  2999. #endif /* CONFIG_BLK_DEV_HT6560B */
  3000. #if CONFIG_BLK_DEV_QD65XX
  3001. case -12: /* "qd65xx" */
  3002. {
  3003. extern void init_qd65xx (void);
  3004. init_qd65xx();
  3005. goto done;
  3006. }
  3007. #endif /* CONFIG_BLK_DEV_QD65XX */
  3008. #ifdef CONFIG_BLK_DEV_4DRIVES
  3009. case -11: /* "four" drives on one set of ports */
  3010. {
  3011. ide_hwif_t *mate = &ide_hwifs[hw^1];
  3012. mate->drives[0].select.all ^= 0x20;
  3013. mate->drives[1].select.all ^= 0x20;
  3014. hwif->chipset = mate->chipset = ide_4drives;
  3015. mate->irq = hwif->irq;
  3016. memcpy(mate->io_ports, hwif->io_ports, sizeof(hwif->io_ports));
  3017. goto do_serialize;
  3018. }
  3019. #endif /* CONFIG_BLK_DEV_4DRIVES */
  3020. case -10: /* minus10 */
  3021. case -9: /* minus9 */
  3022. case -8: /* minus8 */
  3023. goto bad_option;
  3024. case -7: /* ata66 */
  3025. #ifdef CONFIG_BLK_DEV_IDEPCI
  3026. hwif->udma_four = 1;
  3027. goto done;
  3028. #else /* !CONFIG_BLK_DEV_IDEPCI */
  3029. hwif->udma_four = 0;
  3030. goto bad_hwif;
  3031. #endif /* CONFIG_BLK_DEV_IDEPCI */
  3032. case -6: /* dma */
  3033. hwif->autodma = 1;
  3034. goto done;
  3035. case -5: /* "reset" */
  3036. hwif->reset = 1;
  3037. goto done;
  3038. case -4: /* "noautotune" */
  3039. hwif->drives[0].autotune = 2;
  3040. hwif->drives[1].autotune = 2;
  3041. goto done;
  3042. case -3: /* "autotune" */
  3043. hwif->drives[0].autotune = 1;
  3044. hwif->drives[1].autotune = 1;
  3045. goto done;
  3046. case -2: /* "serialize" */
  3047. do_serialize:
  3048. hwif->mate = &ide_hwifs[hw^1];
  3049. hwif->mate->mate = hwif;
  3050. hwif->serialized = hwif->mate->serialized = 1;
  3051. goto done;
  3052. case -1: /* "noprobe" */
  3053. hwif->noprobe = 1;
  3054. goto done;
  3055. case 1: /* base */
  3056. vals[1] = vals[0] + 0x206; /* default ctl */
  3057. case 2: /* base,ctl */
  3058. vals[2] = 0; /* default irq = probe for it */
  3059. case 3: /* base,ctl,irq */
  3060. hwif->hw.irq = vals[2];
  3061. ide_init_hwif_ports(&hwif->hw, (ide_ioreg_t) vals[0], (ide_ioreg_t) vals[1], &hwif->irq);
  3062. memcpy(hwif->io_ports, hwif->hw.io_ports, sizeof(hwif->io_ports));
  3063. hwif->irq      = vals[2];
  3064. hwif->noprobe  = 0;
  3065. hwif->chipset  = ide_generic;
  3066. goto done;
  3067. case 0: goto bad_option;
  3068. default:
  3069. printk(" -- SUPPORT NOT CONFIGURED IN THIS KERNELn");
  3070. return 1;
  3071. }
  3072. }
  3073. bad_option:
  3074. printk(" -- BAD OPTIONn");
  3075. return 1;
  3076. bad_hwif:
  3077. printk("-- NOT SUPPORTED ON ide%d", hw);
  3078. done:
  3079. printk("n");
  3080. return 1;
  3081. }
  3082. /*
  3083.  * probe_for_hwifs() finds/initializes "known" IDE interfaces
  3084.  */
  3085. static void __init probe_for_hwifs (void)
  3086. {
  3087. #ifdef CONFIG_PCI
  3088. if (pci_present())
  3089. {
  3090. #ifdef CONFIG_BLK_DEV_IDEPCI
  3091. ide_scan_pcibus(ide_scan_direction);
  3092. #else
  3093. #ifdef CONFIG_BLK_DEV_RZ1000
  3094. {
  3095. extern void ide_probe_for_rz100x(void);
  3096. ide_probe_for_rz100x();
  3097. }
  3098. #endif /* CONFIG_BLK_DEV_RZ1000 */
  3099. #endif /* CONFIG_BLK_DEV_IDEPCI */
  3100. }
  3101. #endif /* CONFIG_PCI */
  3102. #ifdef CONFIG_ETRAX_IDE
  3103. {
  3104. extern void init_e100_ide(void);
  3105. init_e100_ide();
  3106. }
  3107. #endif /* CONFIG_ETRAX_IDE */
  3108. #ifdef CONFIG_BLK_DEV_CMD640
  3109. {
  3110. extern void ide_probe_for_cmd640x(void);
  3111. ide_probe_for_cmd640x();
  3112. }
  3113. #endif /* CONFIG_BLK_DEV_CMD640 */
  3114. #ifdef CONFIG_BLK_DEV_PDC4030
  3115. {
  3116. extern int ide_probe_for_pdc4030(void);
  3117. (void) ide_probe_for_pdc4030();
  3118. }
  3119. #endif /* CONFIG_BLK_DEV_PDC4030 */
  3120. #ifdef CONFIG_BLK_DEV_IDE_PMAC
  3121. {
  3122. extern void pmac_ide_probe(void);
  3123. pmac_ide_probe();
  3124. }
  3125. #endif /* CONFIG_BLK_DEV_IDE_PMAC */
  3126. #ifdef CONFIG_BLK_DEV_IDE_ICSIDE
  3127. {
  3128. extern void icside_init(void);
  3129. icside_init();
  3130. }
  3131. #endif /* CONFIG_BLK_DEV_IDE_ICSIDE */
  3132. #ifdef CONFIG_BLK_DEV_IDE_RAPIDE
  3133. {
  3134. extern void rapide_init(void);
  3135. rapide_init();
  3136. }
  3137. #endif /* CONFIG_BLK_DEV_IDE_RAPIDE */
  3138. #ifdef CONFIG_BLK_DEV_GAYLE
  3139. {
  3140. extern void gayle_init(void);
  3141. gayle_init();
  3142. }
  3143. #endif /* CONFIG_BLK_DEV_GAYLE */
  3144. #ifdef CONFIG_BLK_DEV_FALCON_IDE
  3145. {
  3146. extern void falconide_init(void);
  3147. falconide_init();
  3148. }
  3149. #endif /* CONFIG_BLK_DEV_FALCON_IDE */
  3150. #ifdef CONFIG_BLK_DEV_MAC_IDE
  3151. {
  3152. extern void macide_init(void);
  3153. macide_init();
  3154. }
  3155. #endif /* CONFIG_BLK_DEV_MAC_IDE */
  3156. #ifdef CONFIG_BLK_DEV_Q40IDE
  3157. {
  3158. extern void q40ide_init(void);
  3159. q40ide_init();
  3160. }
  3161. #endif /* CONFIG_BLK_DEV_Q40IDE */
  3162. #ifdef CONFIG_BLK_DEV_BUDDHA
  3163. {
  3164. extern void buddha_init(void);
  3165. buddha_init();
  3166. }
  3167. #endif /* CONFIG_BLK_DEV_BUDDHA */
  3168. #if defined(CONFIG_BLK_DEV_ISAPNP) && defined(CONFIG_ISAPNP)
  3169. {
  3170. extern void pnpide_init(int enable);
  3171. pnpide_init(1);
  3172. }
  3173. #endif /* CONFIG_BLK_DEV_ISAPNP */
  3174. }
  3175. void __init ide_init_builtin_drivers (void)
  3176. {
  3177. /*
  3178.  * Probe for special PCI and other "known" interface chipsets
  3179.  */
  3180. probe_for_hwifs ();
  3181. #ifdef CONFIG_BLK_DEV_IDE
  3182. #if defined(__mc68000__) || defined(CONFIG_APUS)
  3183. if (ide_hwifs[0].io_ports[IDE_DATA_OFFSET]) {
  3184. ide_get_lock(&ide_lock, NULL, NULL); /* for atari only */
  3185. disable_irq(ide_hwifs[0].irq); /* disable_irq_nosync ?? */
  3186. // disable_irq_nosync(ide_hwifs[0].irq);
  3187. }
  3188. #endif /* __mc68000__ || CONFIG_APUS */
  3189. (void) ideprobe_init();
  3190. #if defined(__mc68000__) || defined(CONFIG_APUS)
  3191. if (ide_hwifs[0].io_ports[IDE_DATA_OFFSET]) {
  3192. enable_irq(ide_hwifs[0].irq);
  3193. ide_release_lock(&ide_lock); /* for atari only */
  3194. }
  3195. #endif /* __mc68000__ || CONFIG_APUS */
  3196. #endif /* CONFIG_BLK_DEV_IDE */
  3197. #ifdef CONFIG_PROC_FS
  3198. proc_ide_create();
  3199. #endif
  3200. /*
  3201.  * Attempt to match drivers for the available drives
  3202.  */
  3203. #ifdef CONFIG_BLK_DEV_IDEDISK
  3204. (void) idedisk_init();
  3205. #endif /* CONFIG_BLK_DEV_IDEDISK */
  3206. #ifdef CONFIG_BLK_DEV_IDECD
  3207. (void) ide_cdrom_init();
  3208. #endif /* CONFIG_BLK_DEV_IDECD */
  3209. #ifdef CONFIG_BLK_DEV_IDETAPE
  3210. (void) idetape_init();
  3211. #endif /* CONFIG_BLK_DEV_IDETAPE */
  3212. #ifdef CONFIG_BLK_DEV_IDEFLOPPY
  3213. (void) idefloppy_init();
  3214. #endif /* CONFIG_BLK_DEV_IDEFLOPPY */
  3215. #ifdef CONFIG_BLK_DEV_IDESCSI
  3216.  #ifdef CONFIG_SCSI
  3217. (void) idescsi_init();
  3218.  #else
  3219.     #warning ide scsi-emulation selected but no SCSI-subsystem in kernel
  3220.  #endif
  3221. #endif /* CONFIG_BLK_DEV_IDESCSI */
  3222. }
  3223. static int default_cleanup (ide_drive_t *drive)
  3224. {
  3225. return ide_unregister_subdriver(drive);
  3226. }
  3227. static ide_startstop_t default_do_request(ide_drive_t *drive, struct request *rq, unsigned long block)
  3228. {
  3229. ide_end_request(0, HWGROUP(drive));
  3230. return ide_stopped;
  3231. }
  3232.  
  3233. static void default_end_request (byte uptodate, ide_hwgroup_t *hwgroup)
  3234. {
  3235. ide_end_request(uptodate, hwgroup);
  3236. }
  3237.   
  3238. static int default_ioctl (ide_drive_t *drive, struct inode *inode, struct file *file,
  3239.   unsigned int cmd, unsigned long arg)
  3240. {
  3241. return -EIO;
  3242. }
  3243. static int default_open (struct inode *inode, struct file *filp, ide_drive_t *drive)
  3244. {
  3245. drive->usage--;
  3246. return -EIO;
  3247. }
  3248. static void default_release (struct inode *inode, struct file *filp, ide_drive_t *drive)
  3249. {
  3250. }
  3251. static int default_check_media_change (ide_drive_t *drive)
  3252. {
  3253. return 1;
  3254. }
  3255. static void default_pre_reset (ide_drive_t *drive)
  3256. {
  3257. }
  3258. static unsigned long default_capacity (ide_drive_t *drive)
  3259. {
  3260. return 0x7fffffff;
  3261. }
  3262. static ide_startstop_t default_special (ide_drive_t *drive)
  3263. {
  3264. special_t *s = &drive->special;
  3265. s->all = 0;
  3266. drive->mult_req = 0;
  3267. return ide_stopped;
  3268. }
  3269. static int default_driver_reinit (ide_drive_t *drive)
  3270. {
  3271. printk(KERN_ERR "%s: does not support hotswap of device class !n", drive->name);
  3272. return 0;
  3273. }
  3274. static void setup_driver_defaults (ide_drive_t *drive)
  3275. {
  3276. ide_driver_t *d = drive->driver;
  3277. if (d->cleanup == NULL) d->cleanup = default_cleanup;
  3278. if (d->do_request == NULL) d->do_request = default_do_request;
  3279. if (d->end_request == NULL) d->end_request = default_end_request;
  3280. if (d->ioctl == NULL) d->ioctl = default_ioctl;
  3281. if (d->open == NULL) d->open = default_open;
  3282. if (d->release == NULL) d->release = default_release;
  3283. if (d->media_change == NULL) d->media_change = default_check_media_change;
  3284. if (d->pre_reset == NULL) d->pre_reset = default_pre_reset;
  3285. if (d->capacity == NULL) d->capacity = default_capacity;
  3286. if (d->special == NULL) d->special = default_special;
  3287. if (d->driver_reinit == NULL) d->driver_reinit = default_driver_reinit;
  3288. }
  3289. ide_drive_t *ide_scan_devices (byte media, const char *name, ide_driver_t *driver, int n)
  3290. {
  3291. unsigned int unit, index, i;
  3292. for (index = 0, i = 0; index < MAX_HWIFS; ++index) {
  3293. ide_hwif_t *hwif = &ide_hwifs[index];
  3294. if (!hwif->present)
  3295. continue;
  3296. for (unit = 0; unit < MAX_DRIVES; ++unit) {
  3297. ide_drive_t *drive = &hwif->drives[unit];
  3298. char *req = drive->driver_req;
  3299. if (*req && !strstr(name, req))
  3300. continue;
  3301. if (drive->present && drive->media == media && drive->driver == driver && ++i > n)
  3302. return drive;
  3303. }
  3304. }
  3305. return NULL;
  3306. }
  3307. int ide_register_subdriver (ide_drive_t *drive, ide_driver_t *driver, int version)
  3308. {
  3309. unsigned long flags;
  3310. save_flags(flags); /* all CPUs */
  3311. cli(); /* all CPUs */
  3312. if (version != IDE_SUBDRIVER_VERSION || !drive->present || drive->driver != NULL || drive->busy || drive->usage) {
  3313. restore_flags(flags); /* all CPUs */
  3314. return 1;
  3315. }
  3316. drive->driver = driver;
  3317. setup_driver_defaults(drive);
  3318. restore_flags(flags); /* all CPUs */
  3319. if (drive->autotune != 2) {
  3320. if (driver->supports_dma && HWIF(drive)->dmaproc != NULL) {
  3321. /*
  3322.  * Force DMAing for the beginning of the check.
  3323.  * Some chipsets appear to do interesting things,
  3324.  * if not checked and cleared.
  3325.  *   PARANOIA!!!
  3326.  */
  3327. (void) (HWIF(drive)->dmaproc(ide_dma_off_quietly, drive));
  3328. (void) (HWIF(drive)->dmaproc(ide_dma_check, drive));
  3329. }
  3330. drive->dsc_overlap = (drive->next != drive && driver->supports_dsc_overlap);
  3331. drive->nice1 = 1;
  3332. }
  3333. drive->revalidate = 1;
  3334. drive->suspend_reset = 0;
  3335. #ifdef CONFIG_PROC_FS
  3336. ide_add_proc_entries(drive->proc, generic_subdriver_entries, drive);
  3337. ide_add_proc_entries(drive->proc, driver->proc, drive);
  3338. #endif
  3339. return 0;
  3340. }
  3341. int ide_unregister_subdriver (ide_drive_t *drive)
  3342. {
  3343. unsigned long flags;
  3344. save_flags(flags); /* all CPUs */
  3345. cli(); /* all CPUs */
  3346. if (drive->usage || drive->busy || drive->driver == NULL || DRIVER(drive)->busy) {
  3347. restore_flags(flags); /* all CPUs */
  3348. return 1;
  3349. }
  3350. #if defined(CONFIG_BLK_DEV_ISAPNP) && defined(CONFIG_ISAPNP) && defined(MODULE)
  3351. pnpide_init(0);
  3352. #endif /* CONFIG_BLK_DEV_ISAPNP */
  3353. #ifdef CONFIG_PROC_FS
  3354. ide_remove_proc_entries(drive->proc, DRIVER(drive)->proc);
  3355. ide_remove_proc_entries(drive->proc, generic_subdriver_entries);
  3356. #endif
  3357. auto_remove_settings(drive);
  3358. drive->driver = NULL;
  3359. restore_flags(flags); /* all CPUs */
  3360. return 0;
  3361. }
  3362. int ide_register_module (ide_module_t *module)
  3363. {
  3364. ide_module_t *p = ide_modules;
  3365. while (p) {
  3366. if (p == module)
  3367. return 1;
  3368. p = p->next;
  3369. }
  3370. module->next = ide_modules;
  3371. ide_modules = module;
  3372. revalidate_drives();
  3373. return 0;
  3374. }
  3375. void ide_unregister_module (ide_module_t *module)
  3376. {
  3377. ide_module_t **p;
  3378. for (p = &ide_modules; (*p) && (*p) != module; p = &((*p)->next));
  3379. if (*p)
  3380. *p = (*p)->next;
  3381. }
  3382. struct block_device_operations ide_fops[] = {{
  3383. owner: THIS_MODULE,
  3384. open: ide_open,
  3385. release: ide_release,
  3386. ioctl: ide_ioctl,
  3387. check_media_change: ide_check_media_change,
  3388. revalidate: ide_revalidate_disk
  3389. }};
  3390. EXPORT_SYMBOL(ide_hwifs);
  3391. EXPORT_SYMBOL(ide_register_module);
  3392. EXPORT_SYMBOL(ide_unregister_module);
  3393. EXPORT_SYMBOL(ide_spin_wait_hwgroup);
  3394. /*
  3395.  * Probe module
  3396.  */
  3397. devfs_handle_t ide_devfs_handle;
  3398. EXPORT_SYMBOL(ide_probe);
  3399. EXPORT_SYMBOL(drive_is_flashcard);
  3400. EXPORT_SYMBOL(ide_timer_expiry);
  3401. EXPORT_SYMBOL(ide_intr);
  3402. EXPORT_SYMBOL(ide_fops);
  3403. EXPORT_SYMBOL(ide_get_queue);
  3404. EXPORT_SYMBOL(ide_add_generic_settings);
  3405. EXPORT_SYMBOL(ide_devfs_handle);
  3406. EXPORT_SYMBOL(do_ide_request);
  3407. /*
  3408.  * Driver module
  3409.  */
  3410. EXPORT_SYMBOL(ide_scan_devices);
  3411. EXPORT_SYMBOL(ide_register_subdriver);
  3412. EXPORT_SYMBOL(ide_unregister_subdriver);
  3413. EXPORT_SYMBOL(ide_replace_subdriver);
  3414. EXPORT_SYMBOL(ide_input_data);
  3415. EXPORT_SYMBOL(ide_output_data);
  3416. EXPORT_SYMBOL(atapi_input_bytes);
  3417. EXPORT_SYMBOL(atapi_output_bytes);
  3418. EXPORT_SYMBOL(ide_set_handler);
  3419. EXPORT_SYMBOL(ide_dump_status);
  3420. EXPORT_SYMBOL(ide_error);
  3421. EXPORT_SYMBOL(ide_fixstring);
  3422. EXPORT_SYMBOL(ide_wait_stat);
  3423. EXPORT_SYMBOL(ide_do_reset);
  3424. EXPORT_SYMBOL(restart_request);
  3425. EXPORT_SYMBOL(ide_init_drive_cmd);
  3426. EXPORT_SYMBOL(ide_do_drive_cmd);
  3427. EXPORT_SYMBOL(ide_end_drive_cmd);
  3428. EXPORT_SYMBOL(ide_end_request);
  3429. EXPORT_SYMBOL(ide_revalidate_disk);
  3430. EXPORT_SYMBOL(ide_cmd);
  3431. EXPORT_SYMBOL(ide_wait_cmd);
  3432. EXPORT_SYMBOL(ide_wait_cmd_task);
  3433. EXPORT_SYMBOL(ide_delay_50ms);
  3434. EXPORT_SYMBOL(ide_stall_queue);
  3435. #ifdef CONFIG_PROC_FS
  3436. EXPORT_SYMBOL(ide_add_proc_entries);
  3437. EXPORT_SYMBOL(ide_remove_proc_entries);
  3438. EXPORT_SYMBOL(proc_ide_read_geometry);
  3439. EXPORT_SYMBOL(create_proc_ide_interfaces);
  3440. #endif
  3441. EXPORT_SYMBOL(ide_add_setting);
  3442. EXPORT_SYMBOL(ide_remove_setting);
  3443. EXPORT_SYMBOL(ide_register_hw);
  3444. EXPORT_SYMBOL(ide_register);
  3445. EXPORT_SYMBOL(ide_unregister);
  3446. EXPORT_SYMBOL(ide_setup_ports);
  3447. EXPORT_SYMBOL(hwif_unregister);
  3448. EXPORT_SYMBOL(get_info_ptr);
  3449. EXPORT_SYMBOL(current_capacity);
  3450. EXPORT_SYMBOL(system_bus_clock);
  3451. /*
  3452.  * This is gets invoked once during initialization, to set *everything* up
  3453.  */
  3454. int __init ide_init (void)
  3455. {
  3456. static char banner_printed;
  3457. int i;
  3458. if (!banner_printed) {
  3459. printk(KERN_INFO "Uniform Multi-Platform E-IDE driver " REVISION "n");
  3460. ide_devfs_handle = devfs_mk_dir (NULL, "ide", NULL);
  3461. system_bus_speed = ide_system_bus_speed();
  3462. banner_printed = 1;
  3463. }
  3464. init_ide_data ();
  3465. initializing = 1;
  3466. ide_init_builtin_drivers();
  3467. initializing = 0;
  3468. for (i = 0; i < MAX_HWIFS; ++i) {
  3469. ide_hwif_t  *hwif = &ide_hwifs[i];
  3470. if (hwif->present)
  3471. ide_geninit(hwif);
  3472. }
  3473. return 0;
  3474. }
  3475. #ifdef MODULE
  3476. char *options = NULL;
  3477. MODULE_PARM(options,"s");
  3478. MODULE_LICENSE("GPL");
  3479. static void __init parse_options (char *line)
  3480. {
  3481. char *next = line;
  3482. if (line == NULL || !*line)
  3483. return;
  3484. while ((line = next) != NULL) {
  3485.   if ((next = strchr(line,' ')) != NULL)
  3486. *next++ = 0;
  3487. if (!ide_setup(line))
  3488. printk ("Unknown option '%s'n", line);
  3489. }
  3490. }
  3491. int init_module (void)
  3492. {
  3493. parse_options(options);
  3494. return ide_init();
  3495. }
  3496. void cleanup_module (void)
  3497. {
  3498. int index;
  3499. for (index = 0; index < MAX_HWIFS; ++index) {
  3500. ide_unregister(index);
  3501. #if defined(CONFIG_BLK_DEV_IDEDMA) && !defined(CONFIG_DMA_NONPCI)
  3502. if (ide_hwifs[index].dma_base)
  3503. (void) ide_release_dma(&ide_hwifs[index]);
  3504. #endif /* (CONFIG_BLK_DEV_IDEDMA) && !(CONFIG_DMA_NONPCI) */
  3505. }
  3506. #ifdef CONFIG_PROC_FS
  3507. proc_ide_destroy();
  3508. #endif
  3509. devfs_unregister (ide_devfs_handle);
  3510. }
  3511. #else /* !MODULE */
  3512. __setup("", ide_setup);
  3513. #endif /* MODULE */