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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * cpia_pp CPiA Parallel Port driver
  3.  *
  4.  * Supports CPiA based parallel port Video Camera's.
  5.  *
  6.  * (C) Copyright 1999 Bas Huisman <bhuism@cs.utwente.nl>
  7.  * (C) Copyright 1999-2000 Scott J. Bertin <sbertin@mindspring.com>,
  8.  * (C) Copyright 1999-2000 Peter Pregler <Peter_Pregler@email.com>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24. #include <linux/config.h>
  25. #include <linux/version.h>
  26. #include <linux/module.h>
  27. #include <linux/init.h>
  28. #include <linux/kernel.h>
  29. #include <linux/parport.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/delay.h>
  32. #include <linux/smp_lock.h>
  33. #include <linux/kmod.h>
  34. /* #define _CPIA_DEBUG_ define for verbose debug output */
  35. #include "cpia.h"
  36. static int cpia_pp_open(void *privdata);
  37. static int cpia_pp_registerCallback(void *privdata, void (*cb) (void *cbdata),
  38.                                     void *cbdata);
  39. static int cpia_pp_transferCmd(void *privdata, u8 *command, u8 *data);
  40. static int cpia_pp_streamStart(void *privdata);
  41. static int cpia_pp_streamStop(void *privdata);
  42. static int cpia_pp_streamRead(void *privdata, u8 *buffer, int noblock);
  43. static int cpia_pp_close(void *privdata);
  44. #define ABOUT "Parallel port driver for Vision CPiA based cameras"
  45. /* IEEE 1284 Compatiblity Mode signal names  */
  46. #define nStrobe PARPORT_CONTROL_STROBE   /* inverted */
  47. #define nAutoFd PARPORT_CONTROL_AUTOFD   /* inverted */
  48. #define nInit PARPORT_CONTROL_INIT
  49. #define nSelectIn PARPORT_CONTROL_SELECT
  50. #define IntrEnable PARPORT_CONTROL_INTEN   /* normally zero for no IRQ */
  51. #define DirBit PARPORT_CONTROL_DIRECTION /* 0 = Forward, 1 = Reverse */
  52. #define nFault PARPORT_STATUS_ERROR
  53. #define Select PARPORT_STATUS_SELECT
  54. #define PError PARPORT_STATUS_PAPEROUT
  55. #define nAck PARPORT_STATUS_ACK
  56. #define Busy PARPORT_STATUS_BUSY   /* inverted */
  57. /* some more */
  58. #define HostClk nStrobe
  59. #define HostAck nAutoFd
  60. #define nReverseRequest nInit
  61. #define Active_1284 nSelectIn
  62. #define nPeriphRequest nFault
  63. #define XFlag Select
  64. #define nAckReverse PError
  65. #define PeriphClk nAck
  66. #define PeriphAck Busy
  67. /* these can be used to correct for the inversion on some bits */
  68. #define STATUS_INVERSION_MASK (Busy)
  69. #define CONTROL_INVERSION_MASK (nStrobe|nAutoFd|nSelectIn)
  70. #define ECR_empty 0x01
  71. #define ECR_full 0x02
  72. #define ECR_serviceIntr 0x04
  73. #define ECR_dmaEn 0x08
  74. #define ECR_nErrIntrEn 0x10
  75. #define ECR_mode_mask 0xE0
  76. #define ECR_SPP_mode 0x00
  77. #define ECR_PS2_mode 0x20
  78. #define ECR_FIFO_mode 0x40
  79. #define ECR_ECP_mode 0x60
  80. #define ECP_FIFO_SIZE 16
  81. #define DMA_BUFFER_SIZE               PAGE_SIZE
  82. /* for 16bit DMA make sure DMA_BUFFER_SIZE is 16 bit aligned */
  83. #define PARPORT_CHUNK_SIZE PAGE_SIZE/* >=2.3.x */
  84. /* we read this many bytes at once */
  85. #define GetECRMasked(port,mask) (parport_read_econtrol(port) & (mask))
  86. #define GetStatus(port) ((parport_read_status(port)^STATUS_INVERSION_MASK)&(0xf8))
  87. #define SetStatus(port,val) parport_write_status(port,(val)^STATUS_INVERSION_MASK)
  88. #define GetControl(port) ((parport_read_control(port)^CONTROL_INVERSION_MASK)&(0x3f))
  89. #define SetControl(port,val) parport_write_control(port,(val)^CONTROL_INVERSION_MASK)
  90. #define GetStatusMasked(port,mask) (GetStatus(port) & (mask))
  91. #define GetControlMasked(port,mask) (GetControl(port) & (mask))
  92. #define SetControlMasked(port,mask) SetControl(port,GetControl(port) | (mask));
  93. #define ClearControlMasked(port,mask) SetControl(port,GetControl(port)&~(mask));
  94. #define FrobControlBit(port,mask,value) SetControl(port,(GetControl(port)&~(mask))|((value)&(mask)));
  95. #define PACKET_LENGTH  8
  96. /* Magic numbers for defining port-device mappings */
  97. #define PPCPIA_PARPORT_UNSPEC -4
  98. #define PPCPIA_PARPORT_AUTO -3
  99. #define PPCPIA_PARPORT_OFF -2
  100. #define PPCPIA_PARPORT_NONE -1
  101. #ifdef MODULE
  102. static int parport_nr[PARPORT_MAX] = {[0 ... PARPORT_MAX - 1] = PPCPIA_PARPORT_UNSPEC};
  103. static char *parport[PARPORT_MAX] = {NULL,};
  104. MODULE_AUTHOR("B. Huisman <bhuism@cs.utwente.nl> & Peter Pregler <Peter_Pregler@email.com>");
  105. MODULE_DESCRIPTION("Parallel port driver for Vision CPiA based cameras");
  106. MODULE_LICENSE("GPL");
  107. MODULE_PARM(parport, "1-" __MODULE_STRING(PARPORT_MAX) "s");
  108. MODULE_PARM_DESC(parport, "'auto' or a list of parallel port numbers. Just like lp.");
  109. #else
  110. static int parport_nr[PARPORT_MAX] __initdata =
  111. {[0 ... PARPORT_MAX - 1] = PPCPIA_PARPORT_UNSPEC};
  112. static int parport_ptr = 0;
  113. #endif
  114. struct pp_cam_entry {
  115. struct pardevice *pdev;
  116. struct parport *port;
  117. struct tq_struct cb_task;
  118. int open_count;
  119. wait_queue_head_t wq_stream;
  120. /* image state flags */
  121. int image_ready; /* we got an interrupt */
  122. int image_complete; /* we have seen 4 EOI */
  123. int streaming; /* we are in streaming mode */
  124. int stream_irq;
  125. };
  126. static struct cpia_camera_ops cpia_pp_ops = 
  127. {
  128. cpia_pp_open,
  129. cpia_pp_registerCallback,
  130. cpia_pp_transferCmd,
  131. cpia_pp_streamStart,
  132. cpia_pp_streamStop,
  133. cpia_pp_streamRead,
  134. cpia_pp_close,
  135. 1
  136. };
  137. static struct cam_data *cam_list;
  138. static spinlock_t cam_list_lock_pp;
  139. #ifdef _CPIA_DEBUG_
  140. #define DEB_PORT(port) { 
  141. u8 controll = GetControl(port); 
  142. u8 statusss = GetStatus(port); 
  143. DBG("nsel %c per %c naut %c nstrob %c nak %c busy %c nfaul %c sel %c init %c dir %cn",
  144. ((controll & nSelectIn) ? 'U' : 'D'), 
  145. ((statusss & PError) ? 'U' : 'D'), 
  146. ((controll & nAutoFd) ? 'U' : 'D'), 
  147. ((controll & nStrobe) ? 'U' : 'D'), 
  148. ((statusss & nAck) ? 'U' : 'D'), 
  149. ((statusss & Busy) ? 'U' : 'D'), 
  150. ((statusss & nFault) ? 'U' : 'D'), 
  151. ((statusss & Select) ? 'U' : 'D'), 
  152. ((controll & nInit) ? 'U' : 'D'), 
  153. ((controll & DirBit) ? 'R' : 'F')  
  154. ); }
  155. #else
  156. #define DEB_PORT(port) {}
  157. #endif
  158. #define WHILE_OUT_TIMEOUT (HZ/10)
  159. #define DMA_TIMEOUT 10*HZ
  160. /* FIXME */
  161. static void cpia_parport_enable_irq( struct parport *port ) {
  162. parport_enable_irq(port);
  163. mdelay(10);
  164. return;
  165. }
  166. static void cpia_parport_disable_irq( struct parport *port ) {
  167. parport_disable_irq(port);
  168. mdelay(10);
  169. return;
  170. }
  171. /****************************************************************************
  172.  *
  173.  *  EndTransferMode
  174.  *
  175.  ***************************************************************************/
  176. static void EndTransferMode(struct pp_cam_entry *cam)
  177. {
  178. parport_negotiate(cam->port, IEEE1284_MODE_COMPAT);
  179. }
  180. /****************************************************************************
  181.  *
  182.  *  ForwardSetup
  183.  *
  184.  ***************************************************************************/
  185. static int ForwardSetup(struct pp_cam_entry *cam)
  186. {
  187. int retry;
  188. /* After some commands the camera needs extra time before
  189.  * it will respond again, so we try up to 3 times */
  190. for(retry=0; retry<3; ++retry) {
  191. if(!parport_negotiate(cam->port, IEEE1284_MODE_ECP)) {
  192. break;
  193. }
  194. }
  195. if(retry == 3) {
  196. DBG("Unable to negotiate ECP moden");
  197. return -1;
  198. }
  199. return 0;
  200. }
  201. /****************************************************************************
  202.  *
  203.  *  ReverseSetup
  204.  *
  205.  ***************************************************************************/
  206. static int ReverseSetup(struct pp_cam_entry *cam, int extensibility)
  207. {
  208. int retry;
  209. int mode = IEEE1284_MODE_ECP;
  210. if(extensibility) mode = 8|3|IEEE1284_EXT_LINK;
  211. /* After some commands the camera needs extra time before
  212.  * it will respond again, so we try up to 3 times */
  213. for(retry=0; retry<3; ++retry) {
  214. if(!parport_negotiate(cam->port, mode)) {
  215. break;
  216. }
  217. }
  218. if(retry == 3) {
  219. if(extensibility)
  220. DBG("Unable to negotiate extensibility moden");
  221. else
  222. DBG("Unable to negotiate ECP moden");
  223. return -1;
  224. }
  225. if(extensibility) cam->port->ieee1284.mode = IEEE1284_MODE_ECP;
  226. return 0;
  227. }
  228. /****************************************************************************
  229.  *
  230.  *  WritePacket
  231.  *
  232.  ***************************************************************************/
  233. static int WritePacket(struct pp_cam_entry *cam, const u8 *packet, size_t size)
  234. {
  235. int retval=0;
  236. int size_written;
  237. if (packet == NULL) {
  238. return -EINVAL;
  239. }
  240. if (ForwardSetup(cam)) {
  241. DBG("Write failed in setupn");
  242. return -EIO;
  243. }
  244. size_written = parport_write(cam->port, packet, size);
  245. if(size_written != size) {
  246. DBG("Write failed, wrote %d/%dn", size_written, size);
  247. retval = -EIO;
  248. }
  249. EndTransferMode(cam);
  250. return retval;
  251. }
  252. /****************************************************************************
  253.  *
  254.  *  ReadPacket
  255.  *
  256.  ***************************************************************************/
  257. static int ReadPacket(struct pp_cam_entry *cam, u8 *packet, size_t size)
  258. {
  259. int retval=0;
  260. if (packet == NULL) {
  261. return -EINVAL;
  262. }
  263. if (ReverseSetup(cam, 0)) {
  264. return -EIO;
  265. }
  266. if(parport_read(cam->port, packet, size) != size) {
  267. retval = -EIO;
  268. }
  269. EndTransferMode(cam);
  270. return retval;
  271. }
  272. /****************************************************************************
  273.  *
  274.  *  cpia_pp_streamStart
  275.  *
  276.  ***************************************************************************/
  277. static int cpia_pp_streamStart(void *privdata)
  278. {
  279. struct pp_cam_entry *cam = privdata;
  280. DBG("n");
  281. cam->streaming=1;
  282. cam->image_ready=0;
  283. //if (ReverseSetup(cam,1)) return -EIO;
  284. if(cam->stream_irq) cpia_parport_enable_irq(cam->port);
  285. return 0;
  286. }
  287. /****************************************************************************
  288.  *
  289.  *  cpia_pp_streamStop
  290.  *
  291.  ***************************************************************************/
  292. static int cpia_pp_streamStop(void *privdata)
  293. {
  294. struct pp_cam_entry *cam = privdata;
  295. DBG("n");
  296. cam->streaming=0;
  297. cpia_parport_disable_irq(cam->port);
  298. //EndTransferMode(cam);
  299. return 0;
  300. }
  301. static int cpia_pp_read(struct parport *port, u8 *buffer, int len)
  302. {
  303. int bytes_read, new_bytes;
  304. for(bytes_read=0; bytes_read<len; bytes_read += new_bytes) {
  305. new_bytes = parport_read(port, buffer+bytes_read,
  306.                  len-bytes_read);
  307. if(new_bytes < 0) break;
  308. }
  309. return bytes_read;
  310. }
  311. /****************************************************************************
  312.  *
  313.  *  cpia_pp_streamRead
  314.  *
  315.  ***************************************************************************/
  316. static int cpia_pp_streamRead(void *privdata, u8 *buffer, int noblock)
  317. {
  318. struct pp_cam_entry *cam = privdata;
  319. int read_bytes = 0;
  320. int i, endseen, block_size, new_bytes;
  321. if(cam == NULL) {
  322. DBG("Internal driver error: cam is NULLn");
  323. return -EINVAL;
  324. }
  325. if(buffer == NULL) {
  326. DBG("Internal driver error: buffer is NULLn");
  327. return -EINVAL;
  328. }
  329. //if(cam->streaming) DBG("%d / %dn", cam->image_ready, noblock);
  330. if( cam->stream_irq ) {
  331. DBG("%dn", cam->image_ready);
  332. cam->image_ready--;
  333. }
  334. cam->image_complete=0;
  335. if (0/*cam->streaming*/) {
  336. if(!cam->image_ready) {
  337. if(noblock) return -EWOULDBLOCK;
  338. interruptible_sleep_on(&cam->wq_stream);
  339. if( signal_pending(current) ) return -EINTR;
  340. DBG("%dn", cam->image_ready);
  341. }
  342. } else {
  343. if (ReverseSetup(cam, 1)) {
  344. DBG("unable to ReverseSetupn");
  345. return -EIO;
  346. }
  347. }
  348. endseen = 0;
  349. block_size = PARPORT_CHUNK_SIZE;
  350. while( !cam->image_complete ) {
  351. if(current->need_resched)  schedule();
  352. new_bytes = cpia_pp_read(cam->port, buffer, block_size );
  353. if( new_bytes <= 0 ) {
  354. break;
  355. }
  356. i=-1;
  357. while(++i<new_bytes && endseen<4) {
  358.          if(*buffer==EOI) {
  359.                  endseen++;
  360.                 } else {
  361.                  endseen=0;
  362.                 }
  363. buffer++;
  364. }
  365. read_bytes += i;
  366. if( endseen==4 ) {
  367. cam->image_complete=1;
  368. break;
  369. }
  370. if( CPIA_MAX_IMAGE_SIZE-read_bytes <= PARPORT_CHUNK_SIZE ) {
  371. block_size=CPIA_MAX_IMAGE_SIZE-read_bytes;
  372. }
  373. }
  374. EndTransferMode(cam);
  375. return cam->image_complete ? read_bytes : -EIO;
  376. }
  377. /****************************************************************************
  378.  *
  379.  *  cpia_pp_transferCmd
  380.  *
  381.  ***************************************************************************/
  382. static int cpia_pp_transferCmd(void *privdata, u8 *command, u8 *data)
  383. {
  384. int err;
  385. int retval=0;
  386. int databytes;
  387. struct pp_cam_entry *cam = privdata;
  388. if(cam == NULL) {
  389. DBG("Internal driver error: cam is NULLn");
  390. return -EINVAL;
  391. }
  392. if(command == NULL) {
  393. DBG("Internal driver error: command is NULLn");
  394. return -EINVAL;
  395. }
  396. databytes = (((int)command[7])<<8) | command[6];
  397. if ((err = WritePacket(cam, command, PACKET_LENGTH)) < 0) {
  398. DBG("Error writing commandn");
  399. return err;
  400. }
  401. if(command[0] == DATA_IN) {
  402. u8 buffer[8];
  403. if(data == NULL) {
  404. DBG("Internal driver error: data is NULLn");
  405. return -EINVAL;
  406. }
  407. if((err = ReadPacket(cam, buffer, 8)) < 0) {
  408. return err;
  409. DBG("Error reading command resultn");
  410. }
  411. memcpy(data, buffer, databytes);
  412. } else if(command[0] == DATA_OUT) {
  413. if(databytes > 0) {
  414. if(data == NULL) {
  415. DBG("Internal driver error: data is NULLn");
  416. retval = -EINVAL;
  417. } else {
  418. if((err=WritePacket(cam, data, databytes)) < 0){
  419. DBG("Error writing command datan");
  420. return err;
  421. }
  422. }
  423. }
  424. } else {
  425. DBG("Unexpected first byte of command: %xn", command[0]);
  426. retval = -EINVAL;
  427. }
  428. return retval;
  429. }
  430. /****************************************************************************
  431.  *
  432.  *  cpia_pp_open
  433.  *
  434.  ***************************************************************************/
  435. static int cpia_pp_open(void *privdata)
  436. {
  437. struct pp_cam_entry *cam = (struct pp_cam_entry *)privdata;
  438. if (cam == NULL)
  439. return -EINVAL;
  440. if(cam->open_count == 0) {
  441. if (parport_claim(cam->pdev)) {
  442. DBG("failed to claim the portn");
  443. return -EBUSY;
  444. }
  445. parport_negotiate(cam->port, IEEE1284_MODE_COMPAT);
  446. parport_data_forward(cam->port);
  447. parport_write_control(cam->port, PARPORT_CONTROL_SELECT);
  448. udelay(50);
  449. parport_write_control(cam->port,
  450.                       PARPORT_CONTROL_SELECT
  451.                       | PARPORT_CONTROL_INIT);
  452. }
  453. ++cam->open_count;
  454. return 0;
  455. }
  456. /****************************************************************************
  457.  *
  458.  *  cpia_pp_registerCallback
  459.  *
  460.  ***************************************************************************/
  461. static int cpia_pp_registerCallback(void *privdata, void (*cb)(void *cbdata), void *cbdata)
  462. {
  463. struct pp_cam_entry *cam = privdata;
  464. int retval = 0;
  465. if(cam->port->irq != PARPORT_IRQ_NONE) {
  466. cam->cb_task.routine = cb;
  467. cam->cb_task.data = cbdata;
  468. } else {
  469. retval = -1;
  470. }
  471. return retval;
  472. }
  473. /****************************************************************************
  474.  *
  475.  *  cpia_pp_close
  476.  *
  477.  ***************************************************************************/
  478. static int cpia_pp_close(void *privdata)
  479. {
  480. struct pp_cam_entry *cam = privdata;
  481. if (--cam->open_count == 0) {
  482. parport_release(cam->pdev);
  483. }
  484. return 0;
  485. }
  486. /****************************************************************************
  487.  *
  488.  *  cpia_pp_register
  489.  *
  490.  ***************************************************************************/
  491. static int cpia_pp_register(struct parport *port)
  492. {
  493. struct pardevice *pdev = NULL;
  494. struct pp_cam_entry *cam;
  495. struct cam_data *cpia;
  496. if (!(port->modes & PARPORT_MODE_ECP) &&
  497.     !(port->modes & PARPORT_MODE_TRISTATE)) {
  498. LOG("port is not ECP capablen");
  499. return -ENXIO;
  500. }
  501. cam = kmalloc(sizeof(struct pp_cam_entry), GFP_KERNEL);
  502. if (cam == NULL) {
  503. LOG("failed to allocate camera structuren");
  504. return -ENOMEM;
  505. }
  506. memset(cam,0,sizeof(struct pp_cam_entry));
  507. pdev = parport_register_device(port, "cpia_pp", NULL, NULL,
  508.                                NULL, 0, cam);
  509. if (!pdev) {
  510. LOG("failed to parport_register_devicen");
  511. kfree(cam);
  512. return -ENXIO;
  513. }
  514. cam->pdev = pdev;
  515. cam->port = port;
  516. init_waitqueue_head(&cam->wq_stream);
  517. cam->streaming = 0;
  518. cam->stream_irq = 0;
  519. if((cpia = cpia_register_camera(&cpia_pp_ops, cam)) == NULL) {
  520. LOG("failed to cpia_register_cameran");
  521. parport_unregister_device(pdev);
  522. kfree(cam);
  523. return -ENXIO;
  524. }
  525. spin_lock( &cam_list_lock_pp );
  526. cpia_add_to_list(cam_list, cpia);
  527. spin_unlock( &cam_list_lock_pp );
  528. return 0;
  529. }
  530. static void cpia_pp_detach (struct parport *port)
  531. {
  532. struct cam_data *cpia;
  533. spin_lock( &cam_list_lock_pp );
  534. for(cpia = cam_list; cpia != NULL; cpia = cpia->next) {
  535. struct pp_cam_entry *cam = cpia->lowlevel_data;
  536. if (cam && cam->port->number == port->number) {
  537. cpia_remove_from_list(cpia);
  538. spin_unlock( &cam_list_lock_pp );
  539. cpia_unregister_camera(cpia);
  540. if(cam->open_count > 0) {
  541. cpia_pp_close(cam);
  542. }
  543. parport_unregister_device(cam->pdev);
  544. kfree(cam);
  545. cpia->lowlevel_data = NULL;
  546. break;
  547. }
  548. }
  549. }
  550. static void cpia_pp_attach (struct parport *port)
  551. {
  552. unsigned int i;
  553. switch (parport_nr[0])
  554. {
  555. case PPCPIA_PARPORT_UNSPEC:
  556. case PPCPIA_PARPORT_AUTO:
  557. if (port->probe_info[0].class != PARPORT_CLASS_MEDIA ||
  558.     port->probe_info[0].cmdset == NULL ||
  559.     strncmp(port->probe_info[0].cmdset, "CPIA_1", 6) != 0)
  560. return;
  561. cpia_pp_register(port);
  562. break;
  563. default:
  564. for (i = 0; i < PARPORT_MAX; ++i) {
  565. if (port->number == parport_nr[i]) {
  566. cpia_pp_register(port);
  567. break;
  568. }
  569. }
  570. break;
  571. }
  572. }
  573. static struct parport_driver cpia_pp_driver = {
  574. "cpia_pp",
  575. cpia_pp_attach,
  576. cpia_pp_detach,
  577. NULL
  578. };
  579. int cpia_pp_init(void)
  580. {
  581. printk(KERN_INFO "%s v%d.%d.%dn",ABOUT, 
  582.        CPIA_PP_MAJ_VER,CPIA_PP_MIN_VER,CPIA_PP_PATCH_VER);
  583. if(parport_nr[0] == PPCPIA_PARPORT_OFF) {
  584. printk("  disabledn");
  585. return 0;
  586. }
  587. if (parport_register_driver (&cpia_pp_driver)) {
  588. LOG ("unable to register with parportn");
  589. return -EIO;
  590. }
  591. cam_list = NULL;
  592. spin_lock_init( &cam_list_lock_pp );
  593. return 0;
  594. }
  595. #ifdef MODULE
  596. int init_module(void)
  597. {
  598. if (parport[0]) {
  599. /* The user gave some parameters.  Let's see what they were. */
  600. if (!strncmp(parport[0], "auto", 4)) {
  601. parport_nr[0] = PPCPIA_PARPORT_AUTO;
  602. } else {
  603. int n;
  604. for (n = 0; n < PARPORT_MAX && parport[n]; n++) {
  605. if (!strncmp(parport[n], "none", 4)) {
  606. parport_nr[n] = PPCPIA_PARPORT_NONE;
  607. } else {
  608. char *ep;
  609. unsigned long r = simple_strtoul(parport[n], &ep, 0);
  610. if (ep != parport[n]) {
  611. parport_nr[n] = r;
  612. } else {
  613. LOG("bad port specifier `%s'n", parport[n]);
  614. return -ENODEV;
  615. }
  616. }
  617. }
  618. }
  619. }
  620. #if defined(CONFIG_KMOD) && defined(CONFIG_PNP_PARPORT_MODULE)
  621. if(parport_enumerate() && !parport_enumerate()->probe_info.model) {
  622. request_module("parport_probe");
  623. }
  624. #endif
  625. return cpia_pp_init();
  626. }
  627. void cleanup_module(void)
  628. {
  629. parport_unregister_driver (&cpia_pp_driver);
  630. return;
  631. }
  632. #else /* !MODULE */
  633. static int __init cpia_pp_setup(char *str)
  634. {
  635. #if 0
  636. /* Is this only a 2.2ism? -jerdfelt */
  637. if (!str) {
  638. if (ints[0] == 0 || ints[1] == 0) {
  639. /* disable driver on "cpia_pp=" or "cpia_pp=0" */
  640. parport_nr[0] = PPCPIA_PARPORT_OFF;
  641. }
  642. } else
  643. #endif
  644. if (!strncmp(str, "parport", 7)) {
  645. int n = simple_strtoul(str + 7, NULL, 10);
  646. if (parport_ptr < PARPORT_MAX) {
  647. parport_nr[parport_ptr++] = n;
  648. } else {
  649. LOG("too many ports, %s ignored.n", str);
  650. }
  651. } else if (!strcmp(str, "auto")) {
  652. parport_nr[0] = PPCPIA_PARPORT_AUTO;
  653. } else if (!strcmp(str, "none")) {
  654. parport_nr[parport_ptr++] = PPCPIA_PARPORT_NONE;
  655. }
  656. return 0;
  657. }
  658. __setup("cpia_pp=", cpia_pp_setup);
  659. #endif /* !MODULE */