iowarrior.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Native support for the I/O-Warrior USB devices
  4. *
  5. * Copyright (c) 2003-2005, 2020 Code Mercenaries GmbH
  6. * written by Christian Lucht <[email protected]> and
  7. * Christoph Jung <[email protected]>
  8. *
  9. * based on
  10. * usb-skeleton.c by Greg Kroah-Hartman <[email protected]>
  11. * brlvger.c by Stephane Dalton <[email protected]>
  12. * and Stephane Doyon <[email protected]>
  13. *
  14. * Released under the GPLv2.
  15. */
  16. #include <linux/module.h>
  17. #include <linux/usb.h>
  18. #include <linux/slab.h>
  19. #include <linux/sched.h>
  20. #include <linux/mutex.h>
  21. #include <linux/poll.h>
  22. #include <linux/usb/iowarrior.h>
  23. #define DRIVER_AUTHOR "Christian Lucht <[email protected]>"
  24. #define DRIVER_DESC "USB IO-Warrior driver"
  25. #define USB_VENDOR_ID_CODEMERCS 1984
  26. /* low speed iowarrior */
  27. #define USB_DEVICE_ID_CODEMERCS_IOW40 0x1500
  28. #define USB_DEVICE_ID_CODEMERCS_IOW24 0x1501
  29. #define USB_DEVICE_ID_CODEMERCS_IOWPV1 0x1511
  30. #define USB_DEVICE_ID_CODEMERCS_IOWPV2 0x1512
  31. /* full speed iowarrior */
  32. #define USB_DEVICE_ID_CODEMERCS_IOW56 0x1503
  33. /* fuller speed iowarrior */
  34. #define USB_DEVICE_ID_CODEMERCS_IOW28 0x1504
  35. #define USB_DEVICE_ID_CODEMERCS_IOW28L 0x1505
  36. #define USB_DEVICE_ID_CODEMERCS_IOW100 0x1506
  37. /* OEMed devices */
  38. #define USB_DEVICE_ID_CODEMERCS_IOW24SAG 0x158a
  39. #define USB_DEVICE_ID_CODEMERCS_IOW56AM 0x158b
  40. /* Get a minor range for your devices from the usb maintainer */
  41. #ifdef CONFIG_USB_DYNAMIC_MINORS
  42. #define IOWARRIOR_MINOR_BASE 0
  43. #else
  44. #define IOWARRIOR_MINOR_BASE 208 // SKELETON_MINOR_BASE 192 + 16, not official yet
  45. #endif
  46. /* interrupt input queue size */
  47. #define MAX_INTERRUPT_BUFFER 16
  48. /*
  49. maximum number of urbs that are submitted for writes at the same time,
  50. this applies to the IOWarrior56 only!
  51. IOWarrior24 and IOWarrior40 use synchronous usb_control_msg calls.
  52. */
  53. #define MAX_WRITES_IN_FLIGHT 4
  54. MODULE_AUTHOR(DRIVER_AUTHOR);
  55. MODULE_DESCRIPTION(DRIVER_DESC);
  56. MODULE_LICENSE("GPL");
  57. static struct usb_driver iowarrior_driver;
  58. /*--------------*/
  59. /* data */
  60. /*--------------*/
  61. /* Structure to hold all of our device specific stuff */
  62. struct iowarrior {
  63. struct mutex mutex; /* locks this structure */
  64. struct usb_device *udev; /* save off the usb device pointer */
  65. struct usb_interface *interface; /* the interface for this device */
  66. unsigned char minor; /* the starting minor number for this device */
  67. struct usb_endpoint_descriptor *int_out_endpoint; /* endpoint for reading (needed for IOW56 only) */
  68. struct usb_endpoint_descriptor *int_in_endpoint; /* endpoint for reading */
  69. struct urb *int_in_urb; /* the urb for reading data */
  70. unsigned char *int_in_buffer; /* buffer for data to be read */
  71. unsigned char serial_number; /* to detect lost packages */
  72. unsigned char *read_queue; /* size is MAX_INTERRUPT_BUFFER * packet size */
  73. wait_queue_head_t read_wait;
  74. wait_queue_head_t write_wait; /* wait-queue for writing to the device */
  75. atomic_t write_busy; /* number of write-urbs submitted */
  76. atomic_t read_idx;
  77. atomic_t intr_idx;
  78. atomic_t overflow_flag; /* signals an index 'rollover' */
  79. int present; /* this is 1 as long as the device is connected */
  80. int opened; /* this is 1 if the device is currently open */
  81. char chip_serial[9]; /* the serial number string of the chip connected */
  82. int report_size; /* number of bytes in a report */
  83. u16 product_id;
  84. struct usb_anchor submitted;
  85. };
  86. /*--------------*/
  87. /* globals */
  88. /*--------------*/
  89. #define USB_REQ_GET_REPORT 0x01
  90. //#if 0
  91. static int usb_get_report(struct usb_device *dev,
  92. struct usb_host_interface *inter, unsigned char type,
  93. unsigned char id, void *buf, int size)
  94. {
  95. return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
  96. USB_REQ_GET_REPORT,
  97. USB_DIR_IN | USB_TYPE_CLASS |
  98. USB_RECIP_INTERFACE, (type << 8) + id,
  99. inter->desc.bInterfaceNumber, buf, size,
  100. USB_CTRL_GET_TIMEOUT);
  101. }
  102. //#endif
  103. #define USB_REQ_SET_REPORT 0x09
  104. static int usb_set_report(struct usb_interface *intf, unsigned char type,
  105. unsigned char id, void *buf, int size)
  106. {
  107. return usb_control_msg(interface_to_usbdev(intf),
  108. usb_sndctrlpipe(interface_to_usbdev(intf), 0),
  109. USB_REQ_SET_REPORT,
  110. USB_TYPE_CLASS | USB_RECIP_INTERFACE,
  111. (type << 8) + id,
  112. intf->cur_altsetting->desc.bInterfaceNumber, buf,
  113. size, 1000);
  114. }
  115. /*---------------------*/
  116. /* driver registration */
  117. /*---------------------*/
  118. /* table of devices that work with this driver */
  119. static const struct usb_device_id iowarrior_ids[] = {
  120. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW40)},
  121. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW24)},
  122. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOWPV1)},
  123. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOWPV2)},
  124. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW56)},
  125. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW24SAG)},
  126. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW56AM)},
  127. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW28)},
  128. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW28L)},
  129. {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW100)},
  130. {} /* Terminating entry */
  131. };
  132. MODULE_DEVICE_TABLE(usb, iowarrior_ids);
  133. /*
  134. * USB callback handler for reading data
  135. */
  136. static void iowarrior_callback(struct urb *urb)
  137. {
  138. struct iowarrior *dev = urb->context;
  139. int intr_idx;
  140. int read_idx;
  141. int aux_idx;
  142. int offset;
  143. int status = urb->status;
  144. int retval;
  145. switch (status) {
  146. case 0:
  147. /* success */
  148. break;
  149. case -ECONNRESET:
  150. case -ENOENT:
  151. case -ESHUTDOWN:
  152. return;
  153. default:
  154. goto exit;
  155. }
  156. intr_idx = atomic_read(&dev->intr_idx);
  157. /* aux_idx become previous intr_idx */
  158. aux_idx = (intr_idx == 0) ? (MAX_INTERRUPT_BUFFER - 1) : (intr_idx - 1);
  159. read_idx = atomic_read(&dev->read_idx);
  160. /* queue is not empty and it's interface 0 */
  161. if ((intr_idx != read_idx)
  162. && (dev->interface->cur_altsetting->desc.bInterfaceNumber == 0)) {
  163. /* + 1 for serial number */
  164. offset = aux_idx * (dev->report_size + 1);
  165. if (!memcmp
  166. (dev->read_queue + offset, urb->transfer_buffer,
  167. dev->report_size)) {
  168. /* equal values on interface 0 will be ignored */
  169. goto exit;
  170. }
  171. }
  172. /* aux_idx become next intr_idx */
  173. aux_idx = (intr_idx == (MAX_INTERRUPT_BUFFER - 1)) ? 0 : (intr_idx + 1);
  174. if (read_idx == aux_idx) {
  175. /* queue full, dropping oldest input */
  176. read_idx = (++read_idx == MAX_INTERRUPT_BUFFER) ? 0 : read_idx;
  177. atomic_set(&dev->read_idx, read_idx);
  178. atomic_set(&dev->overflow_flag, 1);
  179. }
  180. /* +1 for serial number */
  181. offset = intr_idx * (dev->report_size + 1);
  182. memcpy(dev->read_queue + offset, urb->transfer_buffer,
  183. dev->report_size);
  184. *(dev->read_queue + offset + (dev->report_size)) = dev->serial_number++;
  185. atomic_set(&dev->intr_idx, aux_idx);
  186. /* tell the blocking read about the new data */
  187. wake_up_interruptible(&dev->read_wait);
  188. exit:
  189. retval = usb_submit_urb(urb, GFP_ATOMIC);
  190. if (retval)
  191. dev_err(&dev->interface->dev, "%s - usb_submit_urb failed with result %d\n",
  192. __func__, retval);
  193. }
  194. /*
  195. * USB Callback handler for write-ops
  196. */
  197. static void iowarrior_write_callback(struct urb *urb)
  198. {
  199. struct iowarrior *dev;
  200. int status = urb->status;
  201. dev = urb->context;
  202. /* sync/async unlink faults aren't errors */
  203. if (status &&
  204. !(status == -ENOENT ||
  205. status == -ECONNRESET || status == -ESHUTDOWN)) {
  206. dev_dbg(&dev->interface->dev,
  207. "nonzero write bulk status received: %d\n", status);
  208. }
  209. /* free up our allocated buffer */
  210. usb_free_coherent(urb->dev, urb->transfer_buffer_length,
  211. urb->transfer_buffer, urb->transfer_dma);
  212. /* tell a waiting writer the interrupt-out-pipe is available again */
  213. atomic_dec(&dev->write_busy);
  214. wake_up_interruptible(&dev->write_wait);
  215. }
  216. /*
  217. * iowarrior_delete
  218. */
  219. static inline void iowarrior_delete(struct iowarrior *dev)
  220. {
  221. dev_dbg(&dev->interface->dev, "minor %d\n", dev->minor);
  222. kfree(dev->int_in_buffer);
  223. usb_free_urb(dev->int_in_urb);
  224. kfree(dev->read_queue);
  225. usb_put_intf(dev->interface);
  226. kfree(dev);
  227. }
  228. /*---------------------*/
  229. /* fops implementation */
  230. /*---------------------*/
  231. static int read_index(struct iowarrior *dev)
  232. {
  233. int intr_idx, read_idx;
  234. read_idx = atomic_read(&dev->read_idx);
  235. intr_idx = atomic_read(&dev->intr_idx);
  236. return (read_idx == intr_idx ? -1 : read_idx);
  237. }
  238. /*
  239. * iowarrior_read
  240. */
  241. static ssize_t iowarrior_read(struct file *file, char __user *buffer,
  242. size_t count, loff_t *ppos)
  243. {
  244. struct iowarrior *dev;
  245. int read_idx;
  246. int offset;
  247. dev = file->private_data;
  248. /* verify that the device wasn't unplugged */
  249. if (!dev || !dev->present)
  250. return -ENODEV;
  251. dev_dbg(&dev->interface->dev, "minor %d, count = %zd\n",
  252. dev->minor, count);
  253. /* read count must be packet size (+ time stamp) */
  254. if ((count != dev->report_size)
  255. && (count != (dev->report_size + 1)))
  256. return -EINVAL;
  257. /* repeat until no buffer overrun in callback handler occur */
  258. do {
  259. atomic_set(&dev->overflow_flag, 0);
  260. if ((read_idx = read_index(dev)) == -1) {
  261. /* queue empty */
  262. if (file->f_flags & O_NONBLOCK)
  263. return -EAGAIN;
  264. else {
  265. //next line will return when there is either new data, or the device is unplugged
  266. int r = wait_event_interruptible(dev->read_wait,
  267. (!dev->present
  268. || (read_idx =
  269. read_index
  270. (dev)) !=
  271. -1));
  272. if (r) {
  273. //we were interrupted by a signal
  274. return -ERESTART;
  275. }
  276. if (!dev->present) {
  277. //The device was unplugged
  278. return -ENODEV;
  279. }
  280. if (read_idx == -1) {
  281. // Can this happen ???
  282. return 0;
  283. }
  284. }
  285. }
  286. offset = read_idx * (dev->report_size + 1);
  287. if (copy_to_user(buffer, dev->read_queue + offset, count)) {
  288. return -EFAULT;
  289. }
  290. } while (atomic_read(&dev->overflow_flag));
  291. read_idx = ++read_idx == MAX_INTERRUPT_BUFFER ? 0 : read_idx;
  292. atomic_set(&dev->read_idx, read_idx);
  293. return count;
  294. }
  295. /*
  296. * iowarrior_write
  297. */
  298. static ssize_t iowarrior_write(struct file *file,
  299. const char __user *user_buffer,
  300. size_t count, loff_t *ppos)
  301. {
  302. struct iowarrior *dev;
  303. int retval = 0;
  304. char *buf = NULL; /* for IOW24 and IOW56 we need a buffer */
  305. struct urb *int_out_urb = NULL;
  306. dev = file->private_data;
  307. mutex_lock(&dev->mutex);
  308. /* verify that the device wasn't unplugged */
  309. if (!dev->present) {
  310. retval = -ENODEV;
  311. goto exit;
  312. }
  313. dev_dbg(&dev->interface->dev, "minor %d, count = %zd\n",
  314. dev->minor, count);
  315. /* if count is 0 we're already done */
  316. if (count == 0) {
  317. retval = 0;
  318. goto exit;
  319. }
  320. /* We only accept full reports */
  321. if (count != dev->report_size) {
  322. retval = -EINVAL;
  323. goto exit;
  324. }
  325. switch (dev->product_id) {
  326. case USB_DEVICE_ID_CODEMERCS_IOW24:
  327. case USB_DEVICE_ID_CODEMERCS_IOW24SAG:
  328. case USB_DEVICE_ID_CODEMERCS_IOWPV1:
  329. case USB_DEVICE_ID_CODEMERCS_IOWPV2:
  330. case USB_DEVICE_ID_CODEMERCS_IOW40:
  331. /* IOW24 and IOW40 use a synchronous call */
  332. buf = memdup_user(user_buffer, count);
  333. if (IS_ERR(buf)) {
  334. retval = PTR_ERR(buf);
  335. goto exit;
  336. }
  337. retval = usb_set_report(dev->interface, 2, 0, buf, count);
  338. kfree(buf);
  339. goto exit;
  340. case USB_DEVICE_ID_CODEMERCS_IOW56:
  341. case USB_DEVICE_ID_CODEMERCS_IOW56AM:
  342. case USB_DEVICE_ID_CODEMERCS_IOW28:
  343. case USB_DEVICE_ID_CODEMERCS_IOW28L:
  344. case USB_DEVICE_ID_CODEMERCS_IOW100:
  345. /* The IOW56 uses asynchronous IO and more urbs */
  346. if (atomic_read(&dev->write_busy) == MAX_WRITES_IN_FLIGHT) {
  347. /* Wait until we are below the limit for submitted urbs */
  348. if (file->f_flags & O_NONBLOCK) {
  349. retval = -EAGAIN;
  350. goto exit;
  351. } else {
  352. retval = wait_event_interruptible(dev->write_wait,
  353. (!dev->present || (atomic_read (&dev-> write_busy) < MAX_WRITES_IN_FLIGHT)));
  354. if (retval) {
  355. /* we were interrupted by a signal */
  356. retval = -ERESTART;
  357. goto exit;
  358. }
  359. if (!dev->present) {
  360. /* The device was unplugged */
  361. retval = -ENODEV;
  362. goto exit;
  363. }
  364. if (!dev->opened) {
  365. /* We were closed while waiting for an URB */
  366. retval = -ENODEV;
  367. goto exit;
  368. }
  369. }
  370. }
  371. atomic_inc(&dev->write_busy);
  372. int_out_urb = usb_alloc_urb(0, GFP_KERNEL);
  373. if (!int_out_urb) {
  374. retval = -ENOMEM;
  375. goto error_no_urb;
  376. }
  377. buf = usb_alloc_coherent(dev->udev, dev->report_size,
  378. GFP_KERNEL, &int_out_urb->transfer_dma);
  379. if (!buf) {
  380. retval = -ENOMEM;
  381. dev_dbg(&dev->interface->dev,
  382. "Unable to allocate buffer\n");
  383. goto error_no_buffer;
  384. }
  385. usb_fill_int_urb(int_out_urb, dev->udev,
  386. usb_sndintpipe(dev->udev,
  387. dev->int_out_endpoint->bEndpointAddress),
  388. buf, dev->report_size,
  389. iowarrior_write_callback, dev,
  390. dev->int_out_endpoint->bInterval);
  391. int_out_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
  392. if (copy_from_user(buf, user_buffer, count)) {
  393. retval = -EFAULT;
  394. goto error;
  395. }
  396. usb_anchor_urb(int_out_urb, &dev->submitted);
  397. retval = usb_submit_urb(int_out_urb, GFP_KERNEL);
  398. if (retval) {
  399. dev_dbg(&dev->interface->dev,
  400. "submit error %d for urb nr.%d\n",
  401. retval, atomic_read(&dev->write_busy));
  402. usb_unanchor_urb(int_out_urb);
  403. goto error;
  404. }
  405. /* submit was ok */
  406. retval = count;
  407. usb_free_urb(int_out_urb);
  408. goto exit;
  409. default:
  410. /* what do we have here ? An unsupported Product-ID ? */
  411. dev_err(&dev->interface->dev, "%s - not supported for product=0x%x\n",
  412. __func__, dev->product_id);
  413. retval = -EFAULT;
  414. goto exit;
  415. }
  416. error:
  417. usb_free_coherent(dev->udev, dev->report_size, buf,
  418. int_out_urb->transfer_dma);
  419. error_no_buffer:
  420. usb_free_urb(int_out_urb);
  421. error_no_urb:
  422. atomic_dec(&dev->write_busy);
  423. wake_up_interruptible(&dev->write_wait);
  424. exit:
  425. mutex_unlock(&dev->mutex);
  426. return retval;
  427. }
  428. /*
  429. * iowarrior_ioctl
  430. */
  431. static long iowarrior_ioctl(struct file *file, unsigned int cmd,
  432. unsigned long arg)
  433. {
  434. struct iowarrior *dev = NULL;
  435. __u8 *buffer;
  436. __u8 __user *user_buffer;
  437. int retval;
  438. int io_res; /* checks for bytes read/written and copy_to/from_user results */
  439. dev = file->private_data;
  440. if (!dev)
  441. return -ENODEV;
  442. buffer = kzalloc(dev->report_size, GFP_KERNEL);
  443. if (!buffer)
  444. return -ENOMEM;
  445. mutex_lock(&dev->mutex);
  446. /* verify that the device wasn't unplugged */
  447. if (!dev->present) {
  448. retval = -ENODEV;
  449. goto error_out;
  450. }
  451. dev_dbg(&dev->interface->dev, "minor %d, cmd 0x%.4x, arg %ld\n",
  452. dev->minor, cmd, arg);
  453. retval = 0;
  454. io_res = 0;
  455. switch (cmd) {
  456. case IOW_WRITE:
  457. if (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW24 ||
  458. dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW24SAG ||
  459. dev->product_id == USB_DEVICE_ID_CODEMERCS_IOWPV1 ||
  460. dev->product_id == USB_DEVICE_ID_CODEMERCS_IOWPV2 ||
  461. dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW40) {
  462. user_buffer = (__u8 __user *)arg;
  463. io_res = copy_from_user(buffer, user_buffer,
  464. dev->report_size);
  465. if (io_res) {
  466. retval = -EFAULT;
  467. } else {
  468. io_res = usb_set_report(dev->interface, 2, 0,
  469. buffer,
  470. dev->report_size);
  471. if (io_res < 0)
  472. retval = io_res;
  473. }
  474. } else {
  475. retval = -EINVAL;
  476. dev_err(&dev->interface->dev,
  477. "ioctl 'IOW_WRITE' is not supported for product=0x%x.\n",
  478. dev->product_id);
  479. }
  480. break;
  481. case IOW_READ:
  482. user_buffer = (__u8 __user *)arg;
  483. io_res = usb_get_report(dev->udev,
  484. dev->interface->cur_altsetting, 1, 0,
  485. buffer, dev->report_size);
  486. if (io_res < 0)
  487. retval = io_res;
  488. else {
  489. io_res = copy_to_user(user_buffer, buffer, dev->report_size);
  490. if (io_res)
  491. retval = -EFAULT;
  492. }
  493. break;
  494. case IOW_GETINFO:
  495. {
  496. /* Report available information for the device */
  497. struct iowarrior_info info;
  498. /* needed for power consumption */
  499. struct usb_config_descriptor *cfg_descriptor = &dev->udev->actconfig->desc;
  500. memset(&info, 0, sizeof(info));
  501. /* directly from the descriptor */
  502. info.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
  503. info.product = dev->product_id;
  504. info.revision = le16_to_cpu(dev->udev->descriptor.bcdDevice);
  505. /* 0==UNKNOWN, 1==LOW(usb1.1) ,2=FULL(usb1.1), 3=HIGH(usb2.0) */
  506. info.speed = dev->udev->speed;
  507. info.if_num = dev->interface->cur_altsetting->desc.bInterfaceNumber;
  508. info.report_size = dev->report_size;
  509. /* serial number string has been read earlier 8 chars or empty string */
  510. memcpy(info.serial, dev->chip_serial,
  511. sizeof(dev->chip_serial));
  512. if (cfg_descriptor == NULL) {
  513. info.power = -1; /* no information available */
  514. } else {
  515. /* the MaxPower is stored in units of 2mA to make it fit into a byte-value */
  516. info.power = cfg_descriptor->bMaxPower * 2;
  517. }
  518. io_res = copy_to_user((struct iowarrior_info __user *)arg, &info,
  519. sizeof(struct iowarrior_info));
  520. if (io_res)
  521. retval = -EFAULT;
  522. break;
  523. }
  524. default:
  525. /* return that we did not understand this ioctl call */
  526. retval = -ENOTTY;
  527. break;
  528. }
  529. error_out:
  530. /* unlock the device */
  531. mutex_unlock(&dev->mutex);
  532. kfree(buffer);
  533. return retval;
  534. }
  535. /*
  536. * iowarrior_open
  537. */
  538. static int iowarrior_open(struct inode *inode, struct file *file)
  539. {
  540. struct iowarrior *dev = NULL;
  541. struct usb_interface *interface;
  542. int subminor;
  543. int retval = 0;
  544. subminor = iminor(inode);
  545. interface = usb_find_interface(&iowarrior_driver, subminor);
  546. if (!interface) {
  547. pr_err("%s - error, can't find device for minor %d\n",
  548. __func__, subminor);
  549. return -ENODEV;
  550. }
  551. dev = usb_get_intfdata(interface);
  552. if (!dev)
  553. return -ENODEV;
  554. mutex_lock(&dev->mutex);
  555. /* Only one process can open each device, no sharing. */
  556. if (dev->opened) {
  557. retval = -EBUSY;
  558. goto out;
  559. }
  560. /* setup interrupt handler for receiving values */
  561. if ((retval = usb_submit_urb(dev->int_in_urb, GFP_KERNEL)) < 0) {
  562. dev_err(&interface->dev, "Error %d while submitting URB\n", retval);
  563. retval = -EFAULT;
  564. goto out;
  565. }
  566. /* increment our usage count for the driver */
  567. ++dev->opened;
  568. /* save our object in the file's private structure */
  569. file->private_data = dev;
  570. retval = 0;
  571. out:
  572. mutex_unlock(&dev->mutex);
  573. return retval;
  574. }
  575. /*
  576. * iowarrior_release
  577. */
  578. static int iowarrior_release(struct inode *inode, struct file *file)
  579. {
  580. struct iowarrior *dev;
  581. int retval = 0;
  582. dev = file->private_data;
  583. if (!dev)
  584. return -ENODEV;
  585. dev_dbg(&dev->interface->dev, "minor %d\n", dev->minor);
  586. /* lock our device */
  587. mutex_lock(&dev->mutex);
  588. if (dev->opened <= 0) {
  589. retval = -ENODEV; /* close called more than once */
  590. mutex_unlock(&dev->mutex);
  591. } else {
  592. dev->opened = 0; /* we're closing now */
  593. retval = 0;
  594. if (dev->present) {
  595. /*
  596. The device is still connected so we only shutdown
  597. pending read-/write-ops.
  598. */
  599. usb_kill_urb(dev->int_in_urb);
  600. wake_up_interruptible(&dev->read_wait);
  601. wake_up_interruptible(&dev->write_wait);
  602. mutex_unlock(&dev->mutex);
  603. } else {
  604. /* The device was unplugged, cleanup resources */
  605. mutex_unlock(&dev->mutex);
  606. iowarrior_delete(dev);
  607. }
  608. }
  609. return retval;
  610. }
  611. static __poll_t iowarrior_poll(struct file *file, poll_table * wait)
  612. {
  613. struct iowarrior *dev = file->private_data;
  614. __poll_t mask = 0;
  615. if (!dev->present)
  616. return EPOLLERR | EPOLLHUP;
  617. poll_wait(file, &dev->read_wait, wait);
  618. poll_wait(file, &dev->write_wait, wait);
  619. if (!dev->present)
  620. return EPOLLERR | EPOLLHUP;
  621. if (read_index(dev) != -1)
  622. mask |= EPOLLIN | EPOLLRDNORM;
  623. if (atomic_read(&dev->write_busy) < MAX_WRITES_IN_FLIGHT)
  624. mask |= EPOLLOUT | EPOLLWRNORM;
  625. return mask;
  626. }
  627. /*
  628. * File operations needed when we register this driver.
  629. * This assumes that this driver NEEDS file operations,
  630. * of course, which means that the driver is expected
  631. * to have a node in the /dev directory. If the USB
  632. * device were for a network interface then the driver
  633. * would use "struct net_driver" instead, and a serial
  634. * device would use "struct tty_driver".
  635. */
  636. static const struct file_operations iowarrior_fops = {
  637. .owner = THIS_MODULE,
  638. .write = iowarrior_write,
  639. .read = iowarrior_read,
  640. .unlocked_ioctl = iowarrior_ioctl,
  641. .open = iowarrior_open,
  642. .release = iowarrior_release,
  643. .poll = iowarrior_poll,
  644. .llseek = noop_llseek,
  645. };
  646. static char *iowarrior_devnode(struct device *dev, umode_t *mode)
  647. {
  648. return kasprintf(GFP_KERNEL, "usb/%s", dev_name(dev));
  649. }
  650. /*
  651. * usb class driver info in order to get a minor number from the usb core,
  652. * and to have the device registered with devfs and the driver core
  653. */
  654. static struct usb_class_driver iowarrior_class = {
  655. .name = "iowarrior%d",
  656. .devnode = iowarrior_devnode,
  657. .fops = &iowarrior_fops,
  658. .minor_base = IOWARRIOR_MINOR_BASE,
  659. };
  660. /*---------------------------------*/
  661. /* probe and disconnect functions */
  662. /*---------------------------------*/
  663. /*
  664. * iowarrior_probe
  665. *
  666. * Called by the usb core when a new device is connected that it thinks
  667. * this driver might be interested in.
  668. */
  669. static int iowarrior_probe(struct usb_interface *interface,
  670. const struct usb_device_id *id)
  671. {
  672. struct usb_device *udev = interface_to_usbdev(interface);
  673. struct iowarrior *dev = NULL;
  674. struct usb_host_interface *iface_desc;
  675. int retval = -ENOMEM;
  676. int res;
  677. /* allocate memory for our device state and initialize it */
  678. dev = kzalloc(sizeof(struct iowarrior), GFP_KERNEL);
  679. if (!dev)
  680. return retval;
  681. mutex_init(&dev->mutex);
  682. atomic_set(&dev->intr_idx, 0);
  683. atomic_set(&dev->read_idx, 0);
  684. atomic_set(&dev->overflow_flag, 0);
  685. init_waitqueue_head(&dev->read_wait);
  686. atomic_set(&dev->write_busy, 0);
  687. init_waitqueue_head(&dev->write_wait);
  688. dev->udev = udev;
  689. dev->interface = usb_get_intf(interface);
  690. iface_desc = interface->cur_altsetting;
  691. dev->product_id = le16_to_cpu(udev->descriptor.idProduct);
  692. init_usb_anchor(&dev->submitted);
  693. res = usb_find_last_int_in_endpoint(iface_desc, &dev->int_in_endpoint);
  694. if (res) {
  695. dev_err(&interface->dev, "no interrupt-in endpoint found\n");
  696. retval = res;
  697. goto error;
  698. }
  699. if ((dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW56) ||
  700. (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW56AM) ||
  701. (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW28) ||
  702. (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW28L) ||
  703. (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW100)) {
  704. res = usb_find_last_int_out_endpoint(iface_desc,
  705. &dev->int_out_endpoint);
  706. if (res) {
  707. dev_err(&interface->dev, "no interrupt-out endpoint found\n");
  708. retval = res;
  709. goto error;
  710. }
  711. }
  712. /* we have to check the report_size often, so remember it in the endianness suitable for our machine */
  713. dev->report_size = usb_endpoint_maxp(dev->int_in_endpoint);
  714. /*
  715. * Some devices need the report size to be different than the
  716. * endpoint size.
  717. */
  718. if (dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) {
  719. switch (dev->product_id) {
  720. case USB_DEVICE_ID_CODEMERCS_IOW56:
  721. case USB_DEVICE_ID_CODEMERCS_IOW56AM:
  722. dev->report_size = 7;
  723. break;
  724. case USB_DEVICE_ID_CODEMERCS_IOW28:
  725. case USB_DEVICE_ID_CODEMERCS_IOW28L:
  726. dev->report_size = 4;
  727. break;
  728. case USB_DEVICE_ID_CODEMERCS_IOW100:
  729. dev->report_size = 12;
  730. break;
  731. }
  732. }
  733. /* create the urb and buffer for reading */
  734. dev->int_in_urb = usb_alloc_urb(0, GFP_KERNEL);
  735. if (!dev->int_in_urb)
  736. goto error;
  737. dev->int_in_buffer = kmalloc(dev->report_size, GFP_KERNEL);
  738. if (!dev->int_in_buffer)
  739. goto error;
  740. usb_fill_int_urb(dev->int_in_urb, dev->udev,
  741. usb_rcvintpipe(dev->udev,
  742. dev->int_in_endpoint->bEndpointAddress),
  743. dev->int_in_buffer, dev->report_size,
  744. iowarrior_callback, dev,
  745. dev->int_in_endpoint->bInterval);
  746. /* create an internal buffer for interrupt data from the device */
  747. dev->read_queue =
  748. kmalloc_array(dev->report_size + 1, MAX_INTERRUPT_BUFFER,
  749. GFP_KERNEL);
  750. if (!dev->read_queue)
  751. goto error;
  752. /* Get the serial-number of the chip */
  753. memset(dev->chip_serial, 0x00, sizeof(dev->chip_serial));
  754. usb_string(udev, udev->descriptor.iSerialNumber, dev->chip_serial,
  755. sizeof(dev->chip_serial));
  756. if (strlen(dev->chip_serial) != 8)
  757. memset(dev->chip_serial, 0x00, sizeof(dev->chip_serial));
  758. /* Set the idle timeout to 0, if this is interface 0 */
  759. if (dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) {
  760. usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  761. 0x0A,
  762. USB_TYPE_CLASS | USB_RECIP_INTERFACE, 0,
  763. 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
  764. }
  765. /* allow device read and ioctl */
  766. dev->present = 1;
  767. /* we can register the device now, as it is ready */
  768. usb_set_intfdata(interface, dev);
  769. retval = usb_register_dev(interface, &iowarrior_class);
  770. if (retval) {
  771. /* something prevented us from registering this driver */
  772. dev_err(&interface->dev, "Not able to get a minor for this device.\n");
  773. goto error;
  774. }
  775. dev->minor = interface->minor;
  776. /* let the user know what node this device is now attached to */
  777. dev_info(&interface->dev, "IOWarrior product=0x%x, serial=%s interface=%d "
  778. "now attached to iowarrior%d\n", dev->product_id, dev->chip_serial,
  779. iface_desc->desc.bInterfaceNumber, dev->minor - IOWARRIOR_MINOR_BASE);
  780. return retval;
  781. error:
  782. iowarrior_delete(dev);
  783. return retval;
  784. }
  785. /*
  786. * iowarrior_disconnect
  787. *
  788. * Called by the usb core when the device is removed from the system.
  789. */
  790. static void iowarrior_disconnect(struct usb_interface *interface)
  791. {
  792. struct iowarrior *dev = usb_get_intfdata(interface);
  793. int minor = dev->minor;
  794. usb_deregister_dev(interface, &iowarrior_class);
  795. mutex_lock(&dev->mutex);
  796. /* prevent device read, write and ioctl */
  797. dev->present = 0;
  798. if (dev->opened) {
  799. /* There is a process that holds a filedescriptor to the device ,
  800. so we only shutdown read-/write-ops going on.
  801. Deleting the device is postponed until close() was called.
  802. */
  803. usb_kill_urb(dev->int_in_urb);
  804. usb_kill_anchored_urbs(&dev->submitted);
  805. wake_up_interruptible(&dev->read_wait);
  806. wake_up_interruptible(&dev->write_wait);
  807. mutex_unlock(&dev->mutex);
  808. } else {
  809. /* no process is using the device, cleanup now */
  810. mutex_unlock(&dev->mutex);
  811. iowarrior_delete(dev);
  812. }
  813. dev_info(&interface->dev, "I/O-Warror #%d now disconnected\n",
  814. minor - IOWARRIOR_MINOR_BASE);
  815. }
  816. /* usb specific object needed to register this driver with the usb subsystem */
  817. static struct usb_driver iowarrior_driver = {
  818. .name = "iowarrior",
  819. .probe = iowarrior_probe,
  820. .disconnect = iowarrior_disconnect,
  821. .id_table = iowarrior_ids,
  822. };
  823. module_usb_driver(iowarrior_driver);