pd.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:23k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* 
  2.         pd.c    (c) 1997-8  Grant R. Guenther <grant@torque.net>
  3.                             Under the terms of the GNU General Public License.
  4.         This is the high-level driver for parallel port IDE hard
  5.         drives based on chips supported by the paride module.
  6. By default, the driver will autoprobe for a single parallel
  7. port IDE drive, but if their individual parameters are
  8.         specified, the driver can handle up to 4 drives.
  9.         The behaviour of the pd driver can be altered by setting
  10.         some parameters from the insmod command line.  The following
  11.         parameters are adjustable:
  12.  
  13.     drive0   These four arguments can be arrays of     
  14.     drive1 1-8 integers as follows:
  15.     drive2
  16.     drive3 <prt>,<pro>,<uni>,<mod>,<geo>,<sby>,<dly>,<slv>
  17. Where,
  18. <prt> is the base of the parallel port address for
  19. the corresponding drive.  (required)
  20. <pro>   is the protocol number for the adapter that
  21. supports this drive.  These numbers are
  22.                         logged by 'paride' when the protocol modules
  23. are initialised.  (0 if not given)
  24. <uni>   for those adapters that support chained
  25. devices, this is the unit selector for the
  26.         chain of devices on the given port.  It should
  27. be zero for devices that don't support chaining.
  28. (0 if not given)
  29. <mod>   this can be -1 to choose the best mode, or one
  30.         of the mode numbers supported by the adapter.
  31. (-1 if not given)
  32. <geo>   this defaults to 0 to indicate that the driver
  33. should use the CHS geometry provided by the drive
  34. itself.  If set to 1, the driver will provide
  35. a logical geometry with 64 heads and 32 sectors
  36. per track, to be consistent with most SCSI
  37.         drivers.  (0 if not given)
  38. <sby>   set this to zero to disable the power saving
  39. standby mode, if needed.  (1 if not given)
  40. <dly>   some parallel ports require the driver to 
  41. go more slowly.  -1 sets a default value that
  42. should work with the chosen protocol.  Otherwise,
  43. set this to a small integer, the larger it is
  44. the slower the port i/o.  In some cases, setting
  45. this to zero will speed up the device. (default -1)
  46. <slv>   IDE disks can be jumpered to master or slave.
  47.                         Set this to 0 to choose the master drive, 1 to
  48.                         choose the slave, -1 (the default) to choose the
  49.                         first drive found.
  50.             major       You may use this parameter to overide the
  51.                         default major number (45) that this driver
  52.                         will use.  Be sure to change the device
  53.                         name as well.
  54.             name        This parameter is a character string that
  55.                         contains the name the kernel will use for this
  56.                         device (in /proc output, for instance).
  57. (default "pd")
  58.     cluster The driver will attempt to aggregate requests
  59. for adjacent blocks into larger multi-block
  60. clusters.  The maximum cluster size (in 512
  61. byte sectors) is set with this parameter.
  62. (default 64)
  63.     verbose This parameter controls the amount of logging
  64. that the driver will do.  Set it to 0 for 
  65. normal operation, 1 to see autoprobe progress
  66. messages, or 2 to see additional debugging
  67. output.  (default 0)
  68.             nice        This parameter controls the driver's use of
  69.                         idle CPU time, at the expense of some speed.
  70.         If this driver is built into the kernel, you can use kernel
  71.         the following command line parameters, with the same values
  72.         as the corresponding module parameters listed above:
  73.             pd.drive0
  74.             pd.drive1
  75.             pd.drive2
  76.             pd.drive3
  77.             pd.cluster
  78.             pd.nice
  79.         In addition, you can use the parameter pd.disable to disable
  80.         the driver entirely.
  81.  
  82. */
  83. /* Changes:
  84. 1.01 GRG 1997.01.24 Restored pd_reset()
  85. Added eject ioctl
  86. 1.02    GRG 1998.05.06  SMP spinlock changes, 
  87. Added slave support
  88. 1.03    GRG 1998.06.16  Eliminate an Ugh.
  89. 1.04 GRG 1998.08.15  Extra debugging, use HZ in loop timing
  90. 1.05    GRG 1998.09.24  Added jumbo support
  91. */
  92. #define PD_VERSION      "1.05"
  93. #define PD_MAJOR 45
  94. #define PD_NAME "pd"
  95. #define PD_UNITS 4
  96. /* Here are things one can override from the insmod command.
  97.    Most are autoprobed by paride unless set here.  Verbose is off
  98.    by default.
  99. */
  100. static int verbose = 0;
  101. static int major = PD_MAJOR;
  102. static char *name = PD_NAME;
  103. static int cluster = 64;
  104. static int nice = 0;
  105. static int disable = 0;
  106. static int drive0[8] = { 0, 0, 0, -1, 0, 1, -1, -1 };
  107. static int drive1[8] = { 0, 0, 0, -1, 0, 1, -1, -1 };
  108. static int drive2[8] = { 0, 0, 0, -1, 0, 1, -1, -1 };
  109. static int drive3[8] = { 0, 0, 0, -1, 0, 1, -1, -1 };
  110. static int (*drives[4])[8] = {&drive0, &drive1, &drive2, &drive3};
  111. enum {D_PRT, D_PRO, D_UNI, D_MOD, D_GEO, D_SBY, D_DLY, D_SLV};
  112. /* end of parameters */
  113. #include <linux/init.h>
  114. #include <linux/module.h>
  115. #include <linux/fs.h>
  116. #include <linux/delay.h>
  117. #include <linux/hdreg.h>
  118. #include <linux/cdrom.h> /* for the eject ioctl */
  119. #include <linux/blkdev.h>
  120. #include <linux/blkpg.h>
  121. #include <asm/uaccess.h>
  122. #include <linux/sched.h>
  123. #include <linux/workqueue.h>
  124. static DEFINE_SPINLOCK(pd_lock);
  125. module_param(verbose, bool, 0);
  126. module_param(major, int, 0);
  127. module_param(name, charp, 0);
  128. module_param(cluster, int, 0);
  129. module_param(nice, int, 0);
  130. module_param_array(drive0, int, NULL, 0);
  131. module_param_array(drive1, int, NULL, 0);
  132. module_param_array(drive2, int, NULL, 0);
  133. module_param_array(drive3, int, NULL, 0);
  134. #include "paride.h"
  135. #define PD_BITS    4
  136. /* numbers for "SCSI" geometry */
  137. #define PD_LOG_HEADS    64
  138. #define PD_LOG_SECTS    32
  139. #define PD_ID_OFF       54
  140. #define PD_ID_LEN       14
  141. #define PD_MAX_RETRIES  5
  142. #define PD_TMO          800 /* interrupt timeout in jiffies */
  143. #define PD_SPIN_DEL     50 /* spin delay in micro-seconds  */
  144. #define PD_SPIN         (1000000*PD_TMO)/(HZ*PD_SPIN_DEL)
  145. #define STAT_ERR        0x00001
  146. #define STAT_INDEX      0x00002
  147. #define STAT_ECC        0x00004
  148. #define STAT_DRQ        0x00008
  149. #define STAT_SEEK       0x00010
  150. #define STAT_WRERR      0x00020
  151. #define STAT_READY      0x00040
  152. #define STAT_BUSY       0x00080
  153. #define ERR_AMNF        0x00100
  154. #define ERR_TK0NF       0x00200
  155. #define ERR_ABRT        0x00400
  156. #define ERR_MCR         0x00800
  157. #define ERR_IDNF        0x01000
  158. #define ERR_MC          0x02000
  159. #define ERR_UNC         0x04000
  160. #define ERR_TMO         0x10000
  161. #define IDE_READ         0x20
  162. #define IDE_WRITE        0x30
  163. #define IDE_READ_VRFY 0x40
  164. #define IDE_INIT_DEV_PARMS 0x91
  165. #define IDE_STANDBY      0x96
  166. #define IDE_ACKCHANGE    0xdb
  167. #define IDE_DOORLOCK     0xde
  168. #define IDE_DOORUNLOCK   0xdf
  169. #define IDE_IDENTIFY     0xec
  170. #define IDE_EJECT 0xed
  171. #define PD_NAMELEN 8
  172. struct pd_unit {
  173. struct pi_adapter pia; /* interface to paride layer */
  174. struct pi_adapter *pi;
  175. int access; /* count of active opens ... */
  176. int capacity; /* Size of this volume in sectors */
  177. int heads; /* physical geometry */
  178. int sectors;
  179. int cylinders;
  180. int can_lba;
  181. int drive; /* master=0 slave=1 */
  182. int changed; /* Have we seen a disk change ? */
  183. int removable; /* removable media device  ?  */
  184. int standby;
  185. int alt_geom;
  186. char name[PD_NAMELEN]; /* pda, pdb, etc ... */
  187. struct gendisk *gd;
  188. };
  189. static struct pd_unit pd[PD_UNITS];
  190. static char pd_scratch[512]; /* scratch block buffer */
  191. static char *pd_errs[17] = { "ERR", "INDEX", "ECC", "DRQ", "SEEK", "WRERR",
  192. "READY", "BUSY", "AMNF", "TK0NF", "ABRT", "MCR",
  193. "IDNF", "MC", "UNC", "???", "TMO"
  194. };
  195. static inline int status_reg(struct pd_unit *disk)
  196. {
  197. return pi_read_regr(disk->pi, 1, 6);
  198. }
  199. static inline int read_reg(struct pd_unit *disk, int reg)
  200. {
  201. return pi_read_regr(disk->pi, 0, reg);
  202. }
  203. static inline void write_status(struct pd_unit *disk, int val)
  204. {
  205. pi_write_regr(disk->pi, 1, 6, val);
  206. }
  207. static inline void write_reg(struct pd_unit *disk, int reg, int val)
  208. {
  209. pi_write_regr(disk->pi, 0, reg, val);
  210. }
  211. static inline u8 DRIVE(struct pd_unit *disk)
  212. {
  213. return 0xa0+0x10*disk->drive;
  214. }
  215. /*  ide command interface */
  216. static void pd_print_error(struct pd_unit *disk, char *msg, int status)
  217. {
  218. int i;
  219. printk("%s: %s: status = 0x%x =", disk->name, msg, status);
  220. for (i = 0; i < 18; i++)
  221. if (status & (1 << i))
  222. printk(" %s", pd_errs[i]);
  223. printk("n");
  224. }
  225. static void pd_reset(struct pd_unit *disk)
  226. { /* called only for MASTER drive */
  227. write_status(disk, 4);
  228. udelay(50);
  229. write_status(disk, 0);
  230. udelay(250);
  231. }
  232. #define DBMSG(msg) ((verbose>1)?(msg):NULL)
  233. static int pd_wait_for(struct pd_unit *disk, int w, char *msg)
  234. { /* polled wait */
  235. int k, r, e;
  236. k = 0;
  237. while (k < PD_SPIN) {
  238. r = status_reg(disk);
  239. k++;
  240. if (((r & w) == w) && !(r & STAT_BUSY))
  241. break;
  242. udelay(PD_SPIN_DEL);
  243. }
  244. e = (read_reg(disk, 1) << 8) + read_reg(disk, 7);
  245. if (k >= PD_SPIN)
  246. e |= ERR_TMO;
  247. if ((e & (STAT_ERR | ERR_TMO)) && (msg != NULL))
  248. pd_print_error(disk, msg, e);
  249. return e;
  250. }
  251. static void pd_send_command(struct pd_unit *disk, int n, int s, int h, int c0, int c1, int func)
  252. {
  253. write_reg(disk, 6, DRIVE(disk) + h);
  254. write_reg(disk, 1, 0); /* the IDE task file */
  255. write_reg(disk, 2, n);
  256. write_reg(disk, 3, s);
  257. write_reg(disk, 4, c0);
  258. write_reg(disk, 5, c1);
  259. write_reg(disk, 7, func);
  260. udelay(1);
  261. }
  262. static void pd_ide_command(struct pd_unit *disk, int func, int block, int count)
  263. {
  264. int c1, c0, h, s;
  265. if (disk->can_lba) {
  266. s = block & 255;
  267. c0 = (block >>= 8) & 255;
  268. c1 = (block >>= 8) & 255;
  269. h = ((block >>= 8) & 15) + 0x40;
  270. } else {
  271. s = (block % disk->sectors) + 1;
  272. h = (block /= disk->sectors) % disk->heads;
  273. c0 = (block /= disk->heads) % 256;
  274. c1 = (block >>= 8);
  275. }
  276. pd_send_command(disk, count, s, h, c0, c1, func);
  277. }
  278. /* The i/o request engine */
  279. enum action {Fail = 0, Ok = 1, Hold, Wait};
  280. static struct request *pd_req; /* current request */
  281. static enum action (*phase)(void);
  282. static void run_fsm(void);
  283. static void ps_tq_int( void *data);
  284. static DECLARE_WORK(fsm_tq, ps_tq_int, NULL);
  285. static void schedule_fsm(void)
  286. {
  287. if (!nice)
  288. schedule_work(&fsm_tq);
  289. else
  290. schedule_delayed_work(&fsm_tq, nice-1);
  291. }
  292. static void ps_tq_int(void *data)
  293. {
  294. run_fsm();
  295. }
  296. static enum action do_pd_io_start(void);
  297. static enum action pd_special(void);
  298. static enum action do_pd_read_start(void);
  299. static enum action do_pd_write_start(void);
  300. static enum action do_pd_read_drq(void);
  301. static enum action do_pd_write_done(void);
  302. static struct request_queue *pd_queue;
  303. static int pd_claimed;
  304. static struct pd_unit *pd_current; /* current request's drive */
  305. static PIA *pi_current; /* current request's PIA */
  306. static void run_fsm(void)
  307. {
  308. while (1) {
  309. enum action res;
  310. unsigned long saved_flags;
  311. int stop = 0;
  312. if (!phase) {
  313. pd_current = pd_req->rq_disk->private_data;
  314. pi_current = pd_current->pi;
  315. phase = do_pd_io_start;
  316. }
  317. switch (pd_claimed) {
  318. case 0:
  319. pd_claimed = 1;
  320. if (!pi_schedule_claimed(pi_current, run_fsm))
  321. return;
  322. case 1:
  323. pd_claimed = 2;
  324. pi_current->proto->connect(pi_current);
  325. }
  326. switch(res = phase()) {
  327. case Ok: case Fail:
  328. pi_disconnect(pi_current);
  329. pd_claimed = 0;
  330. phase = NULL;
  331. spin_lock_irqsave(&pd_lock, saved_flags);
  332. end_request(pd_req, res);
  333. pd_req = elv_next_request(pd_queue);
  334. if (!pd_req)
  335. stop = 1;
  336. spin_unlock_irqrestore(&pd_lock, saved_flags);
  337. if (stop)
  338. return;
  339. case Hold:
  340. schedule_fsm();
  341. return;
  342. case Wait:
  343. pi_disconnect(pi_current);
  344. pd_claimed = 0;
  345. }
  346. }
  347. }
  348. static int pd_retries = 0; /* i/o error retry count */
  349. static int pd_block; /* address of next requested block */
  350. static int pd_count; /* number of blocks still to do */
  351. static int pd_run; /* sectors in current cluster */
  352. static int pd_cmd; /* current command READ/WRITE */
  353. static char *pd_buf; /* buffer for request in progress */
  354. static enum action do_pd_io_start(void)
  355. {
  356. if (pd_req->flags & REQ_SPECIAL) {
  357. phase = pd_special;
  358. return pd_special();
  359. }
  360. pd_cmd = rq_data_dir(pd_req);
  361. if (pd_cmd == READ || pd_cmd == WRITE) {
  362. pd_block = pd_req->sector;
  363. pd_count = pd_req->current_nr_sectors;
  364. if (pd_block + pd_count > get_capacity(pd_req->rq_disk))
  365. return Fail;
  366. pd_run = pd_req->nr_sectors;
  367. pd_buf = pd_req->buffer;
  368. pd_retries = 0;
  369. if (pd_cmd == READ)
  370. return do_pd_read_start();
  371. else
  372. return do_pd_write_start();
  373. }
  374. return Fail;
  375. }
  376. static enum action pd_special(void)
  377. {
  378. enum action (*func)(struct pd_unit *) = pd_req->special;
  379. return func(pd_current);
  380. }
  381. static int pd_next_buf(void)
  382. {
  383. unsigned long saved_flags;
  384. pd_count--;
  385. pd_run--;
  386. pd_buf += 512;
  387. pd_block++;
  388. if (!pd_run)
  389. return 1;
  390. if (pd_count)
  391. return 0;
  392. spin_lock_irqsave(&pd_lock, saved_flags);
  393. end_request(pd_req, 1);
  394. pd_count = pd_req->current_nr_sectors;
  395. pd_buf = pd_req->buffer;
  396. spin_unlock_irqrestore(&pd_lock, saved_flags);
  397. return 0;
  398. }
  399. static unsigned long pd_timeout;
  400. static enum action do_pd_read_start(void)
  401. {
  402. if (pd_wait_for(pd_current, STAT_READY, "do_pd_read") & STAT_ERR) {
  403. if (pd_retries < PD_MAX_RETRIES) {
  404. pd_retries++;
  405. return Wait;
  406. }
  407. return Fail;
  408. }
  409. pd_ide_command(pd_current, IDE_READ, pd_block, pd_run);
  410. phase = do_pd_read_drq;
  411. pd_timeout = jiffies + PD_TMO;
  412. return Hold;
  413. }
  414. static enum action do_pd_write_start(void)
  415. {
  416. if (pd_wait_for(pd_current, STAT_READY, "do_pd_write") & STAT_ERR) {
  417. if (pd_retries < PD_MAX_RETRIES) {
  418. pd_retries++;
  419. return Wait;
  420. }
  421. return Fail;
  422. }
  423. pd_ide_command(pd_current, IDE_WRITE, pd_block, pd_run);
  424. while (1) {
  425. if (pd_wait_for(pd_current, STAT_DRQ, "do_pd_write_drq") & STAT_ERR) {
  426. if (pd_retries < PD_MAX_RETRIES) {
  427. pd_retries++;
  428. return Wait;
  429. }
  430. return Fail;
  431. }
  432. pi_write_block(pd_current->pi, pd_buf, 512);
  433. if (pd_next_buf())
  434. break;
  435. }
  436. phase = do_pd_write_done;
  437. pd_timeout = jiffies + PD_TMO;
  438. return Hold;
  439. }
  440. static inline int pd_ready(void)
  441. {
  442. return !(status_reg(pd_current) & STAT_BUSY);
  443. }
  444. static enum action do_pd_read_drq(void)
  445. {
  446. if (!pd_ready() && !time_after_eq(jiffies, pd_timeout))
  447. return Hold;
  448. while (1) {
  449. if (pd_wait_for(pd_current, STAT_DRQ, "do_pd_read_drq") & STAT_ERR) {
  450. if (pd_retries < PD_MAX_RETRIES) {
  451. pd_retries++;
  452. phase = do_pd_read_start;
  453. return Wait;
  454. }
  455. return Fail;
  456. }
  457. pi_read_block(pd_current->pi, pd_buf, 512);
  458. if (pd_next_buf())
  459. break;
  460. }
  461. return Ok;
  462. }
  463. static enum action do_pd_write_done(void)
  464. {
  465. if (!pd_ready() && !time_after_eq(jiffies, pd_timeout))
  466. return Hold;
  467. if (pd_wait_for(pd_current, STAT_READY, "do_pd_write_done") & STAT_ERR) {
  468. if (pd_retries < PD_MAX_RETRIES) {
  469. pd_retries++;
  470. phase = do_pd_write_start;
  471. return Wait;
  472. }
  473. return Fail;
  474. }
  475. return Ok;
  476. }
  477. /* special io requests */
  478. /* According to the ATA standard, the default CHS geometry should be
  479.    available following a reset.  Some Western Digital drives come up
  480.    in a mode where only LBA addresses are accepted until the device
  481.    parameters are initialised.
  482. */
  483. static void pd_init_dev_parms(struct pd_unit *disk)
  484. {
  485. pd_wait_for(disk, 0, DBMSG("before init_dev_parms"));
  486. pd_send_command(disk, disk->sectors, 0, disk->heads - 1, 0, 0,
  487. IDE_INIT_DEV_PARMS);
  488. udelay(300);
  489. pd_wait_for(disk, 0, "Initialise device parameters");
  490. }
  491. static enum action pd_door_lock(struct pd_unit *disk)
  492. {
  493. if (!(pd_wait_for(disk, STAT_READY, "Lock") & STAT_ERR)) {
  494. pd_send_command(disk, 1, 0, 0, 0, 0, IDE_DOORLOCK);
  495. pd_wait_for(disk, STAT_READY, "Lock done");
  496. }
  497. return Ok;
  498. }
  499. static enum action pd_door_unlock(struct pd_unit *disk)
  500. {
  501. if (!(pd_wait_for(disk, STAT_READY, "Lock") & STAT_ERR)) {
  502. pd_send_command(disk, 1, 0, 0, 0, 0, IDE_DOORUNLOCK);
  503. pd_wait_for(disk, STAT_READY, "Lock done");
  504. }
  505. return Ok;
  506. }
  507. static enum action pd_eject(struct pd_unit *disk)
  508. {
  509. pd_wait_for(disk, 0, DBMSG("before unlock on eject"));
  510. pd_send_command(disk, 1, 0, 0, 0, 0, IDE_DOORUNLOCK);
  511. pd_wait_for(disk, 0, DBMSG("after unlock on eject"));
  512. pd_wait_for(disk, 0, DBMSG("before eject"));
  513. pd_send_command(disk, 0, 0, 0, 0, 0, IDE_EJECT);
  514. pd_wait_for(disk, 0, DBMSG("after eject"));
  515. return Ok;
  516. }
  517. static enum action pd_media_check(struct pd_unit *disk)
  518. {
  519. int r = pd_wait_for(disk, STAT_READY, DBMSG("before media_check"));
  520. if (!(r & STAT_ERR)) {
  521. pd_send_command(disk, 1, 1, 0, 0, 0, IDE_READ_VRFY);
  522. r = pd_wait_for(disk, STAT_READY, DBMSG("RDY after READ_VRFY"));
  523. } else
  524. disk->changed = 1; /* say changed if other error */
  525. if (r & ERR_MC) {
  526. disk->changed = 1;
  527. pd_send_command(disk, 1, 0, 0, 0, 0, IDE_ACKCHANGE);
  528. pd_wait_for(disk, STAT_READY, DBMSG("RDY after ACKCHANGE"));
  529. pd_send_command(disk, 1, 1, 0, 0, 0, IDE_READ_VRFY);
  530. r = pd_wait_for(disk, STAT_READY, DBMSG("RDY after VRFY"));
  531. }
  532. return Ok;
  533. }
  534. static void pd_standby_off(struct pd_unit *disk)
  535. {
  536. pd_wait_for(disk, 0, DBMSG("before STANDBY"));
  537. pd_send_command(disk, 0, 0, 0, 0, 0, IDE_STANDBY);
  538. pd_wait_for(disk, 0, DBMSG("after STANDBY"));
  539. }
  540. static enum action pd_identify(struct pd_unit *disk)
  541. {
  542. int j;
  543. char id[PD_ID_LEN + 1];
  544. /* WARNING:  here there may be dragons.  reset() applies to both drives,
  545.    but we call it only on probing the MASTER. This should allow most
  546.    common configurations to work, but be warned that a reset can clear
  547.    settings on the SLAVE drive.
  548. */
  549. if (disk->drive == 0)
  550. pd_reset(disk);
  551. write_reg(disk, 6, DRIVE(disk));
  552. pd_wait_for(disk, 0, DBMSG("before IDENT"));
  553. pd_send_command(disk, 1, 0, 0, 0, 0, IDE_IDENTIFY);
  554. if (pd_wait_for(disk, STAT_DRQ, DBMSG("IDENT DRQ")) & STAT_ERR)
  555. return Fail;
  556. pi_read_block(disk->pi, pd_scratch, 512);
  557. disk->can_lba = pd_scratch[99] & 2;
  558. disk->sectors = le16_to_cpu(*(u16 *) (pd_scratch + 12));
  559. disk->heads = le16_to_cpu(*(u16 *) (pd_scratch + 6));
  560. disk->cylinders = le16_to_cpu(*(u16 *) (pd_scratch + 2));
  561. if (disk->can_lba)
  562. disk->capacity = le32_to_cpu(*(u32 *) (pd_scratch + 120));
  563. else
  564. disk->capacity = disk->sectors * disk->heads * disk->cylinders;
  565. for (j = 0; j < PD_ID_LEN; j++)
  566. id[j ^ 1] = pd_scratch[j + PD_ID_OFF];
  567. j = PD_ID_LEN - 1;
  568. while ((j >= 0) && (id[j] <= 0x20))
  569. j--;
  570. j++;
  571. id[j] = 0;
  572. disk->removable = pd_scratch[0] & 0x80;
  573. printk("%s: %s, %s, %d blocks [%dM], (%d/%d/%d), %s median",
  574.        disk->name, id,
  575.        disk->drive ? "slave" : "master",
  576.        disk->capacity, disk->capacity / 2048,
  577.        disk->cylinders, disk->heads, disk->sectors,
  578.        disk->removable ? "removable" : "fixed");
  579. if (disk->capacity)
  580. pd_init_dev_parms(disk);
  581. if (!disk->standby)
  582. pd_standby_off(disk);
  583. return Ok;
  584. }
  585. /* end of io request engine */
  586. static void do_pd_request(request_queue_t * q)
  587. {
  588. if (pd_req)
  589. return;
  590. pd_req = elv_next_request(q);
  591. if (!pd_req)
  592. return;
  593. schedule_fsm();
  594. }
  595. static int pd_special_command(struct pd_unit *disk,
  596.       enum action (*func)(struct pd_unit *disk))
  597. {
  598. DECLARE_COMPLETION(wait);
  599. struct request rq;
  600. int err = 0;
  601. memset(&rq, 0, sizeof(rq));
  602. rq.errors = 0;
  603. rq.rq_status = RQ_ACTIVE;
  604. rq.rq_disk = disk->gd;
  605. rq.ref_count = 1;
  606. rq.waiting = &wait;
  607. rq.end_io = blk_end_sync_rq;
  608. blk_insert_request(disk->gd->queue, &rq, 0, func);
  609. wait_for_completion(&wait);
  610. rq.waiting = NULL;
  611. if (rq.errors)
  612. err = -EIO;
  613. blk_put_request(&rq);
  614. return err;
  615. }
  616. /* kernel glue structures */
  617. static int pd_open(struct inode *inode, struct file *file)
  618. {
  619. struct pd_unit *disk = inode->i_bdev->bd_disk->private_data;
  620. disk->access++;
  621. if (disk->removable) {
  622. pd_special_command(disk, pd_media_check);
  623. pd_special_command(disk, pd_door_lock);
  624. }
  625. return 0;
  626. }
  627. static int pd_ioctl(struct inode *inode, struct file *file,
  628.  unsigned int cmd, unsigned long arg)
  629. {
  630. struct pd_unit *disk = inode->i_bdev->bd_disk->private_data;
  631. struct hd_geometry __user *geo = (struct hd_geometry __user *) arg;
  632. struct hd_geometry g;
  633. switch (cmd) {
  634. case CDROMEJECT:
  635. if (disk->access == 1)
  636. pd_special_command(disk, pd_eject);
  637. return 0;
  638. case HDIO_GETGEO:
  639. if (disk->alt_geom) {
  640. g.heads = PD_LOG_HEADS;
  641. g.sectors = PD_LOG_SECTS;
  642. g.cylinders = disk->capacity / (g.heads * g.sectors);
  643. } else {
  644. g.heads = disk->heads;
  645. g.sectors = disk->sectors;
  646. g.cylinders = disk->cylinders;
  647. }
  648. g.start = get_start_sect(inode->i_bdev);
  649. if (copy_to_user(geo, &g, sizeof(struct hd_geometry)))
  650. return -EFAULT;
  651. return 0;
  652. default:
  653. return -EINVAL;
  654. }
  655. }
  656. static int pd_release(struct inode *inode, struct file *file)
  657. {
  658. struct pd_unit *disk = inode->i_bdev->bd_disk->private_data;
  659. if (!--disk->access && disk->removable)
  660. pd_special_command(disk, pd_door_unlock);
  661. return 0;
  662. }
  663. static int pd_check_media(struct gendisk *p)
  664. {
  665. struct pd_unit *disk = p->private_data;
  666. int r;
  667. if (!disk->removable)
  668. return 0;
  669. pd_special_command(disk, pd_media_check);
  670. r = disk->changed;
  671. disk->changed = 0;
  672. return r;
  673. }
  674. static int pd_revalidate(struct gendisk *p)
  675. {
  676. struct pd_unit *disk = p->private_data;
  677. if (pd_special_command(disk, pd_identify) == 0)
  678. set_capacity(p, disk->capacity);
  679. else
  680. set_capacity(p, 0);
  681. return 0;
  682. }
  683. static struct block_device_operations pd_fops = {
  684. .owner = THIS_MODULE,
  685. .open = pd_open,
  686. .release = pd_release,
  687. .ioctl = pd_ioctl,
  688. .media_changed = pd_check_media,
  689. .revalidate_disk= pd_revalidate
  690. };
  691. /* probing */
  692. static void pd_probe_drive(struct pd_unit *disk)
  693. {
  694. struct gendisk *p = alloc_disk(1 << PD_BITS);
  695. if (!p)
  696. return;
  697. strcpy(p->disk_name, disk->name);
  698. p->fops = &pd_fops;
  699. p->major = major;
  700. p->first_minor = (disk - pd) << PD_BITS;
  701. disk->gd = p;
  702. p->private_data = disk;
  703. p->queue = pd_queue;
  704. if (disk->drive == -1) {
  705. for (disk->drive = 0; disk->drive <= 1; disk->drive++)
  706. if (pd_special_command(disk, pd_identify) == 0)
  707. return;
  708. } else if (pd_special_command(disk, pd_identify) == 0)
  709. return;
  710. disk->gd = NULL;
  711. put_disk(p);
  712. }
  713. static int pd_detect(void)
  714. {
  715. int found = 0, unit, pd_drive_count = 0;
  716. struct pd_unit *disk;
  717. for (unit = 0; unit < PD_UNITS; unit++) {
  718. int *parm = *drives[unit];
  719. struct pd_unit *disk = pd + unit;
  720. disk->pi = &disk->pia;
  721. disk->access = 0;
  722. disk->changed = 1;
  723. disk->capacity = 0;
  724. disk->drive = parm[D_SLV];
  725. snprintf(disk->name, PD_NAMELEN, "%s%c", name, 'a'+unit);
  726. disk->alt_geom = parm[D_GEO];
  727. disk->standby = parm[D_SBY];
  728. if (parm[D_PRT])
  729. pd_drive_count++;
  730. }
  731. if (pd_drive_count == 0) { /* nothing spec'd - so autoprobe for 1 */
  732. disk = pd;
  733. if (pi_init(disk->pi, 1, -1, -1, -1, -1, -1, pd_scratch,
  734.     PI_PD, verbose, disk->name)) {
  735. pd_probe_drive(disk);
  736. if (!disk->gd)
  737. pi_release(disk->pi);
  738. }
  739. } else {
  740. for (unit = 0, disk = pd; unit < PD_UNITS; unit++, disk++) {
  741. int *parm = *drives[unit];
  742. if (!parm[D_PRT])
  743. continue;
  744. if (pi_init(disk->pi, 0, parm[D_PRT], parm[D_MOD],
  745.      parm[D_UNI], parm[D_PRO], parm[D_DLY],
  746.      pd_scratch, PI_PD, verbose, disk->name)) {
  747. pd_probe_drive(disk);
  748. if (!disk->gd)
  749. pi_release(disk->pi);
  750. }
  751. }
  752. }
  753. for (unit = 0, disk = pd; unit < PD_UNITS; unit++, disk++) {
  754. if (disk->gd) {
  755. set_capacity(disk->gd, disk->capacity);
  756. add_disk(disk->gd);
  757. found = 1;
  758. }
  759. }
  760. if (!found)
  761. printk("%s: no valid drive foundn", name);
  762. return found;
  763. }
  764. static int __init pd_init(void)
  765. {
  766. if (disable)
  767. goto out1;
  768. pd_queue = blk_init_queue(do_pd_request, &pd_lock);
  769. if (!pd_queue)
  770. goto out1;
  771. blk_queue_max_sectors(pd_queue, cluster);
  772. if (register_blkdev(major, name))
  773. goto out2;
  774. printk("%s: %s version %s, major %d, cluster %d, nice %dn",
  775.        name, name, PD_VERSION, major, cluster, nice);
  776. if (!pd_detect())
  777. goto out3;
  778. return 0;
  779. out3:
  780. unregister_blkdev(major, name);
  781. out2:
  782. blk_cleanup_queue(pd_queue);
  783. out1:
  784. return -ENODEV;
  785. }
  786. static void __exit pd_exit(void)
  787. {
  788. struct pd_unit *disk;
  789. int unit;
  790. unregister_blkdev(major, name);
  791. for (unit = 0, disk = pd; unit < PD_UNITS; unit++, disk++) {
  792. struct gendisk *p = disk->gd;
  793. if (p) {
  794. disk->gd = NULL;
  795. del_gendisk(p);
  796. put_disk(p);
  797. pi_release(disk->pi);
  798. }
  799. }
  800. blk_cleanup_queue(pd_queue);
  801. }
  802. MODULE_LICENSE("GPL");
  803. module_init(pd_init)
  804. module_exit(pd_exit)