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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * USB ConnectTech WhiteHEAT driver
  3.  *
  4.  * Copyright (C) 1999 - 2001
  5.  *     Greg Kroah-Hartman (greg@kroah.com)
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * See Documentation/usb/usb-serial.txt for more information on using this driver
  13.  *
  14.  * (05/30/2001) gkh
  15.  * switched from using spinlock to a semaphore, which fixes lots of problems.
  16.  *
  17.  * (04/08/2001) gb
  18.  * Identify version on module load.
  19.  * 
  20.  * 2001_Mar_19 gkh
  21.  * Fixed MOD_INC and MOD_DEC logic, the ability to open a port more 
  22.  * than once, and the got the proper usb_device_id table entries so
  23.  * the driver works again.
  24.  *
  25.  * (11/01/2000) Adam J. Richter
  26.  * usb_device_id table support
  27.  * 
  28.  * (10/05/2000) gkh
  29.  * Fixed bug with urb->dev not being set properly, now that the usb
  30.  * core needs it.
  31.  * 
  32.  * (10/03/2000) smd
  33.  * firmware is improved to guard against crap sent to device
  34.  * firmware now replies CMD_FAILURE on bad things
  35.  * read_callback fix you provided for private info struct
  36.  * command_finished now indicates success or fail
  37.  * setup_port struct now packed to avoid gcc padding
  38.  * firmware uses 1 based port numbering, driver now handles that
  39.  *
  40.  * (09/11/2000) gkh
  41.  * Removed DEBUG #ifdefs with call to usb_serial_debug_data
  42.  *
  43.  * (07/19/2000) gkh
  44.  * Added module_init and module_exit functions to handle the fact that this
  45.  * driver is a loadable module now.
  46.  * Fixed bug with port->minor that was found by Al Borchers
  47.  *
  48.  * (07/04/2000) gkh
  49.  * Added support for port settings. Baud rate can now be changed. Line signals
  50.  * are not transferred to and from the tty layer yet, but things seem to be 
  51.  * working well now.
  52.  *
  53.  * (05/04/2000) gkh
  54.  * First cut at open and close commands. Data can flow through the ports at
  55.  * default speeds now.
  56.  *
  57.  * (03/26/2000) gkh
  58.  * Split driver up into device specific pieces.
  59.  * 
  60.  */
  61. #include <linux/config.h>
  62. #include <linux/kernel.h>
  63. #include <linux/sched.h>
  64. #include <linux/signal.h>
  65. #include <linux/errno.h>
  66. #include <linux/poll.h>
  67. #include <linux/init.h>
  68. #include <linux/slab.h>
  69. #include <linux/fcntl.h>
  70. #include <linux/tty.h>
  71. #include <linux/tty_driver.h>
  72. #include <linux/tty_flip.h>
  73. #include <linux/module.h>
  74. #include <linux/spinlock.h>
  75. #include <linux/usb.h>
  76. #ifdef CONFIG_USB_SERIAL_DEBUG
  77. static int debug = 1;
  78. #else
  79. static int debug;
  80. #endif
  81. #include "usb-serial.h"
  82. #include "whiteheat_fw.h" /* firmware for the ConnectTech WhiteHEAT device */
  83. #include "whiteheat.h" /* WhiteHEAT specific commands */
  84. /*
  85.  * Version Information
  86.  */
  87. #define DRIVER_VERSION "v1.1"
  88. #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>"
  89. #define DRIVER_DESC "USB ConnectTech WhiteHEAT driver"
  90. #define CONNECT_TECH_VENDOR_ID 0x0710
  91. #define CONNECT_TECH_FAKE_WHITE_HEAT_ID 0x0001
  92. #define CONNECT_TECH_WHITE_HEAT_ID 0x8001
  93. /*
  94.    ID tables for whiteheat are unusual, because we want to different
  95.    things for different versions of the device.  Eventually, this
  96.    will be doable from a single table.  But, for now, we define two
  97.    separate ID tables, and then a third table that combines them
  98.    just for the purpose of exporting the autoloading information.
  99. */
  100. static __devinitdata struct usb_device_id id_table_std [] = {
  101. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_WHITE_HEAT_ID) },
  102. { } /* Terminating entry */
  103. };
  104. static __devinitdata struct usb_device_id id_table_prerenumeration [] = {
  105. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_FAKE_WHITE_HEAT_ID) },
  106. { } /* Terminating entry */
  107. };
  108. static __devinitdata struct usb_device_id id_table_combined [] = {
  109. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_WHITE_HEAT_ID) },
  110. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_FAKE_WHITE_HEAT_ID) },
  111. { } /* Terminating entry */
  112. };
  113. MODULE_DEVICE_TABLE (usb, id_table_combined);
  114. /* function prototypes for the Connect Tech WhiteHEAT serial converter */
  115. static int  whiteheat_open (struct usb_serial_port *port, struct file *filp);
  116. static void whiteheat_close (struct usb_serial_port *port, struct file *filp);
  117. static int  whiteheat_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
  118. static void whiteheat_set_termios (struct usb_serial_port *port, struct termios * old);
  119. static void whiteheat_throttle (struct usb_serial_port *port);
  120. static void whiteheat_unthrottle (struct usb_serial_port *port);
  121. static int  whiteheat_startup (struct usb_serial *serial);
  122. static void whiteheat_shutdown (struct usb_serial *serial);
  123. static struct usb_serial_device_type whiteheat_fake_device = {
  124. name: "Connect Tech - WhiteHEAT - (prerenumeration)",
  125. id_table: id_table_prerenumeration,
  126. needs_interrupt_in: DONT_CARE, /* don't have to have an interrupt in endpoint */
  127. needs_bulk_in: DONT_CARE, /* don't have to have a bulk in endpoint */
  128. needs_bulk_out: DONT_CARE, /* don't have to have a bulk out endpoint */
  129. num_interrupt_in: NUM_DONT_CARE,
  130. num_bulk_in: NUM_DONT_CARE,
  131. num_bulk_out: NUM_DONT_CARE,
  132. num_ports: 1,
  133. startup: whiteheat_startup
  134. };
  135. static struct usb_serial_device_type whiteheat_device = {
  136. name: "Connect Tech - WhiteHEAT",
  137. id_table: id_table_std,
  138. needs_interrupt_in: DONT_CARE, /* don't have to have an interrupt in endpoint */
  139. needs_bulk_in: DONT_CARE, /* don't have to have a bulk in endpoint */
  140. needs_bulk_out: DONT_CARE, /* don't have to have a bulk out endpoint */
  141. num_interrupt_in: NUM_DONT_CARE,
  142. num_bulk_in: NUM_DONT_CARE,
  143. num_bulk_out: NUM_DONT_CARE,
  144. num_ports: 4,
  145. open: whiteheat_open,
  146. close: whiteheat_close,
  147. throttle: whiteheat_throttle,
  148. unthrottle: whiteheat_unthrottle,
  149. ioctl: whiteheat_ioctl,
  150. set_termios: whiteheat_set_termios,
  151. shutdown: whiteheat_shutdown,
  152. };
  153. struct whiteheat_private {
  154. __u8 command_finished;
  155. wait_queue_head_t wait_command; /* for handling sleeping while waiting for a command to finish */
  156. };
  157. /* local function prototypes */
  158. static inline void set_rts (struct usb_serial_port *port, unsigned char rts);
  159. static inline void set_dtr (struct usb_serial_port *port, unsigned char dtr);
  160. static inline void set_break (struct usb_serial_port *port, unsigned char brk);
  161. #define COMMAND_PORT 4
  162. #define COMMAND_TIMEOUT (2*HZ) /* 2 second timeout for a command */
  163. /*****************************************************************************
  164.  * Connect Tech's White Heat specific driver functions
  165.  *****************************************************************************/
  166. static void command_port_write_callback (struct urb *urb)
  167. {
  168. dbg (__FUNCTION__);
  169. if (urb->status) {
  170. dbg ("nonzero urb status: %d", urb->status);
  171. return;
  172. }
  173. usb_serial_debug_data (__FILE__, __FUNCTION__, urb->actual_length, urb->transfer_buffer);
  174. return;
  175. }
  176. static void command_port_read_callback (struct urb *urb)
  177. {
  178. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  179. struct usb_serial *serial = get_usb_serial (port, __FUNCTION__);
  180. struct whiteheat_private *info;
  181. unsigned char *data = urb->transfer_buffer;
  182. int result;
  183. dbg (__FUNCTION__);
  184. if (urb->status) {
  185. dbg (__FUNCTION__ " - nonzero urb status: %d", urb->status);
  186. return;
  187. }
  188. if (!serial) {
  189. dbg(__FUNCTION__ " - bad serial pointer, exiting");
  190. return;
  191. }
  192. usb_serial_debug_data (__FILE__, __FUNCTION__, urb->actual_length, data);
  193. info = (struct whiteheat_private *)port->private;
  194. if (!info) {
  195. dbg (__FUNCTION__ " - info is NULL, exiting.");
  196. return;
  197. }
  198. /* right now, if the command is COMMAND_COMPLETE, just flip the bit saying the command finished */
  199. /* in the future we're going to have to pay attention to the actual command that completed */
  200. if (data[0] == WHITEHEAT_CMD_COMPLETE) {
  201. info->command_finished = WHITEHEAT_CMD_COMPLETE;
  202. wake_up_interruptible(&info->wait_command);
  203. }
  204. if (data[0] == WHITEHEAT_CMD_FAILURE) {
  205. info->command_finished = WHITEHEAT_CMD_FAILURE;
  206. wake_up_interruptible(&info->wait_command);
  207. }
  208. /* Continue trying to always read */
  209. FILL_BULK_URB(port->read_urb, serial->dev, 
  210.       usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),
  211.       port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
  212.       command_port_read_callback, port);
  213. result = usb_submit_urb(port->read_urb);
  214. if (result)
  215. dbg(__FUNCTION__ " - failed resubmitting read urb, error %d", result);
  216. }
  217. static int whiteheat_send_cmd (struct usb_serial *serial, __u8 command, __u8 *data, __u8 datasize)
  218. {
  219. struct whiteheat_private *info;
  220. struct usb_serial_port *port;
  221. int timeout;
  222. __u8 *transfer_buffer;
  223. int retval = 0;
  224. dbg(__FUNCTION__" - command %d", command);
  225. port = &serial->port[COMMAND_PORT];
  226. info = (struct whiteheat_private *)port->private;
  227. info->command_finished = FALSE;
  228. transfer_buffer = (__u8 *)port->write_urb->transfer_buffer;
  229. transfer_buffer[0] = command;
  230. memcpy (&transfer_buffer[1], data, datasize);
  231. port->write_urb->transfer_buffer_length = datasize + 1;
  232. port->write_urb->dev = serial->dev;
  233. retval = usb_submit_urb (port->write_urb);
  234. if (retval) {
  235. dbg (__FUNCTION__" - submit urb failed");
  236. goto exit;
  237. }
  238. /* wait for the command to complete */
  239. timeout = COMMAND_TIMEOUT;
  240. while (timeout && (info->command_finished == FALSE)) {
  241. timeout = interruptible_sleep_on_timeout (&info->wait_command, timeout);
  242. }
  243. if (info->command_finished == FALSE) {
  244. dbg (__FUNCTION__ " - command timed out.");
  245. retval = -ETIMEDOUT;
  246. goto exit;
  247. }
  248. if (info->command_finished == WHITEHEAT_CMD_FAILURE) {
  249. dbg (__FUNCTION__ " - command failed.");
  250. retval = -EIO;
  251. goto exit;
  252. }
  253. if (info->command_finished == WHITEHEAT_CMD_COMPLETE)
  254. dbg (__FUNCTION__ " - command completed.");
  255. exit:
  256. return retval;
  257. }
  258. static int whiteheat_open (struct usb_serial_port *port, struct file *filp)
  259. {
  260. struct whiteheat_min_set open_command;
  261. struct usb_serial_port  *command_port;
  262. struct whiteheat_private *info;
  263. int retval = 0;
  264. dbg(__FUNCTION__" - port %d", port->number);
  265. down (&port->sem);
  266. ++port->open_count;
  267. MOD_INC_USE_COUNT;
  268. if (!port->active) {
  269. port->active = 1;
  270. /* set up some stuff for our command port */
  271. command_port = &port->serial->port[COMMAND_PORT];
  272. if (command_port->private == NULL) {
  273. info = (struct whiteheat_private *)kmalloc (sizeof(struct whiteheat_private), GFP_KERNEL);
  274. if (info == NULL) {
  275. err(__FUNCTION__ " - out of memory");
  276. retval = -ENOMEM;
  277. goto error_exit;
  278. }
  279. init_waitqueue_head(&info->wait_command);
  280. command_port->private = info;
  281. command_port->write_urb->complete = command_port_write_callback;
  282. command_port->read_urb->complete = command_port_read_callback;
  283. command_port->read_urb->dev = port->serial->dev;
  284. command_port->tty = port->tty; /* need this to "fake" our our sanity check macros */
  285. retval = usb_submit_urb (command_port->read_urb);
  286. if (retval) {
  287. err(__FUNCTION__ " - failed submitting read urb, error %d", retval);
  288. goto error_exit;
  289. }
  290. }
  291. /* Start reading from the device */
  292. port->read_urb->dev = port->serial->dev;
  293. retval = usb_submit_urb(port->read_urb);
  294. if (retval) {
  295. err(__FUNCTION__ " - failed submitting read urb, error %d", retval);
  296. goto error_exit;
  297. }
  298. /* send an open port command */
  299. /* firmware uses 1 based port numbering */
  300. open_command.port = port->number - port->serial->minor + 1;
  301. retval = whiteheat_send_cmd (port->serial, WHITEHEAT_OPEN, (__u8 *)&open_command, sizeof(open_command));
  302. if (retval)
  303. goto error_exit;
  304. /* Need to do device specific setup here (control lines, baud rate, etc.) */
  305. /* FIXME!!! */
  306. }
  307. dbg(__FUNCTION__ " - exit");
  308. up (&port->sem);
  309. return retval;
  310. error_exit:
  311. --port->open_count;
  312. MOD_DEC_USE_COUNT;
  313. dbg(__FUNCTION__ " - error_exit");
  314. up (&port->sem);
  315. return retval;
  316. }
  317. static void whiteheat_close(struct usb_serial_port *port, struct file * filp)
  318. {
  319. struct whiteheat_min_set close_command;
  320. dbg(__FUNCTION__ " - port %d", port->number);
  321. down (&port->sem);
  322. --port->open_count;
  323. if (port->open_count <= 0) {
  324. /* send a close command to the port */
  325. /* firmware uses 1 based port numbering */
  326. close_command.port = port->number - port->serial->minor + 1;
  327. whiteheat_send_cmd (port->serial, WHITEHEAT_CLOSE, (__u8 *)&close_command, sizeof(close_command));
  328. /* Need to change the control lines here */
  329. /* FIXME */
  330. /* shutdown our bulk reads and writes */
  331. usb_unlink_urb (port->write_urb);
  332. usb_unlink_urb (port->read_urb);
  333. port->active = 0;
  334. }
  335. MOD_DEC_USE_COUNT;
  336. up (&port->sem);
  337. }
  338. static int whiteheat_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
  339. {
  340. dbg(__FUNCTION__ " - port %d, cmd 0x%.4x", port->number, cmd);
  341. return -ENOIOCTLCMD;
  342. }
  343. static void whiteheat_set_termios (struct usb_serial_port *port, struct termios *old_termios)
  344. {
  345. unsigned int cflag;
  346. struct whiteheat_port_settings port_settings;
  347. dbg(__FUNCTION__ " -port %d", port->number);
  348. down (&port->sem);
  349. if ((!port->tty) || (!port->tty->termios)) {
  350. dbg(__FUNCTION__" - no tty structures");
  351. goto exit;
  352. }
  353. cflag = port->tty->termios->c_cflag;
  354. /* check that they really want us to change something */
  355. if (old_termios) {
  356. if ((cflag == old_termios->c_cflag) &&
  357.     (RELEVANT_IFLAG(port->tty->termios->c_iflag) == RELEVANT_IFLAG(old_termios->c_iflag))) {
  358. dbg(__FUNCTION__ " - nothing to change...");
  359. goto exit;
  360. }
  361. }
  362. /* set the port number */
  363. /* firmware uses 1 based port numbering */
  364. port_settings.port = port->number + 1;
  365. /* get the byte size */
  366. switch (cflag & CSIZE) {
  367. case CS5: port_settings.bits = 5;   break;
  368. case CS6: port_settings.bits = 6;   break;
  369. case CS7: port_settings.bits = 7;   break;
  370. default:
  371. case CS8: port_settings.bits = 8;   break;
  372. }
  373. dbg(__FUNCTION__ " - data bits = %d", port_settings.bits);
  374. /* determine the parity */
  375. if (cflag & PARENB)
  376. if (cflag & PARODD)
  377. port_settings.parity = 'o';
  378. else
  379. port_settings.parity = 'e';
  380. else
  381. port_settings.parity = 'n';
  382. dbg(__FUNCTION__ " - parity = %c", port_settings.parity);
  383. /* figure out the stop bits requested */
  384. if (cflag & CSTOPB)
  385. port_settings.stop = 2;
  386. else
  387. port_settings.stop = 1;
  388. dbg(__FUNCTION__ " - stop bits = %d", port_settings.stop);
  389. /* figure out the flow control settings */
  390. if (cflag & CRTSCTS)
  391. port_settings.hflow = (WHITEHEAT_CTS_FLOW | WHITEHEAT_RTS_FLOW);
  392. else
  393. port_settings.hflow = 0;
  394. dbg(__FUNCTION__ " - hardware flow control = %s %s %s %s",
  395.     (port_settings.hflow & WHITEHEAT_CTS_FLOW) ? "CTS" : "",
  396.     (port_settings.hflow & WHITEHEAT_RTS_FLOW) ? "RTS" : "",
  397.     (port_settings.hflow & WHITEHEAT_DSR_FLOW) ? "DSR" : "",
  398.     (port_settings.hflow & WHITEHEAT_DTR_FLOW) ? "DTR" : "");
  399. /* determine software flow control */
  400. if (I_IXOFF(port->tty))
  401. port_settings.sflow = 'b';
  402. else
  403. port_settings.sflow = 'n';
  404. dbg(__FUNCTION__ " - software flow control = %c", port_settings.sflow);
  405. port_settings.xon = START_CHAR(port->tty);
  406. port_settings.xoff = STOP_CHAR(port->tty);
  407. dbg(__FUNCTION__ " - XON = %2x, XOFF = %2x", port_settings.xon, port_settings.xoff);
  408. /* get the baud rate wanted */
  409. port_settings.baud = tty_get_baud_rate(port->tty);
  410. dbg(__FUNCTION__ " - baud rate = %d", port_settings.baud);
  411. /* handle any settings that aren't specified in the tty structure */
  412. port_settings.lloop = 0;
  413. /* now send the message to the device */
  414. whiteheat_send_cmd (port->serial, WHITEHEAT_SETUP_PORT, (__u8 *)&port_settings, sizeof(port_settings));
  415. exit:
  416. up (&port->sem);
  417. return;
  418. }
  419. static void whiteheat_throttle (struct usb_serial_port *port)
  420. {
  421. dbg(__FUNCTION__" - port %d", port->number);
  422. /* Change the control signals */
  423. /* FIXME!!! */
  424. return;
  425. }
  426. static void whiteheat_unthrottle (struct usb_serial_port *port)
  427. {
  428. dbg(__FUNCTION__" - port %d", port->number);
  429. /* Change the control signals */
  430. /* FIXME!!! */
  431. return;
  432. }
  433. /* steps to download the firmware to the WhiteHEAT device:
  434.  - hold the reset (by writing to the reset bit of the CPUCS register)
  435.  - download the VEND_AX.HEX file to the chip using VENDOR_REQUEST-ANCHOR_LOAD
  436.  - release the reset (by writing to the CPUCS register)
  437.  - download the WH.HEX file for all addresses greater than 0x1b3f using
  438.    VENDOR_REQUEST-ANCHOR_EXTERNAL_RAM_LOAD
  439.  - hold the reset
  440.  - download the WH.HEX file for all addresses less than 0x1b40 using
  441.    VENDOR_REQUEST_ANCHOR_LOAD
  442.  - release the reset
  443.  - device renumerated itself and comes up as new device id with all
  444.    firmware download completed.
  445. */
  446. static int  whiteheat_startup (struct usb_serial *serial)
  447. {
  448. int response;
  449. const struct whiteheat_hex_record *record;
  450. dbg(__FUNCTION__);
  451. response = ezusb_set_reset (serial, 1);
  452. record = &whiteheat_loader[0];
  453. while (record->address != 0xffff) {
  454. response = ezusb_writememory (serial, record->address, 
  455. (unsigned char *)record->data, record->data_size, 0xa0);
  456. if (response < 0) {
  457. err(__FUNCTION__ " - ezusb_writememory failed for loader (%d %04X %p %d)", 
  458. response, record->address, record->data, record->data_size);
  459. break;
  460. }
  461. ++record;
  462. }
  463. response = ezusb_set_reset (serial, 0);
  464. record = &whiteheat_firmware[0];
  465. while (record->address < 0x1b40) {
  466. ++record;
  467. }
  468. while (record->address != 0xffff) {
  469. response = ezusb_writememory (serial, record->address, 
  470. (unsigned char *)record->data, record->data_size, 0xa3);
  471. if (response < 0) {
  472. err(__FUNCTION__ " - ezusb_writememory failed for first firmware step (%d %04X %p %d)", 
  473. response, record->address, record->data, record->data_size);
  474. break;
  475. }
  476. ++record;
  477. }
  478. response = ezusb_set_reset (serial, 1);
  479. record = &whiteheat_firmware[0];
  480. while (record->address < 0x1b40) {
  481. response = ezusb_writememory (serial, record->address, 
  482. (unsigned char *)record->data, record->data_size, 0xa0);
  483. if (response < 0) {
  484. err(__FUNCTION__" - ezusb_writememory failed for second firmware step (%d %04X %p %d)", 
  485. response, record->address, record->data, record->data_size);
  486. break;
  487. }
  488. ++record;
  489. }
  490. response = ezusb_set_reset (serial, 0);
  491. /* we want this device to fail to have a driver assigned to it. */
  492. return 1;
  493. }
  494. static void whiteheat_shutdown (struct usb_serial *serial)
  495. {
  496. struct usb_serial_port  *command_port;
  497. int i;
  498. dbg(__FUNCTION__);
  499. /* stop reads and writes on all ports */
  500. for (i=0; i < serial->num_ports; ++i) {
  501. while (serial->port[i].open_count > 0) {
  502. whiteheat_close (&serial->port[i], NULL);
  503. }
  504. }
  505. /* free up our private data for our command port */
  506. command_port = &serial->port[COMMAND_PORT];
  507. if (command_port->private != NULL) {
  508. kfree (command_port->private);
  509. command_port->private = NULL;
  510. }
  511. return;
  512. }
  513. static void set_command (struct usb_serial_port *port, unsigned char state, unsigned char command)
  514. {
  515. struct whiteheat_rdb_set rdb_command;
  516. /* send a set rts command to the port */
  517. /* firmware uses 1 based port numbering */
  518. rdb_command.port = port->number - port->serial->minor + 1;
  519. rdb_command.state = state;
  520. whiteheat_send_cmd (port->serial, command, (__u8 *)&rdb_command, sizeof(rdb_command));
  521. }
  522. static inline void set_rts (struct usb_serial_port *port, unsigned char rts)
  523. {
  524. set_command (port, rts, WHITEHEAT_SET_RTS);
  525. }
  526. static inline void set_dtr (struct usb_serial_port *port, unsigned char dtr)
  527. {
  528. set_command (port, dtr, WHITEHEAT_SET_DTR);
  529. }
  530. static inline void set_break (struct usb_serial_port *port, unsigned char brk)
  531. {
  532. set_command (port, brk, WHITEHEAT_SET_BREAK);
  533. }
  534. static int __init whiteheat_init (void)
  535. {
  536. usb_serial_register (&whiteheat_fake_device);
  537. usb_serial_register (&whiteheat_device);
  538. info(DRIVER_VERSION ":" DRIVER_DESC);
  539. return 0;
  540. }
  541. static void __exit whiteheat_exit (void)
  542. {
  543. usb_serial_deregister (&whiteheat_fake_device);
  544. usb_serial_deregister (&whiteheat_device);
  545. }
  546. module_init(whiteheat_init);
  547. module_exit(whiteheat_exit);
  548. MODULE_AUTHOR( DRIVER_AUTHOR );
  549. MODULE_DESCRIPTION( DRIVER_DESC );
  550. MODULE_LICENSE("GPL");
  551. MODULE_PARM(debug, "i");
  552. MODULE_PARM_DESC(debug, "Debug enabled or not");