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

驱动编程

开发平台:

Unix_Linux

  1. /* 
  2.         pf.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 ATAPI disk
  5.         drives based on chips supported by the paride module.
  6.         By default, the driver will autoprobe for a single parallel
  7.         port ATAPI disk drive, but if their individual parameters are
  8.         specified, the driver can handle up to 4 drives.
  9.         The behaviour of the pf driver can be altered by setting
  10.         some parameters from the insmod command line.  The following
  11.         parameters are adjustable:
  12.             drive0      These four arguments can be arrays of       
  13.             drive1      1-7 integers as follows:
  14.             drive2
  15.             drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<lun>,<dly>
  16.                         Where,
  17.                 <prt>   is the base of the parallel port address for
  18.                         the corresponding drive.  (required)
  19.                 <pro>   is the protocol number for the adapter that
  20.                         supports this drive.  These numbers are
  21.                         logged by 'paride' when the protocol modules
  22.                         are initialised.  (0 if not given)
  23.                 <uni>   for those adapters that support chained
  24.                         devices, this is the unit selector for the
  25.                         chain of devices on the given port.  It should
  26.                         be zero for devices that don't support chaining.
  27.                         (0 if not given)
  28.                 <mod>   this can be -1 to choose the best mode, or one
  29.                         of the mode numbers supported by the adapter.
  30.                         (-1 if not given)
  31.                 <slv>   ATAPI CDroms can be jumpered to master or slave.
  32.                         Set this to 0 to choose the master drive, 1 to
  33.                         choose the slave, -1 (the default) to choose the
  34.                         first drive found.
  35. <lun>   Some ATAPI devices support multiple LUNs.
  36.                         One example is the ATAPI PD/CD drive from
  37.                         Matshita/Panasonic.  This device has a 
  38.                         CD drive on LUN 0 and a PD drive on LUN 1.
  39.                         By default, the driver will search for the
  40.                         first LUN with a supported device.  Set 
  41.                         this parameter to force it to use a specific
  42.                         LUN.  (default -1)
  43.                 <dly>   some parallel ports require the driver to 
  44.                         go more slowly.  -1 sets a default value that
  45.                         should work with the chosen protocol.  Otherwise,
  46.                         set this to a small integer, the larger it is
  47.                         the slower the port i/o.  In some cases, setting
  48.                         this to zero will speed up the device. (default -1)
  49.     major You may use this parameter to overide the
  50. default major number (47) that this driver
  51. will use.  Be sure to change the device
  52. name as well.
  53.     name This parameter is a character string that
  54. contains the name the kernel will use for this
  55. device (in /proc output, for instance).
  56. (default "pf").
  57.             cluster     The driver will attempt to aggregate requests
  58.                         for adjacent blocks into larger multi-block
  59.                         clusters.  The maximum cluster size (in 512
  60.                         byte sectors) is set with this parameter.
  61.                         (default 64)
  62.             verbose     This parameter controls the amount of logging
  63.                         that the driver will do.  Set it to 0 for
  64.                         normal operation, 1 to see autoprobe progress
  65.                         messages, or 2 to see additional debugging
  66.                         output.  (default 0)
  67.  
  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 the
  71.         following command line parameters, with the same values
  72.         as the corresponding module parameters listed above:
  73.             pf.drive0
  74.             pf.drive1
  75.             pf.drive2
  76.             pf.drive3
  77.     pf.cluster
  78.             pf.nice
  79.         In addition, you can use the parameter pf.disable to disable
  80.         the driver entirely.
  81. */
  82. /* Changes:
  83. 1.01 GRG 1998.05.03  Changes for SMP.  Eliminate sti().
  84. Fix for drives that don't clear STAT_ERR
  85.         until after next CDB delivered.
  86. Small change in pf_completion to round
  87. up transfer size.
  88. 1.02    GRG 1998.06.16  Eliminated an Ugh
  89. 1.03    GRG 1998.08.16  Use HZ in loop timings, extra debugging
  90. 1.04    GRG 1998.09.24  Added jumbo support
  91. */
  92. #define PF_VERSION      "1.04"
  93. #define PF_MAJOR 47
  94. #define PF_NAME "pf"
  95. #define PF_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 = PF_MAJOR;
  102. static char *name = PF_NAME;
  103. static int cluster = 64;
  104. static int nice = 0;
  105. static int disable = 0;
  106. static int drive0[7] = { 0, 0, 0, -1, -1, -1, -1 };
  107. static int drive1[7] = { 0, 0, 0, -1, -1, -1, -1 };
  108. static int drive2[7] = { 0, 0, 0, -1, -1, -1, -1 };
  109. static int drive3[7] = { 0, 0, 0, -1, -1, -1, -1 };
  110. static int (*drives[4])[7] = {&drive0, &drive1, &drive2, &drive3};
  111. static int pf_drive_count;
  112. enum {D_PRT, D_PRO, D_UNI, D_MOD, D_SLV, D_LUN, D_DLY};
  113. /* end of parameters */
  114. #include <linux/module.h>
  115. #include <linux/init.h>
  116. #include <linux/fs.h>
  117. #include <linux/delay.h>
  118. #include <linux/hdreg.h>
  119. #include <linux/cdrom.h>
  120. #include <linux/spinlock.h>
  121. #include <linux/blkdev.h>
  122. #include <linux/blkpg.h>
  123. #include <asm/uaccess.h>
  124. static spinlock_t pf_spin_lock;
  125. module_param(verbose, bool, 0644);
  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. #include "pseudo.h"
  136. /* constants for faking geometry numbers */
  137. #define PF_FD_MAX 8192 /* use FD geometry under this size */
  138. #define PF_FD_HDS 2
  139. #define PF_FD_SPT 18
  140. #define PF_HD_HDS 64
  141. #define PF_HD_SPT 32
  142. #define PF_MAX_RETRIES  5
  143. #define PF_TMO          800 /* interrupt timeout in jiffies */
  144. #define PF_SPIN_DEL     50 /* spin delay in micro-seconds  */
  145. #define PF_SPIN         (1000000*PF_TMO)/(HZ*PF_SPIN_DEL)
  146. #define STAT_ERR        0x00001
  147. #define STAT_INDEX      0x00002
  148. #define STAT_ECC        0x00004
  149. #define STAT_DRQ        0x00008
  150. #define STAT_SEEK       0x00010
  151. #define STAT_WRERR      0x00020
  152. #define STAT_READY      0x00040
  153. #define STAT_BUSY       0x00080
  154. #define ATAPI_REQ_SENSE 0x03
  155. #define ATAPI_LOCK 0x1e
  156. #define ATAPI_DOOR 0x1b
  157. #define ATAPI_MODE_SENSE 0x5a
  158. #define ATAPI_CAPACITY 0x25
  159. #define ATAPI_IDENTIFY 0x12
  160. #define ATAPI_READ_10 0x28
  161. #define ATAPI_WRITE_10 0x2a
  162. static int pf_open(struct inode *inode, struct file *file);
  163. static void do_pf_request(request_queue_t * q);
  164. static int pf_ioctl(struct inode *inode, struct file *file,
  165.     unsigned int cmd, unsigned long arg);
  166. static int pf_release(struct inode *inode, struct file *file);
  167. static int pf_detect(void);
  168. static void do_pf_read(void);
  169. static void do_pf_read_start(void);
  170. static void do_pf_write(void);
  171. static void do_pf_write_start(void);
  172. static void do_pf_read_drq(void);
  173. static void do_pf_write_done(void);
  174. #define PF_NM           0
  175. #define PF_RO           1
  176. #define PF_RW           2
  177. #define PF_NAMELEN      8
  178. struct pf_unit {
  179. struct pi_adapter pia; /* interface to paride layer */
  180. struct pi_adapter *pi;
  181. int removable; /* removable media device  ?  */
  182. int media_status; /* media present ?  WP ? */
  183. int drive; /* drive */
  184. int lun;
  185. int access; /* count of active opens ... */
  186. int present; /* device present ? */
  187. char name[PF_NAMELEN]; /* pf0, pf1, ... */
  188. struct gendisk *disk;
  189. };
  190. static struct pf_unit units[PF_UNITS];
  191. static int pf_identify(struct pf_unit *pf);
  192. static void pf_lock(struct pf_unit *pf, int func);
  193. static void pf_eject(struct pf_unit *pf);
  194. static int pf_check_media(struct gendisk *disk);
  195. static char pf_scratch[512]; /* scratch block buffer */
  196. /* the variables below are used mainly in the I/O request engine, which
  197.    processes only one request at a time.
  198. */
  199. static int pf_retries = 0; /* i/o error retry count */
  200. static int pf_busy = 0; /* request being processed ? */
  201. static struct request *pf_req; /* current request */
  202. static int pf_block; /* address of next requested block */
  203. static int pf_count; /* number of blocks still to do */
  204. static int pf_run; /* sectors in current cluster */
  205. static int pf_cmd; /* current command READ/WRITE */
  206. static struct pf_unit *pf_current;/* unit of current request */
  207. static int pf_mask; /* stopper for pseudo-int */
  208. static char *pf_buf; /* buffer for request in progress */
  209. /* kernel glue structures */
  210. static struct block_device_operations pf_fops = {
  211. .owner = THIS_MODULE,
  212. .open = pf_open,
  213. .release = pf_release,
  214. .ioctl = pf_ioctl,
  215. .media_changed = pf_check_media,
  216. };
  217. static void __init pf_init_units(void)
  218. {
  219. struct pf_unit *pf;
  220. int unit;
  221. pf_drive_count = 0;
  222. for (unit = 0, pf = units; unit < PF_UNITS; unit++, pf++) {
  223. struct gendisk *disk = alloc_disk(1);
  224. if (!disk)
  225. continue;
  226. pf->disk = disk;
  227. pf->pi = &pf->pia;
  228. pf->media_status = PF_NM;
  229. pf->drive = (*drives[unit])[D_SLV];
  230. pf->lun = (*drives[unit])[D_LUN];
  231. snprintf(pf->name, PF_NAMELEN, "%s%d", name, unit);
  232. disk->major = major;
  233. disk->first_minor = unit;
  234. strcpy(disk->disk_name, pf->name);
  235. disk->fops = &pf_fops;
  236. if (!(*drives[unit])[D_PRT])
  237. pf_drive_count++;
  238. }
  239. }
  240. static int pf_open(struct inode *inode, struct file *file)
  241. {
  242. struct pf_unit *pf = inode->i_bdev->bd_disk->private_data;
  243. pf_identify(pf);
  244. if (pf->media_status == PF_NM)
  245. return -ENODEV;
  246. if ((pf->media_status == PF_RO) && (file->f_mode & 2))
  247. return -EROFS;
  248. pf->access++;
  249. if (pf->removable)
  250. pf_lock(pf, 1);
  251. return 0;
  252. }
  253. static int pf_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  254. {
  255. struct pf_unit *pf = inode->i_bdev->bd_disk->private_data;
  256. struct hd_geometry __user *geo = (struct hd_geometry __user *) arg;
  257. struct hd_geometry g;
  258. sector_t capacity;
  259. if (cmd == CDROMEJECT) {
  260. if (pf->access == 1) {
  261. pf_eject(pf);
  262. return 0;
  263. }
  264. return -EBUSY;
  265. }
  266. if (cmd != HDIO_GETGEO)
  267. return -EINVAL;
  268. capacity = get_capacity(pf->disk);
  269. if (capacity < PF_FD_MAX) {
  270. g.cylinders = sector_div(capacity, PF_FD_HDS * PF_FD_SPT);
  271. g.heads = PF_FD_HDS;
  272. g.sectors = PF_FD_SPT;
  273. } else {
  274. g.cylinders = sector_div(capacity, PF_HD_HDS * PF_HD_SPT);
  275. g.heads = PF_HD_HDS;
  276. g.sectors = PF_HD_SPT;
  277. }
  278. if (copy_to_user(geo, &g, sizeof(g)))
  279. return -EFAULT;
  280. return 0;
  281. }
  282. static int pf_release(struct inode *inode, struct file *file)
  283. {
  284. struct pf_unit *pf = inode->i_bdev->bd_disk->private_data;
  285. if (pf->access <= 0)
  286. return -EINVAL;
  287. pf->access--;
  288. if (!pf->access && pf->removable)
  289. pf_lock(pf, 0);
  290. return 0;
  291. }
  292. static int pf_check_media(struct gendisk *disk)
  293. {
  294. return 1;
  295. }
  296. static inline int status_reg(struct pf_unit *pf)
  297. {
  298. return pi_read_regr(pf->pi, 1, 6);
  299. }
  300. static inline int read_reg(struct pf_unit *pf, int reg)
  301. {
  302. return pi_read_regr(pf->pi, 0, reg);
  303. }
  304. static inline void write_reg(struct pf_unit *pf, int reg, int val)
  305. {
  306. pi_write_regr(pf->pi, 0, reg, val);
  307. }
  308. static int pf_wait(struct pf_unit *pf, int go, int stop, char *fun, char *msg)
  309. {
  310. int j, r, e, s, p;
  311. j = 0;
  312. while ((((r = status_reg(pf)) & go) || (stop && (!(r & stop))))
  313.        && (j++ < PF_SPIN))
  314. udelay(PF_SPIN_DEL);
  315. if ((r & (STAT_ERR & stop)) || (j >= PF_SPIN)) {
  316. s = read_reg(pf, 7);
  317. e = read_reg(pf, 1);
  318. p = read_reg(pf, 2);
  319. if (j >= PF_SPIN)
  320. e |= 0x100;
  321. if (fun)
  322. printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x"
  323.        " loop=%d phase=%dn",
  324.        pf->name, fun, msg, r, s, e, j, p);
  325. return (e << 8) + s;
  326. }
  327. return 0;
  328. }
  329. static int pf_command(struct pf_unit *pf, char *cmd, int dlen, char *fun)
  330. {
  331. pi_connect(pf->pi);
  332. write_reg(pf, 6, 0xa0+0x10*pf->drive);
  333. if (pf_wait(pf, STAT_BUSY | STAT_DRQ, 0, fun, "before command")) {
  334. pi_disconnect(pf->pi);
  335. return -1;
  336. }
  337. write_reg(pf, 4, dlen % 256);
  338. write_reg(pf, 5, dlen / 256);
  339. write_reg(pf, 7, 0xa0); /* ATAPI packet command */
  340. if (pf_wait(pf, STAT_BUSY, STAT_DRQ, fun, "command DRQ")) {
  341. pi_disconnect(pf->pi);
  342. return -1;
  343. }
  344. if (read_reg(pf, 2) != 1) {
  345. printk("%s: %s: command phase errorn", pf->name, fun);
  346. pi_disconnect(pf->pi);
  347. return -1;
  348. }
  349. pi_write_block(pf->pi, cmd, 12);
  350. return 0;
  351. }
  352. static int pf_completion(struct pf_unit *pf, char *buf, char *fun)
  353. {
  354. int r, s, n;
  355. r = pf_wait(pf, STAT_BUSY, STAT_DRQ | STAT_READY | STAT_ERR,
  356.     fun, "completion");
  357. if ((read_reg(pf, 2) & 2) && (read_reg(pf, 7) & STAT_DRQ)) {
  358. n = (((read_reg(pf, 4) + 256 * read_reg(pf, 5)) +
  359.       3) & 0xfffc);
  360. pi_read_block(pf->pi, buf, n);
  361. }
  362. s = pf_wait(pf, STAT_BUSY, STAT_READY | STAT_ERR, fun, "data done");
  363. pi_disconnect(pf->pi);
  364. return (r ? r : s);
  365. }
  366. static void pf_req_sense(struct pf_unit *pf, int quiet)
  367. {
  368. char rs_cmd[12] =
  369.     { ATAPI_REQ_SENSE, pf->lun << 5, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0 };
  370. char buf[16];
  371. int r;
  372. r = pf_command(pf, rs_cmd, 16, "Request sense");
  373. mdelay(1);
  374. if (!r)
  375. pf_completion(pf, buf, "Request sense");
  376. if ((!r) && (!quiet))
  377. printk("%s: Sense key: %x, ASC: %x, ASQ: %xn",
  378.        pf->name, buf[2] & 0xf, buf[12], buf[13]);
  379. }
  380. static int pf_atapi(struct pf_unit *pf, char *cmd, int dlen, char *buf, char *fun)
  381. {
  382. int r;
  383. r = pf_command(pf, cmd, dlen, fun);
  384. mdelay(1);
  385. if (!r)
  386. r = pf_completion(pf, buf, fun);
  387. if (r)
  388. pf_req_sense(pf, !fun);
  389. return r;
  390. }
  391. #define DBMSG(msg)      ((verbose>1)?(msg):NULL)
  392. static void pf_lock(struct pf_unit *pf, int func)
  393. {
  394. char lo_cmd[12] = { ATAPI_LOCK, pf->lun << 5, 0, 0, func, 0, 0, 0, 0, 0, 0, 0 };
  395. pf_atapi(pf, lo_cmd, 0, pf_scratch, func ? "unlock" : "lock");
  396. }
  397. static void pf_eject(struct pf_unit *pf)
  398. {
  399. char ej_cmd[12] = { ATAPI_DOOR, pf->lun << 5, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0 };
  400. pf_lock(pf, 0);
  401. pf_atapi(pf, ej_cmd, 0, pf_scratch, "eject");
  402. }
  403. #define PF_RESET_TMO   30 /* in tenths of a second */
  404. static void pf_sleep(int cs)
  405. {
  406. schedule_timeout_interruptible(cs);
  407. }
  408. /* the ATAPI standard actually specifies the contents of all 7 registers
  409.    after a reset, but the specification is ambiguous concerning the last
  410.    two bytes, and different drives interpret the standard differently.
  411.  */
  412. static int pf_reset(struct pf_unit *pf)
  413. {
  414. int i, k, flg;
  415. int expect[5] = { 1, 1, 1, 0x14, 0xeb };
  416. pi_connect(pf->pi);
  417. write_reg(pf, 6, 0xa0+0x10*pf->drive);
  418. write_reg(pf, 7, 8);
  419. pf_sleep(20 * HZ / 1000);
  420. k = 0;
  421. while ((k++ < PF_RESET_TMO) && (status_reg(pf) & STAT_BUSY))
  422. pf_sleep(HZ / 10);
  423. flg = 1;
  424. for (i = 0; i < 5; i++)
  425. flg &= (read_reg(pf, i + 1) == expect[i]);
  426. if (verbose) {
  427. printk("%s: Reset (%d) signature = ", pf->name, k);
  428. for (i = 0; i < 5; i++)
  429. printk("%3x", read_reg(pf, i + 1));
  430. if (!flg)
  431. printk(" (incorrect)");
  432. printk("n");
  433. }
  434. pi_disconnect(pf->pi);
  435. return flg - 1;
  436. }
  437. static void pf_mode_sense(struct pf_unit *pf)
  438. {
  439. char ms_cmd[12] =
  440.     { ATAPI_MODE_SENSE, pf->lun << 5, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0 };
  441. char buf[8];
  442. pf_atapi(pf, ms_cmd, 8, buf, DBMSG("mode sense"));
  443. pf->media_status = PF_RW;
  444. if (buf[3] & 0x80)
  445. pf->media_status = PF_RO;
  446. }
  447. static void xs(char *buf, char *targ, int offs, int len)
  448. {
  449. int j, k, l;
  450. j = 0;
  451. l = 0;
  452. for (k = 0; k < len; k++)
  453. if ((buf[k + offs] != 0x20) || (buf[k + offs] != l))
  454. l = targ[j++] = buf[k + offs];
  455. if (l == 0x20)
  456. j--;
  457. targ[j] = 0;
  458. }
  459. static int xl(char *buf, int offs)
  460. {
  461. int v, k;
  462. v = 0;
  463. for (k = 0; k < 4; k++)
  464. v = v * 256 + (buf[k + offs] & 0xff);
  465. return v;
  466. }
  467. static void pf_get_capacity(struct pf_unit *pf)
  468. {
  469. char rc_cmd[12] = { ATAPI_CAPACITY, pf->lun << 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  470. char buf[8];
  471. int bs;
  472. if (pf_atapi(pf, rc_cmd, 8, buf, DBMSG("get capacity"))) {
  473. pf->media_status = PF_NM;
  474. return;
  475. }
  476. set_capacity(pf->disk, xl(buf, 0) + 1);
  477. bs = xl(buf, 4);
  478. if (bs != 512) {
  479. set_capacity(pf->disk, 0);
  480. if (verbose)
  481. printk("%s: Drive %d, LUN %d,"
  482.        " unsupported block size %dn",
  483.        pf->name, pf->drive, pf->lun, bs);
  484. }
  485. }
  486. static int pf_identify(struct pf_unit *pf)
  487. {
  488. int dt, s;
  489. char *ms[2] = { "master", "slave" };
  490. char mf[10], id[18];
  491. char id_cmd[12] =
  492.     { ATAPI_IDENTIFY, pf->lun << 5, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0 };
  493. char buf[36];
  494. s = pf_atapi(pf, id_cmd, 36, buf, "identify");
  495. if (s)
  496. return -1;
  497. dt = buf[0] & 0x1f;
  498. if ((dt != 0) && (dt != 7)) {
  499. if (verbose)
  500. printk("%s: Drive %d, LUN %d, unsupported type %dn",
  501.        pf->name, pf->drive, pf->lun, dt);
  502. return -1;
  503. }
  504. xs(buf, mf, 8, 8);
  505. xs(buf, id, 16, 16);
  506. pf->removable = (buf[1] & 0x80);
  507. pf_mode_sense(pf);
  508. pf_mode_sense(pf);
  509. pf_mode_sense(pf);
  510. pf_get_capacity(pf);
  511. printk("%s: %s %s, %s LUN %d, type %d",
  512.        pf->name, mf, id, ms[pf->drive], pf->lun, dt);
  513. if (pf->removable)
  514. printk(", removable");
  515. if (pf->media_status == PF_NM)
  516. printk(", no median");
  517. else {
  518. if (pf->media_status == PF_RO)
  519. printk(", RO");
  520. printk(", %llu blocksn",
  521. (unsigned long long)get_capacity(pf->disk));
  522. }
  523. return 0;
  524. }
  525. /* returns  0, with id set if drive is detected
  526.         -1, if drive detection failed
  527. */
  528. static int pf_probe(struct pf_unit *pf)
  529. {
  530. if (pf->drive == -1) {
  531. for (pf->drive = 0; pf->drive <= 1; pf->drive++)
  532. if (!pf_reset(pf)) {
  533. if (pf->lun != -1)
  534. return pf_identify(pf);
  535. else
  536. for (pf->lun = 0; pf->lun < 8; pf->lun++)
  537. if (!pf_identify(pf))
  538. return 0;
  539. }
  540. } else {
  541. if (pf_reset(pf))
  542. return -1;
  543. if (pf->lun != -1)
  544. return pf_identify(pf);
  545. for (pf->lun = 0; pf->lun < 8; pf->lun++)
  546. if (!pf_identify(pf))
  547. return 0;
  548. }
  549. return -1;
  550. }
  551. static int pf_detect(void)
  552. {
  553. struct pf_unit *pf = units;
  554. int k, unit;
  555. printk("%s: %s version %s, major %d, cluster %d, nice %dn",
  556.        name, name, PF_VERSION, major, cluster, nice);
  557. k = 0;
  558. if (pf_drive_count == 0) {
  559. if (pi_init(pf->pi, 1, -1, -1, -1, -1, -1, pf_scratch, PI_PF,
  560.     verbose, pf->name)) {
  561. if (!pf_probe(pf) && pf->disk) {
  562. pf->present = 1;
  563. k++;
  564. } else
  565. pi_release(pf->pi);
  566. }
  567. } else
  568. for (unit = 0; unit < PF_UNITS; unit++, pf++) {
  569. int *conf = *drives[unit];
  570. if (!conf[D_PRT])
  571. continue;
  572. if (pi_init(pf->pi, 0, conf[D_PRT], conf[D_MOD],
  573.     conf[D_UNI], conf[D_PRO], conf[D_DLY],
  574.     pf_scratch, PI_PF, verbose, pf->name)) {
  575. if (!pf_probe(pf) && pf->disk) {
  576. pf->present = 1;
  577. k++;
  578. } else
  579. pi_release(pf->pi);
  580. }
  581. }
  582. if (k)
  583. return 0;
  584. printk("%s: No ATAPI disk detectedn", name);
  585. for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++)
  586. put_disk(pf->disk);
  587. return -1;
  588. }
  589. /* The i/o request engine */
  590. static int pf_start(struct pf_unit *pf, int cmd, int b, int c)
  591. {
  592. int i;
  593. char io_cmd[12] = { cmd, pf->lun << 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  594. for (i = 0; i < 4; i++) {
  595. io_cmd[5 - i] = b & 0xff;
  596. b = b >> 8;
  597. }
  598. io_cmd[8] = c & 0xff;
  599. io_cmd[7] = (c >> 8) & 0xff;
  600. i = pf_command(pf, io_cmd, c * 512, "start i/o");
  601. mdelay(1);
  602. return i;
  603. }
  604. static int pf_ready(void)
  605. {
  606. return (((status_reg(pf_current) & (STAT_BUSY | pf_mask)) == pf_mask));
  607. }
  608. static struct request_queue *pf_queue;
  609. static void pf_end_request(int uptodate)
  610. {
  611. if (pf_req) {
  612. end_request(pf_req, uptodate);
  613. pf_req = NULL;
  614. }
  615. }
  616. static void do_pf_request(request_queue_t * q)
  617. {
  618. if (pf_busy)
  619. return;
  620. repeat:
  621. pf_req = elv_next_request(q);
  622. if (!pf_req)
  623. return;
  624. pf_current = pf_req->rq_disk->private_data;
  625. pf_block = pf_req->sector;
  626. pf_run = pf_req->nr_sectors;
  627. pf_count = pf_req->current_nr_sectors;
  628. if (pf_block + pf_count > get_capacity(pf_req->rq_disk)) {
  629. pf_end_request(0);
  630. goto repeat;
  631. }
  632. pf_cmd = rq_data_dir(pf_req);
  633. pf_buf = pf_req->buffer;
  634. pf_retries = 0;
  635. pf_busy = 1;
  636. if (pf_cmd == READ)
  637. pi_do_claimed(pf_current->pi, do_pf_read);
  638. else if (pf_cmd == WRITE)
  639. pi_do_claimed(pf_current->pi, do_pf_write);
  640. else {
  641. pf_busy = 0;
  642. pf_end_request(0);
  643. goto repeat;
  644. }
  645. }
  646. static int pf_next_buf(void)
  647. {
  648. unsigned long saved_flags;
  649. pf_count--;
  650. pf_run--;
  651. pf_buf += 512;
  652. pf_block++;
  653. if (!pf_run)
  654. return 0;
  655. if (!pf_count)
  656. return 1;
  657. spin_lock_irqsave(&pf_spin_lock, saved_flags);
  658. pf_end_request(1);
  659. if (pf_req) {
  660. pf_count = pf_req->current_nr_sectors;
  661. pf_buf = pf_req->buffer;
  662. }
  663. spin_unlock_irqrestore(&pf_spin_lock, saved_flags);
  664. return 1;
  665. }
  666. static inline void next_request(int success)
  667. {
  668. unsigned long saved_flags;
  669. spin_lock_irqsave(&pf_spin_lock, saved_flags);
  670. pf_end_request(success);
  671. pf_busy = 0;
  672. do_pf_request(pf_queue);
  673. spin_unlock_irqrestore(&pf_spin_lock, saved_flags);
  674. }
  675. /* detach from the calling context - in case the spinlock is held */
  676. static void do_pf_read(void)
  677. {
  678. ps_set_intr(do_pf_read_start, NULL, 0, nice);
  679. }
  680. static void do_pf_read_start(void)
  681. {
  682. pf_busy = 1;
  683. if (pf_start(pf_current, ATAPI_READ_10, pf_block, pf_run)) {
  684. pi_disconnect(pf_current->pi);
  685. if (pf_retries < PF_MAX_RETRIES) {
  686. pf_retries++;
  687. pi_do_claimed(pf_current->pi, do_pf_read_start);
  688. return;
  689. }
  690. next_request(0);
  691. return;
  692. }
  693. pf_mask = STAT_DRQ;
  694. ps_set_intr(do_pf_read_drq, pf_ready, PF_TMO, nice);
  695. }
  696. static void do_pf_read_drq(void)
  697. {
  698. while (1) {
  699. if (pf_wait(pf_current, STAT_BUSY, STAT_DRQ | STAT_ERR,
  700.     "read block", "completion") & STAT_ERR) {
  701. pi_disconnect(pf_current->pi);
  702. if (pf_retries < PF_MAX_RETRIES) {
  703. pf_req_sense(pf_current, 0);
  704. pf_retries++;
  705. pi_do_claimed(pf_current->pi, do_pf_read_start);
  706. return;
  707. }
  708. next_request(0);
  709. return;
  710. }
  711. pi_read_block(pf_current->pi, pf_buf, 512);
  712. if (pf_next_buf())
  713. break;
  714. }
  715. pi_disconnect(pf_current->pi);
  716. next_request(1);
  717. }
  718. static void do_pf_write(void)
  719. {
  720. ps_set_intr(do_pf_write_start, NULL, 0, nice);
  721. }
  722. static void do_pf_write_start(void)
  723. {
  724. pf_busy = 1;
  725. if (pf_start(pf_current, ATAPI_WRITE_10, pf_block, pf_run)) {
  726. pi_disconnect(pf_current->pi);
  727. if (pf_retries < PF_MAX_RETRIES) {
  728. pf_retries++;
  729. pi_do_claimed(pf_current->pi, do_pf_write_start);
  730. return;
  731. }
  732. next_request(0);
  733. return;
  734. }
  735. while (1) {
  736. if (pf_wait(pf_current, STAT_BUSY, STAT_DRQ | STAT_ERR,
  737.     "write block", "data wait") & STAT_ERR) {
  738. pi_disconnect(pf_current->pi);
  739. if (pf_retries < PF_MAX_RETRIES) {
  740. pf_retries++;
  741. pi_do_claimed(pf_current->pi, do_pf_write_start);
  742. return;
  743. }
  744. next_request(0);
  745. return;
  746. }
  747. pi_write_block(pf_current->pi, pf_buf, 512);
  748. if (pf_next_buf())
  749. break;
  750. }
  751. pf_mask = 0;
  752. ps_set_intr(do_pf_write_done, pf_ready, PF_TMO, nice);
  753. }
  754. static void do_pf_write_done(void)
  755. {
  756. if (pf_wait(pf_current, STAT_BUSY, 0, "write block", "done") & STAT_ERR) {
  757. pi_disconnect(pf_current->pi);
  758. if (pf_retries < PF_MAX_RETRIES) {
  759. pf_retries++;
  760. pi_do_claimed(pf_current->pi, do_pf_write_start);
  761. return;
  762. }
  763. next_request(0);
  764. return;
  765. }
  766. pi_disconnect(pf_current->pi);
  767. next_request(1);
  768. }
  769. static int __init pf_init(void)
  770. { /* preliminary initialisation */
  771. struct pf_unit *pf;
  772. int unit;
  773. if (disable)
  774. return -1;
  775. pf_init_units();
  776. if (pf_detect())
  777. return -1;
  778. pf_busy = 0;
  779. if (register_blkdev(major, name)) {
  780. for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++)
  781. put_disk(pf->disk);
  782. return -1;
  783. }
  784. pf_queue = blk_init_queue(do_pf_request, &pf_spin_lock);
  785. if (!pf_queue) {
  786. unregister_blkdev(major, name);
  787. for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++)
  788. put_disk(pf->disk);
  789. return -1;
  790. }
  791. blk_queue_max_phys_segments(pf_queue, cluster);
  792. blk_queue_max_hw_segments(pf_queue, cluster);
  793. for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++) {
  794. struct gendisk *disk = pf->disk;
  795. if (!pf->present)
  796. continue;
  797. disk->private_data = pf;
  798. disk->queue = pf_queue;
  799. add_disk(disk);
  800. }
  801. return 0;
  802. }
  803. static void __exit pf_exit(void)
  804. {
  805. struct pf_unit *pf;
  806. int unit;
  807. unregister_blkdev(major, name);
  808. for (pf = units, unit = 0; unit < PF_UNITS; pf++, unit++) {
  809. if (!pf->present)
  810. continue;
  811. del_gendisk(pf->disk);
  812. put_disk(pf->disk);
  813. pi_release(pf->pi);
  814. }
  815. blk_cleanup_queue(pf_queue);
  816. }
  817. MODULE_LICENSE("GPL");
  818. module_init(pf_init)
  819. module_exit(pf_exit)