lp.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:23k
源码类别:

嵌入式Linux

开发平台:

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)
  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 && (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. #ifdef LP_STATS
  267. if (jiffies-lp_table[minor].lastcall > LP_TIME(minor))
  268. lp_table[minor].runchars = 0;
  269. lp_table[minor].lastcall = jiffies;
  270. #endif
  271. /* Need to copy the data from user-space. */
  272. if (copy_size > LP_BUFFER_SIZE)
  273. copy_size = LP_BUFFER_SIZE;
  274. if (copy_from_user (kbuf, buf, copy_size))
  275. return -EFAULT;
  276. if (down_interruptible (&lp_table[minor].port_mutex))
  277. return -EINTR;
  278.   /* Claim Parport or sleep until it becomes available
  279.    */
  280. lp_claim_parport_or_block (&lp_table[minor]);
  281. /* Go to the proper mode. */
  282. lp_table[minor].current_mode = lp_negotiate (port, 
  283.      lp_table[minor].best_mode);
  284. parport_set_timeout (lp_table[minor].dev,
  285.      lp_table[minor].timeout);
  286. if ((retv = lp_wait_ready (minor)) == 0)
  287. do {
  288. /* Write the data. */
  289. written = parport_write (port, kbuf, copy_size);
  290. if (written >= 0) {
  291. copy_size -= written;
  292. count -= written;
  293. buf  += written;
  294. retv += written;
  295. }
  296. if (signal_pending (current)) {
  297. if (retv == 0)
  298. retv = -EINTR;
  299. break;
  300. }
  301. if (copy_size > 0) {
  302. /* incomplete write -> check error ! */
  303. int error;
  304. parport_negotiate (lp_table[minor].dev->port, 
  305.    IEEE1284_MODE_COMPAT);
  306. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  307. error = lp_wait_ready (minor);
  308. if (error) {
  309. if (retv == 0)
  310. retv = error;
  311. break;
  312. }
  313. parport_yield_blocking (lp_table[minor].dev);
  314. lp_table[minor].current_mode 
  315.   = lp_negotiate (port, 
  316.   lp_table[minor].best_mode);
  317. } else if (current->need_resched)
  318. schedule ();
  319. if (count) {
  320. copy_size = count;
  321. if (copy_size > LP_BUFFER_SIZE)
  322. copy_size = LP_BUFFER_SIZE;
  323. if (copy_from_user(kbuf, buf, copy_size)) {
  324. if (retv == 0)
  325. retv = -EFAULT;
  326. break;
  327. }
  328. }
  329. } while (count > 0);
  330. if (test_and_clear_bit(LP_PREEMPT_REQUEST, 
  331.        &lp_table[minor].bits)) {
  332. printk(KERN_INFO "lp%d releasing parportn", minor);
  333. parport_negotiate (lp_table[minor].dev->port, 
  334.    IEEE1284_MODE_COMPAT);
  335. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  336. lp_release_parport (&lp_table[minor]);
  337. }
  338. up (&lp_table[minor].port_mutex);
  339.   return retv;
  340. }
  341. #ifdef CONFIG_PARPORT_1284
  342. /* Status readback conforming to ieee1284 */
  343. static ssize_t lp_read(struct file * file, char * buf,
  344.        size_t count, loff_t *ppos)
  345. {
  346. unsigned int minor=MINOR(file->f_dentry->d_inode->i_rdev);
  347. struct parport *port = lp_table[minor].dev->port;
  348. ssize_t retval = 0;
  349. char *kbuf = lp_table[minor].lp_buffer;
  350. if (count > LP_BUFFER_SIZE)
  351. count = LP_BUFFER_SIZE;
  352. if (down_interruptible (&lp_table[minor].port_mutex))
  353. return -EINTR;
  354. lp_claim_parport_or_block (&lp_table[minor]);
  355. retval = parport_read (port, kbuf, count);
  356. lp_release_parport (&lp_table[minor]);
  357. if (retval > 0 && copy_to_user (buf, kbuf, retval))
  358. retval = -EFAULT;
  359. up (&lp_table[minor].port_mutex);
  360. return retval;
  361. }
  362. #endif /* IEEE 1284 support */
  363. static int lp_open(struct inode * inode, struct file * file)
  364. {
  365. unsigned int minor = MINOR(inode->i_rdev);
  366. if (minor >= LP_NO)
  367. return -ENXIO;
  368. if ((LP_F(minor) & LP_EXIST) == 0)
  369. return -ENXIO;
  370. if (test_and_set_bit(LP_BUSY_BIT_POS, &LP_F(minor)))
  371. return -EBUSY;
  372. /* If ABORTOPEN is set and the printer is offline or out of paper,
  373.    we may still want to open it to perform ioctl()s.  Therefore we
  374.    have commandeered O_NONBLOCK, even though it is being used in
  375.    a non-standard manner.  This is strictly a Linux hack, and
  376.    should most likely only ever be used by the tunelp application. */
  377. if ((LP_F(minor) & LP_ABORTOPEN) && !(file->f_flags & O_NONBLOCK)) {
  378. int status;
  379. lp_claim_parport_or_block (&lp_table[minor]);
  380. status = r_str(minor);
  381. lp_release_parport (&lp_table[minor]);
  382. if (status & LP_POUTPA) {
  383. printk(KERN_INFO "lp%d out of papern", minor);
  384. LP_F(minor) &= ~LP_BUSY;
  385. return -ENOSPC;
  386. } else if (!(status & LP_PSELECD)) {
  387. printk(KERN_INFO "lp%d off-linen", minor);
  388. LP_F(minor) &= ~LP_BUSY;
  389. return -EIO;
  390. } else if (!(status & LP_PERRORP)) {
  391. printk(KERN_ERR "lp%d printer errorn", minor);
  392. LP_F(minor) &= ~LP_BUSY;
  393. return -EIO;
  394. }
  395. }
  396. lp_table[minor].lp_buffer = (char *) kmalloc(LP_BUFFER_SIZE, GFP_KERNEL);
  397. if (!lp_table[minor].lp_buffer) {
  398. LP_F(minor) &= ~LP_BUSY;
  399. return -ENOMEM;
  400. }
  401. /* Determine if the peripheral supports ECP mode */
  402. lp_claim_parport_or_block (&lp_table[minor]);
  403. if ( (lp_table[minor].dev->port->modes & PARPORT_MODE_ECP) &&
  404.              !parport_negotiate (lp_table[minor].dev->port, 
  405.                                  IEEE1284_MODE_ECP)) {
  406. printk (KERN_INFO "lp%d: ECP moden", minor);
  407. lp_table[minor].best_mode = IEEE1284_MODE_ECP;
  408. } else {
  409. printk (KERN_INFO "lp%d: compatibility moden", minor);
  410. lp_table[minor].best_mode = IEEE1284_MODE_COMPAT;
  411. }
  412. /* Leave peripheral in compatibility mode */
  413. parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
  414. lp_release_parport (&lp_table[minor]);
  415. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  416. return 0;
  417. }
  418. static int lp_release(struct inode * inode, struct file * file)
  419. {
  420. unsigned int minor = MINOR(inode->i_rdev);
  421. lp_claim_parport_or_block (&lp_table[minor]);
  422. parport_negotiate (lp_table[minor].dev->port, IEEE1284_MODE_COMPAT);
  423. lp_table[minor].current_mode = IEEE1284_MODE_COMPAT;
  424. lp_release_parport (&lp_table[minor]);
  425. lock_kernel();
  426. kfree(lp_table[minor].lp_buffer);
  427. lp_table[minor].lp_buffer = NULL;
  428. LP_F(minor) &= ~LP_BUSY;
  429. unlock_kernel();
  430. return 0;
  431. }
  432. static int lp_ioctl(struct inode *inode, struct file *file,
  433.     unsigned int cmd, unsigned long arg)
  434. {
  435. unsigned int minor = MINOR(inode->i_rdev);
  436. int status;
  437. int retval = 0;
  438. #ifdef LP_DEBUG
  439. printk(KERN_DEBUG "lp%d ioctl, cmd: 0x%x, arg: 0x%lxn", minor, cmd, arg);
  440. #endif
  441. if (minor >= LP_NO)
  442. return -ENODEV;
  443. if ((LP_F(minor) & LP_EXIST) == 0)
  444. return -ENODEV;
  445. switch ( cmd ) {
  446. struct timeval par_timeout;
  447. long to_jiffies;
  448. case LPTIME:
  449. LP_TIME(minor) = arg * HZ/100;
  450. break;
  451. case LPCHAR:
  452. LP_CHAR(minor) = arg;
  453. break;
  454. case LPABORT:
  455. if (arg)
  456. LP_F(minor) |= LP_ABORT;
  457. else
  458. LP_F(minor) &= ~LP_ABORT;
  459. break;
  460. case LPABORTOPEN:
  461. if (arg)
  462. LP_F(minor) |= LP_ABORTOPEN;
  463. else
  464. LP_F(minor) &= ~LP_ABORTOPEN;
  465. break;
  466. case LPCAREFUL:
  467. if (arg)
  468. LP_F(minor) |= LP_CAREFUL;
  469. else
  470. LP_F(minor) &= ~LP_CAREFUL;
  471. break;
  472. case LPWAIT:
  473. LP_WAIT(minor) = arg;
  474. break;
  475. case LPSETIRQ: 
  476. return -EINVAL;
  477. break;
  478. case LPGETIRQ:
  479. if (copy_to_user((int *) arg, &LP_IRQ(minor),
  480. sizeof(int)))
  481. return -EFAULT;
  482. break;
  483. case LPGETSTATUS:
  484. lp_claim_parport_or_block (&lp_table[minor]);
  485. status = r_str(minor);
  486. lp_release_parport (&lp_table[minor]);
  487. if (copy_to_user((int *) arg, &status, sizeof(int)))
  488. return -EFAULT;
  489. break;
  490. case LPRESET:
  491. lp_reset(minor);
  492. break;
  493. #ifdef LP_STATS
  494. case LPGETSTATS:
  495. if (copy_to_user((int *) arg, &LP_STAT(minor),
  496. sizeof(struct lp_stats)))
  497. return -EFAULT;
  498. if (capable(CAP_SYS_ADMIN))
  499. memset(&LP_STAT(minor), 0,
  500. sizeof(struct lp_stats));
  501. break;
  502. #endif
  503.   case LPGETFLAGS:
  504.   status = LP_F(minor);
  505. if (copy_to_user((int *) arg, &status, sizeof(int)))
  506. return -EFAULT;
  507. break;
  508. case LPSETTIMEOUT:
  509. if (copy_from_user (&par_timeout,
  510.     (struct timeval *) arg,
  511.     sizeof (struct timeval))) {
  512. return -EFAULT;
  513. }
  514. /* Convert to jiffies, place in lp_table */
  515. if ((par_timeout.tv_sec < 0) ||
  516.     (par_timeout.tv_usec < 0)) {
  517. return -EINVAL;
  518. }
  519. to_jiffies = ROUND_UP(par_timeout.tv_usec, 1000000/HZ);
  520. to_jiffies += par_timeout.tv_sec * (long) HZ;
  521. if (to_jiffies <= 0) {
  522. return -EINVAL;
  523. }
  524. lp_table[minor].timeout = to_jiffies;
  525. break;
  526. default:
  527. retval = -EINVAL;
  528. }
  529. return retval;
  530. }
  531. static struct file_operations lp_fops = {
  532. owner: THIS_MODULE,
  533. write: lp_write,
  534. ioctl: lp_ioctl,
  535. open: lp_open,
  536. release: lp_release,
  537. #ifdef CONFIG_PARPORT_1284
  538. read: lp_read,
  539. #endif
  540. };
  541. /* --- support for console on the line printer ----------------- */
  542. #ifdef CONFIG_LP_CONSOLE
  543. #define CONSOLE_LP 0
  544. /* If the printer is out of paper, we can either lose the messages or
  545.  * stall until the printer is happy again.  Define CONSOLE_LP_STRICT
  546.  * non-zero to get the latter behaviour. */
  547. #define CONSOLE_LP_STRICT 1
  548. /* The console must be locked when we get here. */
  549. static void lp_console_write (struct console *co, const char *s,
  550.       unsigned count)
  551. {
  552. struct pardevice *dev = lp_table[CONSOLE_LP].dev;
  553. struct parport *port = dev->port;
  554. ssize_t written;
  555. if (parport_claim (dev))
  556. /* Nothing we can do. */
  557. return;
  558. parport_set_timeout (dev, 0);
  559. /* Go to compatibility mode. */
  560. parport_negotiate (port, IEEE1284_MODE_COMPAT);
  561. do {
  562. /* Write the data, converting LF->CRLF as we go. */
  563. ssize_t canwrite = count;
  564. char *lf = memchr (s, 'n', count);
  565. if (lf)
  566. canwrite = lf - s;
  567. if (canwrite > 0) {
  568. written = parport_write (port, s, canwrite);
  569. if (written <= 0)
  570. continue;
  571. s += written;
  572. count -= written;
  573. canwrite -= written;
  574. }
  575. if (lf && canwrite <= 0) {
  576. const char *crlf = "rn";
  577. int i = 2;
  578. /* Dodge the original 'n', and put 'rn' instead. */
  579. s++;
  580. count--;
  581. do {
  582. written = parport_write (port, crlf, i);
  583. if (written > 0)
  584. i -= written, crlf += written;
  585. } while (i > 0 && (CONSOLE_LP_STRICT || written > 0));
  586. }
  587. } while (count > 0 && (CONSOLE_LP_STRICT || written > 0));
  588. parport_release (dev);
  589. }
  590. static kdev_t lp_console_device (struct console *c)
  591. {
  592. return MKDEV(LP_MAJOR, CONSOLE_LP);
  593. }
  594. static struct console lpcons = {
  595. name: "lp",
  596. write: lp_console_write,
  597. device: lp_console_device,
  598. flags: CON_PRINTBUFFER,
  599. };
  600. #endif /* console on line printer */
  601. /* --- initialisation code ------------------------------------- */
  602. static int parport_nr[LP_NO] = { [0 ... LP_NO-1] = LP_PARPORT_UNSPEC };
  603. static char *parport[LP_NO] = { NULL,  };
  604. static int reset = 0;
  605. MODULE_PARM(parport, "1-" __MODULE_STRING(LP_NO) "s");
  606. MODULE_PARM(reset, "i");
  607. #ifndef MODULE
  608. static int __init lp_setup (char *str)
  609. {
  610. static int parport_ptr; // initially zero
  611. int x;
  612. if (get_option (&str, &x)) {
  613. if (x == 0) {
  614. /* disable driver on "lp=" or "lp=0" */
  615. parport_nr[0] = LP_PARPORT_OFF;
  616. } else {
  617. printk(KERN_WARNING "warning: 'lp=0x%x' is deprecated, ignoredn", x);
  618. return 0;
  619. }
  620. } else if (!strncmp(str, "parport", 7)) {
  621. int n = simple_strtoul(str+7, NULL, 10);
  622. if (parport_ptr < LP_NO)
  623. parport_nr[parport_ptr++] = n;
  624. else
  625. printk(KERN_INFO "lp: too many ports, %s ignored.n",
  626.        str);
  627. } else if (!strcmp(str, "auto")) {
  628. parport_nr[0] = LP_PARPORT_AUTO;
  629. } else if (!strcmp(str, "none")) {
  630. parport_nr[parport_ptr++] = LP_PARPORT_NONE;
  631. } else if (!strcmp(str, "reset")) {
  632. reset = 1;
  633. }
  634. return 1;
  635. }
  636. #endif
  637. static int lp_register(int nr, struct parport *port)
  638. {
  639. char name[8];
  640. lp_table[nr].dev = parport_register_device(port, "lp", 
  641.    lp_preempt, NULL, NULL, 0,
  642.    (void *) &lp_table[nr]);
  643. if (lp_table[nr].dev == NULL)
  644. return 1;
  645. lp_table[nr].flags |= LP_EXIST;
  646. if (reset)
  647. lp_reset(nr);
  648. sprintf (name, "%d", nr);
  649. devfs_register (devfs_handle, name,
  650. DEVFS_FL_DEFAULT, LP_MAJOR, nr,
  651. S_IFCHR | S_IRUGO | S_IWUGO,
  652. &lp_fops, NULL);
  653. printk(KERN_INFO "lp%d: using %s (%s).n", nr, port->name, 
  654.        (port->irq == PARPORT_IRQ_NONE)?"polling":"interrupt-driven");
  655. #ifdef CONFIG_LP_CONSOLE
  656. if (!nr) {
  657. if (port->modes & PARPORT_MODE_SAFEININT) {
  658. register_console (&lpcons);
  659. console_registered = port;
  660. printk (KERN_INFO "lp%d: console readyn", CONSOLE_LP);
  661. } else
  662. printk (KERN_ERR "lp%d: cannot run console on %sn",
  663. CONSOLE_LP, port->name);
  664. }
  665. #endif
  666. return 0;
  667. }
  668. static void lp_attach (struct parport *port)
  669. {
  670. unsigned int i;
  671. switch (parport_nr[0])
  672. {
  673. case LP_PARPORT_UNSPEC:
  674. case LP_PARPORT_AUTO:
  675. if (parport_nr[0] == LP_PARPORT_AUTO &&
  676.     port->probe_info[0].class != PARPORT_CLASS_PRINTER)
  677. return;
  678. if (lp_count == LP_NO) {
  679. printk("lp: ignoring parallel port (max. %d)n",LP_NO);
  680. return;
  681. }
  682. if (!lp_register(lp_count, port))
  683. lp_count++;
  684. break;
  685. default:
  686. for (i = 0; i < LP_NO; i++) {
  687. if (port->number == parport_nr[i]) {
  688. if (!lp_register(i, port))
  689. lp_count++;
  690. break;
  691. }
  692. }
  693. break;
  694. }
  695. }
  696. static void lp_detach (struct parport *port)
  697. {
  698. /* Write this some day. */
  699. #ifdef CONFIG_LP_CONSOLE
  700. if (console_registered == port) {
  701. unregister_console (&lpcons);
  702. console_registered = NULL;
  703. }
  704. #endif /* CONFIG_LP_CONSOLE */
  705. }
  706. static struct parport_driver lp_driver = {
  707. "lp",
  708. lp_attach,
  709. lp_detach,
  710. NULL
  711. };
  712. int __init lp_init (void)
  713. {
  714. int i;
  715. if (parport_nr[0] == LP_PARPORT_OFF)
  716. return 0;
  717. for (i = 0; i < LP_NO; i++) {
  718. lp_table[i].dev = NULL;
  719. lp_table[i].flags = 0;
  720. lp_table[i].chars = LP_INIT_CHAR;
  721. lp_table[i].time = LP_INIT_TIME;
  722. lp_table[i].wait = LP_INIT_WAIT;
  723. lp_table[i].lp_buffer = NULL;
  724. #ifdef LP_STATS
  725. lp_table[i].lastcall = 0;
  726. lp_table[i].runchars = 0;
  727. memset (&lp_table[i].stats, 0, sizeof (struct lp_stats));
  728. #endif
  729. lp_table[i].last_error = 0;
  730. init_waitqueue_head (&lp_table[i].waitq);
  731. init_waitqueue_head (&lp_table[i].dataq);
  732. init_MUTEX (&lp_table[i].port_mutex);
  733. lp_table[i].timeout = 10 * HZ;
  734. }
  735. if (devfs_register_chrdev (LP_MAJOR, "lp", &lp_fops)) {
  736. printk ("lp: unable to get major %dn", LP_MAJOR);
  737. return -EIO;
  738. }
  739. devfs_handle = devfs_mk_dir (NULL, "printers", NULL);
  740. if (parport_register_driver (&lp_driver)) {
  741. printk ("lp: unable to register with parportn");
  742. return -EIO;
  743. }
  744. if (!lp_count) {
  745. printk (KERN_INFO "lp: driver loaded but no devices foundn");
  746. #ifndef CONFIG_PARPORT_1284
  747. if (parport_nr[0] == LP_PARPORT_AUTO)
  748. printk (KERN_INFO "lp: (is IEEE 1284 support enabled?)n");
  749. #endif
  750. }
  751. return 0;
  752. }
  753. static int __init lp_init_module (void)
  754. {
  755. if (parport[0]) {
  756. /* The user gave some parameters.  Let's see what they were.  */
  757. if (!strncmp(parport[0], "auto", 4))
  758. parport_nr[0] = LP_PARPORT_AUTO;
  759. else {
  760. int n;
  761. for (n = 0; n < LP_NO && parport[n]; n++) {
  762. if (!strncmp(parport[n], "none", 4))
  763. parport_nr[n] = LP_PARPORT_NONE;
  764. else {
  765. char *ep;
  766. unsigned long r = simple_strtoul(parport[n], &ep, 0);
  767. if (ep != parport[n]) 
  768. parport_nr[n] = r;
  769. else {
  770. printk(KERN_ERR "lp: bad port specifier `%s'n", parport[n]);
  771. return -ENODEV;
  772. }
  773. }
  774. }
  775. }
  776. }
  777. return lp_init();
  778. }
  779. static void lp_cleanup_module (void)
  780. {
  781. unsigned int offset;
  782. parport_unregister_driver (&lp_driver);
  783. #ifdef CONFIG_LP_CONSOLE
  784. unregister_console (&lpcons);
  785. #endif
  786. devfs_unregister (devfs_handle);
  787. devfs_unregister_chrdev(LP_MAJOR, "lp");
  788. for (offset = 0; offset < LP_NO; offset++) {
  789. if (lp_table[offset].dev == NULL)
  790. continue;
  791. parport_unregister_device(lp_table[offset].dev);
  792. }
  793. }
  794. __setup("lp=", lp_setup);
  795. module_init(lp_init_module);
  796. module_exit(lp_cleanup_module);
  797. MODULE_LICENSE("GPL");
  798. EXPORT_NO_SYMBOLS;