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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Generic parallel printer driver
  3.  *
  4.  * Copyright (C) 1992 by Jim Weigand and Linus Torvalds
  5.  * Copyright (C) 1992,1993 by Michael K. Johnson
  6.  * - Thanks much to Gunter Windau for pointing out to me where the error
  7.  *   checking ought to be.
  8.  * Copyright (C) 1993 by Nigel Gamble (added interrupt code)
  9.  * Copyright (C) 1994 by Alan Cox (Modularised it)
  10.  * LPCAREFUL, LPABORT, LPGETSTATUS added by Chris Metcalf, metcalf@lcs.mit.edu
  11.  * Statistics and support for slow printers by Rob Janssen, rob@knoware.nl
  12.  * "lp=" command line parameters added by Grant Guenther, grant@torque.net
  13.  * lp_read (Status readback) support added by Carsten Gross,
  14.  *                                             carsten@sol.wohnheim.uni-ulm.de
  15.  * Support for parport by Philip Blundell <Philip.Blundell@pobox.com>
  16.  * Parport sharing hacking by Andrea Arcangeli
  17.  * Fixed kernel_(to/from)_user memory copy to check for errors
  18.  *  by Riccardo Facchetti <fizban@tin.it>
  19.  * 22-JAN-1998  Added support for devfs  Richard Gooch <rgooch@atnf.csiro.au>
  20.  * Redesigned interrupt handling for handle printers with buggy handshake
  21.  * by Andrea Arcangeli, 11 May 1998
  22.  * Full efficient handling of printer with buggy irq handshake (now I have
  23.  * understood the meaning of the strange handshake). This is done sending new
  24.  * characters if the interrupt is just happened, even if the printer say to
  25.  * be still BUSY. This is needed at least with Epson Stylus Color. To enable
  26.  * the new TRUST_IRQ mode read the `LP OPTIMIZATION' section below...
  27.  * Fixed the irq on the rising edge of the strobe case.
  28.  * Obsoleted the CAREFUL flag since a printer that doesn' t work with
  29.  * CAREFUL will block a bit after in lp_check_status().
  30.  * Andrea Arcangeli, 15 Oct 1998
  31.  * Obsoleted and removed all the lowlevel stuff implemented in the last
  32.  * month to use the IEEE1284 functions (that handle the _new_ compatibilty
  33.  * mode fine).
  34.  */
  35. /* This driver should, in theory, work with any parallel port that has an
  36.  * appropriate low-level driver; all I/O is done through the parport
  37.  * abstraction layer.
  38.  *
  39.  * If this driver is built into the kernel, you can configure it using the
  40.  * kernel command-line.  For example:
  41.  *
  42.  * lp=parport1,none,parport2 (bind lp0 to parport1, disable lp1 and
  43.  *  bind lp2 to parport2)
  44.  *
  45.  * lp=auto (assign lp devices to all ports that
  46.  *          have printers attached, as determined
  47.  *  by the IEEE-1284 autoprobe)
  48.  * 
  49.  * lp=reset (reset the printer during 
  50.  *  initialisation)
  51.  *
  52.  * lp=off (disable the printer driver entirely)
  53.  *
  54.  * If the driver is loaded as a module, similar functionality is available
  55.  * using module parameters.  The equivalent of the above commands would be:
  56.  *
  57.  * # insmod lp.o parport=1,none,2
  58.  *
  59.  * # insmod lp.o parport=auto
  60.  *
  61.  * # insmod lp.o reset=1
  62.  */
  63. /* COMPATIBILITY WITH OLD KERNELS
  64.  *
  65.  * Under Linux 2.0 and previous versions, lp devices were bound to ports at
  66.  * particular I/O addresses, as follows:
  67.  *
  68.  * lp0 0x3bc
  69.  * lp1 0x378
  70.  * lp2 0x278
  71.  *
  72.  * The new driver, by default, binds lp devices to parport devices as it
  73.  * finds them.  This means that if you only have one port, it will be bound
  74.  * to lp0 regardless of its I/O address.  If you need the old behaviour, you
  75.  * can force it using the parameters described above.
  76.  */
  77. /*
  78.  * The new interrupt handling code take care of the buggy handshake
  79.  * of some HP and Epson printer:
  80.  * ___
  81.  * ACK    _______________    ___________
  82.  *                       |__|
  83.  * ____
  84.  * BUSY   _________              _______
  85.  *                 |____________|
  86.  *
  87.  * I discovered this using the printer scanner that you can find at:
  88.  *
  89.  * ftp://e-mind.com/pub/linux/pscan/
  90.  *
  91.  * 11 May 98, Andrea Arcangeli
  92.  *
  93.  * My printer scanner run on an Epson Stylus Color show that such printer
  94.  * generates the irq on the _rising_ edge of the STROBE. Now lp handle
  95.  * this case fine too.
  96.  *
  97.  * 15 Oct 1998, Andrea Arcangeli
  98.  *
  99.  * The so called `buggy' handshake is really the well documented
  100.  * compatibility mode IEEE1284 handshake. They changed the well known
  101.  * Centronics handshake acking in the middle of busy expecting to not
  102.  * break drivers or legacy application, while they broken linux lp
  103.  * until I fixed it reverse engineering the protocol by hand some
  104.  * month ago...
  105.  *
  106.  *                                     14 Dec 1998, Andrea Arcangeli
  107.  *
  108.  * Copyright (C) 2000 by Tim Waugh (added LPSETTIMEOUT ioctl)
  109.  */
  110. #include <linux/module.h>
  111. #include <linux/init.h>
  112. #include <linux/config.h>
  113. #include <linux/errno.h>
  114. #include <linux/kernel.h>
  115. #include <linux/major.h>
  116. #include <linux/sched.h>
  117. #include <linux/smp_lock.h>
  118. #include <linux/devfs_fs_kernel.h>
  119. #include <linux/slab.h>
  120. #include <linux/fcntl.h>
  121. #include <linux/delay.h>
  122. #include <linux/poll.h>
  123. #include <linux/console.h>
  124. #include <linux/parport.h>
  125. #undef LP_STATS
  126. #include <linux/lp.h>
  127. #include <asm/irq.h>
  128. #include <asm/uaccess.h>
  129. #include <asm/system.h>
  130. /* if you have more than 8 printers, remember to increase LP_NO */
  131. #define LP_NO 8
  132. /* ROUND_UP macro from fs/select.c */
  133. #define ROUND_UP(x,y) (((x)+(y)-1)/(y))
  134. static devfs_handle_t devfs_handle = NULL;
  135. struct lp_struct lp_table[LP_NO];
  136. static unsigned int lp_count = 0;
  137. #ifdef CONFIG_LP_CONSOLE
  138. static struct parport *console_registered; // initially NULL
  139. #endif /* CONFIG_LP_CONSOLE */
  140. #undef LP_DEBUG
  141. /* Bits used to manage claiming the parport device */
  142. #define LP_PREEMPT_REQUEST 1
  143. #define LP_PARPORT_CLAIMED 2
  144. /* --- low-level port access ----------------------------------- */
  145. #define r_dtr(x) (parport_read_data(lp_table[(x)].dev->port))
  146. #define r_str(x) (parport_read_status(lp_table[(x)].dev->port))
  147. #define w_ctr(x,y) do { parport_write_control(lp_table[(x)].dev->port, (y)); } while (0)
  148. #define w_dtr(x,y) do { parport_write_data(lp_table[(x)].dev->port, (y)); } while (0)
  149. /* Claim the parport or block trying unless we've already claimed it */
  150. static void lp_claim_parport_or_block(struct lp_struct *this_lp)
  151. {
  152. if (!test_and_set_bit(LP_PARPORT_CLAIMED, &this_lp->bits)) {
  153. parport_claim_or_block (this_lp->dev);
  154. }
  155. }
  156. /* Claim the parport or block trying unless we've already claimed it */
  157. static void lp_release_parport(struct lp_struct *this_lp)
  158. {
  159. if (test_and_clear_bit(LP_PARPORT_CLAIMED, &this_lp->bits)) {
  160. parport_release (this_lp->dev);
  161. }
  162. }
  163. static int lp_preempt(void *handle)
  164. {
  165. struct lp_struct *this_lp = (struct lp_struct *)handle;
  166. set_bit(LP_PREEMPT_REQUEST, &this_lp->bits);
  167. return (1);
  168. }
  169. /* 
  170.  * Try to negotiate to a new mode; if unsuccessful negotiate to
  171.  * compatibility mode.  Return the mode we ended up in.
  172.  */
  173. static int lp_negotiate(struct parport * port, int mode)
  174. {
  175. if (parport_negotiate (port, mode) != 0) {
  176. mode = IEEE1284_MODE_COMPAT;
  177. parport_negotiate (port, mode);
  178. }
  179. return (mode);
  180. }
  181. static int lp_reset(int minor)
  182. {
  183. int retval;
  184. lp_claim_parport_or_block (&lp_table[minor]);
  185. w_ctr(minor, LP_PSELECP);
  186. udelay (LP_DELAY);
  187. w_ctr(minor, LP_PSELECP | LP_PINITP);
  188. retval = r_str(minor);
  189. lp_release_parport (&lp_table[minor]);
  190. return retval;
  191. }
  192. static void lp_error (int minor)
  193. {
  194. int polling;
  195. if (LP_F(minor) & LP_ABORT)
  196. return;
  197. polling = lp_table[minor].dev->port->irq == PARPORT_IRQ_NONE;
  198. if (polling) lp_release_parport (&lp_table[minor]);
  199. interruptible_sleep_on_timeout (&lp_table[minor].waitq,
  200. LP_TIMEOUT_POLLED);
  201. if (polling) lp_claim_parport_or_block (&lp_table[minor]);
  202. else parport_yield_blocking (lp_table[minor].dev);
  203. }
  204. static int lp_check_status(int minor)
  205. {
  206. int error = 0;
  207. unsigned int last = lp_table[minor].last_error;
  208. unsigned char status = r_str(minor);
  209. if ((status & LP_PERRORP) && !(LP_F(minor) & LP_CAREFUL))
  210. /* No error. */
  211. last = 0;
  212. else if ((status & LP_POUTPA)) {
  213. if (last != LP_POUTPA) {
  214. last = LP_POUTPA;
  215. printk(KERN_INFO "lp%d out of papern", minor);
  216. }
  217. error = -ENOSPC;
  218. } else if (!(status & LP_PSELECD)) {
  219. if (last != LP_PSELECD) {
  220. last = LP_PSELECD;
  221. printk(KERN_INFO "lp%d off-linen", minor);
  222. }
  223. error = -EIO;
  224. } else if (!(status & LP_PERRORP)) {
  225. if (last != LP_PERRORP) {
  226. last = LP_PERRORP;
  227. printk(KERN_INFO "lp%d on firen", minor);
  228. }
  229. error = -EIO;
  230. } else {
  231. last = 0; /* Come here if LP_CAREFUL is set and no
  232.                              errors are reported. */
  233. }
  234. lp_table[minor].last_error = last;
  235. if (last != 0)
  236. lp_error(minor);
  237. return error;
  238. }
  239. static int lp_wait_ready(int minor, int nonblock)
  240. {
  241. int error = 0;
  242. /* If we're not in compatibility mode, we're ready now! */
  243. if (lp_table[minor].current_mode != IEEE1284_MODE_COMPAT) {
  244.   return (0);
  245. }
  246. do {
  247. error = lp_check_status (minor);
  248. if (error && (nonblock || (LP_F(minor) & LP_ABORT)))
  249. break;
  250. if (signal_pending (current)) {
  251. error = -EINTR;
  252. break;
  253. }
  254. } while (error);
  255. return error;
  256. }
  257. static ssize_t lp_write(struct file * file, const char * buf,
  258.         size_t count, loff_t *ppos)
  259. {
  260. unsigned int minor = MINOR(file->f_dentry->d_inode->i_rdev);
  261. struct parport *port = lp_table[minor].dev->port;
  262. char *kbuf = lp_table[minor].lp_buffer;
  263. ssize_t retv = 0;
  264. ssize_t written;
  265. size_t copy_size = count;
  266. int nonblock = ((file->f_flags & O_NONBLOCK) ||
  267. (LP_F(minor) & LP_ABORT));
  268. #ifdef LP_STATS
  269. if (jiffies-lp_table[minor].lastcall > LP_TIME(minor))
  270. lp_table[minor].runchars = 0;
  271. lp_table[minor].lastcall = jiffies;
  272. #endif
  273. /* Need to copy the data from user-space. */
  274. if (copy_size > LP_BUFFER_SIZE)
  275. copy_size = LP_BUFFER_SIZE;
  276. if (copy_from_user (kbuf, buf, copy_size))
  277. return -EFAULT;
  278. if (down_interruptible (&lp_table[minor].port_mutex))
  279. return -EINTR;
  280.   /* Claim Parport or sleep until it becomes available
  281.    */
  282. lp_claim_parport_or_block (&lp_table[minor]);
  283. /* Go to the proper mode. */
  284. lp_table[minor].current_mode = lp_negotiate (port, 
  285.      lp_table[minor].best_mode);
  286. parport_set_timeout (lp_table[minor].dev,
  287.      (nonblock ? PARPORT_INACTIVITY_O_NONBLOCK
  288.       : lp_table[minor].timeout));
  289. if ((retv = lp_wait_ready (minor, nonblock)) == 0)
  290. do {
  291. /* Write the data. */
  292. written = parport_write (port, kbuf, copy_size);
  293. if (written >= 0) {
  294. copy_size -= written;
  295. count -= written;
  296. buf  += written;
  297. retv += written;
  298. }
  299. if (signal_pending (current)) {
  300. if (retv == 0)
  301. retv = -EINTR;
  302. break;
  303. }
  304. if (copy_size > 0) {
  305. /* incomplete write -> check error ! */
  306. int error;
  307. parport_negotiate (lp_table[minor].dev->port, 
  308.    IEEE1284_MODE_COMPAT);
  309. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  310. error = lp_wait_ready (minor, nonblock);
  311. if (error) {
  312. if (retv == 0)
  313. retv = error;
  314. break;
  315. } else if (nonblock) {
  316. if (retv == 0)
  317. retv = -EAGAIN;
  318. break;
  319. }
  320. parport_yield_blocking (lp_table[minor].dev);
  321. lp_table[minor].current_mode 
  322.   = lp_negotiate (port, 
  323.   lp_table[minor].best_mode);
  324. } else if (current->need_resched)
  325. schedule ();
  326. if (count) {
  327. copy_size = count;
  328. if (copy_size > LP_BUFFER_SIZE)
  329. copy_size = LP_BUFFER_SIZE;
  330. if (copy_from_user(kbuf, buf, copy_size)) {
  331. if (retv == 0)
  332. retv = -EFAULT;
  333. break;
  334. }
  335. }
  336. } while (count > 0);
  337. if (test_and_clear_bit(LP_PREEMPT_REQUEST, 
  338.        &lp_table[minor].bits)) {
  339. printk(KERN_INFO "lp%d releasing parportn", minor);
  340. parport_negotiate (lp_table[minor].dev->port, 
  341.    IEEE1284_MODE_COMPAT);
  342. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  343. lp_release_parport (&lp_table[minor]);
  344. }
  345. up (&lp_table[minor].port_mutex);
  346.   return retv;
  347. }
  348. #ifdef CONFIG_PARPORT_1284
  349. /* Status readback conforming to ieee1284 */
  350. static ssize_t lp_read(struct file * file, char * buf,
  351.        size_t count, loff_t *ppos)
  352. {
  353. unsigned int minor=MINOR(file->f_dentry->d_inode->i_rdev);
  354. struct parport *port = lp_table[minor].dev->port;
  355. ssize_t retval = 0;
  356. char *kbuf = lp_table[minor].lp_buffer;
  357. int nonblock = ((file->f_flags & O_NONBLOCK) ||
  358. (LP_F(minor) & LP_ABORT));
  359. if (count > LP_BUFFER_SIZE)
  360. count = LP_BUFFER_SIZE;
  361. if (down_interruptible (&lp_table[minor].port_mutex))
  362. return -EINTR;
  363. lp_claim_parport_or_block (&lp_table[minor]);
  364. parport_set_timeout (lp_table[minor].dev,
  365.      (nonblock ? PARPORT_INACTIVITY_O_NONBLOCK
  366.       : lp_table[minor].timeout));
  367. parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
  368. if (parport_negotiate (lp_table[minor].dev->port,
  369.        IEEE1284_MODE_NIBBLE)) {
  370. retval = -EIO;
  371. goto out;
  372. }
  373. while (retval == 0) {
  374. retval = parport_read (port, kbuf, count);
  375. if (retval > 0)
  376. break;
  377. if (nonblock) {
  378. retval = -EAGAIN;
  379. break;
  380. }
  381. /* Wait for data. */
  382. if (lp_table[minor].dev->port->irq == PARPORT_IRQ_NONE) {
  383. parport_negotiate (lp_table[minor].dev->port,
  384.    IEEE1284_MODE_COMPAT);
  385. lp_error (minor);
  386. if (parport_negotiate (lp_table[minor].dev->port,
  387.        IEEE1284_MODE_NIBBLE)) {
  388. retval = -EIO;
  389. goto out;
  390. }
  391. } else
  392. interruptible_sleep_on_timeout (&lp_table[minor].waitq,
  393. LP_TIMEOUT_POLLED);
  394. if (signal_pending (current)) {
  395. retval = -ERESTARTSYS;
  396. break;
  397. }
  398. if (current->need_resched)
  399. schedule ();
  400. }
  401. parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
  402.  out:
  403. lp_release_parport (&lp_table[minor]);
  404. if (retval > 0 && copy_to_user (buf, kbuf, retval))
  405. retval = -EFAULT;
  406. up (&lp_table[minor].port_mutex);
  407. return retval;
  408. }
  409. #endif /* IEEE 1284 support */
  410. static int lp_open(struct inode * inode, struct file * file)
  411. {
  412. unsigned int minor = MINOR(inode->i_rdev);
  413. if (minor >= LP_NO)
  414. return -ENXIO;
  415. if ((LP_F(minor) & LP_EXIST) == 0)
  416. return -ENXIO;
  417. if (test_and_set_bit(LP_BUSY_BIT_POS, &LP_F(minor)))
  418. return -EBUSY;
  419. /* If ABORTOPEN is set and the printer is offline or out of paper,
  420.    we may still want to open it to perform ioctl()s.  Therefore we
  421.    have commandeered O_NONBLOCK, even though it is being used in
  422.    a non-standard manner.  This is strictly a Linux hack, and
  423.    should most likely only ever be used by the tunelp application. */
  424. if ((LP_F(minor) & LP_ABORTOPEN) && !(file->f_flags & O_NONBLOCK)) {
  425. int status;
  426. lp_claim_parport_or_block (&lp_table[minor]);
  427. status = r_str(minor);
  428. lp_release_parport (&lp_table[minor]);
  429. if (status & LP_POUTPA) {
  430. printk(KERN_INFO "lp%d out of papern", minor);
  431. LP_F(minor) &= ~LP_BUSY;
  432. return -ENOSPC;
  433. } else if (!(status & LP_PSELECD)) {
  434. printk(KERN_INFO "lp%d off-linen", minor);
  435. LP_F(minor) &= ~LP_BUSY;
  436. return -EIO;
  437. } else if (!(status & LP_PERRORP)) {
  438. printk(KERN_ERR "lp%d printer errorn", minor);
  439. LP_F(minor) &= ~LP_BUSY;
  440. return -EIO;
  441. }
  442. }
  443. lp_table[minor].lp_buffer = (char *) kmalloc(LP_BUFFER_SIZE, GFP_KERNEL);
  444. if (!lp_table[minor].lp_buffer) {
  445. LP_F(minor) &= ~LP_BUSY;
  446. return -ENOMEM;
  447. }
  448. /* Determine if the peripheral supports ECP mode */
  449. lp_claim_parport_or_block (&lp_table[minor]);
  450. if ( (lp_table[minor].dev->port->modes & PARPORT_MODE_ECP) &&
  451.              !parport_negotiate (lp_table[minor].dev->port, 
  452.                                  IEEE1284_MODE_ECP)) {
  453. printk (KERN_INFO "lp%d: ECP moden", minor);
  454. lp_table[minor].best_mode = IEEE1284_MODE_ECP;
  455. } else {
  456. lp_table[minor].best_mode = IEEE1284_MODE_COMPAT;
  457. }
  458. /* Leave peripheral in compatibility mode */
  459. parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
  460. lp_release_parport (&lp_table[minor]);
  461. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  462. return 0;
  463. }
  464. static int lp_release(struct inode * inode, struct file * file)
  465. {
  466. unsigned int minor = MINOR(inode->i_rdev);
  467. lp_claim_parport_or_block (&lp_table[minor]);
  468. parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
  469. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  470. lp_release_parport (&lp_table[minor]);
  471. lock_kernel();
  472. kfree(lp_table[minor].lp_buffer);
  473. lp_table[minor].lp_buffer = NULL;
  474. LP_F(minor) &= ~LP_BUSY;
  475. unlock_kernel();
  476. return 0;
  477. }
  478. static int lp_ioctl(struct inode *inode, struct file *file,
  479.     unsigned int cmd, unsigned long arg)
  480. {
  481. unsigned int minor = MINOR(inode->i_rdev);
  482. int status;
  483. int retval = 0;
  484. #ifdef LP_DEBUG
  485. printk(KERN_DEBUG "lp%d ioctl, cmd: 0x%x, arg: 0x%lxn", minor, cmd, arg);
  486. #endif
  487. if (minor >= LP_NO)
  488. return -ENODEV;
  489. if ((LP_F(minor) & LP_EXIST) == 0)
  490. return -ENODEV;
  491. switch ( cmd ) {
  492. struct timeval par_timeout;
  493. long to_jiffies;
  494. case LPTIME:
  495. LP_TIME(minor) = arg * HZ/100;
  496. break;
  497. case LPCHAR:
  498. LP_CHAR(minor) = arg;
  499. break;
  500. case LPABORT:
  501. if (arg)
  502. LP_F(minor) |= LP_ABORT;
  503. else
  504. LP_F(minor) &= ~LP_ABORT;
  505. break;
  506. case LPABORTOPEN:
  507. if (arg)
  508. LP_F(minor) |= LP_ABORTOPEN;
  509. else
  510. LP_F(minor) &= ~LP_ABORTOPEN;
  511. break;
  512. case LPCAREFUL:
  513. if (arg)
  514. LP_F(minor) |= LP_CAREFUL;
  515. else
  516. LP_F(minor) &= ~LP_CAREFUL;
  517. break;
  518. case LPWAIT:
  519. LP_WAIT(minor) = arg;
  520. break;
  521. case LPSETIRQ: 
  522. return -EINVAL;
  523. break;
  524. case LPGETIRQ:
  525. if (copy_to_user((int *) arg, &LP_IRQ(minor),
  526. sizeof(int)))
  527. return -EFAULT;
  528. break;
  529. case LPGETSTATUS:
  530. lp_claim_parport_or_block (&lp_table[minor]);
  531. status = r_str(minor);
  532. lp_release_parport (&lp_table[minor]);
  533. if (copy_to_user((int *) arg, &status, sizeof(int)))
  534. return -EFAULT;
  535. break;
  536. case LPRESET:
  537. lp_reset(minor);
  538. break;
  539. #ifdef LP_STATS
  540. case LPGETSTATS:
  541. if (copy_to_user((int *) arg, &LP_STAT(minor),
  542. sizeof(struct lp_stats)))
  543. return -EFAULT;
  544. if (capable(CAP_SYS_ADMIN))
  545. memset(&LP_STAT(minor), 0,
  546. sizeof(struct lp_stats));
  547. break;
  548. #endif
  549.   case LPGETFLAGS:
  550.   status = LP_F(minor);
  551. if (copy_to_user((int *) arg, &status, sizeof(int)))
  552. return -EFAULT;
  553. break;
  554. case LPSETTIMEOUT:
  555. if (copy_from_user (&par_timeout,
  556.     (struct timeval *) arg,
  557.     sizeof (struct timeval))) {
  558. return -EFAULT;
  559. }
  560. /* Convert to jiffies, place in lp_table */
  561. if ((par_timeout.tv_sec < 0) ||
  562.     (par_timeout.tv_usec < 0)) {
  563. return -EINVAL;
  564. }
  565. to_jiffies = ROUND_UP(par_timeout.tv_usec, 1000000/HZ);
  566. to_jiffies += par_timeout.tv_sec * (long) HZ;
  567. if (to_jiffies <= 0) {
  568. return -EINVAL;
  569. }
  570. lp_table[minor].timeout = to_jiffies;
  571. break;
  572. default:
  573. retval = -EINVAL;
  574. }
  575. return retval;
  576. }
  577. static struct file_operations lp_fops = {
  578. owner: THIS_MODULE,
  579. write: lp_write,
  580. ioctl: lp_ioctl,
  581. open: lp_open,
  582. release: lp_release,
  583. #ifdef CONFIG_PARPORT_1284
  584. read: lp_read,
  585. #endif
  586. };
  587. /* --- support for console on the line printer ----------------- */
  588. #ifdef CONFIG_LP_CONSOLE
  589. #define CONSOLE_LP 0
  590. /* If the printer is out of paper, we can either lose the messages or
  591.  * stall until the printer is happy again.  Define CONSOLE_LP_STRICT
  592.  * non-zero to get the latter behaviour. */
  593. #define CONSOLE_LP_STRICT 1
  594. /* The console must be locked when we get here. */
  595. static void lp_console_write (struct console *co, const char *s,
  596.       unsigned count)
  597. {
  598. struct pardevice *dev = lp_table[CONSOLE_LP].dev;
  599. struct parport *port = dev->port;
  600. ssize_t written;
  601. if (parport_claim (dev))
  602. /* Nothing we can do. */
  603. return;
  604. parport_set_timeout (dev, 0);
  605. /* Go to compatibility mode. */
  606. parport_negotiate (port, IEEE1284_MODE_COMPAT);
  607. do {
  608. /* Write the data, converting LF->CRLF as we go. */
  609. ssize_t canwrite = count;
  610. char *lf = memchr (s, 'n', count);
  611. if (lf)
  612. canwrite = lf - s;
  613. if (canwrite > 0) {
  614. written = parport_write (port, s, canwrite);
  615. if (written <= 0)
  616. continue;
  617. s += written;
  618. count -= written;
  619. canwrite -= written;
  620. }
  621. if (lf && canwrite <= 0) {
  622. const char *crlf = "rn";
  623. int i = 2;
  624. /* Dodge the original 'n', and put 'rn' instead. */
  625. s++;
  626. count--;
  627. do {
  628. written = parport_write (port, crlf, i);
  629. if (written > 0)
  630. i -= written, crlf += written;
  631. } while (i > 0 && (CONSOLE_LP_STRICT || written > 0));
  632. }
  633. } while (count > 0 && (CONSOLE_LP_STRICT || written > 0));
  634. parport_release (dev);
  635. }
  636. static kdev_t lp_console_device (struct console *c)
  637. {
  638. return MKDEV(LP_MAJOR, CONSOLE_LP);
  639. }
  640. static struct console lpcons = {
  641. name: "lp",
  642. write: lp_console_write,
  643. device: lp_console_device,
  644. flags: CON_PRINTBUFFER,
  645. };
  646. #endif /* console on line printer */
  647. /* --- initialisation code ------------------------------------- */
  648. static int parport_nr[LP_NO] = { [0 ... LP_NO-1] = LP_PARPORT_UNSPEC };
  649. static char *parport[LP_NO] = { NULL,  };
  650. static int reset = 0;
  651. MODULE_PARM(parport, "1-" __MODULE_STRING(LP_NO) "s");
  652. MODULE_PARM(reset, "i");
  653. #ifndef MODULE
  654. static int __init lp_setup (char *str)
  655. {
  656. static int parport_ptr; // initially zero
  657. int x;
  658. if (get_option (&str, &x)) {
  659. if (x == 0) {
  660. /* disable driver on "lp=" or "lp=0" */
  661. parport_nr[0] = LP_PARPORT_OFF;
  662. } else {
  663. printk(KERN_WARNING "warning: 'lp=0x%x' is deprecated, ignoredn", x);
  664. return 0;
  665. }
  666. } else if (!strncmp(str, "parport", 7)) {
  667. int n = simple_strtoul(str+7, NULL, 10);
  668. if (parport_ptr < LP_NO)
  669. parport_nr[parport_ptr++] = n;
  670. else
  671. printk(KERN_INFO "lp: too many ports, %s ignored.n",
  672.        str);
  673. } else if (!strcmp(str, "auto")) {
  674. parport_nr[0] = LP_PARPORT_AUTO;
  675. } else if (!strcmp(str, "none")) {
  676. parport_nr[parport_ptr++] = LP_PARPORT_NONE;
  677. } else if (!strcmp(str, "reset")) {
  678. reset = 1;
  679. }
  680. return 1;
  681. }
  682. #endif
  683. static int lp_register(int nr, struct parport *port)
  684. {
  685. char name[8];
  686. lp_table[nr].dev = parport_register_device(port, "lp", 
  687.    lp_preempt, NULL, NULL, 0,
  688.    (void *) &lp_table[nr]);
  689. if (lp_table[nr].dev == NULL)
  690. return 1;
  691. lp_table[nr].flags |= LP_EXIST;
  692. if (reset)
  693. lp_reset(nr);
  694. sprintf (name, "%d", nr);
  695. devfs_register (devfs_handle, name,
  696. DEVFS_FL_DEFAULT, LP_MAJOR, nr,
  697. S_IFCHR | S_IRUGO | S_IWUGO,
  698. &lp_fops, NULL);
  699. printk(KERN_INFO "lp%d: using %s (%s).n", nr, port->name, 
  700.        (port->irq == PARPORT_IRQ_NONE)?"polling":"interrupt-driven");
  701. #ifdef CONFIG_LP_CONSOLE
  702. if (!nr) {
  703. if (port->modes & PARPORT_MODE_SAFEININT) {
  704. register_console (&lpcons);
  705. console_registered = port;
  706. printk (KERN_INFO "lp%d: console readyn", CONSOLE_LP);
  707. } else
  708. printk (KERN_ERR "lp%d: cannot run console on %sn",
  709. CONSOLE_LP, port->name);
  710. }
  711. #endif
  712. return 0;
  713. }
  714. static void lp_attach (struct parport *port)
  715. {
  716. unsigned int i;
  717. switch (parport_nr[0])
  718. {
  719. case LP_PARPORT_UNSPEC:
  720. case LP_PARPORT_AUTO:
  721. if (parport_nr[0] == LP_PARPORT_AUTO &&
  722.     port->probe_info[0].class != PARPORT_CLASS_PRINTER)
  723. return;
  724. if (lp_count == LP_NO) {
  725. printk("lp: ignoring parallel port (max. %d)n",LP_NO);
  726. return;
  727. }
  728. if (!lp_register(lp_count, port))
  729. lp_count++;
  730. break;
  731. default:
  732. for (i = 0; i < LP_NO; i++) {
  733. if (port->number == parport_nr[i]) {
  734. if (!lp_register(i, port))
  735. lp_count++;
  736. break;
  737. }
  738. }
  739. break;
  740. }
  741. }
  742. static void lp_detach (struct parport *port)
  743. {
  744. /* Write this some day. */
  745. #ifdef CONFIG_LP_CONSOLE
  746. if (console_registered == port) {
  747. unregister_console (&lpcons);
  748. console_registered = NULL;
  749. }
  750. #endif /* CONFIG_LP_CONSOLE */
  751. }
  752. static struct parport_driver lp_driver = {
  753. "lp",
  754. lp_attach,
  755. lp_detach,
  756. NULL
  757. };
  758. int __init lp_init (void)
  759. {
  760. int i;
  761. if (parport_nr[0] == LP_PARPORT_OFF)
  762. return 0;
  763. for (i = 0; i < LP_NO; i++) {
  764. lp_table[i].dev = NULL;
  765. lp_table[i].flags = 0;
  766. lp_table[i].chars = LP_INIT_CHAR;
  767. lp_table[i].time = LP_INIT_TIME;
  768. lp_table[i].wait = LP_INIT_WAIT;
  769. lp_table[i].lp_buffer = NULL;
  770. #ifdef LP_STATS
  771. lp_table[i].lastcall = 0;
  772. lp_table[i].runchars = 0;
  773. memset (&lp_table[i].stats, 0, sizeof (struct lp_stats));
  774. #endif
  775. lp_table[i].last_error = 0;
  776. init_waitqueue_head (&lp_table[i].waitq);
  777. init_waitqueue_head (&lp_table[i].dataq);
  778. init_MUTEX (&lp_table[i].port_mutex);
  779. lp_table[i].timeout = 10 * HZ;
  780. }
  781. if (devfs_register_chrdev (LP_MAJOR, "lp", &lp_fops)) {
  782. printk ("lp: unable to get major %dn", LP_MAJOR);
  783. return -EIO;
  784. }
  785. devfs_handle = devfs_mk_dir (NULL, "printers", NULL);
  786. if (parport_register_driver (&lp_driver)) {
  787. printk ("lp: unable to register with parportn");
  788. return -EIO;
  789. }
  790. if (!lp_count) {
  791. printk (KERN_INFO "lp: driver loaded but no devices foundn");
  792. #ifndef CONFIG_PARPORT_1284
  793. if (parport_nr[0] == LP_PARPORT_AUTO)
  794. printk (KERN_INFO "lp: (is IEEE 1284 support enabled?)n");
  795. #endif
  796. }
  797. return 0;
  798. }
  799. static int __init lp_init_module (void)
  800. {
  801. if (parport[0]) {
  802. /* The user gave some parameters.  Let's see what they were.  */
  803. if (!strncmp(parport[0], "auto", 4))
  804. parport_nr[0] = LP_PARPORT_AUTO;
  805. else {
  806. int n;
  807. for (n = 0; n < LP_NO && parport[n]; n++) {
  808. if (!strncmp(parport[n], "none", 4))
  809. parport_nr[n] = LP_PARPORT_NONE;
  810. else {
  811. char *ep;
  812. unsigned long r = simple_strtoul(parport[n], &ep, 0);
  813. if (ep != parport[n]) 
  814. parport_nr[n] = r;
  815. else {
  816. printk(KERN_ERR "lp: bad port specifier `%s'n", parport[n]);
  817. return -ENODEV;
  818. }
  819. }
  820. }
  821. }
  822. }
  823. return lp_init();
  824. }
  825. static void lp_cleanup_module (void)
  826. {
  827. unsigned int offset;
  828. parport_unregister_driver (&lp_driver);
  829. #ifdef CONFIG_LP_CONSOLE
  830. unregister_console (&lpcons);
  831. #endif
  832. devfs_unregister (devfs_handle);
  833. devfs_unregister_chrdev(LP_MAJOR, "lp");
  834. for (offset = 0; offset < LP_NO; offset++) {
  835. if (lp_table[offset].dev == NULL)
  836. continue;
  837. parport_unregister_device(lp_table[offset].dev);
  838. }
  839. }
  840. __setup("lp=", lp_setup);
  841. module_init(lp_init_module);
  842. module_exit(lp_cleanup_module);
  843. MODULE_LICENSE("GPL");
  844. EXPORT_NO_SYMBOLS;