ide-floppy.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:72k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/ide/ide-floppy.c Version 0.99 Feb 24 2002
  3.  *
  4.  * Copyright (C) 1996 - 1999 Gadi Oxman <gadio@netvision.net.il>
  5.  * Copyright (C) 2000 - 2002 Paul Bristow <paul@paulbristow.net>
  6.  */
  7. /*
  8.  * IDE ATAPI floppy driver.
  9.  *
  10.  * The driver currently doesn't have any fancy features, just the bare
  11.  * minimum read/write support.
  12.  *
  13.  * This driver supports the following IDE floppy drives:
  14.  *
  15.  * LS-120/240 SuperDisk
  16.  * Iomega Zip 100/250
  17.  * Iomega PC Card Clik!/PocketZip
  18.  *
  19.  * Many thanks to Lode Leroy <Lode.Leroy@www.ibase.be>, who tested so many
  20.  * ALPHA patches to this driver on an EASYSTOR LS-120 ATAPI floppy drive.
  21.  *
  22.  * Ver 0.1   Oct 17 96   Initial test version, mostly based on ide-tape.c.
  23.  * Ver 0.2   Oct 31 96   Minor changes.
  24.  * Ver 0.3   Dec  2 96   Fixed error recovery bug.
  25.  * Ver 0.4   Jan 26 97   Add support for the HDIO_GETGEO ioctl.
  26.  * Ver 0.5   Feb 21 97   Add partitions support.
  27.  *                       Use the minimum of the LBA and CHS capacities.
  28.  *                       Avoid hwgroup->rq == NULL on the last irq.
  29.  *                       Fix potential null dereferencing with DEBUG_LOG.
  30.  * Ver 0.8   Dec  7 97   Increase irq timeout from 10 to 50 seconds.
  31.  *                       Add media write-protect detection.
  32.  *                       Issue START command only if TEST UNIT READY fails.
  33.  *                       Add work-around for IOMEGA ZIP revision 21.D.
  34.  *                       Remove idefloppy_get_capabilities().
  35.  * Ver 0.9   Jul  4 99   Fix a bug which might have caused the number of
  36.  *                        bytes requested on each interrupt to be zero.
  37.  *                        Thanks to <shanos@es.co.nz> for pointing this out.
  38.  * Ver 0.9.sv Jan 6 01   Sam Varshavchik <mrsam@courier-mta.com>
  39.  *                       Implement low level formatting.  Reimplemented
  40.  *                       IDEFLOPPY_CAPABILITIES_PAGE, since we need the srfp
  41.  *                       bit.  My LS-120 drive barfs on
  42.  *                       IDEFLOPPY_CAPABILITIES_PAGE, but maybe it's just me.
  43.  *                       Compromise by not reporting a failure to get this
  44.  *                       mode page.  Implemented four IOCTLs in order to
  45.  *                       implement formatting.  IOCTls begin with 0x4600,
  46.  *                       0x46 is 'F' as in Format.
  47.  *            Jan 9 01   Userland option to select format verify.
  48.  *                       Added PC_SUPPRESS_ERROR flag - some idefloppy drives
  49.  *                       do not implement IDEFLOPPY_CAPABILITIES_PAGE, and
  50.  *                       return a sense error.  Suppress error reporting in
  51.  *                       this particular case in order to avoid spurious
  52.  *                       errors in syslog.  The culprit is
  53.  *                       idefloppy_get_capability_page(), so move it to
  54.  *                       idefloppy_begin_format() so that it's not used
  55.  *                       unless absolutely necessary.
  56.  *                       If drive does not support format progress indication
  57.  *                       monitor the dsc bit in the status register.
  58.  *                       Also, O_NDELAY on open will allow the device to be
  59.  *                       opened without a disk available.  This can be used to
  60.  *                       open an unformatted disk, or get the device capacity.
  61.  * Ver 0.91  Dec 11 99   Added IOMEGA Clik! drive support by 
  62.  *         <paul@paulbristow.net>
  63.  * Ver 0.92  Oct 22 00   Paul Bristow became official maintainer for this 
  64.  *               driver.  Included Powerbook internal zip kludge.
  65.  * Ver 0.93  Oct 24 00   Fixed bugs for Clik! drive
  66.  *                        no disk on insert and disk change now works
  67.  * Ver 0.94  Oct 27 00   Tidied up to remove strstr(Clik) everywhere
  68.  * Ver 0.95  Nov  7 00   Brought across to kernel 2.4
  69.  * Ver 0.96  Jan  7 01   Actually in line with release version of 2.4.0
  70.  *                       including set_bit patch from Rusty Russell
  71.  * Ver 0.97  Jul 22 01   Merge 0.91-0.96 onto 0.9.sv for ac series
  72.  * Ver 0.97.sv Aug 3 01  Backported from 2.4.7-ac3
  73.  * Ver 0.98  Oct 26 01   Split idefloppy_transfer_pc into two pieces to
  74.  *                        fix a lost interrupt problem. It appears the busy
  75.  *                        bit was being deasserted by my IOMEGA ATAPI ZIP 100
  76.  *                        drive before the drive was actually ready.
  77.  * Ver 0.98a Oct 29 01   Expose delay value so we can play.
  78.  * Ver 0.99  Feb 24 02   Remove duplicate code, modify clik! detection code 
  79.  *                        to support new PocketZip drives 
  80.  */
  81. #define IDEFLOPPY_VERSION "0.99.newide"
  82. #include <linux/config.h>
  83. #include <linux/module.h>
  84. #include <linux/types.h>
  85. #include <linux/string.h>
  86. #include <linux/kernel.h>
  87. #include <linux/delay.h>
  88. #include <linux/timer.h>
  89. #include <linux/mm.h>
  90. #include <linux/interrupt.h>
  91. #include <linux/major.h>
  92. #include <linux/errno.h>
  93. #include <linux/genhd.h>
  94. #include <linux/slab.h>
  95. #include <linux/cdrom.h>
  96. #include <linux/ide.h>
  97. #include <asm/byteorder.h>
  98. #include <asm/irq.h>
  99. #include <asm/uaccess.h>
  100. #include <asm/io.h>
  101. #include <asm/unaligned.h>
  102. #include <asm/bitops.h>
  103. /*
  104.  * The following are used to debug the driver.
  105.  */
  106. #define IDEFLOPPY_DEBUG_LOG 0
  107. #define IDEFLOPPY_DEBUG_INFO 0
  108. #define IDEFLOPPY_DEBUG_BUGS 1
  109. /* #define IDEFLOPPY_DEBUG(fmt, args...) printk(KERN_INFO fmt, ## args) */
  110. #define IDEFLOPPY_DEBUG( fmt, args... )
  111. /*
  112.  * Some drives require a longer irq timeout.
  113.  */
  114. #define IDEFLOPPY_WAIT_CMD (5 * WAIT_CMD)
  115. /*
  116.  * After each failed packet command we issue a request sense command
  117.  * and retry the packet command IDEFLOPPY_MAX_PC_RETRIES times.
  118.  */
  119. #define IDEFLOPPY_MAX_PC_RETRIES 3
  120. /*
  121.  * With each packet command, we allocate a buffer of
  122.  * IDEFLOPPY_PC_BUFFER_SIZE bytes.
  123.  */
  124. #define IDEFLOPPY_PC_BUFFER_SIZE 256
  125. /*
  126.  * In various places in the driver, we need to allocate storage
  127.  * for packet commands and requests, which will remain valid while
  128.  * we leave the driver to wait for an interrupt or a timeout event.
  129.  */
  130. #define IDEFLOPPY_PC_STACK (10 + IDEFLOPPY_MAX_PC_RETRIES)
  131. /*
  132.  * Our view of a packet command.
  133.  */
  134. typedef struct idefloppy_packet_command_s {
  135. u8 c[12]; /* Actual packet bytes */
  136. int retries; /* On each retry, we increment retries */
  137. int error; /* Error code */
  138. int request_transfer; /* Bytes to transfer */
  139. int actually_transferred; /* Bytes actually transferred */
  140. int buffer_size; /* Size of our data buffer */
  141. char *b_data; /* Pointer which runs on the buffers */
  142. int b_count; /* Missing/Available data on the current buffer */
  143. struct request *rq; /* The corresponding request */
  144. byte *buffer; /* Data buffer */
  145. byte *current_position; /* Pointer into the above buffer */
  146. void (*callback) (ide_drive_t *); /* Called when this packet command is completed */
  147. byte pc_buffer[IDEFLOPPY_PC_BUFFER_SIZE]; /* Temporary buffer */
  148. unsigned long flags; /* Status/Action bit flags: long for set_bit */
  149. } idefloppy_pc_t;
  150. /*
  151.  * Packet command flag bits.
  152.  */
  153. #define PC_ABORT 0 /* Set when an error is considered normal - We won't retry */
  154. #define PC_DMA_RECOMMENDED 2 /* 1 when we prefer to use DMA if possible */
  155. #define PC_DMA_IN_PROGRESS 3 /* 1 while DMA in progress */
  156. #define PC_DMA_ERROR 4 /* 1 when encountered problem during DMA */
  157. #define PC_WRITING 5 /* Data direction */
  158. #define PC_SUPPRESS_ERROR 6 /* Suppress error reporting */
  159. /*
  160.  * Removable Block Access Capabilities Page
  161.  */
  162. typedef struct {
  163. #if defined(__LITTLE_ENDIAN_BITFIELD)
  164. unsigned page_code :6; /* Page code - Should be 0x1b */
  165. unsigned reserved1_6 :1; /* Reserved */
  166. unsigned ps :1; /* Should be 0 */
  167. #elif defined(__BIG_ENDIAN_BITFIELD)
  168. unsigned ps :1; /* Should be 0 */
  169. unsigned reserved1_6 :1; /* Reserved */
  170. unsigned page_code :6; /* Page code - Should be 0x1b */
  171. #else
  172. #error "Bitfield endianness not defined! Check your byteorder.h"
  173. #endif
  174. u8 page_length; /* Page Length - Should be 0xa */
  175. #if defined(__LITTLE_ENDIAN_BITFIELD)
  176. unsigned reserved2 :6;
  177. unsigned srfp :1; /* Supports reporting progress of format */
  178. unsigned sflp :1; /* System floppy type device */
  179. unsigned tlun :3; /* Total logical units supported by the device */
  180. unsigned reserved3 :3;
  181. unsigned sml :1; /* Single / Multiple lun supported */
  182. unsigned ncd :1; /* Non cd optical device */
  183. #elif defined(__BIG_ENDIAN_BITFIELD)
  184. unsigned sflp :1; /* System floppy type device */
  185. unsigned srfp :1; /* Supports reporting progress of format */
  186. unsigned reserved2 :6;
  187. unsigned ncd :1; /* Non cd optical device */
  188. unsigned sml :1; /* Single / Multiple lun supported */
  189. unsigned reserved3 :3;
  190. unsigned tlun :3; /* Total logical units supported by the device */
  191. #else
  192. #error "Bitfield endianness not defined! Check your byteorder.h"
  193. #endif
  194. u8 reserved[8];
  195. } idefloppy_capabilities_page_t;
  196. /*
  197.  * Flexible disk page.
  198.  */
  199. typedef struct {
  200. #if defined(__LITTLE_ENDIAN_BITFIELD)
  201. unsigned page_code :6; /* Page code - Should be 0x5 */
  202. unsigned reserved1_6 :1; /* Reserved */
  203. unsigned ps :1; /* The device is capable of saving the page */
  204. #elif defined(__BIG_ENDIAN_BITFIELD)
  205. unsigned ps :1; /* The device is capable of saving the page */
  206. unsigned reserved1_6 :1; /* Reserved */
  207. unsigned page_code :6; /* Page code - Should be 0x5 */
  208. #else
  209. #error "Bitfield endianness not defined! Check your byteorder.h"
  210. #endif
  211. u8 page_length; /* Page Length - Should be 0x1e */
  212. u16 transfer_rate; /* In kilobits per second */
  213. u8 heads, sectors; /* Number of heads, Number of sectors per track */
  214. u16 sector_size; /* Byes per sector */
  215. u16 cyls; /* Number of cylinders */
  216. u8 reserved10[10];
  217. u8 motor_delay; /* Motor off delay */
  218. u8 reserved21[7];
  219. u16 rpm; /* Rotations per minute */
  220. u8 reserved30[2];
  221. } idefloppy_flexible_disk_page_t;
  222.  
  223. /*
  224.  * Format capacity
  225.  */
  226. typedef struct {
  227. u8 reserved[3];
  228. u8 length; /* Length of the following descriptors in bytes */
  229. } idefloppy_capacity_header_t;
  230. typedef struct {
  231. u32 blocks; /* Number of blocks */
  232. #if defined(__LITTLE_ENDIAN_BITFIELD)
  233. unsigned dc :2; /* Descriptor Code */
  234. unsigned reserved :6;
  235. #elif defined(__BIG_ENDIAN_BITFIELD)
  236. unsigned reserved :6;
  237. unsigned dc :2; /* Descriptor Code */
  238. #else
  239. #error "Bitfield endianness not defined! Check your byteorder.h"
  240. #endif
  241. u8 length_msb; /* Block Length (MSB)*/
  242. u16 length; /* Block Length */
  243. } idefloppy_capacity_descriptor_t;
  244. #define CAPACITY_INVALID 0x00
  245. #define CAPACITY_UNFORMATTED 0x01
  246. #define CAPACITY_CURRENT 0x02
  247. #define CAPACITY_NO_CARTRIDGE 0x03
  248. /*
  249.  * Most of our global data which we need to save even as we leave the
  250.  * driver due to an interrupt or a timer event is stored in a variable
  251.  * of type idefloppy_floppy_t, defined below.
  252.  */
  253. typedef struct {
  254. ide_drive_t *drive;
  255. idefloppy_pc_t *pc; /* Current packet command */
  256. idefloppy_pc_t *failed_pc;  /* Last failed packet command */
  257. idefloppy_pc_t pc_stack[IDEFLOPPY_PC_STACK];/* Packet command stack */
  258. int pc_stack_index; /* Next free packet command storage space */
  259. struct request rq_stack[IDEFLOPPY_PC_STACK];
  260. int rq_stack_index; /* We implement a circular array */
  261. /*
  262.  * Last error information
  263.  */
  264. byte sense_key, asc, ascq;
  265. byte ticks; /* delay this long before sending packet command */
  266. int progress_indication;
  267. /*
  268.  * Device information
  269.  */
  270. int blocks, block_size, bs_factor; /* Current format */
  271. idefloppy_capacity_descriptor_t capacity; /* Last format capacity */
  272. idefloppy_flexible_disk_page_t flexible_disk_page; /* Copy of the flexible disk page */
  273. int wp; /* Write protect */
  274. int srfp; /* Supports format progress report */
  275. unsigned long flags; /* Status/Action flags */
  276. } idefloppy_floppy_t;
  277. #define IDEFLOPPY_TICKS_DELAY 3 /* default delay for ZIP 100 */
  278. /*
  279.  * Floppy flag bits values.
  280.  */
  281. #define IDEFLOPPY_DRQ_INTERRUPT 0 /* DRQ interrupt device */
  282. #define IDEFLOPPY_MEDIA_CHANGED 1 /* Media may have changed */
  283. #define IDEFLOPPY_USE_READ12 2 /* Use READ12/WRITE12 or READ10/WRITE10 */
  284. #define IDEFLOPPY_FORMAT_IN_PROGRESS 3 /* Format in progress */
  285. #define IDEFLOPPY_CLIK_DRIVE         4       /* Avoid commands not supported in Clik drive */
  286. #define IDEFLOPPY_ZIP_DRIVE 5 /* Requires BH algorithm for packets */
  287. /*
  288.  * ATAPI floppy drive packet commands
  289.  */
  290. #define IDEFLOPPY_FORMAT_UNIT_CMD 0x04
  291. #define IDEFLOPPY_INQUIRY_CMD 0x12
  292. #define IDEFLOPPY_MODE_SELECT_CMD 0x55
  293. #define IDEFLOPPY_MODE_SENSE_CMD 0x5a
  294. #define IDEFLOPPY_READ10_CMD 0x28
  295. #define IDEFLOPPY_READ12_CMD 0xa8
  296. #define IDEFLOPPY_READ_CAPACITY_CMD 0x23
  297. #define IDEFLOPPY_REQUEST_SENSE_CMD 0x03
  298. #define IDEFLOPPY_PREVENT_REMOVAL_CMD 0x1e
  299. #define IDEFLOPPY_SEEK_CMD 0x2b
  300. #define IDEFLOPPY_START_STOP_CMD 0x1b
  301. #define IDEFLOPPY_TEST_UNIT_READY_CMD 0x00
  302. #define IDEFLOPPY_VERIFY_CMD 0x2f
  303. #define IDEFLOPPY_WRITE10_CMD 0x2a
  304. #define IDEFLOPPY_WRITE12_CMD 0xaa
  305. #define IDEFLOPPY_WRITE_VERIFY_CMD 0x2e
  306. /*
  307.  * Defines for the mode sense command
  308.  */
  309. #define MODE_SENSE_CURRENT 0x00
  310. #define MODE_SENSE_CHANGEABLE 0x01
  311. #define MODE_SENSE_DEFAULT 0x02 
  312. #define MODE_SENSE_SAVED 0x03
  313. /*
  314.  * IOCTLs used in low-level formatting.
  315.  */
  316. #define IDEFLOPPY_IOCTL_FORMAT_SUPPORTED 0x4600
  317. #define IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY 0x4601
  318. #define IDEFLOPPY_IOCTL_FORMAT_START 0x4602
  319. #define IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS 0x4603
  320. /*
  321.  * Special requests for our block device strategy routine.
  322.  */
  323. #define IDEFLOPPY_FIRST_RQ 90
  324. /*
  325.  *  IDEFLOPPY_PC_RQ is used to queue a packet command in the request queue.
  326.  */
  327. #define IDEFLOPPY_PC_RQ 90
  328. #define IDEFLOPPY_LAST_RQ 90
  329. /*
  330.  * A macro which can be used to check if a given request command
  331.  * originated in the driver or in the buffer cache layer.
  332.  */
  333. #define IDEFLOPPY_RQ_CMD(cmd)  ((cmd >= IDEFLOPPY_FIRST_RQ) && (cmd <= IDEFLOPPY_LAST_RQ))
  334. /*
  335.  * Error codes which are returned in rq->errors to the higher part
  336.  * of the driver.
  337.  */
  338. #define IDEFLOPPY_ERROR_GENERAL 101
  339. /*
  340.  * The ATAPI Status Register.
  341.  */
  342. typedef union {
  343. unsigned all :8;
  344. struct {
  345. #if defined(__LITTLE_ENDIAN_BITFIELD)
  346. unsigned check :1; /* Error occurred */
  347. unsigned idx :1; /* Reserved */
  348. unsigned corr :1; /* Correctable error occurred */
  349. unsigned drq :1; /* Data is request by the device */
  350. unsigned dsc :1; /* Media access command finished */
  351. unsigned reserved5 :1; /* Reserved */
  352. unsigned drdy :1; /* Ignored for ATAPI commands (ready to accept ATA command) */
  353. unsigned bsy :1; /* The device has access to the command block */
  354. #elif defined(__BIG_ENDIAN_BITFIELD)
  355. unsigned bsy :1; /* The device has access to the command block */
  356. unsigned drdy :1; /* Ignored for ATAPI commands (ready to accept ATA command) */
  357. unsigned reserved5 :1; /* Reserved */
  358. unsigned dsc :1; /* Media access command finished */
  359. unsigned drq :1; /* Data is request by the device */
  360. unsigned corr :1; /* Correctable error occurred */
  361. unsigned idx :1; /* Reserved */
  362. unsigned check :1; /* Error occurred */
  363. #else
  364. #error "Bitfield endianness not defined! Check your byteorder.h"
  365. #endif
  366. } b;
  367. } idefloppy_status_reg_t;
  368. /*
  369.  * The ATAPI error register.
  370.  */
  371. typedef union {
  372. unsigned all :8;
  373. struct {
  374. #if defined(__LITTLE_ENDIAN_BITFIELD)
  375. unsigned ili :1; /* Illegal Length Indication */
  376. unsigned eom :1; /* End Of Media Detected */
  377. unsigned abrt :1; /* Aborted command - As defined by ATA */
  378. unsigned mcr :1; /* Media Change Requested - As defined by ATA */
  379. unsigned sense_key :4; /* Sense key of the last failed packet command */
  380. #elif defined(__BIG_ENDIAN_BITFIELD)
  381. unsigned sense_key :4; /* Sense key of the last failed packet command */
  382. unsigned mcr :1; /* Media Change Requested - As defined by ATA */
  383. unsigned abrt :1; /* Aborted command - As defined by ATA */
  384. unsigned eom :1; /* End Of Media Detected */
  385. unsigned ili :1; /* Illegal Length Indication */
  386. #else
  387. #error "Bitfield endianness not defined! Check your byteorder.h"
  388. #endif
  389. } b;
  390. } idefloppy_error_reg_t;
  391. /*
  392.  * ATAPI Feature Register
  393.  */
  394. typedef union {
  395. unsigned all :8;
  396. struct {
  397. #if defined(__LITTLE_ENDIAN_BITFIELD)
  398. unsigned dma :1; /* Using DMA or PIO */
  399. unsigned reserved321 :3; /* Reserved */
  400. unsigned reserved654 :3; /* Reserved (Tag Type) */
  401. unsigned reserved7 :1; /* Reserved */
  402. #elif defined(__BIG_ENDIAN_BITFIELD)
  403. unsigned reserved7 :1; /* Reserved */
  404. unsigned reserved654 :3; /* Reserved (Tag Type) */
  405. unsigned reserved321 :3; /* Reserved */
  406. unsigned dma :1; /* Using DMA or PIO */
  407. #else
  408. #error "Bitfield endianness not defined! Check your byteorder.h"
  409. #endif
  410. } b;
  411. } idefloppy_feature_reg_t;
  412. /*
  413.  * ATAPI Byte Count Register.
  414.  */
  415. typedef union {
  416. unsigned all :16;
  417. struct {
  418. #if defined(__LITTLE_ENDIAN_BITFIELD)
  419. unsigned low :8; /* LSB */
  420. unsigned high :8; /* MSB */
  421. #elif defined(__BIG_ENDIAN_BITFIELD)
  422. unsigned high :8; /* MSB */
  423. unsigned low :8; /* LSB */
  424. #else
  425. #error "Bitfield endianness not defined! Check your byteorder.h"
  426. #endif
  427. } b;
  428. } idefloppy_bcount_reg_t;
  429. /*
  430.  * ATAPI Interrupt Reason Register.
  431.  */
  432. typedef union {
  433. unsigned all :8;
  434. struct {
  435. #if defined(__LITTLE_ENDIAN_BITFIELD)
  436. unsigned cod :1; /* Information transferred is command (1) or data (0) */
  437. unsigned io :1; /* The device requests us to read (1) or write (0) */
  438. unsigned reserved :6; /* Reserved */
  439. #elif defined(__BIG_ENDIAN_BITFIELD)
  440. unsigned reserved :6; /* Reserved */
  441. unsigned io :1; /* The device requests us to read (1) or write (0) */
  442. unsigned cod :1; /* Information transferred is command (1) or data (0) */
  443. #else
  444. #error "Bitfield endianness not defined! Check your byteorder.h"
  445. #endif
  446. } b;
  447. } idefloppy_ireason_reg_t;
  448. /*
  449.  * ATAPI floppy Drive Select Register
  450.  */
  451. typedef union {
  452. unsigned all :8;
  453. struct {
  454. #if defined(__LITTLE_ENDIAN_BITFIELD)
  455. unsigned sam_lun :3; /* Logical unit number */
  456. unsigned reserved3 :1; /* Reserved */
  457. unsigned drv :1; /* The responding drive will be drive 0 (0) or drive 1 (1) */
  458. unsigned one5 :1; /* Should be set to 1 */
  459. unsigned reserved6 :1; /* Reserved */
  460. unsigned one7 :1; /* Should be set to 1 */
  461. #elif defined(__BIG_ENDIAN_BITFIELD)
  462. unsigned one7 :1; /* Should be set to 1 */
  463. unsigned reserved6 :1; /* Reserved */
  464. unsigned one5 :1; /* Should be set to 1 */
  465. unsigned drv :1; /* The responding drive will be drive 0 (0) or drive 1 (1) */
  466. unsigned reserved3 :1; /* Reserved */
  467. unsigned sam_lun :3; /* Logical unit number */
  468. #else
  469. #error "Bitfield endianness not defined! Check your byteorder.h"
  470. #endif
  471. } b;
  472. } idefloppy_drivesel_reg_t;
  473. /*
  474.  * ATAPI Device Control Register
  475.  */
  476. typedef union {
  477. unsigned all :8;
  478. struct {
  479. #if defined(__LITTLE_ENDIAN_BITFIELD)
  480. unsigned zero0 :1; /* Should be set to zero */
  481. unsigned nien :1; /* Device interrupt is disabled (1) or enabled (0) */
  482. unsigned srst :1; /* ATA software reset. ATAPI devices should use the new ATAPI srst. */
  483. unsigned one3 :1; /* Should be set to 1 */
  484. unsigned reserved4567 :4; /* Reserved */
  485. #elif defined(__BIG_ENDIAN_BITFIELD)
  486. unsigned reserved4567 :4; /* Reserved */
  487. unsigned one3 :1; /* Should be set to 1 */
  488. unsigned srst :1; /* ATA software reset. ATAPI devices should use the new ATAPI srst. */
  489. unsigned nien :1; /* Device interrupt is disabled (1) or enabled (0) */
  490. unsigned zero0 :1; /* Should be set to zero */
  491. #else
  492. #error "Bitfield endianness not defined! Check your byteorder.h"
  493. #endif
  494. } b;
  495. } idefloppy_control_reg_t;
  496. /*
  497.  * The following is used to format the general configuration word of
  498.  * the ATAPI IDENTIFY DEVICE command.
  499.  */
  500. struct idefloppy_id_gcw {
  501. #if defined(__LITTLE_ENDIAN_BITFIELD)
  502. unsigned packet_size :2; /* Packet Size */
  503. unsigned reserved234 :3; /* Reserved */
  504. unsigned drq_type :2; /* Command packet DRQ type */
  505. unsigned removable :1; /* Removable media */
  506. unsigned device_type :5; /* Device type */
  507. unsigned reserved13 :1; /* Reserved */
  508. unsigned protocol :2; /* Protocol type */
  509. #elif defined(__BIG_ENDIAN_BITFIELD)
  510. unsigned protocol :2; /* Protocol type */
  511. unsigned reserved13 :1; /* Reserved */
  512. unsigned device_type :5; /* Device type */
  513. unsigned removable :1; /* Removable media */
  514. unsigned drq_type :2; /* Command packet DRQ type */
  515. unsigned reserved234 :3; /* Reserved */
  516. unsigned packet_size :2; /* Packet Size */
  517. #else
  518. #error "Bitfield endianness not defined! Check your byteorder.h"
  519. #endif
  520. };
  521. /*
  522.  * INQUIRY packet command - Data Format
  523.  */
  524. typedef struct {
  525. #if defined(__LITTLE_ENDIAN_BITFIELD)
  526. unsigned device_type :5; /* Peripheral Device Type */
  527. unsigned reserved0_765 :3; /* Peripheral Qualifier - Reserved */
  528. unsigned reserved1_6t0 :7; /* Reserved */
  529. unsigned rmb :1; /* Removable Medium Bit */
  530. unsigned ansi_version :3; /* ANSI Version */
  531. unsigned ecma_version :3; /* ECMA Version */
  532. unsigned iso_version :2; /* ISO Version */
  533. unsigned response_format :4; /* Response Data Format */
  534. unsigned reserved3_45 :2; /* Reserved */
  535. unsigned reserved3_6 :1; /* TrmIOP - Reserved */
  536. unsigned reserved3_7 :1; /* AENC - Reserved */
  537. #elif defined(__BIG_ENDIAN_BITFIELD)
  538. unsigned reserved0_765 :3; /* Peripheral Qualifier - Reserved */
  539. unsigned device_type :5; /* Peripheral Device Type */
  540. unsigned rmb :1; /* Removable Medium Bit */
  541. unsigned reserved1_6t0 :7; /* Reserved */
  542. unsigned iso_version :2; /* ISO Version */
  543. unsigned ecma_version :3; /* ECMA Version */
  544. unsigned ansi_version :3; /* ANSI Version */
  545. unsigned reserved3_7 :1; /* AENC - Reserved */
  546. unsigned reserved3_6 :1; /* TrmIOP - Reserved */
  547. unsigned reserved3_45 :2; /* Reserved */
  548. unsigned response_format :4; /* Response Data Format */
  549. #else
  550. #error "Bitfield endianness not defined! Check your byteorder.h"
  551. #endif
  552. u8 additional_length; /* Additional Length (total_length-4) */
  553. u8 rsv5, rsv6, rsv7; /* Reserved */
  554. u8 vendor_id[8]; /* Vendor Identification */
  555. u8 product_id[16]; /* Product Identification */
  556. u8 revision_level[4]; /* Revision Level */
  557. u8 vendor_specific[20]; /* Vendor Specific - Optional */
  558. u8 reserved56t95[40]; /* Reserved - Optional */
  559. /* Additional information may be returned */
  560. } idefloppy_inquiry_result_t;
  561. /*
  562.  * REQUEST SENSE packet command result - Data Format.
  563.  */
  564. typedef struct {
  565. #if defined(__LITTLE_ENDIAN_BITFIELD)
  566. unsigned error_code :7; /* Current error (0x70) */
  567. unsigned valid :1; /* The information field conforms to SFF-8070i */
  568. u8 reserved1 :8; /* Reserved */
  569. unsigned sense_key :4; /* Sense Key */
  570. unsigned reserved2_4 :1; /* Reserved */
  571. unsigned ili :1; /* Incorrect Length Indicator */
  572. unsigned reserved2_67 :2;
  573. #elif defined(__BIG_ENDIAN_BITFIELD)
  574. unsigned valid :1; /* The information field conforms to SFF-8070i */
  575. unsigned error_code :7; /* Current error (0x70) */
  576. u8 reserved1 :8; /* Reserved */
  577. unsigned reserved2_67 :2;
  578. unsigned ili :1; /* Incorrect Length Indicator */
  579. unsigned reserved2_4 :1; /* Reserved */
  580. unsigned sense_key :4; /* Sense Key */
  581. #else
  582. #error "Bitfield endianness not defined! Check your byteorder.h"
  583. #endif
  584. u32 information __attribute__ ((packed));
  585. u8 asl; /* Additional sense length (n-7) */
  586. u32 command_specific; /* Additional command specific information */
  587. u8 asc; /* Additional Sense Code */
  588. u8 ascq; /* Additional Sense Code Qualifier */
  589. u8 replaceable_unit_code; /* Field Replaceable Unit Code */
  590. u8 sksv[3];
  591. u8 pad[2]; /* Padding to 20 bytes */
  592. } idefloppy_request_sense_result_t;
  593. /*
  594.  * Pages of the SELECT SENSE / MODE SENSE packet commands.
  595.  */
  596. #define IDEFLOPPY_CAPABILITIES_PAGE 0x1b
  597. #define IDEFLOPPY_FLEXIBLE_DISK_PAGE 0x05
  598. /*
  599.  * Mode Parameter Header for the MODE SENSE packet command
  600.  */
  601. typedef struct {
  602. u16 mode_data_length; /* Length of the following data transfer */
  603. u8 medium_type; /* Medium Type */
  604. #if defined(__LITTLE_ENDIAN_BITFIELD)
  605. unsigned reserved3 :7;
  606. unsigned wp :1; /* Write protect */
  607. #elif defined(__BIG_ENDIAN_BITFIELD)
  608. unsigned wp :1; /* Write protect */
  609. unsigned reserved3 :7;
  610. #else
  611. #error "Bitfield endianness not defined! Check your byteorder.h"
  612. #endif
  613. u8 reserved[4];
  614. } idefloppy_mode_parameter_header_t;
  615. #define IDEFLOPPY_MIN(a,b) ((a)<(b) ? (a):(b))
  616. #define IDEFLOPPY_MAX(a,b) ((a)>(b) ? (a):(b))
  617. /*
  618.  * Too bad. The drive wants to send us data which we are not ready to accept.
  619.  * Just throw it away.
  620.  */
  621. static void idefloppy_discard_data (ide_drive_t *drive, unsigned int bcount)
  622. {
  623. while (bcount--)
  624. IN_BYTE (IDE_DATA_REG);
  625. }
  626. #if IDEFLOPPY_DEBUG_BUGS
  627. static void idefloppy_write_zeros (ide_drive_t *drive, unsigned int bcount)
  628. {
  629. while (bcount--)
  630. OUT_BYTE (0, IDE_DATA_REG);
  631. }
  632. #endif /* IDEFLOPPY_DEBUG_BUGS */
  633. /*
  634.  * idefloppy_end_request is used to finish servicing a request.
  635.  *
  636.  * For read/write requests, we will call ide_end_request to pass to the
  637.  * next buffer.
  638.  */
  639. static void idefloppy_end_request (byte uptodate, ide_hwgroup_t *hwgroup)
  640. {
  641. ide_drive_t *drive = hwgroup->drive;
  642. idefloppy_floppy_t *floppy = drive->driver_data;
  643. struct request *rq = hwgroup->rq;
  644. int error;
  645. #if IDEFLOPPY_DEBUG_LOG
  646. printk (KERN_INFO "Reached idefloppy_end_requestn");
  647. #endif /* IDEFLOPPY_DEBUG_LOG */
  648. switch (uptodate) {
  649. case 0: error = IDEFLOPPY_ERROR_GENERAL; break;
  650. case 1: error = 0; break;
  651. default: error = uptodate;
  652. }
  653. if (error)
  654. floppy->failed_pc = NULL;
  655. /* Why does this happen? */
  656. if (!rq)
  657. return;
  658. if (!IDEFLOPPY_RQ_CMD (rq->cmd)) {
  659. ide_end_request (uptodate, hwgroup);
  660. return;
  661. }
  662. rq->errors = error;
  663. ide_end_drive_cmd (drive, 0, 0);
  664. }
  665. static void idefloppy_input_buffers (ide_drive_t *drive, idefloppy_pc_t *pc, unsigned int bcount)
  666. {
  667. struct request *rq = pc->rq;
  668. struct buffer_head *bh = rq->bh;
  669. int count;
  670. while (bcount) {
  671. if (pc->b_count == bh->b_size) {
  672. rq->sector += rq->current_nr_sectors;
  673. rq->nr_sectors -= rq->current_nr_sectors;
  674. idefloppy_end_request (1, HWGROUP(drive));
  675. if ((bh = rq->bh) != NULL)
  676. pc->b_count = 0;
  677. }
  678. if (bh == NULL) {
  679. printk (KERN_ERR "%s: bh == NULL in idefloppy_input_buffers, bcount == %dn", drive->name, bcount);
  680. idefloppy_discard_data (drive, bcount);
  681. return;
  682. }
  683. count = IDEFLOPPY_MIN (bh->b_size - pc->b_count, bcount);
  684. atapi_input_bytes (drive, bh->b_data + pc->b_count, count);
  685. bcount -= count; pc->b_count += count;
  686. }
  687. }
  688. static void idefloppy_output_buffers (ide_drive_t *drive, idefloppy_pc_t *pc, unsigned int bcount)
  689. {
  690. struct request *rq = pc->rq;
  691. struct buffer_head *bh = rq->bh;
  692. int count;
  693. while (bcount) {
  694. if (!pc->b_count) {
  695. rq->sector += rq->current_nr_sectors;
  696. rq->nr_sectors -= rq->current_nr_sectors;
  697. idefloppy_end_request (1, HWGROUP(drive));
  698. if ((bh = rq->bh) != NULL) {
  699. pc->b_data = bh->b_data;
  700. pc->b_count = bh->b_size;
  701. }
  702. }
  703. if (bh == NULL) {
  704. printk (KERN_ERR "%s: bh == NULL in idefloppy_output_buffers, bcount == %dn", drive->name, bcount);
  705. idefloppy_write_zeros (drive, bcount);
  706. return;
  707. }
  708. count = IDEFLOPPY_MIN (pc->b_count, bcount);
  709. atapi_output_bytes (drive, pc->b_data, count);
  710. bcount -= count; pc->b_data += count; pc->b_count -= count;
  711. }
  712. }
  713. #ifdef CONFIG_BLK_DEV_IDEDMA
  714. static void idefloppy_update_buffers (ide_drive_t *drive, idefloppy_pc_t *pc)
  715. {
  716. struct request *rq = pc->rq;
  717. struct buffer_head *bh = rq->bh;
  718. while ((bh = rq->bh) != NULL)
  719. idefloppy_end_request (1, HWGROUP(drive));
  720. }
  721. #endif /* CONFIG_BLK_DEV_IDEDMA */
  722. /*
  723.  * idefloppy_queue_pc_head generates a new packet command request in front
  724.  * of the request queue, before the current request, so that it will be
  725.  * processed immediately, on the next pass through the driver.
  726.  */
  727. static void idefloppy_queue_pc_head (ide_drive_t *drive,idefloppy_pc_t *pc,struct request *rq)
  728. {
  729. ide_init_drive_cmd (rq);
  730. rq->buffer = (char *) pc;
  731. rq->cmd = IDEFLOPPY_PC_RQ;
  732. (void) ide_do_drive_cmd (drive, rq, ide_preempt);
  733. }
  734. static idefloppy_pc_t *idefloppy_next_pc_storage (ide_drive_t *drive)
  735. {
  736. idefloppy_floppy_t *floppy = drive->driver_data;
  737. if (floppy->pc_stack_index==IDEFLOPPY_PC_STACK)
  738. floppy->pc_stack_index=0;
  739. return (&floppy->pc_stack[floppy->pc_stack_index++]);
  740. }
  741. static struct request *idefloppy_next_rq_storage (ide_drive_t *drive)
  742. {
  743. idefloppy_floppy_t *floppy = drive->driver_data;
  744. if (floppy->rq_stack_index==IDEFLOPPY_PC_STACK)
  745. floppy->rq_stack_index=0;
  746. return (&floppy->rq_stack[floppy->rq_stack_index++]);
  747. }
  748. /*
  749.  * idefloppy_analyze_error is called on each failed packet command retry
  750.  * to analyze the request sense.
  751.  */
  752. static void idefloppy_analyze_error (ide_drive_t *drive,idefloppy_request_sense_result_t *result)
  753. {
  754. idefloppy_floppy_t *floppy = drive->driver_data;
  755. floppy->sense_key = result->sense_key; floppy->asc = result->asc; floppy->ascq = result->ascq;
  756. floppy->progress_indication= result->sksv[0] & 0x80 ?
  757. (unsigned short)get_unaligned((u16 *)(result->sksv+1)):0x10000;
  758. #if IDEFLOPPY_DEBUG_LOG
  759. if (floppy->failed_pc)
  760. printk (KERN_INFO "ide-floppy: pc = %x, sense key = %x, asc = %x, ascq = %xn",floppy->failed_pc->c[0],result->sense_key,result->asc,result->ascq);
  761. else
  762. printk (KERN_INFO "ide-floppy: sense key = %x, asc = %x, ascq = %xn",result->sense_key,result->asc,result->ascq);
  763. #endif /* IDEFLOPPY_DEBUG_LOG */
  764. }
  765. static void idefloppy_request_sense_callback (ide_drive_t *drive)
  766. {
  767. idefloppy_floppy_t *floppy = drive->driver_data;
  768. #if IDEFLOPPY_DEBUG_LOG
  769. printk (KERN_INFO "ide-floppy: Reached idefloppy_request_sense_callbackn");
  770. #endif /* IDEFLOPPY_DEBUG_LOG */
  771. if (!floppy->pc->error) {
  772. idefloppy_analyze_error (drive,(idefloppy_request_sense_result_t *) floppy->pc->buffer);
  773. idefloppy_end_request (1,HWGROUP (drive));
  774. } else {
  775. printk (KERN_ERR "Error in REQUEST SENSE itself - Aborting request!n");
  776. idefloppy_end_request (0,HWGROUP (drive));
  777. }
  778. }
  779. /*
  780.  * General packet command callback function.
  781.  */
  782. static void idefloppy_pc_callback (ide_drive_t *drive)
  783. {
  784. idefloppy_floppy_t *floppy = drive->driver_data;
  785. #if IDEFLOPPY_DEBUG_LOG
  786. printk (KERN_INFO "ide-floppy: Reached idefloppy_pc_callbackn");
  787. #endif /* IDEFLOPPY_DEBUG_LOG */
  788. idefloppy_end_request (floppy->pc->error ? 0:1, HWGROUP(drive));
  789. }
  790. /*
  791.  * idefloppy_init_pc initializes a packet command.
  792.  */
  793. static void idefloppy_init_pc (idefloppy_pc_t *pc)
  794. {
  795. memset (pc->c, 0, 12);
  796. pc->retries = 0;
  797. pc->flags = 0;
  798. pc->request_transfer = 0;
  799. pc->buffer = pc->pc_buffer;
  800. pc->buffer_size = IDEFLOPPY_PC_BUFFER_SIZE;
  801. pc->b_data = NULL;
  802. pc->callback = &idefloppy_pc_callback;
  803. }
  804. static void idefloppy_create_request_sense_cmd (idefloppy_pc_t *pc)
  805. {
  806. idefloppy_init_pc (pc);
  807. pc->c[0] = IDEFLOPPY_REQUEST_SENSE_CMD;
  808. pc->c[4] = 255;
  809. pc->request_transfer = 18;
  810. pc->callback = &idefloppy_request_sense_callback;
  811. }
  812. /*
  813.  * idefloppy_retry_pc is called when an error was detected during the
  814.  * last packet command. We queue a request sense packet command in
  815.  * the head of the request list.
  816.  */
  817. static void idefloppy_retry_pc (ide_drive_t *drive)
  818. {
  819. idefloppy_pc_t *pc;
  820. struct request *rq;
  821. idefloppy_error_reg_t error;
  822. error.all = IN_BYTE (IDE_ERROR_REG);
  823. pc = idefloppy_next_pc_storage (drive);
  824. rq = idefloppy_next_rq_storage (drive);
  825. idefloppy_create_request_sense_cmd (pc);
  826. idefloppy_queue_pc_head (drive, pc, rq);
  827. }
  828. /*
  829.  * idefloppy_pc_intr is the usual interrupt handler which will be called
  830.  * during a packet command.
  831.  */
  832. static ide_startstop_t idefloppy_pc_intr (ide_drive_t *drive)
  833. {
  834. idefloppy_floppy_t *floppy = drive->driver_data;
  835. idefloppy_status_reg_t status;
  836. idefloppy_bcount_reg_t bcount;
  837. idefloppy_ireason_reg_t ireason;
  838. idefloppy_pc_t *pc=floppy->pc;
  839. struct request *rq = pc->rq;
  840. unsigned int temp;
  841. #if IDEFLOPPY_DEBUG_LOG
  842. printk (KERN_INFO "ide-floppy: Reached idefloppy_pc_intr interrupt handlern");
  843. #endif /* IDEFLOPPY_DEBUG_LOG */
  844. #ifdef CONFIG_BLK_DEV_IDEDMA
  845. if (test_bit (PC_DMA_IN_PROGRESS, &pc->flags)) {
  846. if (HWIF(drive)->dmaproc(ide_dma_end, drive)) {
  847. set_bit (PC_DMA_ERROR, &pc->flags);
  848. } else {
  849. pc->actually_transferred=pc->request_transfer;
  850. idefloppy_update_buffers (drive, pc);
  851. }
  852. #if IDEFLOPPY_DEBUG_LOG
  853. printk (KERN_INFO "ide-floppy: DMA finishedn");
  854. #endif /* IDEFLOPPY_DEBUG_LOG */
  855. }
  856. #endif /* CONFIG_BLK_DEV_IDEDMA */
  857. status.all = GET_STAT(); /* Clear the interrupt */
  858. if (!status.b.drq) { /* No more interrupts */
  859. #if IDEFLOPPY_DEBUG_LOG
  860. printk (KERN_INFO "Packet command completed, %d bytes transferredn", pc->actually_transferred);
  861. #endif /* IDEFLOPPY_DEBUG_LOG */
  862. clear_bit (PC_DMA_IN_PROGRESS, &pc->flags);
  863. ide__sti(); /* local CPU only */
  864. if (status.b.check || test_bit (PC_DMA_ERROR, &pc->flags)) { /* Error detected */
  865. #if IDEFLOPPY_DEBUG_LOG
  866. printk (KERN_INFO "ide-floppy: %s: I/O errorn",drive->name);
  867. #endif /* IDEFLOPPY_DEBUG_LOG */
  868. rq->errors++;
  869. if (pc->c[0] == IDEFLOPPY_REQUEST_SENSE_CMD) {
  870. printk (KERN_ERR "ide-floppy: I/O error in request sense commandn");
  871. return ide_do_reset (drive);
  872. }
  873. idefloppy_retry_pc (drive); /* Retry operation */
  874. return ide_stopped; /* queued, but not started */
  875. }
  876. pc->error = 0;
  877. if (floppy->failed_pc == pc)
  878. floppy->failed_pc=NULL;
  879. pc->callback(drive); /* Command finished - Call the callback function */
  880. return ide_stopped;
  881. }
  882. #ifdef CONFIG_BLK_DEV_IDEDMA
  883. if (test_and_clear_bit (PC_DMA_IN_PROGRESS, &pc->flags)) {
  884. printk (KERN_ERR "ide-floppy: The floppy wants to issue more interrupts in DMA moden");
  885. (void) HWIF(drive)->dmaproc(ide_dma_off, drive);
  886. return ide_do_reset (drive);
  887. }
  888. #endif /* CONFIG_BLK_DEV_IDEDMA */
  889. bcount.b.high=IN_BYTE (IDE_BCOUNTH_REG); /* Get the number of bytes to transfer */
  890. bcount.b.low=IN_BYTE (IDE_BCOUNTL_REG); /* on this interrupt */
  891. ireason.all=IN_BYTE (IDE_IREASON_REG);
  892. if (ireason.b.cod) {
  893. printk (KERN_ERR "ide-floppy: CoD != 0 in idefloppy_pc_intrn");
  894. return ide_do_reset (drive);
  895. }
  896. if (ireason.b.io == test_bit (PC_WRITING, &pc->flags)) { /* Hopefully, we will never get here */
  897. printk (KERN_ERR "ide-floppy: We wanted to %s, ", ireason.b.io ? "Write":"Read");
  898. printk (KERN_ERR "but the floppy wants us to %s !n",ireason.b.io ? "Read":"Write");
  899. return ide_do_reset (drive);
  900. }
  901. if (!test_bit (PC_WRITING, &pc->flags)) { /* Reading - Check that we have enough space */
  902. temp = pc->actually_transferred + bcount.all;
  903. if ( temp > pc->request_transfer) {
  904. if (temp > pc->buffer_size) {
  905. printk (KERN_ERR "ide-floppy: The floppy wants to send us more data than expected - discarding datan");
  906. idefloppy_discard_data (drive,bcount.all);
  907. ide_set_handler (drive,&idefloppy_pc_intr,IDEFLOPPY_WAIT_CMD, NULL);
  908. return ide_started;
  909. }
  910. #if IDEFLOPPY_DEBUG_LOG
  911. printk (KERN_NOTICE "ide-floppy: The floppy wants to send us more data than expected - allowing transfern");
  912. #endif /* IDEFLOPPY_DEBUG_LOG */
  913. }
  914. }
  915. if (test_bit (PC_WRITING, &pc->flags)) {
  916. if (pc->buffer != NULL)
  917. atapi_output_bytes (drive,pc->current_position,bcount.all); /* Write the current buffer */
  918. else
  919. idefloppy_output_buffers (drive, pc, bcount.all);
  920. } else {
  921. if (pc->buffer != NULL)
  922. atapi_input_bytes (drive,pc->current_position,bcount.all); /* Read the current buffer */
  923. else
  924. idefloppy_input_buffers (drive, pc, bcount.all);
  925. }
  926. pc->actually_transferred+=bcount.all; /* Update the current position */
  927. pc->current_position+=bcount.all;
  928. ide_set_handler (drive,&idefloppy_pc_intr,IDEFLOPPY_WAIT_CMD, NULL); /* And set the interrupt handler again */
  929. return ide_started;
  930. }
  931. /*
  932.  * This is the original routine that did the packet transfer.
  933.  * It fails at high speeds on the Iomega ZIP drive, so there's a slower version
  934.  * for that drive below. The algorithm is chosen based on drive type
  935.  */
  936. static ide_startstop_t idefloppy_transfer_pc (ide_drive_t *drive)
  937. {
  938. ide_startstop_t startstop;
  939. idefloppy_floppy_t *floppy = drive->driver_data;
  940. idefloppy_ireason_reg_t ireason;
  941. if (ide_wait_stat (&startstop,drive,DRQ_STAT,BUSY_STAT,WAIT_READY)) {
  942. printk (KERN_ERR "ide-floppy: Strange, packet command initiated yet DRQ isn't assertedn");
  943. return startstop;
  944. }
  945. ireason.all=IN_BYTE (IDE_IREASON_REG);
  946. if (!ireason.b.cod || ireason.b.io) {
  947. printk (KERN_ERR "ide-floppy: (IO,CoD) != (0,1) while issuing a packet commandn");
  948. return ide_do_reset (drive);
  949. }
  950. ide_set_handler (drive, &idefloppy_pc_intr, IDEFLOPPY_WAIT_CMD, NULL); /* Set the interrupt routine */
  951. atapi_output_bytes (drive, floppy->pc->c, 12); /* Send the actual packet */
  952. return ide_started;
  953. }
  954. /*
  955.  * What we have here is a classic case of a top half / bottom half
  956.  * interrupt service routine. In interrupt mode, the device sends
  957.  * an interrupt to signal it's ready to receive a packet. However,
  958.  * we need to delay about 2-3 ticks before issuing the packet or we
  959.  * gets in trouble.
  960.  *
  961.  * So, follow carefully. transfer_pc1 is called as an interrupt (or
  962.  * directly). In either case, when the device says it's ready for a 
  963.  * packet, we schedule the packet transfer to occur about 2-3 ticks
  964.  * later in transfer_pc2.
  965.  */
  966. static int idefloppy_transfer_pc2 (ide_drive_t *drive)
  967. {
  968. idefloppy_floppy_t *floppy = drive->driver_data;
  969. atapi_output_bytes (drive, floppy->pc->c, 12); /* Send the actual packet */
  970. return IDEFLOPPY_WAIT_CMD; /* Timeout for the packet command */
  971. }
  972. static ide_startstop_t idefloppy_transfer_pc1 (ide_drive_t *drive)
  973. {
  974. idefloppy_floppy_t *floppy = drive->driver_data;
  975. ide_startstop_t startstop;
  976. idefloppy_ireason_reg_t ireason;
  977. if (ide_wait_stat (&startstop,drive,DRQ_STAT,BUSY_STAT,WAIT_READY)) {
  978. printk (KERN_ERR "ide-floppy: Strange, packet command initiated yet DRQ isn't assertedn");
  979. return startstop;
  980. }
  981. ireason.all=IN_BYTE (IDE_IREASON_REG);
  982. if (!ireason.b.cod || ireason.b.io) {
  983. printk (KERN_ERR "ide-floppy: (IO,CoD) != (0,1) while issuing a packet commandn");
  984. return ide_do_reset (drive);
  985. }
  986. /* 
  987.  * The following delay solves a problem with ATAPI Zip 100 drives where the
  988.  * Busy flag was apparently being deasserted before the unit was ready to
  989.  * receive data. This was happening on a 1200 MHz Athlon system. 10/26/01
  990.  * 25msec is too short, 40 and 50msec work well. idefloppy_pc_intr will 
  991.  * not be actually used until after the packet is moved in about 50 msec.
  992.  */
  993. ide_set_handler (drive, 
  994.   &idefloppy_pc_intr,  /* service routine for packet command */
  995.   floppy->ticks, /* wait this long before "failing" */
  996.   &idefloppy_transfer_pc2); /* fail == transfer_pc2 */
  997. return ide_started;
  998. }
  999. /*
  1000.  * Issue a packet command
  1001.  */
  1002. static ide_startstop_t idefloppy_issue_pc (ide_drive_t *drive, idefloppy_pc_t *pc)
  1003. {
  1004. idefloppy_floppy_t *floppy = drive->driver_data;
  1005. idefloppy_bcount_reg_t bcount;
  1006. int dma_ok = 0;
  1007. ide_handler_t *pkt_xfer_routine;
  1008. #if IDEFLOPPY_DEBUG_BUGS
  1009. if (floppy->pc->c[0] == IDEFLOPPY_REQUEST_SENSE_CMD && pc->c[0] == IDEFLOPPY_REQUEST_SENSE_CMD) {
  1010. printk (KERN_ERR "ide-floppy: possible ide-floppy.c bug - Two request sense in serial were issuedn");
  1011. }
  1012. #endif /* IDEFLOPPY_DEBUG_BUGS */
  1013. if (floppy->failed_pc == NULL && pc->c[0] != IDEFLOPPY_REQUEST_SENSE_CMD)
  1014. floppy->failed_pc=pc;
  1015. floppy->pc=pc; /* Set the current packet command */
  1016. if (pc->retries > IDEFLOPPY_MAX_PC_RETRIES || test_bit (PC_ABORT, &pc->flags)) {
  1017. /*
  1018.  * We will "abort" retrying a packet command in case
  1019.  * a legitimate error code was received.
  1020.  */
  1021. if (!test_bit (PC_ABORT, &pc->flags)) {
  1022. if (!test_bit (PC_SUPPRESS_ERROR, &pc->flags)) {
  1023. ;
  1024.       printk( KERN_ERR "ide-floppy: %s: I/O error, pc = %2x, key = %2x, asc = %2x, ascq = %2xn",
  1025. drive->name, pc->c[0], floppy->sense_key, floppy->asc, floppy->ascq);
  1026. }
  1027. pc->error = IDEFLOPPY_ERROR_GENERAL; /* Giving up */
  1028. }
  1029. floppy->failed_pc=NULL;
  1030. pc->callback(drive);
  1031. return ide_stopped;
  1032. }
  1033. #if IDEFLOPPY_DEBUG_LOG
  1034. printk (KERN_INFO "Retry number - %dn",pc->retries);
  1035. #endif /* IDEFLOPPY_DEBUG_LOG */
  1036. pc->retries++;
  1037. pc->actually_transferred=0; /* We haven't transferred any data yet */
  1038. pc->current_position=pc->buffer;
  1039. bcount.all = IDE_MIN(pc->request_transfer, 63 * 1024);
  1040. #ifdef CONFIG_BLK_DEV_IDEDMA
  1041. if (test_and_clear_bit (PC_DMA_ERROR, &pc->flags)) {
  1042. (void) HWIF(drive)->dmaproc(ide_dma_off, drive);
  1043. }
  1044. if (test_bit (PC_DMA_RECOMMENDED, &pc->flags) && drive->using_dma)
  1045. dma_ok=!HWIF(drive)->dmaproc(test_bit (PC_WRITING, &pc->flags) ? ide_dma_write : ide_dma_read, drive);
  1046. #endif /* CONFIG_BLK_DEV_IDEDMA */
  1047. if (IDE_CONTROL_REG)
  1048. OUT_BYTE (drive->ctl,IDE_CONTROL_REG);
  1049. OUT_BYTE (dma_ok ? 1:0,IDE_FEATURE_REG); /* Use PIO/DMA */
  1050. OUT_BYTE (bcount.b.high,IDE_BCOUNTH_REG);
  1051. OUT_BYTE (bcount.b.low,IDE_BCOUNTL_REG);
  1052. OUT_BYTE (drive->select.all,IDE_SELECT_REG);
  1053. #ifdef CONFIG_BLK_DEV_IDEDMA
  1054. if (dma_ok) { /* Begin DMA, if necessary */
  1055. set_bit (PC_DMA_IN_PROGRESS, &pc->flags);
  1056. (void) (HWIF(drive)->dmaproc(ide_dma_begin, drive));
  1057. }
  1058. #endif /* CONFIG_BLK_DEV_IDEDMA */
  1059. /* Can we transfer the packet when we get the interrupt or wait? */
  1060. if (test_bit (IDEFLOPPY_ZIP_DRIVE, &floppy->flags)) {
  1061. pkt_xfer_routine = &idefloppy_transfer_pc1; /* wait */
  1062. } else {
  1063. pkt_xfer_routine = &idefloppy_transfer_pc; /* immediate */
  1064. }
  1065. if (test_bit (IDEFLOPPY_DRQ_INTERRUPT, &floppy->flags)) {
  1066. ide_set_handler (drive, pkt_xfer_routine, IDEFLOPPY_WAIT_CMD, NULL);
  1067. OUT_BYTE (WIN_PACKETCMD, IDE_COMMAND_REG); /* Issue the packet command */
  1068. return ide_started;
  1069. } else {
  1070. OUT_BYTE (WIN_PACKETCMD, IDE_COMMAND_REG);
  1071. return (*pkt_xfer_routine) (drive);
  1072. }
  1073. }
  1074. static void idefloppy_rw_callback (ide_drive_t *drive)
  1075. {
  1076. #if IDEFLOPPY_DEBUG_LOG
  1077. printk (KERN_INFO "ide-floppy: Reached idefloppy_rw_callbackn");
  1078. #endif /* IDEFLOPPY_DEBUG_LOG */
  1079. idefloppy_end_request(1, HWGROUP(drive));
  1080. return;
  1081. }
  1082. static void idefloppy_create_prevent_cmd (idefloppy_pc_t *pc, int prevent)
  1083. {
  1084. #if IDEFLOPPY_DEBUG_LOG
  1085. printk (KERN_INFO "ide-floppy: creating prevent removal command, prevent = %dn", prevent);
  1086. #endif /* IDEFLOPPY_DEBUG_LOG */
  1087. idefloppy_init_pc (pc);
  1088. pc->c[0] = IDEFLOPPY_PREVENT_REMOVAL_CMD;
  1089. pc->c[4] = prevent;
  1090. }
  1091. static void idefloppy_create_read_capacity_cmd (idefloppy_pc_t *pc)
  1092. {
  1093. idefloppy_init_pc (pc);
  1094. pc->c[0] = IDEFLOPPY_READ_CAPACITY_CMD;
  1095. pc->c[7] = 255;
  1096. pc->c[8] = 255;
  1097. pc->request_transfer = 255;
  1098. }
  1099. static void idefloppy_create_format_unit_cmd (idefloppy_pc_t *pc, int b, int l,
  1100.       int flags)
  1101. {
  1102. idefloppy_init_pc (pc);
  1103. pc->c[0] = IDEFLOPPY_FORMAT_UNIT_CMD;
  1104. pc->c[1] = 0x17;
  1105. memset(pc->buffer, 0, 12);
  1106. pc->buffer[1] = 0xA2;
  1107. /* Default format list header, byte 1: FOV/DCRT/IMM bits set */
  1108. if (flags & 1) /* Verify bit on... */
  1109. pc->buffer[1] ^= 0x20; /* ... turn off DCRT bit */
  1110. pc->buffer[3] = 8;
  1111. put_unaligned(htonl(b), (unsigned int *)(&pc->buffer[4]));
  1112. put_unaligned(htonl(l), (unsigned int *)(&pc->buffer[8]));
  1113. pc->buffer_size=12;
  1114. set_bit(PC_WRITING, &pc->flags);
  1115. }
  1116. /*
  1117.  * A mode sense command is used to "sense" floppy parameters.
  1118.  */
  1119. static void idefloppy_create_mode_sense_cmd (idefloppy_pc_t *pc, byte page_code, byte type)
  1120. {
  1121. unsigned short length = sizeof (idefloppy_mode_parameter_header_t);
  1122. idefloppy_init_pc (pc);
  1123. pc->c[0] = IDEFLOPPY_MODE_SENSE_CMD;
  1124. pc->c[1] = 0;
  1125. pc->c[2] = page_code + (type << 6);
  1126. switch (page_code) {
  1127. case IDEFLOPPY_CAPABILITIES_PAGE:
  1128. length += 12;
  1129. break;
  1130. case IDEFLOPPY_FLEXIBLE_DISK_PAGE:
  1131. length += 32;
  1132. break;
  1133. default:
  1134. printk (KERN_ERR "ide-floppy: unsupported page code in create_mode_sense_cmdn");
  1135. }
  1136. put_unaligned (htons (length), (unsigned short *) &pc->c[7]);
  1137. pc->request_transfer = length;
  1138. }
  1139. static void idefloppy_create_start_stop_cmd (idefloppy_pc_t *pc, int start)
  1140. {
  1141. idefloppy_init_pc (pc);
  1142. pc->c[0] = IDEFLOPPY_START_STOP_CMD;
  1143. pc->c[4] = start;
  1144. }
  1145. static void idefloppy_create_test_unit_ready_cmd(idefloppy_pc_t *pc)
  1146. {
  1147. idefloppy_init_pc(pc);
  1148. pc->c[0] = IDEFLOPPY_TEST_UNIT_READY_CMD;
  1149. }
  1150. static void idefloppy_create_rw_cmd (idefloppy_floppy_t *floppy, idefloppy_pc_t *pc, struct request *rq, unsigned long sector)
  1151. {
  1152. int block = sector / floppy->bs_factor;
  1153. int blocks = rq->nr_sectors / floppy->bs_factor;
  1154. #if IDEFLOPPY_DEBUG_LOG
  1155. printk ("create_rw1%d_cmd: block == %d, blocks == %dn",
  1156. 2 * test_bit (IDEFLOPPY_USE_READ12, &floppy->flags), block, blocks);
  1157. #endif /* IDEFLOPPY_DEBUG_LOG */
  1158. idefloppy_init_pc (pc);
  1159. if (test_bit (IDEFLOPPY_USE_READ12, &floppy->flags)) {
  1160. pc->c[0] = rq->cmd == READ ? IDEFLOPPY_READ12_CMD : IDEFLOPPY_WRITE12_CMD;
  1161. put_unaligned (htonl (blocks), (unsigned int *) &pc->c[6]);
  1162. } else {
  1163. pc->c[0] = rq->cmd == READ ? IDEFLOPPY_READ10_CMD : IDEFLOPPY_WRITE10_CMD;
  1164. put_unaligned (htons (blocks), (unsigned short *) &pc->c[7]);
  1165. }
  1166. put_unaligned (htonl (block), (unsigned int *) &pc->c[2]);
  1167. pc->callback = &idefloppy_rw_callback;
  1168. pc->rq = rq;
  1169. pc->b_data = rq->buffer;
  1170. pc->b_count = rq->cmd == READ ? 0 : rq->bh->b_size;
  1171. if (rq->cmd == WRITE)
  1172. set_bit (PC_WRITING, &pc->flags);
  1173. pc->buffer = NULL;
  1174. pc->request_transfer = pc->buffer_size = blocks * floppy->block_size;
  1175. set_bit (PC_DMA_RECOMMENDED, &pc->flags);
  1176. }
  1177. /*
  1178.  * idefloppy_do_request is our request handling function.
  1179.  */
  1180. static ide_startstop_t idefloppy_do_request (ide_drive_t *drive, struct request *rq, unsigned long block)
  1181. {
  1182. idefloppy_floppy_t *floppy = drive->driver_data;
  1183. idefloppy_pc_t *pc;
  1184. #if IDEFLOPPY_DEBUG_LOG
  1185. printk (KERN_INFO "rq_status: %d, rq_dev: %u, cmd: %d, errors: %dn",rq->rq_status,(unsigned int) rq->rq_dev,rq->cmd,rq->errors);
  1186. printk (KERN_INFO "sector: %ld, nr_sectors: %ld, current_nr_sectors: %ldn",rq->sector,rq->nr_sectors,rq->current_nr_sectors);
  1187. #endif /* IDEFLOPPY_DEBUG_LOG */
  1188. if (rq->errors >= ERROR_MAX) {
  1189. if (floppy->failed_pc != NULL)
  1190. printk (KERN_ERR "ide-floppy: %s: I/O error, pc = %2x, key = %2x, asc = %2x, ascq = %2xn",
  1191. drive->name, floppy->failed_pc->c[0], floppy->sense_key, floppy->asc, floppy->ascq);
  1192. else
  1193. printk (KERN_ERR "ide-floppy: %s: I/O errorn", drive->name);
  1194. idefloppy_end_request (0, HWGROUP(drive));
  1195. return ide_stopped;
  1196. }
  1197. switch (rq->cmd) {
  1198. case READ:
  1199. case WRITE:
  1200. if (rq->sector % floppy->bs_factor || rq->nr_sectors % floppy->bs_factor) {
  1201. printk ("%s: unsupported r/w request sizen", drive->name);
  1202. idefloppy_end_request (0, HWGROUP(drive));
  1203. return ide_stopped;
  1204. }
  1205. pc = idefloppy_next_pc_storage (drive);
  1206. idefloppy_create_rw_cmd (floppy, pc, rq, block);
  1207. break;
  1208. case IDEFLOPPY_PC_RQ:
  1209. pc = (idefloppy_pc_t *) rq->buffer;
  1210. break;
  1211. default:
  1212. printk (KERN_ERR "ide-floppy: unsupported command %x in request queuen", rq->cmd);
  1213. idefloppy_end_request (0,HWGROUP (drive));
  1214. return ide_stopped;
  1215. }
  1216. pc->rq = rq;
  1217. return idefloppy_issue_pc (drive, pc);
  1218. }
  1219. /*
  1220.  * idefloppy_queue_pc_tail adds a special packet command request to the
  1221.  * tail of the request queue, and waits for it to be serviced.
  1222.  */
  1223. static int idefloppy_queue_pc_tail (ide_drive_t *drive,idefloppy_pc_t *pc)
  1224. {
  1225. struct request rq;
  1226. ide_init_drive_cmd (&rq);
  1227. rq.buffer = (char *) pc;
  1228. rq.cmd = IDEFLOPPY_PC_RQ;
  1229. return ide_do_drive_cmd (drive, &rq, ide_wait);
  1230. }
  1231. /*
  1232.  * Look at the flexible disk page parameters. We will ignore the CHS
  1233.  * capacity parameters and use the LBA parameters instead.
  1234.  */
  1235. static int idefloppy_get_flexible_disk_page (ide_drive_t *drive)
  1236. {
  1237. idefloppy_floppy_t *floppy = drive->driver_data;
  1238. idefloppy_pc_t pc;
  1239. idefloppy_mode_parameter_header_t *header;
  1240. idefloppy_flexible_disk_page_t *page;
  1241. int capacity, lba_capacity;
  1242. idefloppy_create_mode_sense_cmd (&pc, IDEFLOPPY_FLEXIBLE_DISK_PAGE, MODE_SENSE_CURRENT);
  1243. if (idefloppy_queue_pc_tail (drive,&pc)) {
  1244. printk (KERN_ERR "ide-floppy: Can't get flexible disk page parametersn");
  1245. return 1;
  1246. }
  1247. header = (idefloppy_mode_parameter_header_t *) pc.buffer;
  1248. floppy->wp = header->wp;
  1249. page = (idefloppy_flexible_disk_page_t *) (header + 1);
  1250. page->transfer_rate = ntohs (page->transfer_rate);
  1251. page->sector_size = ntohs (page->sector_size);
  1252. page->cyls = ntohs (page->cyls);
  1253. page->rpm = ntohs (page->rpm);
  1254. capacity = page->cyls * page->heads * page->sectors * page->sector_size;
  1255. if (memcmp (page, &floppy->flexible_disk_page, sizeof (idefloppy_flexible_disk_page_t)))
  1256. printk (KERN_INFO "%s: %dkB, %d/%d/%d CHS, %d kBps, %d sector size, %d rpmn",
  1257. drive->name, capacity / 1024, page->cyls, page->heads, page->sectors,
  1258. page->transfer_rate / 8, page->sector_size, page->rpm);
  1259. floppy->flexible_disk_page = *page;
  1260. drive->bios_cyl = page->cyls;
  1261. drive->bios_head = page->heads;
  1262. drive->bios_sect = page->sectors;
  1263. lba_capacity = floppy->blocks * floppy->block_size;
  1264. if (capacity < lba_capacity) {
  1265. printk (KERN_NOTICE "%s: The disk reports a capacity of %d bytes, "
  1266. "but the drive only handles %dn",
  1267. drive->name, lba_capacity, capacity);
  1268. floppy->blocks = floppy->block_size ? capacity / floppy->block_size : 0;
  1269. }
  1270. return 0;
  1271. }
  1272. static int idefloppy_get_capability_page(ide_drive_t *drive)
  1273. {
  1274. idefloppy_floppy_t *floppy = drive->driver_data;
  1275. idefloppy_pc_t pc;
  1276. idefloppy_mode_parameter_header_t *header;
  1277. idefloppy_capabilities_page_t *page;
  1278. floppy->srfp=0;
  1279. idefloppy_create_mode_sense_cmd (&pc, IDEFLOPPY_CAPABILITIES_PAGE,
  1280.  MODE_SENSE_CURRENT);
  1281. set_bit(PC_SUPPRESS_ERROR, &pc.flags);
  1282. if (idefloppy_queue_pc_tail (drive,&pc)) {
  1283. return 1;
  1284. }
  1285. header = (idefloppy_mode_parameter_header_t *) pc.buffer;
  1286. page= (idefloppy_capabilities_page_t *)(header+1);
  1287. floppy->srfp=page->srfp;
  1288. return (0);
  1289. }
  1290. /*
  1291.  * Determine if a media is present in the floppy drive, and if so,
  1292.  * its LBA capacity.
  1293.  */
  1294. static int idefloppy_get_capacity (ide_drive_t *drive)
  1295. {
  1296. idefloppy_floppy_t *floppy = drive->driver_data;
  1297. idefloppy_pc_t pc;
  1298. idefloppy_capacity_header_t *header;
  1299. idefloppy_capacity_descriptor_t *descriptor;
  1300. int i, descriptors, rc = 1, blocks, length;
  1301. drive->bios_cyl = 0;
  1302. drive->bios_head = drive->bios_sect = 0;
  1303. floppy->blocks = floppy->bs_factor = 0;
  1304. drive->part[0].nr_sects = 0;
  1305. idefloppy_create_read_capacity_cmd (&pc);
  1306. if (idefloppy_queue_pc_tail (drive, &pc)) {
  1307. printk (KERN_ERR "ide-floppy: Can't get floppy parametersn");
  1308. return 1;
  1309. }
  1310. header = (idefloppy_capacity_header_t *) pc.buffer;
  1311. descriptors = header->length / sizeof (idefloppy_capacity_descriptor_t);
  1312. descriptor = (idefloppy_capacity_descriptor_t *) (header + 1);
  1313. for (i = 0; i < descriptors; i++, descriptor++) {
  1314.                 blocks = descriptor->blocks = ntohl (descriptor->blocks);
  1315.                 length = descriptor->length = ntohs (descriptor->length);
  1316. if (!i) 
  1317. {
  1318.            switch (descriptor->dc) {
  1319.                 case CAPACITY_UNFORMATTED: /* Clik! drive returns this instead of CAPACITY_CURRENT */
  1320.                         if (!test_bit(IDEFLOPPY_CLIK_DRIVE, &floppy->flags))
  1321.                                 break; /* If it is not a clik drive, break out (maintains previous driver behaviour) */
  1322.                 case CAPACITY_CURRENT: /* Normal Zip/LS-120 disks */
  1323.                         if (memcmp (descriptor, &floppy->capacity, sizeof (idefloppy_capacity_descriptor_t)))
  1324.                                 printk (KERN_INFO "%s: %dkB, %d blocks, %d sector sizen", drive->name, blocks * length / 1024, blocks, length);
  1325.                         floppy->capacity = *descriptor;
  1326.                         if (!length || length % 512)
  1327.                                 printk (KERN_NOTICE "%s: %d bytes block size not supportedn", drive->name, length);
  1328.                         else {
  1329.                                 floppy->blocks = blocks;
  1330.                                 floppy->block_size = length;
  1331.                                 if ((floppy->bs_factor = length / 512) != 1)
  1332.                                         printk (KERN_NOTICE "%s: warning: non 512 bytes block size not fully supportedn", drive->name);
  1333.                                 rc = 0;
  1334.                         }
  1335.                         break;
  1336.                 case CAPACITY_NO_CARTRIDGE:
  1337.                         /* This is a KERN_ERR so it appears on screen for the user to see */
  1338.                         printk (KERN_ERR "%s: No disk in driven", drive->name);
  1339.                                         break;
  1340.                 case CAPACITY_INVALID:
  1341.                         printk (KERN_ERR "%s: Invalid capacity for disk in driven", drive->name);
  1342.                                         break;
  1343. }
  1344. }
  1345. if (!i) {
  1346. IDEFLOPPY_DEBUG( "Descriptor 0 Code: %dn", descriptor->dc);
  1347. }
  1348. IDEFLOPPY_DEBUG( "Descriptor %d: %dkB, %d blocks, %d sector sizen", i, blocks * length / 1024, blocks, length);
  1349. }
  1350. /* Clik! disk does not support get_flexible_disk_page */
  1351.         if (!test_bit(IDEFLOPPY_CLIK_DRIVE, &floppy->flags))
  1352. {
  1353. (void) idefloppy_get_flexible_disk_page (drive);
  1354. }
  1355. drive->part[0].nr_sects = floppy->blocks * floppy->bs_factor;
  1356. return rc;
  1357. }
  1358. /*
  1359. ** Obtain the list of formattable capacities.
  1360. ** Very similar to idefloppy_get_capacity, except that we push the capacity
  1361. ** descriptors to userland, instead of our own structures.
  1362. **
  1363. ** Userland gives us the following structure:
  1364. **
  1365. ** struct idefloppy_format_capacities {
  1366. **        int nformats;
  1367. **        struct {
  1368. **                int nblocks;
  1369. **                int blocksize;
  1370. **                } formats[];
  1371. **        } ;
  1372. **
  1373. ** userland initializes nformats to the number of allocated formats[]
  1374. ** records.  On exit we set nformats to the number of records we've
  1375. ** actually initialized.
  1376. **
  1377. */
  1378. static int idefloppy_get_format_capacities (ide_drive_t *drive,
  1379.     struct inode *inode,
  1380.     struct file *file,
  1381.     int *arg) /* Cheater */
  1382. {
  1383.         idefloppy_pc_t pc;
  1384. idefloppy_capacity_header_t *header;
  1385.         idefloppy_capacity_descriptor_t *descriptor;
  1386. int i, descriptors, blocks, length;
  1387. int u_array_size;
  1388. int u_index;
  1389. int *argp;
  1390. if (get_user(u_array_size, arg))
  1391. return (-EFAULT);
  1392. if (u_array_size <= 0)
  1393. return (-EINVAL);
  1394. idefloppy_create_read_capacity_cmd (&pc);
  1395. if (idefloppy_queue_pc_tail (drive, &pc)) {
  1396. printk (KERN_ERR "ide-floppy: Can't get floppy parametersn");
  1397.                 return (-EIO);
  1398.         }
  1399.         header = (idefloppy_capacity_header_t *) pc.buffer;
  1400.         descriptors = header->length /
  1401. sizeof (idefloppy_capacity_descriptor_t);
  1402. descriptor = (idefloppy_capacity_descriptor_t *) (header + 1);
  1403. u_index=0;
  1404. argp=arg+1;
  1405. /*
  1406. ** We always skip the first capacity descriptor.  That's the
  1407. ** current capacity.  We are interested in the remaining descriptors,
  1408. ** the formattable capacities.
  1409. */
  1410. for (i=0; i<descriptors; i++, descriptor++)
  1411. {
  1412. if (u_index >= u_array_size)
  1413. break; /* User-supplied buffer too small */
  1414. if (i == 0)
  1415. continue; /* Skip the first descriptor */
  1416. blocks = ntohl (descriptor->blocks);
  1417. length = ntohs (descriptor->length);
  1418. if (put_user(blocks, argp))
  1419. return (-EFAULT);
  1420. ++argp;
  1421. if (put_user(length, argp))
  1422. return (-EFAULT);
  1423. ++argp;
  1424. ++u_index;
  1425. }
  1426. if (put_user(u_index, arg))
  1427. return (-EFAULT);
  1428. return (0);
  1429. }
  1430. /*
  1431. ** Send ATAPI_FORMAT_UNIT to the drive.
  1432. **
  1433. ** Userland gives us the following structure:
  1434. **
  1435. ** struct idefloppy_format_command {
  1436. **        int nblocks;
  1437. **        int blocksize;
  1438. **        int flags;
  1439. **        } ;
  1440. **
  1441. ** flags is a bitmask, currently, the only defined flag is:
  1442. **
  1443. **        0x01 - verify media after format.
  1444. */
  1445. static int idefloppy_begin_format(ide_drive_t *drive,
  1446.   struct inode *inode,
  1447.   struct file *file,
  1448.   int *arg)
  1449. {
  1450. int blocks;
  1451. int length;
  1452. int flags;
  1453. idefloppy_pc_t pc;
  1454. if (get_user(blocks, arg)
  1455.     || get_user(length, arg+1)
  1456.     || get_user(flags, arg+2))
  1457. {
  1458. return (-EFAULT);
  1459. }
  1460. (void) idefloppy_get_capability_page (drive); /* Get the SFRP bit */
  1461. idefloppy_create_format_unit_cmd(&pc, blocks, length, flags);
  1462. if (idefloppy_queue_pc_tail (drive, &pc))
  1463. {
  1464.                 return (-EIO);
  1465.         }
  1466. return (0);
  1467. }
  1468. /*
  1469. ** Get ATAPI_FORMAT_UNIT progress indication.
  1470. **
  1471. ** Userland gives a pointer to an int.  The int is set to a progresss
  1472. ** indicator 0-65536, with 65536=100%.
  1473. **
  1474. ** If the drive does not support format progress indication, we just check
  1475. ** the dsc bit, and return either 0 or 65536.
  1476. */
  1477. static int idefloppy_get_format_progress(ide_drive_t *drive,
  1478.  struct inode *inode,
  1479.  struct file *file,
  1480.  int *arg)
  1481. {
  1482. idefloppy_floppy_t *floppy = drive->driver_data;
  1483. idefloppy_pc_t pc;
  1484. int progress_indication=0x10000;
  1485. if (floppy->srfp)
  1486. {
  1487. idefloppy_create_request_sense_cmd(&pc);
  1488. if (idefloppy_queue_pc_tail (drive, &pc))
  1489. {
  1490. return (-EIO);
  1491. }
  1492. if (floppy->sense_key == 2 && floppy->asc == 4 &&
  1493.     floppy->ascq == 4)
  1494. {
  1495. progress_indication=floppy->progress_indication;
  1496. }
  1497. /* Else assume format_unit has finished, and we're
  1498. ** at 0x10000 */
  1499. }
  1500. else
  1501. {
  1502. idefloppy_status_reg_t status;
  1503. unsigned long flags;
  1504. __save_flags(flags);
  1505. __cli();
  1506. status.all=GET_STAT();
  1507. __restore_flags(flags);
  1508. progress_indication= !status.b.dsc ? 0:0x10000;
  1509. }
  1510. if (put_user(progress_indication, arg))
  1511. return (-EFAULT);
  1512. return (0);
  1513. }
  1514. /*
  1515.  * Our special ide-floppy ioctl's.
  1516.  *
  1517.  * Currently there aren't any ioctl's.
  1518.  */
  1519. static int idefloppy_ioctl (ide_drive_t *drive, struct inode *inode, struct file *file,
  1520.  unsigned int cmd, unsigned long arg)
  1521. {
  1522. idefloppy_pc_t pc;
  1523. idefloppy_floppy_t *floppy = drive->driver_data;
  1524. int prevent = (arg) ? 1 : 0;
  1525. switch (cmd) {
  1526. case CDROMEJECT:
  1527. prevent = 0;
  1528. /* fall through */
  1529. case CDROM_LOCKDOOR:
  1530. if (drive->usage > 1)
  1531. return -EBUSY;
  1532. /* The IOMEGA Clik! Drive doesn't support this command - no room for an eject mechanism */
  1533.                 if (!test_bit(IDEFLOPPY_CLIK_DRIVE, &floppy->flags)) {
  1534. idefloppy_create_prevent_cmd (&pc, prevent);
  1535. (void) idefloppy_queue_pc_tail (drive, &pc);
  1536. }
  1537. if (cmd == CDROMEJECT) {
  1538. idefloppy_create_start_stop_cmd (&pc, 2);
  1539. (void) idefloppy_queue_pc_tail (drive, &pc);
  1540. }
  1541. return 0;
  1542. case IDEFLOPPY_IOCTL_FORMAT_SUPPORTED:
  1543. return (0);
  1544. case IDEFLOPPY_IOCTL_FORMAT_GET_CAPACITY:
  1545. return (idefloppy_get_format_capacities(drive, inode, file,
  1546. (int *)arg));
  1547. case IDEFLOPPY_IOCTL_FORMAT_START:
  1548. if (!(file->f_mode & 2))
  1549. return (-EPERM);
  1550. {
  1551. idefloppy_floppy_t *floppy = drive->driver_data;
  1552. if (drive->usage > 1)
  1553. {
  1554. /* Don't format if someone is using the disk */
  1555. clear_bit(IDEFLOPPY_FORMAT_IN_PROGRESS,
  1556.   &floppy->flags);
  1557. return -EBUSY;
  1558. }
  1559. else
  1560. {
  1561. int rc;
  1562. set_bit(IDEFLOPPY_FORMAT_IN_PROGRESS,
  1563. &floppy->flags);
  1564. rc=idefloppy_begin_format(drive, inode,
  1565.       file,
  1566.       (int *)arg);
  1567. if (rc)
  1568. clear_bit(IDEFLOPPY_FORMAT_IN_PROGRESS,
  1569.   &floppy->flags);
  1570. return (rc);
  1571. /*
  1572. ** Note, the bit will be cleared when the device is
  1573. ** closed.  This is the cleanest way to handle the
  1574. ** situation where the drive does not support
  1575. ** format progress reporting.
  1576. */
  1577. }
  1578. }
  1579. case IDEFLOPPY_IOCTL_FORMAT_GET_PROGRESS:
  1580. return (idefloppy_get_format_progress(drive, inode, file,
  1581.       (int *)arg));
  1582. }
  1583.   return -EIO;
  1584. }
  1585. /*
  1586.  * Our open/release functions
  1587.  */
  1588. static int idefloppy_open (struct inode *inode, struct file *filp, ide_drive_t *drive)
  1589. {
  1590. idefloppy_floppy_t *floppy = drive->driver_data;
  1591. idefloppy_pc_t pc;
  1592. #if IDEFLOPPY_DEBUG_LOG
  1593. printk (KERN_INFO "Reached idefloppy_openn");
  1594. #endif /* IDEFLOPPY_DEBUG_LOG */
  1595. MOD_INC_USE_COUNT;
  1596. if (drive->usage == 1) {
  1597. clear_bit(IDEFLOPPY_FORMAT_IN_PROGRESS, &floppy->flags);
  1598. /* Just in case */
  1599. idefloppy_create_test_unit_ready_cmd(&pc);
  1600. if (idefloppy_queue_pc_tail(drive, &pc)) {
  1601. idefloppy_create_start_stop_cmd (&pc, 1);
  1602. (void) idefloppy_queue_pc_tail (drive, &pc);
  1603. }
  1604. if (idefloppy_get_capacity (drive)
  1605.    && (filp->f_flags & O_NDELAY) == 0
  1606.     /*
  1607.     ** Allow O_NDELAY to open a drive without a disk, or with
  1608.     ** an unreadable disk, so that we can get the format
  1609.     ** capacity of the drive or begin the format - Sam
  1610.     */
  1611.     ) {
  1612. drive->usage--;
  1613. MOD_DEC_USE_COUNT;
  1614. return -EIO;
  1615. }
  1616. if (floppy->wp && (filp->f_mode & 2)) {
  1617. drive->usage--;
  1618. MOD_DEC_USE_COUNT;
  1619. return -EROFS;
  1620. }
  1621. set_bit (IDEFLOPPY_MEDIA_CHANGED, &floppy->flags);
  1622. /* IOMEGA Clik! drives do not support lock/unlock commands */
  1623.                 if (!test_bit(IDEFLOPPY_CLIK_DRIVE, &floppy->flags)) {
  1624. idefloppy_create_prevent_cmd (&pc, 1);
  1625. (void) idefloppy_queue_pc_tail (drive, &pc);
  1626. }
  1627. check_disk_change(inode->i_rdev);
  1628. }
  1629. else if (test_bit(IDEFLOPPY_FORMAT_IN_PROGRESS, &floppy->flags))
  1630. {
  1631. drive->usage--;
  1632. MOD_DEC_USE_COUNT;
  1633. return -EBUSY;
  1634. }
  1635. return 0;
  1636. }
  1637. static void idefloppy_release (struct inode *inode, struct file *filp, ide_drive_t *drive)
  1638. {
  1639. idefloppy_pc_t pc;
  1640. #if IDEFLOPPY_DEBUG_LOG
  1641. printk (KERN_INFO "Reached idefloppy_releasen");
  1642. #endif /* IDEFLOPPY_DEBUG_LOG */
  1643. if (!drive->usage) {
  1644. idefloppy_floppy_t *floppy = drive->driver_data;
  1645. invalidate_bdev (inode->i_bdev, 0);
  1646. /* IOMEGA Clik! drives do not support lock/unlock commands */
  1647.                 if (!test_bit(IDEFLOPPY_CLIK_DRIVE, &floppy->flags)) {
  1648. idefloppy_create_prevent_cmd (&pc, 0);
  1649. (void) idefloppy_queue_pc_tail (drive, &pc);
  1650. }
  1651. clear_bit(IDEFLOPPY_FORMAT_IN_PROGRESS, &floppy->flags);
  1652. }
  1653. MOD_DEC_USE_COUNT;
  1654. }
  1655. /*
  1656.  * Check media change. Use a simple algorithm for now.
  1657.  */
  1658. static int idefloppy_media_change (ide_drive_t *drive)
  1659. {
  1660. idefloppy_floppy_t *floppy = drive->driver_data;
  1661. return test_and_clear_bit (IDEFLOPPY_MEDIA_CHANGED, &floppy->flags);
  1662. }
  1663. /*
  1664.  * Revalidate the new media. Should set blk_size[]
  1665.  */
  1666. static void idefloppy_revalidate (ide_drive_t *drive)
  1667. {
  1668. grok_partitions(HWIF(drive)->gd, drive->select.b.unit,
  1669. 1<<PARTN_BITS,
  1670. current_capacity(drive));
  1671. }
  1672. /*
  1673.  * Return the current floppy capacity to ide.c.
  1674.  */
  1675. static unsigned long idefloppy_capacity (ide_drive_t *drive)
  1676. {
  1677. idefloppy_floppy_t *floppy = drive->driver_data;
  1678. unsigned long capacity = floppy->blocks * floppy->bs_factor;
  1679. return capacity;
  1680. }
  1681. /*
  1682.  * idefloppy_identify_device checks if we can support a drive,
  1683.  * based on the ATAPI IDENTIFY command results.
  1684.  */
  1685. static int idefloppy_identify_device (ide_drive_t *drive,struct hd_driveid *id)
  1686. {
  1687. struct idefloppy_id_gcw gcw;
  1688. #if IDEFLOPPY_DEBUG_INFO
  1689. unsigned short mask,i;
  1690. char buffer[80];
  1691. #endif /* IDEFLOPPY_DEBUG_INFO */
  1692. *((unsigned short *) &gcw) = id->config;
  1693. #ifdef CONFIG_PPC
  1694. /* kludge for Apple PowerBook internal zip */
  1695. if ((gcw.device_type == 5) && !strstr(id->model, "CD-ROM")
  1696.     && strstr(id->model, "ZIP"))
  1697. gcw.device_type = 0;
  1698. #endif
  1699. #if IDEFLOPPY_DEBUG_INFO
  1700. printk (KERN_INFO "Dumping ATAPI Identify Device floppy parametersn");
  1701. switch (gcw.protocol) {
  1702. case 0: case 1: sprintf (buffer, "ATA");break;
  1703. case 2: sprintf (buffer, "ATAPI");break;
  1704. case 3: sprintf (buffer, "Reserved (Unknown to ide-floppy)");break;
  1705. }
  1706. printk (KERN_INFO "Protocol Type: %sn", buffer);
  1707. switch (gcw.device_type) {
  1708. case 0: sprintf (buffer, "Direct-access Device");break;
  1709. case 1: sprintf (buffer, "Streaming Tape Device");break;
  1710. case 2: case 3: case 4: sprintf (buffer, "Reserved");break;
  1711. case 5: sprintf (buffer, "CD-ROM Device");break;
  1712. case 6: sprintf (buffer, "Reserved");
  1713. case 7: sprintf (buffer, "Optical memory Device");break;
  1714. case 0x1f: sprintf (buffer, "Unknown or no Device type");break;
  1715. default: sprintf (buffer, "Reserved");
  1716. }
  1717. printk (KERN_INFO "Device Type: %x - %sn", gcw.device_type, buffer);
  1718. printk (KERN_INFO "Removable: %sn",gcw.removable ? "Yes":"No");
  1719. switch (gcw.drq_type) {
  1720. case 0: sprintf (buffer, "Microprocessor DRQ");break;
  1721. case 1: sprintf (buffer, "Interrupt DRQ");break;
  1722. case 2: sprintf (buffer, "Accelerated DRQ");break;
  1723. case 3: sprintf (buffer, "Reserved");break;
  1724. }
  1725. printk (KERN_INFO "Command Packet DRQ Type: %sn", buffer);
  1726. switch (gcw.packet_size) {
  1727. case 0: sprintf (buffer, "12 bytes");break;
  1728. case 1: sprintf (buffer, "16 bytes");break;
  1729. default: sprintf (buffer, "Reserved");break;
  1730. }
  1731. printk (KERN_INFO "Command Packet Size: %sn", buffer);
  1732. printk (KERN_INFO "Model: %.40sn",id->model);
  1733. printk (KERN_INFO "Firmware Revision: %.8sn",id->fw_rev);
  1734. printk (KERN_INFO "Serial Number: %.20sn",id->serial_no);
  1735. printk (KERN_INFO "Write buffer size(?): %d bytesn",id->buf_size*512);
  1736. printk (KERN_INFO "DMA: %s",id->capability & 0x01 ? "Yesn":"Non");
  1737. printk (KERN_INFO "LBA: %s",id->capability & 0x02 ? "Yesn":"Non");
  1738. printk (KERN_INFO "IORDY can be disabled: %s",id->capability & 0x04 ? "Yesn":"Non");
  1739. printk (KERN_INFO "IORDY supported: %s",id->capability & 0x08 ? "Yesn":"Unknownn");
  1740. printk (KERN_INFO "ATAPI overlap supported: %s",id->capability & 0x20 ? "Yesn":"Non");
  1741. printk (KERN_INFO "PIO Cycle Timing Category: %dn",id->tPIO);
  1742. printk (KERN_INFO "DMA Cycle Timing Category: %dn",id->tDMA);
  1743. printk (KERN_INFO "Single Word DMA supported modes:n");
  1744. for (i=0,mask=1;i<8;i++,mask=mask << 1) {
  1745. if (id->dma_1word & mask)
  1746. printk (KERN_INFO "   Mode %d%sn", i, (id->dma_1word & (mask << 8)) ? " (active)" : "");
  1747. }
  1748. printk (KERN_INFO "Multi Word DMA supported modes:n");
  1749. for (i=0,mask=1;i<8;i++,mask=mask << 1) {
  1750. if (id->dma_mword & mask)
  1751. printk (KERN_INFO "   Mode %d%sn", i, (id->dma_mword & (mask << 8)) ? " (active)" : "");
  1752. }
  1753. if (id->field_valid & 0x0002) {
  1754. printk (KERN_INFO "Enhanced PIO Modes: %sn",id->eide_pio_modes & 1 ? "Mode 3":"None");
  1755. if (id->eide_dma_min == 0)
  1756. sprintf (buffer, "Not supported");
  1757. else
  1758. sprintf (buffer, "%d ns",id->eide_dma_min);
  1759. printk (KERN_INFO "Minimum Multi-word DMA cycle per word: %sn", buffer);
  1760. if (id->eide_dma_time == 0)
  1761. sprintf (buffer, "Not supported");
  1762. else
  1763. sprintf (buffer, "%d ns",id->eide_dma_time);
  1764. printk (KERN_INFO "Manufacturer's Recommended Multi-word cycle: %sn", buffer);
  1765. if (id->eide_pio == 0)
  1766. sprintf (buffer, "Not supported");
  1767. else
  1768. sprintf (buffer, "%d ns",id->eide_pio);
  1769. printk (KERN_INFO "Minimum PIO cycle without IORDY: %sn", buffer);
  1770. if (id->eide_pio_iordy == 0)
  1771. sprintf (buffer, "Not supported");
  1772. else
  1773. sprintf (buffer, "%d ns",id->eide_pio_iordy);
  1774. printk (KERN_INFO "Minimum PIO cycle with IORDY: %sn", buffer);
  1775. } else
  1776. printk (KERN_INFO "According to the device, fields 64-70 are not valid.n");
  1777. #endif /* IDEFLOPPY_DEBUG_INFO */
  1778. if (gcw.protocol != 2)
  1779. printk (KERN_ERR "ide-floppy: Protocol is not ATAPIn");
  1780. else if (gcw.device_type != 0)
  1781. printk (KERN_ERR "ide-floppy: Device type is not set to floppyn");
  1782. else if (!gcw.removable)
  1783. printk (KERN_ERR "ide-floppy: The removable flag is not setn");
  1784. else if (gcw.drq_type == 3) {
  1785. printk (KERN_ERR "ide-floppy: Sorry, DRQ type %d not supportedn", gcw.drq_type);
  1786. } else if (gcw.packet_size != 0) {
  1787. printk (KERN_ERR "ide-floppy: Packet size is not 12 bytes longn");
  1788. } else
  1789. return 1;
  1790. return 0;
  1791. }
  1792. static void idefloppy_add_settings(ide_drive_t *drive)
  1793. {
  1794. int major = HWIF(drive)->major;
  1795. int minor = drive->select.b.unit << PARTN_BITS;
  1796. idefloppy_floppy_t *floppy = drive->driver_data;
  1797. /*
  1798.  * drive setting name read/write ioctl ioctl data type min max mul_factor div_factor data pointer set function
  1799.  */
  1800. ide_add_setting(drive, "bios_cyl", SETTING_RW, -1, -1, TYPE_INT, 0, 1023, 1, 1, &drive->bios_cyl, NULL);
  1801. ide_add_setting(drive, "bios_head", SETTING_RW, -1, -1, TYPE_BYTE, 0, 255, 1, 1, &drive->bios_head, NULL);
  1802. ide_add_setting(drive, "bios_sect", SETTING_RW, -1, -1, TYPE_BYTE, 0, 63, 1, 1, &drive->bios_sect, NULL);
  1803. ide_add_setting(drive, "breada_readahead", SETTING_RW, BLKRAGET, BLKRASET, TYPE_INT, 0, 255, 1, 2, &read_ahead[major], NULL);
  1804. ide_add_setting(drive, "file_readahead", SETTING_RW, BLKFRAGET, BLKFRASET, TYPE_INTA, 0, INT_MAX, 1, 1024, &max_readahead[major][minor], NULL);
  1805. ide_add_setting(drive, "max_kb_per_request", SETTING_RW, BLKSECTGET, BLKSECTSET, TYPE_INTA, 1, 255, 1, 2, &max_sectors[major][minor], NULL);
  1806. ide_add_setting(drive, "ticks", SETTING_RW, -1, -1, TYPE_BYTE, 0, 255, 1, 1, &floppy->ticks, NULL);
  1807. }
  1808. /*
  1809.  * Driver initialization.
  1810.  */
  1811. static void idefloppy_setup (ide_drive_t *drive, idefloppy_floppy_t *floppy)
  1812. {
  1813. struct idefloppy_id_gcw gcw;
  1814. int major = HWIF(drive)->major, i;
  1815. int minor = drive->select.b.unit << PARTN_BITS;
  1816. *((unsigned short *) &gcw) = drive->id->config;
  1817. drive->driver_data = floppy;
  1818. drive->ready_stat = 0;
  1819. memset (floppy, 0, sizeof (idefloppy_floppy_t));
  1820. floppy->drive = drive;
  1821. floppy->pc = floppy->pc_stack;
  1822. if (gcw.drq_type == 1)
  1823. set_bit (IDEFLOPPY_DRQ_INTERRUPT, &floppy->flags);
  1824. /*
  1825.  * We used to check revisions here. At this point however
  1826.  * I'm giving up. Just assume they are all broken, its easier.
  1827.  *
  1828.  * The actual reason for the workarounds was likely
  1829.  * a driver bug after all rather than a firmware bug,
  1830.  * and the workaround below used to hide it. It should
  1831.  * be fixed as of version 1.9, but to be on the safe side
  1832.  * we'll leave the limitation below for the 2.2.x tree.
  1833.  */
  1834. if (strcmp(drive->id->model, "IOMEGA ZIP 100 ATAPI") == 0)
  1835. {
  1836. set_bit(IDEFLOPPY_ZIP_DRIVE, &floppy->flags);
  1837. /* This value will be visible in the /proc/ide/hdx/settings */
  1838. floppy->ticks = IDEFLOPPY_TICKS_DELAY;
  1839. for (i = 0; i < 1 << PARTN_BITS; i++)
  1840. max_sectors[major][minor + i] = 64;
  1841. }
  1842. /*
  1843. *      Guess what?  The IOMEGA Clik! drive also needs the
  1844. *      above fix.  It makes nasty clicking noises without
  1845. *      it, so please don't remove this.
  1846. */
  1847. if (strncmp(drive->id->model, "IOMEGA Clik!", 11) == 0) 
  1848. {
  1849. for (i = 0; i < 1 << PARTN_BITS; i++)
  1850. max_sectors[major][minor + i] = 64;
  1851. set_bit(IDEFLOPPY_CLIK_DRIVE, &floppy->flags);
  1852. }
  1853. (void) idefloppy_get_capacity (drive);
  1854. idefloppy_add_settings(drive);
  1855. for (i = 0; i < MAX_DRIVES; ++i) {
  1856. ide_hwif_t *hwif = HWIF(drive);
  1857. if (drive != &hwif->drives[i]) continue;
  1858. hwif->gd->de_arr[i] = drive->de;
  1859. if (drive->removable)
  1860. hwif->gd->flags[i] |= GENHD_FL_REMOVABLE;
  1861. break;
  1862. }
  1863. }
  1864. static int idefloppy_cleanup (ide_drive_t *drive)
  1865. {
  1866. idefloppy_floppy_t *floppy = drive->driver_data;
  1867. if (ide_unregister_subdriver (drive))
  1868. return 1;
  1869. drive->driver_data = NULL;
  1870. kfree (floppy);
  1871. return 0;
  1872. }
  1873. #ifdef CONFIG_PROC_FS
  1874. static ide_proc_entry_t idefloppy_proc[] = {
  1875. { "geometry", S_IFREG|S_IRUGO, proc_ide_read_geometry, NULL },
  1876. { NULL, 0, NULL, NULL }
  1877. };
  1878. #else
  1879. #define idefloppy_proc NULL
  1880. #endif /* CONFIG_PROC_FS */
  1881. int idefloppy_reinit(ide_drive_t *drive);
  1882. /*
  1883.  * IDE subdriver functions, registered with ide.c
  1884.  */
  1885. static ide_driver_t idefloppy_driver = {
  1886. name: "ide-floppy",
  1887. version: IDEFLOPPY_VERSION,
  1888. media: ide_floppy,
  1889. busy: 0,
  1890. supports_dma: 1,
  1891. supports_dsc_overlap: 0,
  1892. cleanup: idefloppy_cleanup,
  1893. standby: NULL,
  1894. flushcache: NULL,
  1895. do_request: idefloppy_do_request,
  1896. end_request: idefloppy_end_request,
  1897. ioctl: idefloppy_ioctl,
  1898. open: idefloppy_open,
  1899. release: idefloppy_release,
  1900. media_change: idefloppy_media_change,
  1901. revalidate: idefloppy_revalidate,
  1902. pre_reset: NULL,
  1903. capacity: idefloppy_capacity,
  1904. special: NULL,
  1905. proc: idefloppy_proc,
  1906. reinit: idefloppy_reinit,
  1907. ata_prebuilder: NULL,
  1908. atapi_prebuilder: NULL,
  1909. };
  1910. int idefloppy_init (void);
  1911. static ide_module_t idefloppy_module = {
  1912. IDE_DRIVER_MODULE,
  1913. idefloppy_init,
  1914. &idefloppy_driver,
  1915. NULL
  1916. };
  1917. int idefloppy_reinit (ide_drive_t *drive)
  1918. {
  1919. idefloppy_floppy_t *floppy;
  1920. int failed = 0;
  1921. MOD_INC_USE_COUNT;
  1922. while ((drive = ide_scan_devices (ide_floppy, idefloppy_driver.name, NULL, failed++)) != NULL) {
  1923. if (!idefloppy_identify_device (drive, drive->id)) {
  1924. printk (KERN_ERR "ide-floppy: %s: not supported by this version of ide-floppyn", drive->name);
  1925. continue;
  1926. }
  1927. if (drive->scsi) {
  1928. printk("ide-floppy: passing drive %s to ide-scsi emulation.n", drive->name);
  1929. continue;
  1930. }
  1931. if ((floppy = (idefloppy_floppy_t *) kmalloc (sizeof (idefloppy_floppy_t), GFP_KERNEL)) == NULL) {
  1932. printk (KERN_ERR "ide-floppy: %s: Can't allocate a floppy structuren", drive->name);
  1933. continue;
  1934. }
  1935. if (ide_register_subdriver (drive, &idefloppy_driver, IDE_SUBDRIVER_VERSION)) {
  1936. printk (KERN_ERR "ide-floppy: %s: Failed to register the driver with ide.cn", drive->name);
  1937. kfree (floppy);
  1938. continue;
  1939. }
  1940. DRIVER(drive)->busy++;
  1941. idefloppy_setup (drive, floppy);
  1942. DRIVER(drive)->busy--;
  1943. failed--;
  1944. }
  1945. ide_register_module(&idefloppy_module);
  1946. MOD_DEC_USE_COUNT;
  1947. return 0;
  1948. }
  1949. MODULE_DESCRIPTION("ATAPI FLOPPY Driver");
  1950. static void __exit idefloppy_exit (void)
  1951. {
  1952. ide_drive_t *drive;
  1953. int failed = 0;
  1954. while ((drive = ide_scan_devices (ide_floppy, idefloppy_driver.name, &idefloppy_driver, failed)) != NULL) {
  1955. if (idefloppy_cleanup (drive)) {
  1956. printk ("%s: cleanup_module() called while still busyn", drive->name);
  1957. failed++;
  1958. }
  1959. /* We must remove proc entries defined in this module.
  1960.    Otherwise we oops while accessing these entries */
  1961. #ifdef CONFIG_PROC_FS
  1962. if (drive->proc)
  1963. ide_remove_proc_entries(drive->proc, idefloppy_proc);
  1964. #endif
  1965. }
  1966. ide_unregister_module(&idefloppy_module);
  1967. }
  1968. /*
  1969.  * idefloppy_init will register the driver for each floppy.
  1970.  */
  1971. int idefloppy_init (void)
  1972. {
  1973. ide_drive_t *drive;
  1974. idefloppy_floppy_t *floppy;
  1975. int failed = 0;
  1976. printk("ide-floppy driver " IDEFLOPPY_VERSION "n");
  1977. MOD_INC_USE_COUNT;
  1978. while ((drive = ide_scan_devices (ide_floppy, idefloppy_driver.name, NULL, failed++)) != NULL) {
  1979. if (!idefloppy_identify_device (drive, drive->id)) {
  1980. printk (KERN_ERR "ide-floppy: %s: not supported by this version of ide-floppyn", drive->name);
  1981. continue;
  1982. }
  1983. if (drive->scsi) {
  1984. printk("ide-floppy: passing drive %s to ide-scsi emulation.n", drive->name);
  1985. continue;
  1986. }
  1987. if ((floppy = (idefloppy_floppy_t *) kmalloc (sizeof (idefloppy_floppy_t), GFP_KERNEL)) == NULL) {
  1988. printk (KERN_ERR "ide-floppy: %s: Can't allocate a floppy structuren", drive->name);
  1989. continue;
  1990. }
  1991. if (ide_register_subdriver (drive, &idefloppy_driver, IDE_SUBDRIVER_VERSION)) {
  1992. printk (KERN_ERR "ide-floppy: %s: Failed to register the driver with ide.cn", drive->name);
  1993. kfree (floppy);
  1994. continue;
  1995. }
  1996. DRIVER(drive)->busy++;
  1997. idefloppy_setup (drive, floppy);
  1998. DRIVER(drive)->busy--;
  1999. failed--;
  2000. }
  2001. ide_register_module(&idefloppy_module);
  2002. MOD_DEC_USE_COUNT;
  2003. return 0;
  2004. }
  2005. module_init(idefloppy_init);
  2006. module_exit(idefloppy_exit);
  2007. MODULE_LICENSE("GPL");