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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*                                              -*- linux-c -*-
  2.  * dtlk.c - DoubleTalk PC driver for Linux
  3.  *
  4.  * Original author: Chris Pallotta <chris@allmedia.com>
  5.  * Current maintainer: Jim Van Zandt <jrv@vanzandt.mv.com>
  6.  * 
  7.  * 2000-03-18 Jim Van Zandt: Fix polling.
  8.  *  Eliminate dtlk_timer_active flag and separate dtlk_stop_timer
  9.  *  function.  Don't restart timer in dtlk_timer_tick.  Restart timer
  10.  *  in dtlk_poll after every poll.  dtlk_poll returns mask (duh).
  11.  *  Eliminate unused function dtlk_write_byte.  Misc. code cleanups.
  12.  */
  13. /* This driver is for the DoubleTalk PC, a speech synthesizer
  14.    manufactured by RC Systems (http://www.rcsys.com/).  It was written
  15.    based on documentation in their User's Manual file and Developer's
  16.    Tools disk.
  17.    The DoubleTalk PC contains four voice synthesizers: text-to-speech
  18.    (TTS), linear predictive coding (LPC), PCM/ADPCM, and CVSD.  It
  19.    also has a tone generator.  Output data for LPC are written to the
  20.    LPC port, and output data for the other modes are written to the
  21.    TTS port.
  22.    Two kinds of data can be read from the DoubleTalk: status
  23.    information (in response to the "01?" interrogation command) is
  24.    read from the TTS port, and index markers (which mark the progress
  25.    of the speech) are read from the LPC port.  Not all models of the
  26.    DoubleTalk PC implement index markers.  Both the TTS and LPC ports
  27.    can also display status flags.
  28.    The DoubleTalk PC generates no interrupts.
  29.    These characteristics are mapped into the Unix stream I/O model as
  30.    follows:
  31.    "write" sends bytes to the TTS port.  It is the responsibility of
  32.    the user program to switch modes among TTS, PCM/ADPCM, and CVSD.
  33.    This driver was written for use with the text-to-speech
  34.    synthesizer.  If LPC output is needed some day, other minor device
  35.    numbers can be used to select among output modes.
  36.    "read" gets index markers from the LPC port.  If the device does
  37.    not implement index markers, the read will fail with error EINVAL.
  38.    Status information is available using the DTLK_INTERROGATE ioctl.
  39.  */
  40. #include <linux/module.h>
  41. #include <linux/version.h>
  42. #define KERNEL
  43. #include <linux/types.h>
  44. #include <linux/fs.h>
  45. #include <linux/mm.h> /* for verify_area */
  46. #include <linux/errno.h> /* for -EBUSY */
  47. #include <linux/ioport.h> /* for check_region, request_region */
  48. #include <linux/delay.h> /* for loops_per_jiffy */
  49. #include <asm/segment.h> /* for put_user_byte */
  50. #include <asm/io.h> /* for inb_p, outb_p, inb, outb, etc. */
  51. #include <asm/uaccess.h> /* for get_user, etc. */
  52. #include <linux/wait.h> /* for wait_queue */
  53. #include <linux/init.h> /* for __init, module_{init,exit} */
  54. #include <linux/poll.h> /* for POLLIN, etc. */
  55. #include <linux/dtlk.h> /* local header file for DoubleTalk values */
  56. #include <linux/devfs_fs_kernel.h>
  57. #include <linux/smp_lock.h>
  58. #ifdef TRACING
  59. #define TRACE_TEXT(str) printk(str);
  60. #define TRACE_RET printk(")")
  61. #else /* !TRACING */
  62. #define TRACE_TEXT(str) ((void) 0)
  63. #define TRACE_RET ((void) 0)
  64. #endif /* TRACING */
  65. static int dtlk_major;
  66. static int dtlk_port_lpc;
  67. static int dtlk_port_tts;
  68. static int dtlk_busy;
  69. static int dtlk_has_indexing;
  70. static unsigned int dtlk_portlist[] =
  71. {0x25e, 0x29e, 0x2de, 0x31e, 0x35e, 0x39e, 0};
  72. static wait_queue_head_t dtlk_process_list;
  73. static struct timer_list dtlk_timer;
  74. /* prototypes for file_operations struct */
  75. static ssize_t dtlk_read(struct file *, char *,
  76.  size_t nbytes, loff_t * ppos);
  77. static ssize_t dtlk_write(struct file *, const char *,
  78.   size_t nbytes, loff_t * ppos);
  79. static unsigned int dtlk_poll(struct file *, poll_table *);
  80. static int dtlk_open(struct inode *, struct file *);
  81. static int dtlk_release(struct inode *, struct file *);
  82. static int dtlk_ioctl(struct inode *inode, struct file *file,
  83.       unsigned int cmd, unsigned long arg);
  84. static struct file_operations dtlk_fops =
  85. {
  86. owner: THIS_MODULE,
  87. read: dtlk_read,
  88. write: dtlk_write,
  89. poll: dtlk_poll,
  90. ioctl: dtlk_ioctl,
  91. open: dtlk_open,
  92. release: dtlk_release,
  93. };
  94. /* local prototypes */
  95. static void dtlk_delay(int ms);
  96. static int dtlk_dev_probe(void);
  97. static struct dtlk_settings *dtlk_interrogate(void);
  98. static int dtlk_readable(void);
  99. static char dtlk_read_lpc(void);
  100. static char dtlk_read_tts(void);
  101. static int dtlk_writeable(void);
  102. static char dtlk_write_bytes(const char *buf, int n);
  103. static char dtlk_write_tts(char);
  104. /*
  105.    static void dtlk_handle_error(char, char, unsigned int);
  106.  */
  107. static void dtlk_timer_tick(unsigned long data);
  108. static ssize_t dtlk_read(struct file *file, char *buf,
  109.  size_t count, loff_t * ppos)
  110. {
  111. unsigned int minor = MINOR(file->f_dentry->d_inode->i_rdev);
  112. char ch;
  113. int i = 0, retries;
  114. /* Can't seek (pread) on the DoubleTalk.  */
  115. if (ppos != &file->f_pos)
  116. return -ESPIPE;
  117. TRACE_TEXT("(dtlk_read");
  118. /*  printk("DoubleTalk PC - dtlk_read()n"); */
  119. if (minor != DTLK_MINOR || !dtlk_has_indexing)
  120. return -EINVAL;
  121. for (retries = 0; retries < loops_per_jiffy; retries++) {
  122. while (i < count && dtlk_readable()) {
  123. ch = dtlk_read_lpc();
  124. /*        printk("dtlk_read() reads 0x%02xn", ch); */
  125. if (put_user(ch, buf++))
  126. return -EFAULT;
  127. i++;
  128. }
  129. if (i)
  130. return i;
  131. if (file->f_flags & O_NONBLOCK)
  132. break;
  133. dtlk_delay(100);
  134. }
  135. if (retries == loops_per_jiffy)
  136. printk(KERN_ERR "dtlk_read times outn");
  137. TRACE_RET;
  138. return -EAGAIN;
  139. }
  140. static ssize_t dtlk_write(struct file *file, const char *buf,
  141.   size_t count, loff_t * ppos)
  142. {
  143. int i = 0, retries = 0, ch;
  144. TRACE_TEXT("(dtlk_write");
  145. #ifdef TRACING
  146. printk(" "");
  147. {
  148. int i, ch;
  149. for (i = 0; i < count; i++) {
  150. if (get_user(ch, buf + i))
  151. return -EFAULT;
  152. if (' ' <= ch && ch <= '~')
  153. printk("%c", ch);
  154. else
  155. printk("\%03o", ch);
  156. }
  157. printk(""");
  158. }
  159. #endif
  160. /* Can't seek (pwrite) on the DoubleTalk.  */
  161. if (ppos != &file->f_pos)
  162. return -ESPIPE;
  163. if (MINOR(file->f_dentry->d_inode->i_rdev) != DTLK_MINOR)
  164. return -EINVAL;
  165. while (1) {
  166. while (i < count && !get_user(ch, buf) &&
  167.        (ch == DTLK_CLEAR || dtlk_writeable())) {
  168. dtlk_write_tts(ch);
  169. buf++;
  170. i++;
  171. if (i % 5 == 0)
  172. /* We yield our time until scheduled
  173.    again.  This reduces the transfer
  174.    rate to 500 bytes/sec, but that's
  175.    still enough to keep up with the
  176.    speech synthesizer. */
  177. dtlk_delay(1);
  178. else {
  179. /* the RDY bit goes zero 2-3 usec
  180.    after writing, and goes 1 again
  181.    180-190 usec later.  Here, we wait
  182.    up to 250 usec for the RDY bit to
  183.    go nonzero. */
  184. for (retries = 0;
  185.      retries < loops_per_jiffy / (4000/HZ);
  186.      retries++)
  187. if (inb_p(dtlk_port_tts) &
  188.     TTS_WRITABLE)
  189. break;
  190. }
  191. retries = 0;
  192. }
  193. if (i == count)
  194. return i;
  195. if (file->f_flags & O_NONBLOCK)
  196. break;
  197. dtlk_delay(1);
  198. if (++retries > 10 * HZ) { /* wait no more than 10 sec
  199.       from last write */
  200. printk("dtlk: write timeout.  "
  201.        "inb_p(dtlk_port_tts) = 0x%02xn",
  202.        inb_p(dtlk_port_tts));
  203. TRACE_RET;
  204. return -EBUSY;
  205. }
  206. }
  207. TRACE_RET;
  208. return -EAGAIN;
  209. }
  210. static unsigned int dtlk_poll(struct file *file, poll_table * wait)
  211. {
  212. int mask = 0;
  213. unsigned long expires;
  214. TRACE_TEXT(" dtlk_poll");
  215. /*
  216.    static long int j;
  217.    printk(".");
  218.    printk("<%ld>", jiffies-j);
  219.    j=jiffies;
  220.  */
  221. poll_wait(file, &dtlk_process_list, wait);
  222. if (dtlk_has_indexing && dtlk_readable()) {
  223.         del_timer(&dtlk_timer);
  224. mask = POLLIN | POLLRDNORM;
  225. }
  226. if (dtlk_writeable()) {
  227.         del_timer(&dtlk_timer);
  228. mask |= POLLOUT | POLLWRNORM;
  229. }
  230. /* there are no exception conditions */
  231. /* There won't be any interrupts, so we set a timer instead. */
  232. expires = jiffies + 3*HZ / 100;
  233. mod_timer(&dtlk_timer, expires);
  234. return mask;
  235. }
  236. static void dtlk_timer_tick(unsigned long data)
  237. {
  238. TRACE_TEXT(" dtlk_timer_tick");
  239. wake_up_interruptible(&dtlk_process_list);
  240. }
  241. static int dtlk_ioctl(struct inode *inode,
  242.       struct file *file,
  243.       unsigned int cmd,
  244.       unsigned long arg)
  245. {
  246. struct dtlk_settings *sp;
  247. char portval;
  248. TRACE_TEXT(" dtlk_ioctl");
  249. switch (cmd) {
  250. case DTLK_INTERROGATE:
  251. sp = dtlk_interrogate();
  252. if (copy_to_user((char *) arg, (char *) sp,
  253.    sizeof(struct dtlk_settings)))
  254. return -EINVAL;
  255. return 0;
  256. case DTLK_STATUS:
  257. portval = inb_p(dtlk_port_tts);
  258. return put_user(portval, (char *) arg);
  259. default:
  260. return -EINVAL;
  261. }
  262. }
  263. static int dtlk_open(struct inode *inode, struct file *file)
  264. {
  265. TRACE_TEXT("(dtlk_open");
  266. switch (MINOR(inode->i_rdev)) {
  267. case DTLK_MINOR:
  268. if (dtlk_busy)
  269. return -EBUSY;
  270. return 0;
  271. default:
  272. return -ENXIO;
  273. }
  274. }
  275. static int dtlk_release(struct inode *inode, struct file *file)
  276. {
  277. TRACE_TEXT("(dtlk_release");
  278. switch (MINOR(inode->i_rdev)) {
  279. case DTLK_MINOR:
  280. break;
  281. default:
  282. break;
  283. }
  284. TRACE_RET;
  285. lock_kernel();
  286. del_timer(&dtlk_timer);
  287. unlock_kernel();
  288. return 0;
  289. }
  290. static devfs_handle_t devfs_handle;
  291. static int __init dtlk_init(void)
  292. {
  293. dtlk_port_lpc = 0;
  294. dtlk_port_tts = 0;
  295. dtlk_busy = 0;
  296. dtlk_major = devfs_register_chrdev(0, "dtlk", &dtlk_fops);
  297. if (dtlk_major == 0) {
  298. printk(KERN_ERR "DoubleTalk PC - cannot register devicen");
  299. return 0;
  300. }
  301. if (dtlk_dev_probe() == 0)
  302. printk(", MAJOR %dn", dtlk_major);
  303. devfs_handle = devfs_register (NULL, "dtlk", DEVFS_FL_DEFAULT,
  304.        dtlk_major, DTLK_MINOR,
  305.        S_IFCHR | S_IRUSR | S_IWUSR,
  306.        &dtlk_fops, NULL);
  307. init_timer(&dtlk_timer);
  308. dtlk_timer.function = dtlk_timer_tick;
  309. init_waitqueue_head(&dtlk_process_list);
  310. return 0;
  311. }
  312. static void __exit dtlk_cleanup (void)
  313. {
  314. dtlk_write_bytes("goodbye", 8);
  315. current->state = TASK_INTERRUPTIBLE;
  316. schedule_timeout(5 * HZ / 10); /* nap 0.50 sec but
  317.    could be awakened
  318.    earlier by
  319.    signals... */
  320. dtlk_write_tts(DTLK_CLEAR);
  321. devfs_unregister_chrdev(dtlk_major, "dtlk");
  322. devfs_unregister(devfs_handle);
  323. release_region(dtlk_port_lpc, DTLK_IO_EXTENT);
  324. }
  325. module_init(dtlk_init);
  326. module_exit(dtlk_cleanup);
  327. /* ------------------------------------------------------------------------ */
  328. /* sleep for ms milliseconds */
  329. static void dtlk_delay(int ms)
  330. {
  331. current->state = TASK_INTERRUPTIBLE;
  332. schedule_timeout((ms * HZ + 1000 - HZ) / 1000);
  333. }
  334. static int dtlk_readable(void)
  335. {
  336. #ifdef TRACING
  337. printk(" dtlk_readable=%u@%u", inb_p(dtlk_port_lpc) != 0x7f, jiffies);
  338. #endif
  339. return inb_p(dtlk_port_lpc) != 0x7f;
  340. }
  341. static int dtlk_writeable(void)
  342. {
  343. /* TRACE_TEXT(" dtlk_writeable"); */
  344. #ifdef TRACINGMORE
  345. printk(" dtlk_writeable=%u", (inb_p(dtlk_port_tts) & TTS_WRITABLE)!=0);
  346. #endif
  347. return inb_p(dtlk_port_tts) & TTS_WRITABLE;
  348. }
  349. static int __init dtlk_dev_probe(void)
  350. {
  351. unsigned int testval = 0;
  352. int i = 0;
  353. struct dtlk_settings *sp;
  354. if (dtlk_port_lpc | dtlk_port_tts)
  355. return -EBUSY;
  356. for (i = 0; dtlk_portlist[i]; i++) {
  357. #if 0
  358. printk("DoubleTalk PC - Port %03x = %04xn",
  359.        dtlk_portlist[i], (testval = inw_p(dtlk_portlist[i])));
  360. #endif
  361. if (check_region(dtlk_portlist[i], DTLK_IO_EXTENT))
  362. continue;
  363. testval = inw_p(dtlk_portlist[i]);
  364. if ((testval &= 0xfbff) == 0x107f) {
  365. request_region(dtlk_portlist[i], DTLK_IO_EXTENT, 
  366.        "dtlk");
  367. dtlk_port_lpc = dtlk_portlist[i];
  368. dtlk_port_tts = dtlk_port_lpc + 1;
  369. sp = dtlk_interrogate();
  370. printk("DoubleTalk PC at %03x-%03x, "
  371.        "ROM version %s, serial number %u",
  372.        dtlk_portlist[i], dtlk_portlist[i] +
  373.        DTLK_IO_EXTENT - 1,
  374.        sp->rom_version, sp->serial_number);
  375.                         /* put LPC port into known state, so
  376.    dtlk_readable() gives valid result */
  377. outb_p(0xff, dtlk_port_lpc); 
  378.                         /* INIT string and index marker */
  379. dtlk_write_bytes("361@012Ir", 8);
  380. /* posting an index takes 18 msec.  Here, we
  381.    wait up to 100 msec to see whether it
  382.    appears. */
  383. dtlk_delay(100);
  384. dtlk_has_indexing = dtlk_readable();
  385. #ifdef TRACING
  386. printk(", indexing %dn", dtlk_has_indexing);
  387. #endif
  388. #ifdef INSCOPE
  389. {
  390. /* This macro records ten samples read from the LPC port, for later display */
  391. #define LOOK
  392. for (i = 0; i < 10; i++)
  393.   {
  394.     buffer[b++] = inb_p(dtlk_port_lpc);
  395.     __delay(loops_per_jiffy/(1000000/HZ));             
  396.   }
  397. char buffer[1000];
  398. int b = 0, i, j;
  399. LOOK
  400. outb_p(0xff, dtlk_port_lpc);
  401. buffer[b++] = 0;
  402. LOOK
  403. dtlk_write_bytes("012Ir", 4);
  404. buffer[b++] = 0;
  405. __delay(50 * loops_per_jiffy / (1000/HZ));
  406. outb_p(0xff, dtlk_port_lpc);
  407. buffer[b++] = 0;
  408. LOOK
  409. printk("n");
  410. for (j = 0; j < b; j++)
  411. printk(" %02x", buffer[j]);
  412. printk("n");
  413. }
  414. #endif /* INSCOPE */
  415. #ifdef OUTSCOPE
  416. {
  417. /* This macro records ten samples read from the TTS port, for later display */
  418. #define LOOK
  419. for (i = 0; i < 10; i++)
  420.   {
  421.     buffer[b++] = inb_p(dtlk_port_tts);
  422.     __delay(loops_per_jiffy/(1000000/HZ));  /* 1 us */ 
  423.   }
  424. char buffer[1000];
  425. int b = 0, i, j;
  426. mdelay(10); /* 10 ms */
  427. LOOK
  428. outb_p(0x03, dtlk_port_tts);
  429. buffer[b++] = 0;
  430. LOOK
  431. LOOK
  432. printk("n");
  433. for (j = 0; j < b; j++)
  434. printk(" %02x", buffer[j]);
  435. printk("n");
  436. }
  437. #endif /* OUTSCOPE */
  438. dtlk_write_bytes("Double Talk found", 18);
  439. return 0;
  440. }
  441. }
  442. printk(KERN_INFO "nDoubleTalk PC - not foundn");
  443. return -ENODEV;
  444. }
  445. /*
  446.    static void dtlk_handle_error(char op, char rc, unsigned int minor)
  447.    {
  448.    printk(KERN_INFO"nDoubleTalk PC - MINOR: %d, OPCODE: %d, ERROR: %dn", 
  449.    minor, op, rc);
  450.    return;
  451.    }
  452.  */
  453. /* interrogate the DoubleTalk PC and return its settings */
  454. static struct dtlk_settings *dtlk_interrogate(void)
  455. {
  456. unsigned char *t;
  457. static char buf[sizeof(struct dtlk_settings) + 1];
  458. int total, i;
  459. static struct dtlk_settings status;
  460. TRACE_TEXT("(dtlk_interrogate");
  461. dtlk_write_bytes("3001?", 3);
  462. for (total = 0, i = 0; i < 50; i++) {
  463. buf[total] = dtlk_read_tts();
  464. if (total > 2 && buf[total] == 0x7f)
  465. break;
  466. if (total < sizeof(struct dtlk_settings))
  467. total++;
  468. }
  469. /*
  470.    if (i==50) printk("interrogate() read overrunn");
  471.    for (i=0; i<sizeof(buf); i++)
  472.    printk(" %02x", buf[i]);
  473.    printk("n");
  474.  */
  475. t = buf;
  476. status.serial_number = t[0] + t[1] * 256; /* serial number is
  477.      little endian */
  478. t += 2;
  479. i = 0;
  480. while (*t != 'r') {
  481. status.rom_version[i] = *t;
  482. if (i < sizeof(status.rom_version) - 1)
  483. i++;
  484. t++;
  485. }
  486. status.rom_version[i] = 0;
  487. t++;
  488. status.mode = *t++;
  489. status.punc_level = *t++;
  490. status.formant_freq = *t++;
  491. status.pitch = *t++;
  492. status.speed = *t++;
  493. status.volume = *t++;
  494. status.tone = *t++;
  495. status.expression = *t++;
  496. status.ext_dict_loaded = *t++;
  497. status.ext_dict_status = *t++;
  498. status.free_ram = *t++;
  499. status.articulation = *t++;
  500. status.reverb = *t++;
  501. status.eob = *t++;
  502. status.has_indexing = dtlk_has_indexing;
  503. TRACE_RET;
  504. return &status;
  505. }
  506. static char dtlk_read_tts(void)
  507. {
  508. int portval, retries = 0;
  509. char ch;
  510. TRACE_TEXT("(dtlk_read_tts");
  511. /* verify DT is ready, read char, wait for ACK */
  512. do {
  513. portval = inb_p(dtlk_port_tts);
  514. } while ((portval & TTS_READABLE) == 0 &&
  515.  retries++ < DTLK_MAX_RETRIES);
  516. if (retries == DTLK_MAX_RETRIES)
  517. printk(KERN_ERR "dtlk_read_tts() timeoutn");
  518. ch = inb_p(dtlk_port_tts); /* input from TTS port */
  519. ch &= 0x7f;
  520. outb_p(ch, dtlk_port_tts);
  521. retries = 0;
  522. do {
  523. portval = inb_p(dtlk_port_tts);
  524. } while ((portval & TTS_READABLE) != 0 &&
  525.  retries++ < DTLK_MAX_RETRIES);
  526. if (retries == DTLK_MAX_RETRIES)
  527. printk(KERN_ERR "dtlk_read_tts() timeoutn");
  528. TRACE_RET;
  529. return ch;
  530. }
  531. static char dtlk_read_lpc(void)
  532. {
  533. int retries = 0;
  534. char ch;
  535. TRACE_TEXT("(dtlk_read_lpc");
  536. /* no need to test -- this is only called when the port is readable */
  537. ch = inb_p(dtlk_port_lpc); /* input from LPC port */
  538. outb_p(0xff, dtlk_port_lpc);
  539. /* acknowledging a read takes 3-4
  540.    usec.  Here, we wait up to 20 usec
  541.    for the acknowledgement */
  542. retries = (loops_per_jiffy * 20) / (1000000/HZ);
  543. while (inb_p(dtlk_port_lpc) != 0x7f && --retries > 0);
  544. if (retries == 0)
  545. printk(KERN_ERR "dtlk_read_lpc() timeoutn");
  546. TRACE_RET;
  547. return ch;
  548. }
  549. /* write n bytes to tts port */
  550. static char dtlk_write_bytes(const char *buf, int n)
  551. {
  552. char val = 0;
  553. /*  printk("dtlk_write_bytes("%-*s", %d)n", n, buf, n); */
  554. TRACE_TEXT("(dtlk_write_bytes");
  555. while (n-- > 0)
  556. val = dtlk_write_tts(*buf++);
  557. TRACE_RET;
  558. return val;
  559. }
  560. static char dtlk_write_tts(char ch)
  561. {
  562. int retries = 0;
  563. #ifdef TRACINGMORE
  564. printk("  dtlk_write_tts(");
  565. if (' ' <= ch && ch <= '~')
  566. printk("'%c'", ch);
  567. else
  568. printk("0x%02x", ch);
  569. #endif
  570. if (ch != DTLK_CLEAR) /* no flow control for CLEAR command */
  571. while ((inb_p(dtlk_port_tts) & TTS_WRITABLE) == 0 &&
  572.        retries++ < DTLK_MAX_RETRIES) /* DT ready? */
  573. ;
  574. if (retries == DTLK_MAX_RETRIES)
  575. printk(KERN_ERR "dtlk_write_tts() timeoutn");
  576. outb_p(ch, dtlk_port_tts); /* output to TTS port */
  577. /* the RDY bit goes zero 2-3 usec after writing, and goes
  578.    1 again 180-190 usec later.  Here, we wait up to 10
  579.    usec for the RDY bit to go zero. */
  580. for (retries = 0; retries < loops_per_jiffy / (100000/HZ); retries++)
  581. if ((inb_p(dtlk_port_tts) & TTS_WRITABLE) == 0)
  582. break;
  583. #ifdef TRACINGMORE
  584. printk(")n");
  585. #endif
  586. return 0;
  587. }
  588. MODULE_LICENSE("GPL");