whiteheat.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:21k
源码类别:

Linux/Unix编程

开发平台:

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/errno.h>
  64. #include <linux/init.h>
  65. #include <linux/slab.h>
  66. #include <linux/tty.h>
  67. #include <linux/tty_driver.h>
  68. #include <linux/tty_flip.h>
  69. #include <linux/module.h>
  70. #include <linux/spinlock.h>
  71. #include <asm/uaccess.h>
  72. #include <linux/usb.h>
  73. #ifdef CONFIG_USB_SERIAL_DEBUG
  74. static int debug = 1;
  75. #else
  76. static int debug;
  77. #endif
  78. #include "usb-serial.h"
  79. #include "whiteheat_fw.h" /* firmware for the ConnectTech WhiteHEAT device */
  80. #include "whiteheat.h" /* WhiteHEAT specific commands */
  81. /*
  82.  * Version Information
  83.  */
  84. #define DRIVER_VERSION "v1.2"
  85. #define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>"
  86. #define DRIVER_DESC "USB ConnectTech WhiteHEAT driver"
  87. #define CONNECT_TECH_VENDOR_ID 0x0710
  88. #define CONNECT_TECH_FAKE_WHITE_HEAT_ID 0x0001
  89. #define CONNECT_TECH_WHITE_HEAT_ID 0x8001
  90. /*
  91.    ID tables for whiteheat are unusual, because we want to different
  92.    things for different versions of the device.  Eventually, this
  93.    will be doable from a single table.  But, for now, we define two
  94.    separate ID tables, and then a third table that combines them
  95.    just for the purpose of exporting the autoloading information.
  96. */
  97. static struct usb_device_id id_table_std [] = {
  98. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_WHITE_HEAT_ID) },
  99. { } /* Terminating entry */
  100. };
  101. static struct usb_device_id id_table_prerenumeration [] = {
  102. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_FAKE_WHITE_HEAT_ID) },
  103. { } /* Terminating entry */
  104. };
  105. static __devinitdata struct usb_device_id id_table_combined [] = {
  106. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_WHITE_HEAT_ID) },
  107. { USB_DEVICE(CONNECT_TECH_VENDOR_ID, CONNECT_TECH_FAKE_WHITE_HEAT_ID) },
  108. { } /* Terminating entry */
  109. };
  110. MODULE_DEVICE_TABLE (usb, id_table_combined);
  111. /* function prototypes for the Connect Tech WhiteHEAT serial converter */
  112. static int  whiteheat_open (struct usb_serial_port *port, struct file *filp);
  113. static void whiteheat_close (struct usb_serial_port *port, struct file *filp);
  114. static int  whiteheat_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg);
  115. static void whiteheat_set_termios (struct usb_serial_port *port, struct termios * old);
  116. static void whiteheat_throttle (struct usb_serial_port *port);
  117. static void whiteheat_unthrottle (struct usb_serial_port *port);
  118. static int  whiteheat_fake_startup (struct usb_serial *serial);
  119. static int  whiteheat_real_startup (struct usb_serial *serial);
  120. static void whiteheat_real_shutdown (struct usb_serial *serial);
  121. static struct usb_serial_device_type whiteheat_fake_device = {
  122. .owner = THIS_MODULE,
  123. .name = "Connect Tech - WhiteHEAT - (prerenumeration)",
  124. .id_table = id_table_prerenumeration,
  125. .num_interrupt_in = NUM_DONT_CARE,
  126. .num_bulk_in = NUM_DONT_CARE,
  127. .num_bulk_out = NUM_DONT_CARE,
  128. .num_ports = 1,
  129. .startup = whiteheat_fake_startup,
  130. };
  131. static struct usb_serial_device_type whiteheat_device = {
  132. .owner = THIS_MODULE,
  133. .name = "Connect Tech - WhiteHEAT",
  134. .id_table = id_table_std,
  135. .num_interrupt_in = NUM_DONT_CARE,
  136. .num_bulk_in = NUM_DONT_CARE,
  137. .num_bulk_out = NUM_DONT_CARE,
  138. .num_ports = 4,
  139. .open = whiteheat_open,
  140. .close = whiteheat_close,
  141. .throttle = whiteheat_throttle,
  142. .unthrottle = whiteheat_unthrottle,
  143. .ioctl = whiteheat_ioctl,
  144. .set_termios = whiteheat_set_termios,
  145. .startup = whiteheat_real_startup,
  146. .shutdown = whiteheat_real_shutdown,
  147. };
  148. struct whiteheat_private {
  149. __u8 command_finished;
  150. wait_queue_head_t wait_command; /* for handling sleeping while waiting for a command to finish */
  151. };
  152. /* local function prototypes */
  153. static inline void set_rts (struct usb_serial_port *port, unsigned char rts);
  154. static inline void set_dtr (struct usb_serial_port *port, unsigned char dtr);
  155. static inline void set_break (struct usb_serial_port *port, unsigned char brk);
  156. #define COMMAND_PORT 4
  157. #define COMMAND_TIMEOUT (2*HZ) /* 2 second timeout for a command */
  158. /*****************************************************************************
  159.  * Connect Tech's White Heat specific driver functions
  160.  *****************************************************************************/
  161. static void command_port_write_callback (struct urb *urb)
  162. {
  163. dbg("%s", __FUNCTION__);
  164. if (urb->status) {
  165. dbg ("nonzero urb status: %d", urb->status);
  166. return;
  167. }
  168. usb_serial_debug_data (__FILE__, __FUNCTION__, urb->actual_length, urb->transfer_buffer);
  169. return;
  170. }
  171. static void command_port_read_callback (struct urb *urb)
  172. {
  173. struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
  174. struct usb_serial *serial = get_usb_serial (port, __FUNCTION__);
  175. struct whiteheat_private *info;
  176. unsigned char *data = urb->transfer_buffer;
  177. int result;
  178. dbg("%s", __FUNCTION__);
  179. if (urb->status) {
  180. dbg("%s - nonzero urb status: %d", __FUNCTION__, urb->status);
  181. return;
  182. }
  183. if (!serial) {
  184. dbg("%s - bad serial pointer, exiting", __FUNCTION__);
  185. return;
  186. }
  187. usb_serial_debug_data (__FILE__, __FUNCTION__, urb->actual_length, data);
  188. info = (struct whiteheat_private *)port->private;
  189. if (!info) {
  190. dbg("%s - info is NULL, exiting.", __FUNCTION__);
  191. return;
  192. }
  193. /* right now, if the command is COMMAND_COMPLETE, just flip the bit saying the command finished */
  194. /* in the future we're going to have to pay attention to the actual command that completed */
  195. if (data[0] == WHITEHEAT_CMD_COMPLETE) {
  196. info->command_finished = WHITEHEAT_CMD_COMPLETE;
  197. wake_up_interruptible(&info->wait_command);
  198. }
  199. if (data[0] == WHITEHEAT_CMD_FAILURE) {
  200. info->command_finished = WHITEHEAT_CMD_FAILURE;
  201. wake_up_interruptible(&info->wait_command);
  202. }
  203. /* Continue trying to always read */
  204. FILL_BULK_URB(port->read_urb, serial->dev, 
  205.       usb_rcvbulkpipe(serial->dev, port->bulk_in_endpointAddress),
  206.       port->read_urb->transfer_buffer, port->read_urb->transfer_buffer_length,
  207.       command_port_read_callback, port);
  208. result = usb_submit_urb(port->read_urb);
  209. if (result)
  210. dbg("%s - failed resubmitting read urb, error %d", __FUNCTION__, result);
  211. }
  212. static int whiteheat_send_cmd (struct usb_serial *serial, __u8 command, __u8 *data, __u8 datasize)
  213. {
  214. struct whiteheat_private *info;
  215. struct usb_serial_port *port;
  216. int timeout;
  217. __u8 *transfer_buffer;
  218. int retval = 0;
  219. dbg("%s - command %d", __FUNCTION__, command);
  220. port = &serial->port[COMMAND_PORT];
  221. info = (struct whiteheat_private *)port->private;
  222. info->command_finished = FALSE;
  223. transfer_buffer = (__u8 *)port->write_urb->transfer_buffer;
  224. transfer_buffer[0] = command;
  225. memcpy (&transfer_buffer[1], data, datasize);
  226. port->write_urb->transfer_buffer_length = datasize + 1;
  227. port->write_urb->dev = serial->dev;
  228. retval = usb_submit_urb (port->write_urb);
  229. if (retval) {
  230. dbg("%s - submit urb failed", __FUNCTION__);
  231. goto exit;
  232. }
  233. /* wait for the command to complete */
  234. timeout = COMMAND_TIMEOUT;
  235. while (timeout && (info->command_finished == FALSE)) {
  236. timeout = interruptible_sleep_on_timeout (&info->wait_command, timeout);
  237. }
  238. if (info->command_finished == FALSE) {
  239. dbg("%s - command timed out.", __FUNCTION__);
  240. retval = -ETIMEDOUT;
  241. goto exit;
  242. }
  243. if (info->command_finished == WHITEHEAT_CMD_FAILURE) {
  244. dbg("%s - command failed.", __FUNCTION__);
  245. retval = -EIO;
  246. goto exit;
  247. }
  248. if (info->command_finished == WHITEHEAT_CMD_COMPLETE)
  249. dbg("%s - command completed.", __FUNCTION__);
  250. exit:
  251. return retval;
  252. }
  253. static int whiteheat_open (struct usb_serial_port *port, struct file *filp)
  254. {
  255. struct whiteheat_min_set open_command;
  256. struct usb_serial_port  *command_port;
  257. struct whiteheat_private *info;
  258. int retval = 0;
  259. dbg("%s - port %d", __FUNCTION__, port->number);
  260. /* set up some stuff for our command port */
  261. command_port = &port->serial->port[COMMAND_PORT];
  262. if (command_port->private == NULL) {
  263. info = (struct whiteheat_private *)kmalloc (sizeof(struct whiteheat_private), GFP_KERNEL);
  264. if (info == NULL) {
  265. err("%s - out of memory", __FUNCTION__);
  266. retval = -ENOMEM;
  267. goto exit;
  268. }
  269. init_waitqueue_head(&info->wait_command);
  270. command_port->private = info;
  271. command_port->write_urb->complete = command_port_write_callback;
  272. command_port->read_urb->complete = command_port_read_callback;
  273. command_port->read_urb->dev = port->serial->dev;
  274. command_port->tty = port->tty; /* need this to "fake" our our sanity check macros */
  275. retval = usb_submit_urb (command_port->read_urb);
  276. if (retval) {
  277. err("%s - failed submitting read urb, error %d", __FUNCTION__, retval);
  278. goto exit;
  279. }
  280. }
  281. /* Start reading from the device */
  282. port->read_urb->dev = port->serial->dev;
  283. retval = usb_submit_urb(port->read_urb);
  284. if (retval) {
  285. err("%s - failed submitting read urb, error %d", __FUNCTION__, retval);
  286. goto exit;
  287. }
  288. /* send an open port command */
  289. /* firmware uses 1 based port numbering */
  290. open_command.port = port->number - port->serial->minor + 1;
  291. retval = whiteheat_send_cmd (port->serial, WHITEHEAT_OPEN, (__u8 *)&open_command, sizeof(open_command));
  292. if (retval)
  293. goto exit;
  294. /* Need to do device specific setup here (control lines, baud rate, etc.) */
  295. /* FIXME!!! */
  296. exit:
  297. dbg("%s - exit, retval = %d", __FUNCTION__, retval);
  298. return retval;
  299. }
  300. static void whiteheat_close(struct usb_serial_port *port, struct file * filp)
  301. {
  302. struct whiteheat_min_set close_command;
  303. dbg("%s - port %d", __FUNCTION__, port->number);
  304. /* send a close command to the port */
  305. /* firmware uses 1 based port numbering */
  306. close_command.port = port->number - port->serial->minor + 1;
  307. whiteheat_send_cmd (port->serial, WHITEHEAT_CLOSE, (__u8 *)&close_command, sizeof(close_command));
  308. /* Need to change the control lines here */
  309. /* FIXME */
  310. /* shutdown our bulk reads and writes */
  311. usb_unlink_urb (port->write_urb);
  312. usb_unlink_urb (port->read_urb);
  313. }
  314. static int whiteheat_ioctl (struct usb_serial_port *port, struct file * file, unsigned int cmd, unsigned long arg)
  315. {
  316. dbg("%s - port %d, cmd 0x%.4x", __FUNCTION__, port->number, cmd);
  317. return -ENOIOCTLCMD;
  318. }
  319. static void whiteheat_set_termios (struct usb_serial_port *port, struct termios *old_termios)
  320. {
  321. unsigned int cflag;
  322. struct whiteheat_port_settings port_settings;
  323. dbg("%s -port %d", __FUNCTION__, port->number);
  324. if ((!port->tty) || (!port->tty->termios)) {
  325. dbg("%s - no tty structures", __FUNCTION__);
  326. goto exit;
  327. }
  328. cflag = port->tty->termios->c_cflag;
  329. /* check that they really want us to change something */
  330. if (old_termios) {
  331. if ((cflag == old_termios->c_cflag) &&
  332.     (RELEVANT_IFLAG(port->tty->termios->c_iflag) == RELEVANT_IFLAG(old_termios->c_iflag))) {
  333. dbg("%s - nothing to change...", __FUNCTION__);
  334. goto exit;
  335. }
  336. }
  337. /* set the port number */
  338. /* firmware uses 1 based port numbering */
  339. port_settings.port = port->number + 1;
  340. /* get the byte size */
  341. switch (cflag & CSIZE) {
  342. case CS5: port_settings.bits = 5;   break;
  343. case CS6: port_settings.bits = 6;   break;
  344. case CS7: port_settings.bits = 7;   break;
  345. default:
  346. case CS8: port_settings.bits = 8;   break;
  347. }
  348. dbg("%s - data bits = %d", __FUNCTION__, port_settings.bits);
  349. /* determine the parity */
  350. if (cflag & PARENB)
  351. if (cflag & PARODD)
  352. port_settings.parity = 'o';
  353. else
  354. port_settings.parity = 'e';
  355. else
  356. port_settings.parity = 'n';
  357. dbg("%s - parity = %c", __FUNCTION__, port_settings.parity);
  358. /* figure out the stop bits requested */
  359. if (cflag & CSTOPB)
  360. port_settings.stop = 2;
  361. else
  362. port_settings.stop = 1;
  363. dbg("%s - stop bits = %d", __FUNCTION__, port_settings.stop);
  364. /* figure out the flow control settings */
  365. if (cflag & CRTSCTS)
  366. port_settings.hflow = (WHITEHEAT_CTS_FLOW | WHITEHEAT_RTS_FLOW);
  367. else
  368. port_settings.hflow = 0;
  369. dbg("%s - hardware flow control = %s %s %s %s", __FUNCTION__,
  370.     (port_settings.hflow & WHITEHEAT_CTS_FLOW) ? "CTS" : "",
  371.     (port_settings.hflow & WHITEHEAT_RTS_FLOW) ? "RTS" : "",
  372.     (port_settings.hflow & WHITEHEAT_DSR_FLOW) ? "DSR" : "",
  373.     (port_settings.hflow & WHITEHEAT_DTR_FLOW) ? "DTR" : "");
  374. /* determine software flow control */
  375. if (I_IXOFF(port->tty))
  376. port_settings.sflow = 'b';
  377. else
  378. port_settings.sflow = 'n';
  379. dbg("%s - software flow control = %c", __FUNCTION__, port_settings.sflow);
  380. port_settings.xon = START_CHAR(port->tty);
  381. port_settings.xoff = STOP_CHAR(port->tty);
  382. dbg("%s - XON = %2x, XOFF = %2x", __FUNCTION__, port_settings.xon, port_settings.xoff);
  383. /* get the baud rate wanted */
  384. port_settings.baud = tty_get_baud_rate(port->tty);
  385. dbg("%s - baud rate = %d", __FUNCTION__, port_settings.baud);
  386. /* handle any settings that aren't specified in the tty structure */
  387. port_settings.lloop = 0;
  388. /* now send the message to the device */
  389. whiteheat_send_cmd (port->serial, WHITEHEAT_SETUP_PORT, (__u8 *)&port_settings, sizeof(port_settings));
  390. exit:
  391. return;
  392. }
  393. static void whiteheat_throttle (struct usb_serial_port *port)
  394. {
  395. dbg("%s - port %d", __FUNCTION__, port->number);
  396. /* Change the control signals */
  397. /* FIXME!!! */
  398. return;
  399. }
  400. static void whiteheat_unthrottle (struct usb_serial_port *port)
  401. {
  402. dbg("%s - port %d", __FUNCTION__, port->number);
  403. /* Change the control signals */
  404. /* FIXME!!! */
  405. return;
  406. }
  407. /* steps to download the firmware to the WhiteHEAT device:
  408.  - hold the reset (by writing to the reset bit of the CPUCS register)
  409.  - download the VEND_AX.HEX file to the chip using VENDOR_REQUEST-ANCHOR_LOAD
  410.  - release the reset (by writing to the CPUCS register)
  411.  - download the WH.HEX file for all addresses greater than 0x1b3f using
  412.    VENDOR_REQUEST-ANCHOR_EXTERNAL_RAM_LOAD
  413.  - hold the reset
  414.  - download the WH.HEX file for all addresses less than 0x1b40 using
  415.    VENDOR_REQUEST_ANCHOR_LOAD
  416.  - release the reset
  417.  - device renumerated itself and comes up as new device id with all
  418.    firmware download completed.
  419. */
  420. static int whiteheat_fake_startup (struct usb_serial *serial)
  421. {
  422. int response;
  423. const struct whiteheat_hex_record *record;
  424. dbg("%s", __FUNCTION__);
  425. response = ezusb_set_reset (serial, 1);
  426. record = &whiteheat_loader[0];
  427. while (record->address != 0xffff) {
  428. response = ezusb_writememory (serial, record->address, 
  429. (unsigned char *)record->data, record->data_size, 0xa0);
  430. if (response < 0) {
  431. err("%s - ezusb_writememory failed for loader (%d %04X %p %d)",
  432. __FUNCTION__, response, record->address, record->data, record->data_size);
  433. break;
  434. }
  435. ++record;
  436. }
  437. response = ezusb_set_reset (serial, 0);
  438. record = &whiteheat_firmware[0];
  439. while (record->address < 0x1b40) {
  440. ++record;
  441. }
  442. while (record->address != 0xffff) {
  443. response = ezusb_writememory (serial, record->address, 
  444. (unsigned char *)record->data, record->data_size, 0xa3);
  445. if (response < 0) {
  446. err("%s - ezusb_writememory failed for first firmware step (%d %04X %p %d)", 
  447. __FUNCTION__, response, record->address, record->data, record->data_size);
  448. break;
  449. }
  450. ++record;
  451. }
  452. response = ezusb_set_reset (serial, 1);
  453. record = &whiteheat_firmware[0];
  454. while (record->address < 0x1b40) {
  455. response = ezusb_writememory (serial, record->address, 
  456. (unsigned char *)record->data, record->data_size, 0xa0);
  457. if (response < 0) {
  458. err("%s - ezusb_writememory failed for second firmware step (%d %04X %p %d)", 
  459. __FUNCTION__, response, record->address, record->data, record->data_size);
  460. break;
  461. }
  462. ++record;
  463. }
  464. response = ezusb_set_reset (serial, 0);
  465. /* we want this device to fail to have a driver assigned to it. */
  466. return 1;
  467. }
  468. static int  whiteheat_real_startup (struct usb_serial *serial)
  469. {
  470. struct whiteheat_hw_info *hw_info;
  471. int pipe;
  472. int ret;
  473. int alen;
  474. __u8 command[2] = { WHITEHEAT_GET_HW_INFO, 0 };
  475. __u8 result[sizeof(*hw_info) + 1];
  476. pipe = usb_rcvbulkpipe (serial->dev, 7);
  477. usb_bulk_msg (serial->dev, pipe, result, sizeof(result), &alen, 2 * HZ);
  478. /*
  479.  * We ignore the return code. In the case where rmmod/insmod is
  480.  * performed with a WhiteHEAT connected, the above times out
  481.  * because the endpoint is already prepped, meaning the below succeeds
  482.  * regardless. All other cases the above succeeds.
  483.  */
  484. pipe = usb_sndbulkpipe (serial->dev, 7);
  485. ret = usb_bulk_msg (serial->dev, pipe, command, sizeof(command), &alen, 2 * HZ);
  486. if (ret) {
  487. err("%s: Couldn't send command [%d]", serial->type->name, ret);
  488. goto error_out;
  489. } else if (alen != sizeof(command)) {
  490. err("%s: Send command incomplete [%d]", serial->type->name, alen);
  491. goto error_out;
  492. }
  493. pipe = usb_rcvbulkpipe (serial->dev, 7);
  494. ret = usb_bulk_msg (serial->dev, pipe, result, sizeof(result), &alen, 2 * HZ);
  495. if (ret) {
  496. err("%s: Couldn't get results [%d]", serial->type->name, ret);
  497. goto error_out;
  498. } else if (alen != sizeof(result)) {
  499. err("%s: Get results incomplete [%d]", serial->type->name, alen);
  500. goto error_out;
  501. } else if (result[0] != command[0]) {
  502. err("%s: Command failed [%d]", serial->type->name, result[0]);
  503. goto error_out;
  504. }
  505. hw_info = (struct whiteheat_hw_info *)&result[1];
  506. info("%s: Driver %s: Firmware v%d.%02d", serial->type->name,
  507.      DRIVER_VERSION, hw_info->sw_major_rev, hw_info->sw_minor_rev);
  508. return 0;
  509. error_out:
  510. err("%s: Unable to retrieve firmware version, try repluggingn", serial->type->name);
  511. /*
  512.  * Return that we've claimed the interface. A failure here may be
  513.  * due to interception by the command_callback routine or other
  514.  * causes that don't mean that the firmware isn't running. This may
  515.  * change in the future. Probably should actually.
  516.  */
  517. return 0;
  518. }
  519. static void whiteheat_real_shutdown (struct usb_serial *serial)
  520. {
  521. struct usb_serial_port *command_port;
  522. dbg("%s", __FUNCTION__);
  523. /* free up our private data for our command port */
  524. command_port = &serial->port[COMMAND_PORT];
  525. if (command_port->private != NULL) {
  526. kfree (command_port->private);
  527. command_port->private = NULL;
  528. }
  529. return;
  530. }
  531. static void set_command (struct usb_serial_port *port, unsigned char state, unsigned char command)
  532. {
  533. struct whiteheat_rdb_set rdb_command;
  534. /* send a set rts command to the port */
  535. /* firmware uses 1 based port numbering */
  536. rdb_command.port = port->number - port->serial->minor + 1;
  537. rdb_command.state = state;
  538. whiteheat_send_cmd (port->serial, command, (__u8 *)&rdb_command, sizeof(rdb_command));
  539. }
  540. static inline void set_rts (struct usb_serial_port *port, unsigned char rts)
  541. {
  542. set_command (port, rts, WHITEHEAT_SET_RTS);
  543. }
  544. static inline void set_dtr (struct usb_serial_port *port, unsigned char dtr)
  545. {
  546. set_command (port, dtr, WHITEHEAT_SET_DTR);
  547. }
  548. static inline void set_break (struct usb_serial_port *port, unsigned char brk)
  549. {
  550. set_command (port, brk, WHITEHEAT_SET_BREAK);
  551. }
  552. static int __init whiteheat_init (void)
  553. {
  554. usb_serial_register (&whiteheat_fake_device);
  555. usb_serial_register (&whiteheat_device);
  556. info(DRIVER_DESC " " DRIVER_VERSION);
  557. return 0;
  558. }
  559. static void __exit whiteheat_exit (void)
  560. {
  561. usb_serial_deregister (&whiteheat_fake_device);
  562. usb_serial_deregister (&whiteheat_device);
  563. }
  564. module_init(whiteheat_init);
  565. module_exit(whiteheat_exit);
  566. MODULE_AUTHOR( DRIVER_AUTHOR );
  567. MODULE_DESCRIPTION( DRIVER_DESC );
  568. MODULE_LICENSE("GPL");
  569. MODULE_PARM(debug, "i");
  570. MODULE_PARM_DESC(debug, "Debug enabled or not");