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

驱动编程

开发平台:

Unix_Linux

  1. /* 
  2.         pt.c    (c) 1998  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 tape
  5.         drives based on chips supported by the paride module.
  6. The driver implements both rewinding and non-rewinding
  7. devices, filemarks, and the rewind ioctl.  It allocates
  8. a small internal "bounce buffer" for each open device, but
  9.         otherwise expects buffering and blocking to be done at the
  10.         user level.  As with most block-structured tapes, short
  11. writes are padded to full tape blocks, so reading back a file
  12.         may return more data than was actually written.
  13.         By default, the driver will autoprobe for a single parallel
  14.         port ATAPI tape drive, but if their individual parameters are
  15.         specified, the driver can handle up to 4 drives.
  16. The rewinding devices are named /dev/pt0, /dev/pt1, ...
  17. while the non-rewinding devices are /dev/npt0, /dev/npt1, etc.
  18.         The behaviour of the pt driver can be altered by setting
  19.         some parameters from the insmod command line.  The following
  20.         parameters are adjustable:
  21.             drive0      These four arguments can be arrays of       
  22.             drive1      1-6 integers as follows:
  23.             drive2
  24.             drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<dly>
  25.                         Where,
  26.                 <prt>   is the base of the parallel port address for
  27.                         the corresponding drive.  (required)
  28.                 <pro>   is the protocol number for the adapter that
  29.                         supports this drive.  These numbers are
  30.                         logged by 'paride' when the protocol modules
  31.                         are initialised.  (0 if not given)
  32.                 <uni>   for those adapters that support chained
  33.                         devices, this is the unit selector for the
  34.                         chain of devices on the given port.  It should
  35.                         be zero for devices that don't support chaining.
  36.                         (0 if not given)
  37.                 <mod>   this can be -1 to choose the best mode, or one
  38.                         of the mode numbers supported by the adapter.
  39.                         (-1 if not given)
  40.                 <slv>   ATAPI devices can be jumpered to master or slave.
  41.                         Set this to 0 to choose the master drive, 1 to
  42.                         choose the slave, -1 (the default) to choose the
  43.                         first drive found.
  44.                 <dly>   some parallel ports require the driver to 
  45.                         go more slowly.  -1 sets a default value that
  46.                         should work with the chosen protocol.  Otherwise,
  47.                         set this to a small integer, the larger it is
  48.                         the slower the port i/o.  In some cases, setting
  49.                         this to zero will speed up the device. (default -1)
  50.     major You may use this parameter to overide the
  51. default major number (96) 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 "pt").
  58.             verbose     This parameter controls the amount of logging
  59.                         that the driver will do.  Set it to 0 for
  60.                         normal operation, 1 to see autoprobe progress
  61.                         messages, or 2 to see additional debugging
  62.                         output.  (default 0)
  63.  
  64.         If this driver is built into the kernel, you can use 
  65.         the following command line parameters, with the same values
  66.         as the corresponding module parameters listed above:
  67.             pt.drive0
  68.             pt.drive1
  69.             pt.drive2
  70.             pt.drive3
  71.         In addition, you can use the parameter pt.disable to disable
  72.         the driver entirely.
  73. */
  74. /*   Changes:
  75. 1.01 GRG 1998.05.06 Round up transfer size, fix ready_wait,
  76.         loosed interpretation of ATAPI standard
  77. for clearing error status.
  78. Eliminate sti();
  79. 1.02    GRG 1998.06.16  Eliminate an Ugh.
  80. 1.03    GRG 1998.08.15  Adjusted PT_TMO, use HZ in loop timing,
  81. extra debugging
  82. 1.04    GRG 1998.09.24  Repair minor coding error, added jumbo support
  83. */
  84. #define PT_VERSION      "1.04"
  85. #define PT_MAJOR 96
  86. #define PT_NAME "pt"
  87. #define PT_UNITS 4
  88. /* Here are things one can override from the insmod command.
  89.    Most are autoprobed by paride unless set here.  Verbose is on
  90.    by default.
  91. */
  92. static int verbose = 0;
  93. static int major = PT_MAJOR;
  94. static char *name = PT_NAME;
  95. static int disable = 0;
  96. static int drive0[6] = { 0, 0, 0, -1, -1, -1 };
  97. static int drive1[6] = { 0, 0, 0, -1, -1, -1 };
  98. static int drive2[6] = { 0, 0, 0, -1, -1, -1 };
  99. static int drive3[6] = { 0, 0, 0, -1, -1, -1 };
  100. static int (*drives[4])[6] = {&drive0, &drive1, &drive2, &drive3};
  101. #define D_PRT   0
  102. #define D_PRO   1
  103. #define D_UNI   2
  104. #define D_MOD   3
  105. #define D_SLV   4
  106. #define D_DLY   5
  107. #define DU              (*drives[unit])
  108. /* end of parameters */
  109. #include <linux/module.h>
  110. #include <linux/init.h>
  111. #include <linux/fs.h>
  112. #include <linux/devfs_fs_kernel.h>
  113. #include <linux/delay.h>
  114. #include <linux/slab.h>
  115. #include <linux/mtio.h>
  116. #include <linux/device.h>
  117. #include <asm/uaccess.h>
  118. module_param(verbose, bool, 0);
  119. module_param(major, int, 0);
  120. module_param(name, charp, 0);
  121. module_param_array(drive0, int, NULL, 0);
  122. module_param_array(drive1, int, NULL, 0);
  123. module_param_array(drive2, int, NULL, 0);
  124. module_param_array(drive3, int, NULL, 0);
  125. #include "paride.h"
  126. #define PT_MAX_RETRIES  5
  127. #define PT_TMO          3000 /* interrupt timeout in jiffies */
  128. #define PT_SPIN_DEL     50 /* spin delay in micro-seconds  */
  129. #define PT_RESET_TMO    30 /* 30 seconds */
  130. #define PT_READY_TMO 60 /* 60 seconds */
  131. #define PT_REWIND_TMO 1200 /* 20 minutes */
  132. #define PT_SPIN         ((1000000/(HZ*PT_SPIN_DEL))*PT_TMO)
  133. #define STAT_ERR        0x00001
  134. #define STAT_INDEX      0x00002
  135. #define STAT_ECC        0x00004
  136. #define STAT_DRQ        0x00008
  137. #define STAT_SEEK       0x00010
  138. #define STAT_WRERR      0x00020
  139. #define STAT_READY      0x00040
  140. #define STAT_BUSY       0x00080
  141. #define STAT_SENSE 0x1f000
  142. #define ATAPI_TEST_READY 0x00
  143. #define ATAPI_REWIND 0x01
  144. #define ATAPI_REQ_SENSE 0x03
  145. #define ATAPI_READ_6 0x08
  146. #define ATAPI_WRITE_6 0x0a
  147. #define ATAPI_WFM 0x10
  148. #define ATAPI_IDENTIFY 0x12
  149. #define ATAPI_MODE_SENSE 0x1a
  150. #define ATAPI_LOG_SENSE 0x4d
  151. static int pt_open(struct inode *inode, struct file *file);
  152. static int pt_ioctl(struct inode *inode, struct file *file,
  153.     unsigned int cmd, unsigned long arg);
  154. static int pt_release(struct inode *inode, struct file *file);
  155. static ssize_t pt_read(struct file *filp, char __user *buf,
  156.        size_t count, loff_t * ppos);
  157. static ssize_t pt_write(struct file *filp, const char __user *buf,
  158. size_t count, loff_t * ppos);
  159. static int pt_detect(void);
  160. /* bits in tape->flags */
  161. #define PT_MEDIA 1
  162. #define PT_WRITE_OK 2
  163. #define PT_REWIND 4
  164. #define PT_WRITING      8
  165. #define PT_READING     16
  166. #define PT_EOF        32
  167. #define PT_NAMELEN      8
  168. #define PT_BUFSIZE  16384
  169. struct pt_unit {
  170. struct pi_adapter pia; /* interface to paride layer */
  171. struct pi_adapter *pi;
  172. int flags; /* various state flags */
  173. int last_sense; /* result of last request sense */
  174. int drive; /* drive */
  175. atomic_t available; /* 1 if access is available 0 otherwise */
  176. int bs; /* block size */
  177. int capacity; /* Size of tape in KB */
  178. int present; /* device present ? */
  179. char *bufptr;
  180. char name[PT_NAMELEN]; /* pf0, pf1, ... */
  181. };
  182. static int pt_identify(struct pt_unit *tape);
  183. static struct pt_unit pt[PT_UNITS];
  184. static char pt_scratch[512]; /* scratch block buffer */
  185. /* kernel glue structures */
  186. static struct file_operations pt_fops = {
  187. .owner = THIS_MODULE,
  188. .read = pt_read,
  189. .write = pt_write,
  190. .ioctl = pt_ioctl,
  191. .open = pt_open,
  192. .release = pt_release,
  193. };
  194. /* sysfs class support */
  195. static struct class *pt_class;
  196. static inline int status_reg(struct pi_adapter *pi)
  197. {
  198. return pi_read_regr(pi, 1, 6);
  199. }
  200. static inline int read_reg(struct pi_adapter *pi, int reg)
  201. {
  202. return pi_read_regr(pi, 0, reg);
  203. }
  204. static inline void write_reg(struct pi_adapter *pi, int reg, int val)
  205. {
  206. pi_write_regr(pi, 0, reg, val);
  207. }
  208. static inline u8 DRIVE(struct pt_unit *tape)
  209. {
  210. return 0xa0+0x10*tape->drive;
  211. }
  212. static int pt_wait(struct pt_unit *tape, int go, int stop, char *fun, char *msg)
  213. {
  214. int j, r, e, s, p;
  215. struct pi_adapter *pi = tape->pi;
  216. j = 0;
  217. while ((((r = status_reg(pi)) & go) || (stop && (!(r & stop))))
  218.        && (j++ < PT_SPIN))
  219. udelay(PT_SPIN_DEL);
  220. if ((r & (STAT_ERR & stop)) || (j >= PT_SPIN)) {
  221. s = read_reg(pi, 7);
  222. e = read_reg(pi, 1);
  223. p = read_reg(pi, 2);
  224. if (j >= PT_SPIN)
  225. e |= 0x100;
  226. if (fun)
  227. printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x"
  228.        " loop=%d phase=%dn",
  229.        tape->name, fun, msg, r, s, e, j, p);
  230. return (e << 8) + s;
  231. }
  232. return 0;
  233. }
  234. static int pt_command(struct pt_unit *tape, char *cmd, int dlen, char *fun)
  235. {
  236. struct pi_adapter *pi = tape->pi;
  237. pi_connect(pi);
  238. write_reg(pi, 6, DRIVE(tape));
  239. if (pt_wait(tape, STAT_BUSY | STAT_DRQ, 0, fun, "before command")) {
  240. pi_disconnect(pi);
  241. return -1;
  242. }
  243. write_reg(pi, 4, dlen % 256);
  244. write_reg(pi, 5, dlen / 256);
  245. write_reg(pi, 7, 0xa0); /* ATAPI packet command */
  246. if (pt_wait(tape, STAT_BUSY, STAT_DRQ, fun, "command DRQ")) {
  247. pi_disconnect(pi);
  248. return -1;
  249. }
  250. if (read_reg(pi, 2) != 1) {
  251. printk("%s: %s: command phase errorn", tape->name, fun);
  252. pi_disconnect(pi);
  253. return -1;
  254. }
  255. pi_write_block(pi, cmd, 12);
  256. return 0;
  257. }
  258. static int pt_completion(struct pt_unit *tape, char *buf, char *fun)
  259. {
  260. struct pi_adapter *pi = tape->pi;
  261. int r, s, n, p;
  262. r = pt_wait(tape, STAT_BUSY, STAT_DRQ | STAT_READY | STAT_ERR,
  263.     fun, "completion");
  264. if (read_reg(pi, 7) & STAT_DRQ) {
  265. n = (((read_reg(pi, 4) + 256 * read_reg(pi, 5)) +
  266.       3) & 0xfffc);
  267. p = read_reg(pi, 2) & 3;
  268. if (p == 0)
  269. pi_write_block(pi, buf, n);
  270. if (p == 2)
  271. pi_read_block(pi, buf, n);
  272. }
  273. s = pt_wait(tape, STAT_BUSY, STAT_READY | STAT_ERR, fun, "data done");
  274. pi_disconnect(pi);
  275. return (r ? r : s);
  276. }
  277. static void pt_req_sense(struct pt_unit *tape, int quiet)
  278. {
  279. char rs_cmd[12] = { ATAPI_REQ_SENSE, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0 };
  280. char buf[16];
  281. int r;
  282. r = pt_command(tape, rs_cmd, 16, "Request sense");
  283. mdelay(1);
  284. if (!r)
  285. pt_completion(tape, buf, "Request sense");
  286. tape->last_sense = -1;
  287. if (!r) {
  288. if (!quiet)
  289. printk("%s: Sense key: %x, ASC: %x, ASQ: %xn",
  290.        tape->name, buf[2] & 0xf, buf[12], buf[13]);
  291. tape->last_sense = (buf[2] & 0xf) | ((buf[12] & 0xff) << 8)
  292.     | ((buf[13] & 0xff) << 16);
  293. }
  294. }
  295. static int pt_atapi(struct pt_unit *tape, char *cmd, int dlen, char *buf, char *fun)
  296. {
  297. int r;
  298. r = pt_command(tape, cmd, dlen, fun);
  299. mdelay(1);
  300. if (!r)
  301. r = pt_completion(tape, buf, fun);
  302. if (r)
  303. pt_req_sense(tape, !fun);
  304. return r;
  305. }
  306. static void pt_sleep(int cs)
  307. {
  308. schedule_timeout_interruptible(cs);
  309. }
  310. static int pt_poll_dsc(struct pt_unit *tape, int pause, int tmo, char *msg)
  311. {
  312. struct pi_adapter *pi = tape->pi;
  313. int k, e, s;
  314. k = 0;
  315. e = 0;
  316. s = 0;
  317. while (k < tmo) {
  318. pt_sleep(pause);
  319. k++;
  320. pi_connect(pi);
  321. write_reg(pi, 6, DRIVE(tape));
  322. s = read_reg(pi, 7);
  323. e = read_reg(pi, 1);
  324. pi_disconnect(pi);
  325. if (s & (STAT_ERR | STAT_SEEK))
  326. break;
  327. }
  328. if ((k >= tmo) || (s & STAT_ERR)) {
  329. if (k >= tmo)
  330. printk("%s: %s DSC timeoutn", tape->name, msg);
  331. else
  332. printk("%s: %s stat=0x%x err=0x%xn", tape->name, msg, s,
  333.        e);
  334. pt_req_sense(tape, 0);
  335. return 0;
  336. }
  337. return 1;
  338. }
  339. static void pt_media_access_cmd(struct pt_unit *tape, int tmo, char *cmd, char *fun)
  340. {
  341. if (pt_command(tape, cmd, 0, fun)) {
  342. pt_req_sense(tape, 0);
  343. return;
  344. }
  345. pi_disconnect(tape->pi);
  346. pt_poll_dsc(tape, HZ, tmo, fun);
  347. }
  348. static void pt_rewind(struct pt_unit *tape)
  349. {
  350. char rw_cmd[12] = { ATAPI_REWIND, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  351. pt_media_access_cmd(tape, PT_REWIND_TMO, rw_cmd, "rewind");
  352. }
  353. static void pt_write_fm(struct pt_unit *tape)
  354. {
  355. char wm_cmd[12] = { ATAPI_WFM, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0 };
  356. pt_media_access_cmd(tape, PT_TMO, wm_cmd, "write filemark");
  357. }
  358. #define DBMSG(msg)      ((verbose>1)?(msg):NULL)
  359. static int pt_reset(struct pt_unit *tape)
  360. {
  361. struct pi_adapter *pi = tape->pi;
  362. int i, k, flg;
  363. int expect[5] = { 1, 1, 1, 0x14, 0xeb };
  364. pi_connect(pi);
  365. write_reg(pi, 6, DRIVE(tape));
  366. write_reg(pi, 7, 8);
  367. pt_sleep(20 * HZ / 1000);
  368. k = 0;
  369. while ((k++ < PT_RESET_TMO) && (status_reg(pi) & STAT_BUSY))
  370. pt_sleep(HZ / 10);
  371. flg = 1;
  372. for (i = 0; i < 5; i++)
  373. flg &= (read_reg(pi, i + 1) == expect[i]);
  374. if (verbose) {
  375. printk("%s: Reset (%d) signature = ", tape->name, k);
  376. for (i = 0; i < 5; i++)
  377. printk("%3x", read_reg(pi, i + 1));
  378. if (!flg)
  379. printk(" (incorrect)");
  380. printk("n");
  381. }
  382. pi_disconnect(pi);
  383. return flg - 1;
  384. }
  385. static int pt_ready_wait(struct pt_unit *tape, int tmo)
  386. {
  387. char tr_cmd[12] = { ATAPI_TEST_READY, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  388. int k, p;
  389. k = 0;
  390. while (k < tmo) {
  391. tape->last_sense = 0;
  392. pt_atapi(tape, tr_cmd, 0, NULL, DBMSG("test unit ready"));
  393. p = tape->last_sense;
  394. if (!p)
  395. return 0;
  396. if (!(((p & 0xffff) == 0x0402) || ((p & 0xff) == 6)))
  397. return p;
  398. k++;
  399. pt_sleep(HZ);
  400. }
  401. return 0x000020; /* timeout */
  402. }
  403. static void xs(char *buf, char *targ, int offs, int len)
  404. {
  405. int j, k, l;
  406. j = 0;
  407. l = 0;
  408. for (k = 0; k < len; k++)
  409. if ((buf[k + offs] != 0x20) || (buf[k + offs] != l))
  410. l = targ[j++] = buf[k + offs];
  411. if (l == 0x20)
  412. j--;
  413. targ[j] = 0;
  414. }
  415. static int xn(char *buf, int offs, int size)
  416. {
  417. int v, k;
  418. v = 0;
  419. for (k = 0; k < size; k++)
  420. v = v * 256 + (buf[k + offs] & 0xff);
  421. return v;
  422. }
  423. static int pt_identify(struct pt_unit *tape)
  424. {
  425. int dt, s;
  426. char *ms[2] = { "master", "slave" };
  427. char mf[10], id[18];
  428. char id_cmd[12] = { ATAPI_IDENTIFY, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0 };
  429. char ms_cmd[12] =
  430.     { ATAPI_MODE_SENSE, 0, 0x2a, 0, 36, 0, 0, 0, 0, 0, 0, 0 };
  431. char ls_cmd[12] =
  432.     { ATAPI_LOG_SENSE, 0, 0x71, 0, 0, 0, 0, 0, 36, 0, 0, 0 };
  433. char buf[36];
  434. s = pt_atapi(tape, id_cmd, 36, buf, "identify");
  435. if (s)
  436. return -1;
  437. dt = buf[0] & 0x1f;
  438. if (dt != 1) {
  439. if (verbose)
  440. printk("%s: Drive %d, unsupported type %dn",
  441.        tape->name, tape->drive, dt);
  442. return -1;
  443. }
  444. xs(buf, mf, 8, 8);
  445. xs(buf, id, 16, 16);
  446. tape->flags = 0;
  447. tape->capacity = 0;
  448. tape->bs = 0;
  449. if (!pt_ready_wait(tape, PT_READY_TMO))
  450. tape->flags |= PT_MEDIA;
  451. if (!pt_atapi(tape, ms_cmd, 36, buf, "mode sense")) {
  452. if (!(buf[2] & 0x80))
  453. tape->flags |= PT_WRITE_OK;
  454. tape->bs = xn(buf, 10, 2);
  455. }
  456. if (!pt_atapi(tape, ls_cmd, 36, buf, "log sense"))
  457. tape->capacity = xn(buf, 24, 4);
  458. printk("%s: %s %s, %s", tape->name, mf, id, ms[tape->drive]);
  459. if (!(tape->flags & PT_MEDIA))
  460. printk(", no median");
  461. else {
  462. if (!(tape->flags & PT_WRITE_OK))
  463. printk(", RO");
  464. printk(", blocksize %d, %d MBn", tape->bs, tape->capacity / 1024);
  465. }
  466. return 0;
  467. }
  468. /*
  469.  * returns  0, with id set if drive is detected
  470.  *    -1, if drive detection failed
  471.  */
  472. static int pt_probe(struct pt_unit *tape)
  473. {
  474. if (tape->drive == -1) {
  475. for (tape->drive = 0; tape->drive <= 1; tape->drive++)
  476. if (!pt_reset(tape))
  477. return pt_identify(tape);
  478. } else {
  479. if (!pt_reset(tape))
  480. return pt_identify(tape);
  481. }
  482. return -1;
  483. }
  484. static int pt_detect(void)
  485. {
  486. struct pt_unit *tape;
  487. int specified = 0, found = 0;
  488. int unit;
  489. printk("%s: %s version %s, major %dn", name, name, PT_VERSION, major);
  490. specified = 0;
  491. for (unit = 0; unit < PT_UNITS; unit++) {
  492. struct pt_unit *tape = &pt[unit];
  493. tape->pi = &tape->pia;
  494. atomic_set(&tape->available, 1);
  495. tape->flags = 0;
  496. tape->last_sense = 0;
  497. tape->present = 0;
  498. tape->bufptr = NULL;
  499. tape->drive = DU[D_SLV];
  500. snprintf(tape->name, PT_NAMELEN, "%s%d", name, unit);
  501. if (!DU[D_PRT])
  502. continue;
  503. specified++;
  504. if (pi_init(tape->pi, 0, DU[D_PRT], DU[D_MOD], DU[D_UNI],
  505.      DU[D_PRO], DU[D_DLY], pt_scratch, PI_PT,
  506.      verbose, tape->name)) {
  507. if (!pt_probe(tape)) {
  508. tape->present = 1;
  509. found++;
  510. } else
  511. pi_release(tape->pi);
  512. }
  513. }
  514. if (specified == 0) {
  515. tape = pt;
  516. if (pi_init(tape->pi, 1, -1, -1, -1, -1, -1, pt_scratch,
  517.     PI_PT, verbose, tape->name)) {
  518. if (!pt_probe(tape)) {
  519. tape->present = 1;
  520. found++;
  521. } else
  522. pi_release(tape->pi);
  523. }
  524. }
  525. if (found)
  526. return 0;
  527. printk("%s: No ATAPI tape drive detectedn", name);
  528. return -1;
  529. }
  530. static int pt_open(struct inode *inode, struct file *file)
  531. {
  532. int unit = iminor(inode) & 0x7F;
  533. struct pt_unit *tape = pt + unit;
  534. int err;
  535. if (unit >= PT_UNITS || (!tape->present))
  536. return -ENODEV;
  537. err = -EBUSY;
  538. if (!atomic_dec_and_test(&tape->available))
  539. goto out;
  540. pt_identify(tape);
  541. err = -ENODEV;
  542. if (!tape->flags & PT_MEDIA)
  543. goto out;
  544. err = -EROFS;
  545. if ((!tape->flags & PT_WRITE_OK) && (file->f_mode & 2))
  546. goto out;
  547. if (!(iminor(inode) & 128))
  548. tape->flags |= PT_REWIND;
  549. err = -ENOMEM;
  550. tape->bufptr = kmalloc(PT_BUFSIZE, GFP_KERNEL);
  551. if (tape->bufptr == NULL) {
  552. printk("%s: buffer allocation failedn", tape->name);
  553. goto out;
  554. }
  555. file->private_data = tape;
  556. return 0;
  557. out:
  558. atomic_inc(&tape->available);
  559. return err;
  560. }
  561. static int pt_ioctl(struct inode *inode, struct file *file,
  562.  unsigned int cmd, unsigned long arg)
  563. {
  564. struct pt_unit *tape = file->private_data;
  565. struct mtop __user *p = (void __user *)arg;
  566. struct mtop mtop;
  567. switch (cmd) {
  568. case MTIOCTOP:
  569. if (copy_from_user(&mtop, p, sizeof(struct mtop)))
  570. return -EFAULT;
  571. switch (mtop.mt_op) {
  572. case MTREW:
  573. pt_rewind(tape);
  574. return 0;
  575. case MTWEOF:
  576. pt_write_fm(tape);
  577. return 0;
  578. default:
  579. printk("%s: Unimplemented mt_op %dn", tape->name,
  580.        mtop.mt_op);
  581. return -EINVAL;
  582. }
  583. default:
  584. printk("%s: Unimplemented ioctl 0x%xn", tape->name, cmd);
  585. return -EINVAL;
  586. }
  587. }
  588. static int
  589. pt_release(struct inode *inode, struct file *file)
  590. {
  591. struct pt_unit *tape = file->private_data;
  592. if (atomic_read(&tape->available) > 1)
  593. return -EINVAL;
  594. if (tape->flags & PT_WRITING)
  595. pt_write_fm(tape);
  596. if (tape->flags & PT_REWIND)
  597. pt_rewind(tape);
  598. kfree(tape->bufptr);
  599. tape->bufptr = NULL;
  600. atomic_inc(&tape->available);
  601. return 0;
  602. }
  603. static ssize_t pt_read(struct file *filp, char __user *buf, size_t count, loff_t * ppos)
  604. {
  605. struct pt_unit *tape = filp->private_data;
  606. struct pi_adapter *pi = tape->pi;
  607. char rd_cmd[12] = { ATAPI_READ_6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  608. int k, n, r, p, s, t, b;
  609. if (!(tape->flags & (PT_READING | PT_WRITING))) {
  610. tape->flags |= PT_READING;
  611. if (pt_atapi(tape, rd_cmd, 0, NULL, "start read-ahead"))
  612. return -EIO;
  613. } else if (tape->flags & PT_WRITING)
  614. return -EIO;
  615. if (tape->flags & PT_EOF)
  616. return 0;
  617. t = 0;
  618. while (count > 0) {
  619. if (!pt_poll_dsc(tape, HZ / 100, PT_TMO, "read"))
  620. return -EIO;
  621. n = count;
  622. if (n > 32768)
  623. n = 32768; /* max per command */
  624. b = (n - 1 + tape->bs) / tape->bs;
  625. n = b * tape->bs; /* rounded up to even block */
  626. rd_cmd[4] = b;
  627. r = pt_command(tape, rd_cmd, n, "read");
  628. mdelay(1);
  629. if (r) {
  630. pt_req_sense(tape, 0);
  631. return -EIO;
  632. }
  633. while (1) {
  634. r = pt_wait(tape, STAT_BUSY,
  635.     STAT_DRQ | STAT_ERR | STAT_READY,
  636.     DBMSG("read DRQ"), "");
  637. if (r & STAT_SENSE) {
  638. pi_disconnect(pi);
  639. pt_req_sense(tape, 0);
  640. return -EIO;
  641. }
  642. if (r)
  643. tape->flags |= PT_EOF;
  644. s = read_reg(pi, 7);
  645. if (!(s & STAT_DRQ))
  646. break;
  647. n = (read_reg(pi, 4) + 256 * read_reg(pi, 5));
  648. p = (read_reg(pi, 2) & 3);
  649. if (p != 2) {
  650. pi_disconnect(pi);
  651. printk("%s: Phase error on read: %dn", tape->name,
  652.        p);
  653. return -EIO;
  654. }
  655. while (n > 0) {
  656. k = n;
  657. if (k > PT_BUFSIZE)
  658. k = PT_BUFSIZE;
  659. pi_read_block(pi, tape->bufptr, k);
  660. n -= k;
  661. b = k;
  662. if (b > count)
  663. b = count;
  664. if (copy_to_user(buf + t, tape->bufptr, b)) {
  665. pi_disconnect(pi);
  666. return -EFAULT;
  667. }
  668. t += b;
  669. count -= b;
  670. }
  671. }
  672. pi_disconnect(pi);
  673. if (tape->flags & PT_EOF)
  674. break;
  675. }
  676. return t;
  677. }
  678. static ssize_t pt_write(struct file *filp, const char __user *buf, size_t count, loff_t * ppos)
  679. {
  680. struct pt_unit *tape = filp->private_data;
  681. struct pi_adapter *pi = tape->pi;
  682. char wr_cmd[12] = { ATAPI_WRITE_6, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
  683. int k, n, r, p, s, t, b;
  684. if (!(tape->flags & PT_WRITE_OK))
  685. return -EROFS;
  686. if (!(tape->flags & (PT_READING | PT_WRITING))) {
  687. tape->flags |= PT_WRITING;
  688. if (pt_atapi
  689.     (tape, wr_cmd, 0, NULL, "start buffer-available mode"))
  690. return -EIO;
  691. } else if (tape->flags & PT_READING)
  692. return -EIO;
  693. if (tape->flags & PT_EOF)
  694. return -ENOSPC;
  695. t = 0;
  696. while (count > 0) {
  697. if (!pt_poll_dsc(tape, HZ / 100, PT_TMO, "write"))
  698. return -EIO;
  699. n = count;
  700. if (n > 32768)
  701. n = 32768; /* max per command */
  702. b = (n - 1 + tape->bs) / tape->bs;
  703. n = b * tape->bs; /* rounded up to even block */
  704. wr_cmd[4] = b;
  705. r = pt_command(tape, wr_cmd, n, "write");
  706. mdelay(1);
  707. if (r) { /* error delivering command only */
  708. pt_req_sense(tape, 0);
  709. return -EIO;
  710. }
  711. while (1) {
  712. r = pt_wait(tape, STAT_BUSY,
  713.     STAT_DRQ | STAT_ERR | STAT_READY,
  714.     DBMSG("write DRQ"), NULL);
  715. if (r & STAT_SENSE) {
  716. pi_disconnect(pi);
  717. pt_req_sense(tape, 0);
  718. return -EIO;
  719. }
  720. if (r)
  721. tape->flags |= PT_EOF;
  722. s = read_reg(pi, 7);
  723. if (!(s & STAT_DRQ))
  724. break;
  725. n = (read_reg(pi, 4) + 256 * read_reg(pi, 5));
  726. p = (read_reg(pi, 2) & 3);
  727. if (p != 0) {
  728. pi_disconnect(pi);
  729. printk("%s: Phase error on write: %d n",
  730.        tape->name, p);
  731. return -EIO;
  732. }
  733. while (n > 0) {
  734. k = n;
  735. if (k > PT_BUFSIZE)
  736. k = PT_BUFSIZE;
  737. b = k;
  738. if (b > count)
  739. b = count;
  740. if (copy_from_user(tape->bufptr, buf + t, b)) {
  741. pi_disconnect(pi);
  742. return -EFAULT;
  743. }
  744. pi_write_block(pi, tape->bufptr, k);
  745. t += b;
  746. count -= b;
  747. n -= k;
  748. }
  749. }
  750. pi_disconnect(pi);
  751. if (tape->flags & PT_EOF)
  752. break;
  753. }
  754. return t;
  755. }
  756. static int __init pt_init(void)
  757. {
  758. int unit, err = 0;
  759. if (disable) {
  760. err = -1;
  761. goto out;
  762. }
  763. if (pt_detect()) {
  764. err = -1;
  765. goto out;
  766. }
  767. if (register_chrdev(major, name, &pt_fops)) {
  768. printk("pt_init: unable to get major number %dn", major);
  769. for (unit = 0; unit < PT_UNITS; unit++)
  770. if (pt[unit].present)
  771. pi_release(pt[unit].pi);
  772. err = -1;
  773. goto out;
  774. }
  775. pt_class = class_create(THIS_MODULE, "pt");
  776. if (IS_ERR(pt_class)) {
  777. err = PTR_ERR(pt_class);
  778. goto out_chrdev;
  779. }
  780. devfs_mk_dir("pt");
  781. for (unit = 0; unit < PT_UNITS; unit++)
  782. if (pt[unit].present) {
  783. class_device_create(pt_class, MKDEV(major, unit),
  784. NULL, "pt%d", unit);
  785. err = devfs_mk_cdev(MKDEV(major, unit),
  786.       S_IFCHR | S_IRUSR | S_IWUSR,
  787.       "pt/%d", unit);
  788. if (err) {
  789. class_device_destroy(pt_class, MKDEV(major, unit));
  790. goto out_class;
  791. }
  792. class_device_create(pt_class, MKDEV(major, unit + 128),
  793. NULL, "pt%dn", unit);
  794. err = devfs_mk_cdev(MKDEV(major, unit + 128),
  795.       S_IFCHR | S_IRUSR | S_IWUSR,
  796.       "pt/%dn", unit);
  797. if (err) {
  798. class_device_destroy(pt_class, MKDEV(major, unit + 128));
  799. goto out_class;
  800. }
  801. }
  802. goto out;
  803. out_class:
  804. class_destroy(pt_class);
  805. out_chrdev:
  806. unregister_chrdev(major, "pt");
  807. out:
  808. return err;
  809. }
  810. static void __exit pt_exit(void)
  811. {
  812. int unit;
  813. for (unit = 0; unit < PT_UNITS; unit++)
  814. if (pt[unit].present) {
  815. class_device_destroy(pt_class, MKDEV(major, unit));
  816. devfs_remove("pt/%d", unit);
  817. class_device_destroy(pt_class, MKDEV(major, unit + 128));
  818. devfs_remove("pt/%dn", unit);
  819. }
  820. class_destroy(pt_class);
  821. devfs_remove("pt");
  822. unregister_chrdev(major, name);
  823. for (unit = 0; unit < PT_UNITS; unit++)
  824. if (pt[unit].present)
  825. pi_release(pt[unit].pi);
  826. }
  827. MODULE_LICENSE("GPL");
  828. module_init(pt_init)
  829. module_exit(pt_exit)