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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * USB ZyXEL omni.net LCD PLUS driver
  3.  *
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 2 of the License, or
  7.  * (at your option) any later version.
  8.  *
  9.  * See Documentation/usb/usb-serial.txt for more information on using this driver
  10.  *
  11.  * Please report both successes and troubles to the author at omninet@kroah.com
  12.  * 
  13.  * (05/30/2001) gkh
  14.  * switched from using spinlock to a semaphore, which fixes lots of problems.
  15.  *
  16.  * (04/08/2001) gb
  17.  * Identify version on module load.
  18.  *
  19.  * (11/01/2000) Adam J. Richter
  20.  * usb_device_id table support
  21.  * 
  22.  * (10/05/2000) gkh
  23.  * Fixed bug with urb->dev not being set properly, now that the usb
  24.  * core needs it.
  25.  * 
  26.  * (08/28/2000) gkh
  27.  * Added locks for SMP safeness.
  28.  * Fixed MOD_INC and MOD_DEC logic and the ability to open a port more 
  29.  * than once.
  30.  * Fixed potential race in omninet_write_bulk_callback
  31.  *
  32.  * (07/19/2000) gkh
  33.  * Added module_init and module_exit functions to handle the fact that this
  34.  * driver is a loadable module now.
  35.  *
  36.  */
  37. #include <linux/config.h>
  38. #include <linux/kernel.h>
  39. #include <linux/sched.h>
  40. #include <linux/signal.h>
  41. #include <linux/errno.h>
  42. #include <linux/poll.h>
  43. #include <linux/init.h>
  44. #include <linux/slab.h>
  45. #include <linux/fcntl.h>
  46. #include <linux/tty.h>
  47. #include <linux/tty_driver.h>
  48. #include <linux/tty_flip.h>
  49. #include <linux/module.h>
  50. #include <linux/spinlock.h>
  51. #include <linux/usb.h>
  52. #ifdef CONFIG_USB_SERIAL_DEBUG
  53. static int debug = 1;
  54. #else
  55. static int debug;
  56. #endif
  57. #include "usb-serial.h"
  58. /*
  59.  * Version Information
  60.  */
  61. #define DRIVER_VERSION "v1.1"
  62. #define DRIVER_AUTHOR "Anonymous"
  63. #define DRIVER_DESC "USB ZyXEL omni.net LCD PLUS Driver"
  64. #define ZYXEL_VENDOR_ID 0x0586
  65. #define ZYXEL_OMNINET_ID 0x1000
  66. /* function prototypes */
  67. static int  omninet_open (struct usb_serial_port *port, struct file *filp);
  68. static void omninet_close (struct usb_serial_port *port, struct file *filp);
  69. static void omninet_read_bulk_callback (struct urb *urb);
  70. static void omninet_write_bulk_callback (struct urb *urb);
  71. static int  omninet_write (struct usb_serial_port *port, int from_user, const unsigned char *buf, int count);
  72. static int  omninet_write_room (struct usb_serial_port *port);
  73. static void omninet_shutdown (struct usb_serial *serial);
  74. static __devinitdata struct usb_device_id id_table [] = {
  75. { USB_DEVICE(ZYXEL_VENDOR_ID, ZYXEL_OMNINET_ID) },
  76. { } /* Terminating entry */
  77. };
  78. MODULE_DEVICE_TABLE (usb, id_table);
  79. static struct usb_serial_device_type zyxel_omninet_device = {
  80. name: "ZyXEL - omni.net lcd plus usb",
  81. id_table: id_table,
  82. needs_interrupt_in: MUST_HAVE,
  83. needs_bulk_in: MUST_HAVE,
  84. needs_bulk_out: MUST_HAVE,
  85. num_interrupt_in: 1,
  86. num_bulk_in: 1,
  87. num_bulk_out: 2,
  88. num_ports: 1,
  89. open: omninet_open,
  90. close: omninet_close,
  91. write: omninet_write,
  92. write_room: omninet_write_room,
  93. read_bulk_callback: omninet_read_bulk_callback,
  94. write_bulk_callback: omninet_write_bulk_callback,
  95. shutdown: omninet_shutdown,
  96. };
  97. /* The protocol.
  98.  *
  99.  * The omni.net always exchange 64 bytes of data with the host. The first
  100.  * four bytes are the control header, you can see it in the above structure.
  101.  *
  102.  * oh_seq is a sequence number. Don't know if/how it's used.
  103.  * oh_len is the length of the data bytes in the packet.
  104.  * oh_xxx Bit-mapped, related to handshaking and status info.
  105.  * I normally set it to 0x03 in trasmitted frames.
  106.  * 7: Active when the TA is in a CONNECTed state.
  107.  * 6: unknown
  108.  * 5: handshaking, unknown
  109.  * 4: handshaking, unknown
  110.  * 3: unknown, usually 0
  111.  * 2: unknown, usually 0
  112.  * 1: handshaking, unknown, usually set to 1 in trasmitted frames
  113.  * 0: handshaking, unknown, usually set to 1 in trasmitted frames
  114.  * oh_pad Probably a pad byte.
  115.  *
  116.  * After the header you will find data bytes if oh_len was greater than zero.
  117.  *
  118.  */
  119. struct omninet_header
  120. {
  121. __u8 oh_seq;
  122. __u8 oh_len;
  123. __u8 oh_xxx;
  124. __u8 oh_pad;
  125. };
  126. struct omninet_data
  127. {
  128. __u8 od_outseq; // Sequence number for bulk_out URBs
  129. };
  130. static int omninet_open (struct usb_serial_port *port, struct file *filp)
  131. {
  132. struct usb_serial *serial;
  133. struct usb_serial_port *wport;
  134. struct omninet_data *od;
  135. int result = 0;
  136. if (port_paranoia_check (port, __FUNCTION__))
  137. return -ENODEV;
  138. dbg(__FUNCTION__ " - port %d", port->number);
  139. serial = get_usb_serial (port, __FUNCTION__);
  140. if (!serial)
  141. return -ENODEV;
  142. down (&port->sem);
  143. MOD_INC_USE_COUNT;
  144. ++port->open_count;
  145. if (!port->active) {
  146. port->active = 1;
  147. od = kmalloc( sizeof(struct omninet_data), GFP_KERNEL );
  148. if( !od ) {
  149. err(__FUNCTION__"- kmalloc(%Zd) failed.", sizeof(struct omninet_data));
  150. --port->open_count;
  151. port->active = 0;
  152. up (&port->sem);
  153. MOD_DEC_USE_COUNT;
  154. return -ENOMEM;
  155. }
  156. port->private = od;
  157. wport = &serial->port[1];
  158. wport->tty = port->tty;
  159. /* Start reading from the device */
  160. FILL_BULK_URB(port->read_urb, serial->dev, 
  161.       usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),
  162.       port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
  163.       omninet_read_bulk_callback, port);
  164. result = usb_submit_urb(port->read_urb);
  165. if (result)
  166. err(__FUNCTION__ " - failed submitting read urb, error %d", result);
  167. }
  168. up (&port->sem);
  169. return result;
  170. }
  171. static void omninet_close (struct usb_serial_port *port, struct file * filp)
  172. {
  173. struct usb_serial  *serial;
  174. struct usb_serial_port  *wport;
  175. struct omninet_data  *od;
  176. if (port_paranoia_check (port, __FUNCTION__))
  177. return;
  178. dbg(__FUNCTION__ " - port %d", port->number);
  179. serial = get_usb_serial (port, __FUNCTION__);
  180. if (!serial)
  181. return;
  182. down (&port->sem);
  183. --port->open_count;
  184. if (port->open_count <= 0) {
  185. if (serial->dev) {
  186. wport = &serial->port[1];
  187. usb_unlink_urb (wport->write_urb);
  188. usb_unlink_urb (port->read_urb);
  189. }
  190. port->active = 0;
  191. port->open_count = 0;
  192. od = (struct omninet_data *)port->private;
  193. if (od)
  194. kfree(od);
  195. }
  196. up (&port->sem);
  197. MOD_DEC_USE_COUNT;
  198. }
  199. #define OMNINET_DATAOFFSET 0x04
  200. #define OMNINET_HEADERLEN sizeof(struct omninet_header)
  201. #define OMNINET_BULKOUTSIZE  (64 - OMNINET_HEADERLEN)
  202. static void omninet_read_bulk_callback (struct urb *urb)
  203. {
  204. struct usb_serial_port  *port  = (struct usb_serial_port *)urb->context;
  205. struct usb_serial *serial = get_usb_serial (port, __FUNCTION__);
  206. unsigned char  *data  = urb->transfer_buffer;
  207. struct omninet_header  *header = (struct omninet_header *) &data[0];
  208. int i;
  209. int result;
  210. // dbg("omninet_read_bulk_callback");
  211. if (!serial) {
  212. dbg(__FUNCTION__ " - bad serial pointer, exiting");
  213. return;
  214. }
  215. if (urb->status) {
  216. dbg(__FUNCTION__ " - nonzero read bulk status received: %d", urb->status);
  217. return;
  218. }
  219. if ((debug) && (header->oh_xxx != 0x30)) {
  220. if (urb->actual_length) {
  221. printk (KERN_DEBUG __FILE__ ": omninet_read %d: ", header->oh_len);
  222. for (i = 0; i < (header->oh_len + OMNINET_HEADERLEN); i++) {
  223. printk ("%.2x ", data[i]);
  224. }
  225. printk ("n");
  226. }
  227. }
  228. if (urb->actual_length && header->oh_len) {
  229. for (i = 0; i < header->oh_len; i++) {
  230.  tty_insert_flip_char(port->tty, data[OMNINET_DATAOFFSET + i], 0);
  231.    }
  232.    tty_flip_buffer_push(port->tty);
  233. }
  234. /* Continue trying to always read  */
  235. FILL_BULK_URB(urb, serial->dev, 
  236.       usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),
  237.       urb->transfer_buffer, urb->transfer_buffer_length,
  238.       omninet_read_bulk_callback, port);
  239. result = usb_submit_urb(urb);
  240. if (result)
  241. err(__FUNCTION__ " - failed resubmitting read urb, error %d", result);
  242. return;
  243. }
  244. static int omninet_write (struct usb_serial_port *port, int from_user, const unsigned char *buf, int count)
  245. {
  246. struct usb_serial  *serial = port->serial;
  247. struct usb_serial_port  *wport = &serial->port[1];
  248. struct omninet_data  *od  = (struct omninet_data   *) port->private;
  249. struct omninet_header *header = (struct omninet_header *) wport->write_urb->transfer_buffer;
  250. int result;
  251. // dbg("omninet_write port %d", port->number);
  252. if (count == 0) {
  253. dbg(__FUNCTION__" - write request of 0 bytes");
  254. return (0);
  255. }
  256. if (wport->write_urb->status == -EINPROGRESS) {
  257. dbg (__FUNCTION__" - already writing");
  258. return (0);
  259. }
  260. count = (count > OMNINET_BULKOUTSIZE) ? OMNINET_BULKOUTSIZE : count;
  261. if (from_user) {
  262. if (copy_from_user(wport->write_urb->transfer_buffer + OMNINET_DATAOFFSET, buf, count) != 0) {
  263. result = -EFAULT;
  264. goto exit;
  265. }
  266. }
  267. else {
  268. memcpy (wport->write_urb->transfer_buffer + OMNINET_DATAOFFSET, buf, count);
  269. }
  270. usb_serial_debug_data (__FILE__, __FUNCTION__, count, wport->write_urb->transfer_buffer);
  271. header->oh_seq  = od->od_outseq++;
  272. header->oh_len  = count;
  273. header->oh_xxx  = 0x03;
  274. header->oh_pad  = 0x00;
  275. /* send the data out the bulk port, always 64 bytes */
  276. wport->write_urb->transfer_buffer_length = 64;
  277. wport->write_urb->dev = serial->dev;
  278. result = usb_submit_urb(wport->write_urb);
  279. if (result)
  280. err(__FUNCTION__ " - failed submitting write urb, error %d", result);
  281. else
  282. result = count;
  283. exit:
  284. return result;
  285. }
  286. static int omninet_write_room (struct usb_serial_port *port)
  287. {
  288. struct usb_serial  *serial = port->serial;
  289. struct usb_serial_port  *wport  = &serial->port[1];
  290. int room = 0; // Default: no room
  291. if (wport->write_urb->status != -EINPROGRESS)
  292. room = wport->bulk_out_size - OMNINET_HEADERLEN;
  293. // dbg("omninet_write_room returns %d", room);
  294. return (room);
  295. }
  296. static void omninet_write_bulk_callback (struct urb *urb)
  297. {
  298. /* struct omninet_header *header = (struct omninet_header  *) urb->transfer_buffer; */
  299. struct usb_serial_port  *port   = (struct usb_serial_port *) urb->context;
  300. struct usb_serial  *serial;
  301. // dbg("omninet_write_bulk_callback, port %0xn", port);
  302. if (port_paranoia_check (port, __FUNCTION__)) {
  303. return;
  304. }
  305. serial = port->serial;
  306. if (serial_paranoia_check (serial, __FUNCTION__)) {
  307. return;
  308. }
  309. if (urb->status) {
  310. dbg(__FUNCTION__" - nonzero write bulk status received: %d", urb->status);
  311. return;
  312. }
  313. queue_task(&port->tqueue, &tq_immediate);
  314. mark_bh(IMMEDIATE_BH);
  315. // dbg("omninet_write_bulk_callback, tty %0xn", tty);
  316. return;
  317. }
  318. static void omninet_shutdown (struct usb_serial *serial)
  319. {
  320. dbg (__FUNCTION__);
  321. while (serial->port[0].open_count > 0) {
  322. omninet_close (&serial->port[0], NULL);
  323. }
  324. }
  325. static int __init omninet_init (void)
  326. {
  327. usb_serial_register (&zyxel_omninet_device);
  328. info(DRIVER_VERSION ":" DRIVER_DESC);
  329. return 0;
  330. }
  331. static void __exit omninet_exit (void)
  332. {
  333. usb_serial_deregister (&zyxel_omninet_device);
  334. }
  335. module_init(omninet_init);
  336. module_exit(omninet_exit);
  337. MODULE_AUTHOR( DRIVER_AUTHOR );
  338. MODULE_DESCRIPTION( DRIVER_DESC );
  339. MODULE_LICENSE("GPL");
  340. MODULE_PARM(debug, "i");
  341. MODULE_PARM_DESC(debug, "Debug enabled or not");