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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.   usb-midi.c  --  USB-MIDI driver
  3.   Copyright (C) 2001 
  4.       NAGANO Daisuke <breeze.nagano@nifty.ne.jp>
  5.   This program is free software; you can redistribute it and/or modify
  6.   it under the terms of the GNU General Public License as published by
  7.   the Free Software Foundation; either version 2, or (at your option)
  8.   any later version.
  9.   This program is distributed in the hope that it will be useful,
  10.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.   GNU General Public License for more details.
  13.   You should have received a copy of the GNU General Public License
  14.   along with this program; if not, write to the Free Software
  15.   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16.   This driver is based on:
  17.     - 'Universal Serial Bus Device Class Definition for MIDI Device'
  18.     - linux/drivers/sound/es1371.c, linux/drivers/usb/audio.c
  19.     - alsa/lowlevel/pci/cs64xx.c
  20.     - umidi.c for NetBSD
  21.  */
  22. /* ------------------------------------------------------------------------- */
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/sched.h>
  26. #include <linux/list.h>
  27. #include <linux/slab.h>
  28. #include <linux/wrapper.h>
  29. #include <linux/usb.h>
  30. #include <linux/poll.h>
  31. #include <linux/sound.h>
  32. #include <linux/init.h>
  33. #include <asm/semaphore.h>
  34. /** This declaration is missing from linux/usb.h **/
  35. extern int usb_get_string(struct usb_device *dev, unsigned short langid, unsigned char index, void *buf, int size);
  36. #include "usb-midi.h"
  37. /* ------------------------------------------------------------------------- */
  38. /* More verbose on syslog */
  39. #undef MIDI_DEBUG
  40. #define MIDI_IN_BUFSIZ 1024
  41. #define HAVE_SUPPORT_USB_MIDI_CLASS
  42. #undef HAVE_SUPPORT_ALSA
  43. #undef MOD_INC_EACH_PROBE
  44. /* ------------------------------------------------------------------------- */
  45. static int singlebyte = 0;
  46. MODULE_PARM(singlebyte,"i");
  47. MODULE_PARM_DESC(singlebyte,"Enable sending MIDI messages with single message packet");
  48. static int maxdevices = 4;
  49. MODULE_PARM(maxdevices,"i");
  50. MODULE_PARM_DESC(maxdevices,"Max number of allocatable MIDI device");
  51. static int uvendor     = -1;
  52. MODULE_PARM(uvendor,"i");
  53. MODULE_PARM_DESC(uvendor, "The USB Vendor ID of a semi-compliant interface");
  54. static int uproduct    = -1;
  55. MODULE_PARM(uproduct,"i");
  56. MODULE_PARM_DESC(uproduct, "The USB Product ID of a semi-compliant interface");
  57. static int uinterface  = -1;
  58. MODULE_PARM(uinterface,"i");
  59. MODULE_PARM_DESC(uinterface, "The Interface number of a semi-compliant interface");
  60. static int ualt        = -1;
  61. MODULE_PARM(ualt,"i");
  62. MODULE_PARM_DESC(ualt, "The optional alternative setting of a semi-compliant interface");
  63. static int umin        = -1;
  64. MODULE_PARM(umin,"i");
  65. MODULE_PARM_DESC(umin, "The input endpoint of a semi-compliant interface");
  66. static int umout       = -1;
  67. MODULE_PARM(umout,"i");
  68. MODULE_PARM_DESC(umout, "The output endpoint of a semi-compliant interface");
  69. static int ucable      = -1;
  70. MODULE_PARM(ucable,"i");
  71. MODULE_PARM_DESC(ucable, "The cable number used for a semi-compliant interface");
  72. /** Note -- the usb_string() returns only Latin-1 characters.
  73.  * (unicode chars <= 255). To support Japanese, a unicode16LE-to-EUC or
  74.  * unicode16LE-to-JIS routine is needed to wrap around usb_get_string().
  75.  **/
  76. static unsigned short ulangid      = 0x0409; /** 0x0411 for Japanese **/
  77. MODULE_PARM(ulangid,"h");
  78. MODULE_PARM_DESC(ulangid, "The optional preferred USB Language ID for all devices");
  79. MODULE_AUTHOR("NAGANO Daisuke <breeze.nagano@nifty.ne.jp>");
  80. MODULE_DESCRIPTION("USB-MIDI driver");
  81. #if LINUX_VERSION_CODE  >= KERNEL_VERSION(2,4,14)
  82. MODULE_LICENSE("GPL");
  83. #endif
  84. /* ------------------------------------------------------------------------- */
  85. /** MIDIStreaming Class-Specific Interface Descriptor Subtypes **/
  86. #define MS_DESCRIPTOR_UNDEFINED 0
  87. #define MS_HEADER 1
  88. #define MIDI_IN_JACK 2
  89. #define MIDI_OUT_JACK 3
  90. /* Spec reads: ELEMENT */
  91. #define ELEMENT_DESCRIPTOR    4
  92. #define MS_HEADER_LENGTH 7
  93. /** MIDIStreaming Class-Specific Endpoint Descriptor Subtypes **/
  94. #define DESCRIPTOR_UNDEFINED 0
  95. /* Spec reads: MS_GENERAL */
  96. #define MS_GENERAL_ENDPOINT 1
  97. /** MIDIStreaming MIDI IN and OUT Jack Types **/
  98. #define JACK_TYPE_UNDEFINED 0
  99. /* Spec reads: EMBEDDED */
  100. #define EMBEDDED_JACK 1
  101. /* Spec reads: EXTERNAL */
  102. #define EXTERNAL_JACK 2
  103. /* structure summary
  104.   
  105.       usb_midi_state     usb_device
  106.        |         |
  107.       *|        *|       per ep
  108.      in_ep     out_ep
  109.        |         |
  110.       *|        *|       per cable
  111.       min       mout
  112.        |         |       (cable to device pairing magic)
  113.        |         |
  114.        usb_midi_dev      dev_id (major,minor) == file->private_data
  115. */
  116. /* usb_midi_state: corresponds to a USB-MIDI module */
  117. struct usb_midi_state {
  118. struct list_head   mididev;
  119. struct usb_device *usbdev;
  120. struct list_head   midiDevList;
  121. struct list_head   inEndpointList;
  122. struct list_head   outEndpointList;
  123. spinlock_t         lock;
  124. unsigned int       count; /* usage counter */
  125. };
  126. /* midi_out_endpoint: corresponds to an output endpoint */
  127. struct midi_out_endpoint {
  128. struct list_head  list;
  129. struct usb_device *usbdev;
  130. int                endpoint;
  131. spinlock_t         lock;
  132. wait_queue_head_t  wait;
  133. unsigned char     *buf;
  134. int                bufWrPtr;
  135. int                bufSize;
  136. struct urb       *urb;
  137. };
  138. /* midi_in_endpoint: corresponds to an input endpoint */
  139. struct midi_in_endpoint {
  140. struct list_head   list;
  141. struct usb_device *usbdev;
  142. int                endpoint;
  143. spinlock_t         lock;
  144. wait_queue_head_t  wait;
  145. struct usb_mididev *cables[16]; // cables open for read
  146. int                 readers; // number of cables open for read
  147. struct urb        *urb;
  148. unsigned char     *recvBuf;
  149. int                recvBufSize;
  150. int                urbSubmitted; //FIXME: == readers > 0
  151. };
  152. /* usb_mididev: corresponds to a logical device */
  153. struct usb_mididev {
  154. struct list_head       list;
  155. struct usb_midi_state *midi;
  156. int                    dev_midi;
  157. mode_t                 open_mode;
  158. struct {
  159. struct midi_in_endpoint *ep;
  160. int              cableId;
  161. // as we are pushing data from usb_bulk_read to usb_midi_read,
  162. // we need a larger, cyclic buffer here.
  163. unsigned char    buf[MIDI_IN_BUFSIZ];
  164. int              bufRdPtr;
  165. int              bufWrPtr;
  166. int              bufRemains;
  167. } min;
  168. struct {
  169. struct midi_out_endpoint *ep;
  170. int              cableId;
  171. unsigned char    buf[3];
  172. int              bufPtr;
  173. int              bufRemains;
  174. int              isInExclusive;
  175. unsigned char    lastEvent;
  176. } mout;
  177. int singlebyte;
  178. };
  179. /** Map the high nybble of MIDI voice messages to number of Message bytes.
  180.  * High nyble ranges from 0x8 to 0xe
  181.  */
  182. static int remains_80e0[] = {
  183. 3, /** 0x8X Note Off **/
  184. 3, /** 0x9X Note On **/
  185. 3, /** 0xAX Poly-key pressure **/
  186. 3, /** 0xBX Control Change **/
  187. 2, /** 0xCX Program Change **/
  188. 2, /** 0xDX Channel pressure **/
  189. 3  /** 0xEX PitchBend Change **/
  190. };
  191. /** Map the messages to a number of Message bytes.
  192.  *
  193.  **/
  194. static int remains_f0f6[] = {
  195. 0, /** 0xF0 **/
  196. 2, /** 0XF1 **/
  197. 3, /** 0XF2 **/
  198. 2, /** 0XF3 **/
  199. 2, /** 0XF4 (Undefined by MIDI Spec, and subject to change) **/
  200. 2, /** 0XF5 (Undefined by MIDI Spec, and subject to change) **/
  201. 1 /** 0XF6 **/
  202. };
  203. /** Map the messages to a CIN (Code Index Number).
  204.  *
  205.  **/
  206. static int cin_f0ff[] = {
  207. 4, /** 0xF0 System Exclusive Message Start (special cases may be 6 or 7) */
  208. 2, /** 0xF1 **/
  209. 3, /** 0xF2 **/
  210. 2, /** 0xF3 **/
  211. 2, /** 0xF4 **/
  212. 2, /** 0xF5 **/
  213. 5, /** 0xF6 **/
  214. 5, /** 0xF7 End of System Exclusive Message (May be 6 or 7) **/
  215. 5, /** 0xF8 **/
  216. 5, /** 0xF9 **/
  217. 5, /** 0xFA **/
  218. 5, /** 0xFB **/
  219. 5, /** 0xFC **/
  220. 5, /** 0xFD **/
  221. 5, /** 0xFE **/
  222. 5 /** 0xFF **/
  223. };
  224. /** Map MIDIStreaming Event packet Code Index Number (low nybble of byte 0)
  225.  * to the number of bytes of valid MIDI data.
  226.  *
  227.  * CIN of 0 and 1 are NOT USED in MIDIStreaming 1.0.
  228.  *
  229.  **/
  230. static int cin_to_len[] = {
  231. 0, 0, 2, 3,
  232. 3, 1, 2, 3,
  233. 3, 3, 3, 3,
  234. 2, 2, 3, 1
  235. };
  236. /* ------------------------------------------------------------------------- */
  237. static struct list_head mididevs = LIST_HEAD_INIT(mididevs);
  238. static DECLARE_MUTEX(open_sem);
  239. static DECLARE_WAIT_QUEUE_HEAD(open_wait);
  240. /* ------------------------------------------------------------------------- */
  241. static void usb_write_callback(struct urb *urb)
  242. {
  243. struct midi_out_endpoint *ep = (struct midi_out_endpoint *)urb->context;
  244. if ( waitqueue_active( &ep->wait ) )
  245. wake_up_interruptible( &ep->wait );
  246. }
  247. static int usb_write( struct midi_out_endpoint *ep, unsigned char *buf, int len )
  248. {
  249. struct usb_device *d;
  250. int pipe;
  251. int ret = 0;
  252. int status;
  253. int maxretry = 50;
  254. DECLARE_WAITQUEUE(wait,current);
  255. init_waitqueue_head(&ep->wait);
  256. d = ep->usbdev;
  257. pipe = usb_sndbulkpipe(d, ep->endpoint);
  258. FILL_BULK_URB( ep->urb, d, pipe, (unsigned char*)buf, len,
  259.        (usb_complete_t)usb_write_callback, ep );
  260. status = usb_submit_urb(ep->urb);
  261.     
  262. if (status) {
  263. printk(KERN_ERR "usbmidi: Cannot submit urb (%d)n",status);
  264. ret = -EFAULT;
  265. }
  266. add_wait_queue( &ep->wait, &wait );
  267. set_current_state( TASK_INTERRUPTIBLE );
  268. while( ep->urb->status == -EINPROGRESS ) {
  269. if ( maxretry-- < 0 ) {
  270. printk(KERN_ERR "usbmidi: usb_bulk_msg timed outn");
  271. ret = -ETIME;
  272. break;
  273. }
  274. interruptible_sleep_on_timeout( &ep->wait, 10 );
  275. }
  276. set_current_state( TASK_RUNNING );
  277. remove_wait_queue( &ep->wait, &wait );
  278. return ret;
  279. }
  280. /** Copy data from URB to In endpoint buf.
  281.  * Discard if CIN == 0 or CIN = 1.
  282.  *
  283.  *
  284.  **/
  285. static void usb_bulk_read(struct urb *urb)
  286. {
  287. struct midi_in_endpoint *ep = (struct midi_in_endpoint *)(urb->context);
  288. unsigned char *data = urb->transfer_buffer;
  289. int i, l, wake;
  290. unsigned long int flags;
  291. if ( !ep->urbSubmitted ) {
  292. return;
  293. }
  294. if ( (urb->status == 0) && (urb->actual_length > 0) ) {
  295. wake = 0;
  296. spin_lock_irqsave( &ep->lock, flags );
  297. for(l = 0; l < urb->actual_length; l += 4) {
  298. int cin = (data[l]>>0)&0xf;
  299. int cab = (data[l]>>4)&0xf;
  300. struct usb_mididev *cable = ep->cables[cab];
  301. if ( cable ) {
  302. int len = cin_to_len[cin]; /** length of MIDI data **/
  303. for (i = 0; i < len; i++) {
  304. cable->min.buf[cable->min.bufWrPtr] = data[1+i];
  305. cable->min.bufWrPtr = (cable->min.bufWrPtr+1)%MIDI_IN_BUFSIZ;
  306. if (cable->min.bufRemains < MIDI_IN_BUFSIZ)
  307. cable->min.bufRemains += 1;
  308. else /** need to drop data **/
  309. cable->min.bufRdPtr += (cable->min.bufRdPtr+1)%MIDI_IN_BUFSIZ;
  310. wake = 1;
  311. }
  312. }
  313. }
  314. spin_unlock_irqrestore( &ep->lock, flags );
  315. if ( wake ) {
  316. wake_up( &ep->wait );
  317. }
  318. }
  319. /* urb->dev must be reinitialized on 2.4.x kernels */
  320. urb->dev = ep->usbdev;
  321. urb->actual_length = 0;
  322. usb_submit_urb(urb);
  323. }
  324. /* ------------------------------------------------------------------------- */
  325. /* This routine must be called with spin_lock */
  326. /** Wrapper around usb_write().
  327.  *  This routine must be called with spin_lock held on ep.
  328.  *  Called by midiWrite(), putOneMidiEvent(), and  usb_midi_write();
  329.  **/
  330. static int flush_midi_buffer( struct midi_out_endpoint *ep )
  331. {
  332. int ret=0;
  333. if ( ep->bufWrPtr > 0 ) {
  334. ret = usb_write( ep, ep->buf, ep->bufWrPtr );
  335. ep->bufWrPtr = 0;
  336. }
  337. return ret;
  338. }
  339. /* ------------------------------------------------------------------------- */
  340. /** Given a MIDI Event, determine size of data to be attached to 
  341.  * USB-MIDI packet.
  342.  * Returns 1, 2 or 3.
  343.  * Called by midiWrite();
  344.  * Uses remains_80e0 and remains_f0f6;
  345.  **/
  346. static int get_remains(int event)
  347. {
  348. int ret;
  349. if ( event  < 0x80 ) {
  350. ret = 1;
  351. } else if ( event < 0xf0 ) {
  352. ret = remains_80e0[((event-0x80)>>4)&0x0f];
  353. } else if ( event < 0xf7 ) {
  354. ret = remains_f0f6[event-0xf0];
  355. } else {
  356. ret = 1;
  357. }
  358. return ret;
  359. }
  360. /** Given the output MIDI data in the output buffer, computes a reasonable 
  361.  * CIN.
  362.  * Called by putOneMidiEvent().
  363.  **/
  364. static int get_CIN( struct usb_mididev *m )
  365. {
  366. int cin;
  367. if ( m->mout.buf[0] == 0xf7 ) {
  368. cin = 5;
  369. }
  370. else if ( m->mout.buf[1] == 0xf7 ) {
  371. cin = 6;
  372. }
  373. else if ( m->mout.buf[2] == 0xf7 ) {
  374. cin = 7;
  375. }
  376. else {
  377. if ( m->mout.isInExclusive == 1 ) {
  378. cin = 4;
  379. } else if ( m->mout.buf[0] < 0x80 ) {
  380. /** One byte that we know nothing about. **/
  381. cin = 0xF; 
  382. } else if ( m->mout.buf[0] < 0xf0 ) {
  383. /** MIDI Voice messages 0x8X to 0xEX map to cin 0x8 to 0xE. **/
  384. cin = (m->mout.buf[0]>>4)&0x0f; 
  385. }
  386. else {
  387. /** Special lookup table exists for real-time events. **/
  388. cin = cin_f0ff[m->mout.buf[0]-0xf0];
  389. }
  390. }
  391. return cin;
  392. }
  393. /* ------------------------------------------------------------------------- */
  394. /** Move data to USB endpoint buffer.
  395.  *
  396.  **/
  397. static int put_one_midi_event(struct usb_mididev *m)
  398. {
  399. int cin;
  400. unsigned long flags;
  401. struct midi_out_endpoint *ep = m->mout.ep;
  402. int ret=0;
  403. cin = get_CIN( m );
  404. if ( cin > 0x0f || cin < 0 ) {
  405. return -EINVAL;
  406. }
  407. spin_lock_irqsave( &ep->lock, flags );
  408. ep->buf[ep->bufWrPtr++] = (m->mout.cableId<<4) | cin;
  409. ep->buf[ep->bufWrPtr++] = m->mout.buf[0];
  410. ep->buf[ep->bufWrPtr++] = m->mout.buf[1];
  411. ep->buf[ep->bufWrPtr++] = m->mout.buf[2];
  412. if ( ep->bufWrPtr >= ep->bufSize ) {
  413. ret = flush_midi_buffer( ep );
  414. }
  415. spin_unlock_irqrestore( &ep->lock, flags);
  416. m->mout.buf[0] = m->mout.buf[1] = m->mout.buf[2] = 0;
  417. m->mout.bufPtr = 0;
  418. return ret;
  419. }
  420. /** Write the MIDI message v on the midi device.
  421.  *  Called by usb_midi_write();
  422.  *  Responsible for packaging a MIDI data stream into USB-MIDI packets.
  423.  **/
  424. static int midi_write( struct usb_mididev *m, int v )
  425. {
  426. unsigned long flags;
  427. struct midi_out_endpoint *ep = m->mout.ep;
  428. int ret=0;
  429. unsigned char c = (unsigned char)v;
  430. unsigned char sysrt_buf[4];
  431. if ( m->singlebyte != 0 ) {
  432. /** Simple code to handle the single-byte USB-MIDI protocol. */
  433. spin_lock_irqsave( &ep->lock, flags );
  434. if ( ep->bufWrPtr+4 > ep->bufSize ) {
  435. ret = flush_midi_buffer( ep );
  436. if ( !ret ) {
  437. spin_unlock_irqrestore( &ep->lock, flags );
  438. return ret;
  439. }
  440. }
  441. ep->buf[ep->bufWrPtr++] = (m->mout.cableId<<4) |  0x0f; /* single byte */
  442. ep->buf[ep->bufWrPtr++] = c;
  443. ep->buf[ep->bufWrPtr++] = 0;
  444. ep->buf[ep->bufWrPtr++] = 0;
  445. if ( ep->bufWrPtr >= ep->bufSize ) {
  446. ret = flush_midi_buffer( ep );
  447. }
  448. spin_unlock_irqrestore( &ep->lock, flags );
  449. return ret;
  450. }
  451. /** Normal USB-MIDI protocol begins here. */
  452. if ( c > 0xf7 ) { /* system: Realtime messages */
  453. /** Realtime messages are written IMMEDIATELY. */
  454. sysrt_buf[0] = (m->mout.cableId<<4) | 0x0f;
  455. sysrt_buf[1] = c;
  456. sysrt_buf[2] = 0;
  457. sysrt_buf[3] = 0;
  458. spin_lock_irqsave( &ep->lock, flags );
  459. ret = usb_write( ep, sysrt_buf, 4 );
  460. spin_unlock_irqrestore( &ep->lock, flags );
  461. /* m->mout.lastEvent = 0; */
  462. return ret;
  463. }
  464. if ( c >= 0x80 ) {
  465. if ( c < 0xf0 ) {
  466. m->mout.lastEvent = c;
  467. m->mout.isInExclusive = 0;
  468. m->mout.bufRemains = get_remains(c);
  469. } else if ( c == 0xf0 ) {
  470. /* m->mout.lastEvent = 0; */
  471. m->mout.isInExclusive = 1;
  472. m->mout.bufRemains = get_remains(c);
  473. } else if ( c == 0xf7 && m->mout.isInExclusive == 1 ) {
  474. /* m->mout.lastEvent = 0; */
  475. m->mout.isInExclusive = 0;
  476. m->mout.bufRemains = 1;
  477. } else if ( c > 0xf0 ) {
  478. /* m->mout.lastEvent = 0; */
  479. m->mout.isInExclusive = 0;
  480. m->mout.bufRemains = get_remains(c);
  481. }
  482.     
  483. } else if ( m->mout.bufRemains == 0 && m->mout.isInExclusive == 0 ) {
  484. if ( m->mout.lastEvent == 0 ) {
  485. return 0; /* discard, waiting for the first event */
  486. }
  487. /** track status **/
  488. m->mout.buf[0] = m->mout.lastEvent;
  489. m->mout.bufPtr = 1;
  490. m->mout.bufRemains = get_remains(m->mout.lastEvent)-1;
  491. }
  492.   
  493. m->mout.buf[m->mout.bufPtr++] = c;
  494. m->mout.bufRemains--;
  495. if ( m->mout.bufRemains == 0 || m->mout.bufPtr >= 3) {
  496. ret = put_one_midi_event(m);
  497. }
  498. return ret;
  499. }
  500. /* ------------------------------------------------------------------------- */
  501. /** Basic operation on /dev/midiXX as registered through struct file_operations.
  502.  *
  503.  *  Basic contract: Used to change the current read/write position in a file.
  504.  *  On success, the non-negative position is reported.
  505.  *  On failure, the negative of an error code is reported.
  506.  *
  507.  *  Because a MIDIStream is not a file, all seek operations are doomed to fail.
  508.  *
  509.  **/
  510. static loff_t usb_midi_llseek(struct file *file, loff_t offset, int origin)
  511. {
  512. /** Tell user you cannot seek on a PIPE-like device. **/
  513. return -ESPIPE;
  514. }
  515. /** Basic operation on /dev/midiXX as registered through struct file_operations.
  516.  *
  517.  * Basic contract: Block until count bytes have been read or an error occurs.
  518.  *
  519.  **/
  520. static ssize_t usb_midi_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
  521. {
  522. struct usb_mididev *m = (struct usb_mididev *)file->private_data;
  523. struct midi_in_endpoint *ep = m->min.ep;
  524. ssize_t ret;
  525. DECLARE_WAITQUEUE(wait, current);
  526. if ( ppos != &file->f_pos ) {
  527. return -ESPIPE;
  528. }
  529. if ( !access_ok(VERIFY_READ, buffer, count) ) {
  530. return -EFAULT;
  531. }
  532. if ( count == 0 ) {
  533. return 0;
  534. }
  535. add_wait_queue( &ep->wait, &wait );
  536. ret = 0;
  537. while( count > 0 ) {
  538. int cnt;
  539. int d = (int)count;
  540. cnt = m->min.bufRemains;
  541. if ( cnt > d ) {
  542. cnt = d;
  543. }
  544. if ( cnt <= 0 ) {
  545. if ( file->f_flags & O_NONBLOCK ) {
  546. if (!ret) 
  547. ret = -EAGAIN;
  548. break;
  549. }
  550. __set_current_state(TASK_INTERRUPTIBLE);
  551. schedule();
  552. if (signal_pending(current)) {
  553. if(!ret)
  554. ret=-ERESTARTSYS;
  555. break;
  556. }
  557. continue;
  558. }
  559. {
  560. int i;
  561. unsigned long flags; /* used to synchronize access to the endpoint */
  562. spin_lock_irqsave( &ep->lock, flags );
  563. for (i = 0; i < cnt; i++) {
  564. if ( copy_to_user( buffer+i, m->min.buf+m->min.bufRdPtr, 1 ) ) {
  565. if ( !ret )
  566. ret = -EFAULT;
  567. break;
  568. }
  569. m->min.bufRdPtr = (m->min.bufRdPtr+1)%MIDI_IN_BUFSIZ;
  570. m->min.bufRemains -= 1;
  571. }
  572. spin_unlock_irqrestore( &ep->lock, flags );
  573. }
  574. count-=cnt;
  575. buffer+=cnt;
  576. ret+=cnt;
  577. break;
  578. }
  579. remove_wait_queue( &ep->wait, &wait );
  580. set_current_state(TASK_RUNNING);
  581. return ret;
  582. }
  583. /** Basic operation on /dev/midiXX as registered through struct file_operations.
  584.  *
  585.  *  Basic Contract: Take MIDI data byte-by-byte and pass it to
  586.  *  writeMidi() which packages MIDI data into USB-MIDI stream.
  587.  *  Then flushMidiData() is called to ensure all bytes have been written
  588.  *  in a timely fashion.
  589.  *
  590.  **/
  591. static ssize_t usb_midi_write(struct file *file, const char *buffer, size_t count, loff_t *ppos)
  592. {
  593. struct usb_mididev *m = (struct usb_mididev *)file->private_data;
  594. ssize_t ret;
  595. unsigned long int flags;
  596. if ( ppos != &file->f_pos ) {
  597. return -ESPIPE;
  598. }
  599. if ( !access_ok(VERIFY_READ, buffer, count) ) {
  600. return -EFAULT;
  601. }
  602. if ( count == 0 ) {
  603. return 0;
  604. }
  605. ret = 0;
  606. while( count > 0 ) {
  607. unsigned char c;
  608. if (copy_from_user((unsigned char *)&c, buffer, 1)) {
  609. if ( ret == 0 )
  610. ret = -EFAULT;
  611. break;
  612. }
  613. if( midi_write(m, (int)c) ) {
  614. if ( ret == 0 )
  615. ret = -EFAULT;
  616. break;
  617. }
  618. count--;
  619. buffer++;
  620. ret++;
  621. }
  622. spin_lock_irqsave( &m->mout.ep->lock, flags );
  623. if ( flush_midi_buffer(m->mout.ep) < 0 ) {
  624. ret = -EFAULT;
  625. }
  626. spin_unlock_irqrestore( &m->mout.ep->lock, flags );
  627. return ret;
  628. }
  629. /** Basic operation on /dev/midiXX as registered through struct file_operations.
  630.  *
  631.  * Basic contract:  Wait (spin) until ready to read or write on the file.
  632.  *
  633.  **/
  634. static unsigned int usb_midi_poll(struct file *file, struct poll_table_struct *wait)
  635. {
  636. struct usb_mididev *m = (struct usb_mididev *)file->private_data;
  637. struct midi_in_endpoint *iep = m->min.ep;
  638. struct midi_out_endpoint *oep = m->mout.ep;
  639. unsigned long flags;
  640. unsigned int mask = 0;
  641.   
  642. if ( file->f_mode & FMODE_READ ) {
  643. poll_wait( file, &iep->wait, wait );
  644. spin_lock_irqsave( &iep->lock, flags );
  645. if ( m->min.bufRemains > 0 )
  646. mask |= POLLIN | POLLRDNORM;
  647. spin_unlock_irqrestore( &iep->lock, flags );
  648. }
  649. if ( file->f_mode & FMODE_WRITE ) {
  650. poll_wait( file, &oep->wait, wait );
  651. spin_lock_irqsave( &oep->lock, flags );
  652. if ( oep->bufWrPtr < oep->bufSize )
  653. mask |= POLLOUT | POLLWRNORM;
  654. spin_unlock_irqrestore( &oep->lock, flags );
  655. }
  656. return mask;
  657. }
  658. /** Basic operation on /dev/midiXX as registered through struct file_operations.
  659.  *
  660.  * Basic contract: This is always the first operation performed on the
  661.  * device node. If no method is defined, the open succeeds without any
  662.  * notification given to the module.
  663.  *
  664.  **/
  665. static int usb_midi_open(struct inode *inode, struct file *file)
  666. {
  667. int minor = MINOR(inode->i_rdev);
  668. DECLARE_WAITQUEUE(wait, current);
  669. struct list_head      *devs, *mdevs;
  670. struct usb_midi_state *s;
  671. struct usb_mididev    *m;
  672. int flags;
  673. int succeed = 0;
  674. #if 0
  675. printk(KERN_INFO "usb-midi: Open minor= %d.n", minor);
  676. #endif
  677. for(;;) {
  678. down(&open_sem);
  679. for (devs = mididevs.next; devs != &mididevs; devs = devs->next) {
  680. s = list_entry(devs, struct usb_midi_state, mididev);
  681. for (mdevs = s->midiDevList.next; mdevs != &s->midiDevList; mdevs = mdevs->next) {
  682. m = list_entry(mdevs, struct usb_mididev, list);
  683. if ( !((m->dev_midi ^ minor) & ~0xf) )
  684. goto device_found;
  685. }
  686. }
  687. up(&open_sem);
  688. return -ENODEV;
  689. device_found:
  690. if ( !s->usbdev ) {
  691. up(&open_sem);
  692. return -EIO;
  693. }
  694. if ( !(m->open_mode & file->f_mode) ) {
  695. break;
  696. }
  697. if ( file->f_flags & O_NONBLOCK ) {
  698. up(&open_sem);
  699. return -EBUSY;
  700. }
  701. __set_current_state(TASK_INTERRUPTIBLE);
  702. add_wait_queue( &open_wait, &wait );
  703. up(&open_sem);
  704. schedule();
  705. __set_current_state(TASK_RUNNING);
  706. remove_wait_queue( &open_wait, &wait );
  707. if ( signal_pending(current) ) {
  708. return -ERESTARTSYS;
  709. }
  710. }
  711. file->private_data = m;
  712. spin_lock_irqsave( &s->lock, flags );
  713. if ( !(m->open_mode & (FMODE_READ | FMODE_WRITE)) ) {
  714. //FIXME: intented semantics unclear here
  715. m->min.bufRdPtr       = 0;
  716. m->min.bufWrPtr       = 0;
  717. m->min.bufRemains     = 0;
  718. spin_lock_init(&m->min.ep->lock);
  719. m->mout.bufPtr        = 0;
  720. m->mout.bufRemains    = 0;
  721. m->mout.isInExclusive = 0;
  722. m->mout.lastEvent     = 0;
  723. spin_lock_init(&m->mout.ep->lock);
  724. }
  725. if ( (file->f_mode & FMODE_READ) && m->min.ep != NULL ) {
  726. unsigned long int flagsep;
  727. spin_lock_irqsave( &m->min.ep->lock, flagsep );
  728. m->min.ep->cables[m->min.cableId] = m;
  729. m->min.ep->readers += 1;
  730. m->min.bufRdPtr       = 0;
  731. m->min.bufWrPtr       = 0;
  732. m->min.bufRemains     = 0;
  733. spin_unlock_irqrestore( &m->min.ep->lock, flagsep );
  734. if ( !(m->min.ep->urbSubmitted)) {
  735. /* urb->dev must be reinitialized on 2.4.x kernels */
  736. m->min.ep->urb->dev = m->min.ep->usbdev;
  737. if ( usb_submit_urb(m->min.ep->urb) ) {
  738. printk(KERN_ERR "usbmidi: Cannot submit urb for MIDI-INn");
  739. }
  740. m->min.ep->urbSubmitted = 1;
  741. }
  742. m->open_mode |= FMODE_READ;
  743. succeed = 1;
  744. }
  745. if ( (file->f_mode & FMODE_WRITE) && m->mout.ep != NULL ) {
  746. m->mout.bufPtr        = 0;
  747. m->mout.bufRemains    = 0;
  748. m->mout.isInExclusive = 0;
  749. m->mout.lastEvent     = 0;
  750. m->open_mode |= FMODE_WRITE;
  751. succeed = 1;
  752. }
  753. spin_unlock_irqrestore( &s->lock, flags );
  754. s->count++;
  755. up(&open_sem);
  756. /** Changed to prevent extra increments to USE_COUNT. **/
  757. if (!succeed) {
  758. return -EBUSY;
  759. }
  760. #if 0
  761. printk(KERN_INFO "usb-midi: Open Succeeded. minor= %d.n", minor);
  762. #endif
  763. /** Side-effect: module cannot be removed until USE_COUNT is 0. **/
  764. #ifndef MOD_INC_EACH_PROBE
  765. MOD_INC_USE_COUNT;
  766. #endif
  767. return 0; /** Success. **/
  768. }
  769. /** Basic operation on /dev/midiXX as registered through struct file_operations.
  770.  *
  771.  *  Basic contract: Close an opened file and deallocate anything we allocated.
  772.  *  Like open(), this can be missing. If open set file->private_data,
  773.  *  release() must clear it.
  774.  *
  775.  **/
  776. static int usb_midi_release(struct inode *inode, struct file *file)
  777. {
  778. struct usb_mididev *m = (struct usb_mididev *)file->private_data;
  779. struct usb_midi_state *s = (struct usb_midi_state *)m->midi;
  780. #if 0
  781. printk(KERN_INFO "usb-midi: Close.n");
  782. #endif
  783. down(&open_sem);
  784. if ( m->open_mode & FMODE_WRITE ) {
  785. m->open_mode &= ~FMODE_WRITE;
  786. usb_unlink_urb( m->mout.ep->urb );
  787. }
  788. if ( m->open_mode & FMODE_READ ) {
  789.         unsigned long int flagsep;
  790.         spin_lock_irqsave( &m->min.ep->lock, flagsep );
  791.                 m->min.ep->cables[m->min.cableId] = 0; // discard cable
  792.                 m->min.ep->readers -= 1;
  793. m->open_mode &= ~FMODE_READ;
  794. if ( m->min.ep->readers == 0 &&
  795.                      m->min.ep->urbSubmitted ) {
  796. m->min.ep->urbSubmitted = 0;
  797. usb_unlink_urb(m->min.ep->urb);
  798. }
  799.         spin_unlock_irqrestore( &m->min.ep->lock, flagsep );
  800. }
  801. s->count--;
  802. up(&open_sem);
  803. wake_up(&open_wait);
  804. file->private_data = 0;
  805. /** Sideeffect: Module cannot be removed until usecount is 0. */
  806. #ifndef MOD_INC_EACH_PROBE
  807. MOD_DEC_USE_COUNT;
  808. #endif
  809. return 0;
  810. }
  811. static struct file_operations usb_midi_fops = {
  812. llseek: usb_midi_llseek,
  813. read: usb_midi_read,
  814. write: usb_midi_write,
  815. poll: usb_midi_poll,
  816. open: usb_midi_open,
  817. release: usb_midi_release,
  818. };
  819. /* ------------------------------------------------------------------------- */
  820. /** Returns filled midi_in_endpoint structure or null on failure.
  821.  *
  822.  * Parameters:
  823.  * d        - a usb_device
  824.  * endPoint - An usb endpoint in the range 0 to 15.
  825.  * Called by allocUsbMidiDev();
  826.  *
  827.  **/
  828. static struct midi_in_endpoint *alloc_midi_in_endpoint( struct usb_device *d, int endPoint )
  829. {
  830. struct midi_in_endpoint *ep;
  831. int bufSize;
  832. int pipe;
  833. endPoint &= 0x0f; /* Silently force endPoint to lie in range 0 to 15. */
  834. pipe =  usb_rcvbulkpipe( d, endPoint );
  835. bufSize = usb_maxpacket( d, pipe, usb_pipein(pipe) );
  836. /* usb_pipein() = ! usb_pipeout() = true for an in Endpoint */
  837. ep = (struct midi_in_endpoint *)kmalloc(sizeof(struct midi_in_endpoint), GFP_KERNEL);
  838. if ( !ep ) {
  839. printk(KERN_ERR "usbmidi: no memory for midi in-endpointn");
  840. return NULL;
  841. }
  842. memset( ep, 0, sizeof(struct midi_in_endpoint) );
  843. //      this sets cables[] and readers to 0, too.
  844. //      for (i=0; i<16; i++) ep->cables[i] = 0; // discard cable
  845. //      ep->readers = 0;
  846. ep->endpoint = endPoint;
  847. ep->recvBuf = (unsigned char *)kmalloc(sizeof(unsigned char)*(bufSize), GFP_KERNEL);
  848. if ( !ep->recvBuf ) {
  849. printk(KERN_ERR "usbmidi: no memory for midi in-endpoint buffern");
  850. kfree(ep);
  851. return NULL;
  852. }
  853. ep->urb = usb_alloc_urb(0); /* no ISO */
  854. if ( !ep->urb ) {
  855. printk(KERN_ERR "usbmidi: no memory for midi in-endpoint urbn");
  856. kfree(ep->recvBuf);
  857. kfree(ep);
  858. return NULL;
  859. }
  860. FILL_BULK_URB( ep->urb, d, 
  861.        usb_rcvbulkpipe(d, endPoint),
  862.        (unsigned char *)ep->recvBuf, bufSize,
  863.        (usb_complete_t)usb_bulk_read, ep );
  864. /* ep->bufRdPtr     = 0; */
  865. /* ep->bufWrPtr     = 0; */
  866. /* ep->bufRemains   = 0; */
  867. /* ep->urbSubmitted = 0; */
  868. ep->recvBufSize  = bufSize;
  869. init_waitqueue_head(&ep->wait);
  870. return ep;
  871. }
  872. static int remove_midi_in_endpoint( struct midi_in_endpoint *min )
  873. {
  874. usb_unlink_urb( min->urb );
  875. usb_free_urb( min->urb );
  876. kfree( min->recvBuf );
  877. kfree( min );
  878. return 0;
  879. }
  880. /** Returns filled midi_out_endpoint structure or null on failure.
  881.  *
  882.  * Parameters:
  883.  * d        - a usb_device
  884.  * endPoint - An usb endpoint in the range 0 to 15.
  885.  * Called by allocUsbMidiDev();
  886.  *
  887.  **/
  888. static struct midi_out_endpoint *alloc_midi_out_endpoint( struct usb_device *d, int endPoint )
  889. {
  890. struct midi_out_endpoint *ep = NULL;
  891. int pipe;
  892. int bufSize;
  893. endPoint &= 0x0f;
  894. pipe =  usb_sndbulkpipe( d, endPoint );
  895. bufSize = usb_maxpacket( d, pipe, usb_pipeout(pipe) );
  896. ep = (struct midi_out_endpoint *)kmalloc(sizeof(struct midi_out_endpoint), GFP_KERNEL);
  897. if ( !ep ) {
  898. printk(KERN_ERR "usbmidi: no memory for midi out-endpointn");
  899. return NULL;
  900. }
  901. memset( ep, 0, sizeof(struct midi_out_endpoint) );
  902. ep->endpoint = endPoint;
  903. ep->buf = (unsigned char *)kmalloc(sizeof(unsigned char)*bufSize, GFP_KERNEL);
  904. if ( !ep->buf ) {
  905. printk(KERN_ERR "usbmidi: no memory for midi out-endpoint buffern");
  906. kfree(ep);
  907. return NULL;
  908. }
  909. ep->urb = usb_alloc_urb(0); /* no ISO */
  910. if ( !ep->urb ) {
  911. printk(KERN_ERR "usbmidi: no memory for midi out-endpoint urbn");
  912. kfree(ep->buf);
  913. kfree(ep);
  914. return NULL;
  915. }
  916. ep->bufSize       = bufSize;
  917. /* ep->bufWrPtr      = 0; */
  918. init_waitqueue_head(&ep->wait);
  919. return ep;
  920. }
  921. static int remove_midi_out_endpoint( struct midi_out_endpoint *mout )
  922. {
  923. usb_unlink_urb( mout->urb );
  924. usb_free_urb( mout->urb );
  925. kfree( mout->buf );
  926. kfree( mout );
  927. return 0;
  928. }
  929. /** Returns a filled usb_mididev structure, registered as a Linux MIDI device.
  930.  *
  931.  * Returns null if memory is not available or the device cannot be registered.
  932.  * Called by allocUsbMidiDev();
  933.  *
  934.  **/
  935. static struct usb_mididev *allocMidiDev(
  936. struct usb_midi_state *s,
  937. struct midi_in_endpoint *min,
  938. struct midi_out_endpoint *mout,
  939. int inCableId,
  940. int outCableId )
  941. {
  942. struct usb_mididev *m;
  943. m = (struct usb_mididev *)kmalloc(sizeof(struct usb_mididev), GFP_KERNEL);
  944. if (!m) {
  945. printk(KERN_ERR "usbmidi: no memory for midi devicen");
  946. return NULL;
  947. }
  948. memset(m, 0, sizeof(struct usb_mididev));
  949. if ((m->dev_midi = register_sound_midi(&usb_midi_fops, -1)) < 0) {
  950. printk(KERN_ERR "usbmidi: cannot register midi devicen");
  951. kfree(m);
  952. return NULL;
  953. }
  954. m->midi               = s;
  955. /* m->open_mode          = 0; */
  956. if ( min ) {
  957. m->min.ep             = min;
  958. m->min.ep->usbdev     = s->usbdev;
  959. m->min.cableId        = inCableId;
  960. }
  961. /* m->min.bufPtr         = 0; */
  962. /* m->min.bufRemains     = 0; */
  963. if ( mout ) {
  964. m->mout.ep            = mout;
  965. m->mout.ep->usbdev    = s->usbdev;
  966. m->mout.cableId       = outCableId;
  967. }
  968. /* m->mout.bufPtr        = 0; */
  969. /* m->mout.bufRemains    = 0; */
  970. /* m->mout.isInExclusive = 0; */
  971. /* m->mout.lastEvent     = 0; */
  972. m->singlebyte         = singlebyte;
  973. return m;
  974. }
  975. static void release_midi_device( struct usb_midi_state *s )
  976. {
  977. struct usb_mididev *m;
  978. struct midi_in_endpoint *min;
  979. struct midi_out_endpoint *mout;
  980. if ( s->count > 0 ) {
  981. up(&open_sem);
  982. return;
  983. }
  984. up( &open_sem );
  985. wake_up( &open_wait );
  986. while(!list_empty(&s->inEndpointList)) {
  987. min = list_entry(s->inEndpointList.next, struct midi_in_endpoint, list);
  988. list_del(&min->list);
  989. remove_midi_in_endpoint(min);
  990. }
  991. while(!list_empty(&s->outEndpointList)) {
  992. mout = list_entry(s->outEndpointList.next, struct midi_out_endpoint, list);
  993. list_del(&mout->list);
  994. remove_midi_out_endpoint(mout);
  995. }
  996. while(!list_empty(&s->midiDevList)) {
  997. m = list_entry(s->midiDevList.next, struct usb_mididev, list);
  998. list_del(&m->list);
  999. kfree(m);
  1000. }
  1001. kfree(s);
  1002. return;
  1003. }
  1004. /* ------------------------------------------------------------------------- */
  1005. /** Utility routine to find a descriptor in a dump of many descriptors.
  1006.  * Returns start of descriptor or NULL if not found. 
  1007.  * descStart pointer to list of interfaces.
  1008.  * descLength length (in bytes) of dump
  1009.  * after (ignored if NULL) this routine returns only descriptors after "after"
  1010.  * dtype (mandatory) The descriptor type.
  1011.  * iface (ignored if -1) returns descriptor at/following given interface
  1012.  * altSetting (ignored if -1) returns descriptor at/following given altSetting
  1013.  *
  1014.  *
  1015.  *  Called by parseDescriptor(), find_csinterface_descriptor();
  1016.  *
  1017.  */
  1018. static void *find_descriptor( void *descStart, unsigned int descLength, void *after, unsigned char dtype, int iface, int altSetting )
  1019. {
  1020. unsigned char *p, *end, *next;
  1021. int interfaceNumber = -1, altSet = -1;
  1022. p = descStart;
  1023. end = p + descLength;
  1024. for( ; p < end; ) {
  1025. if ( p[0] < 2 )
  1026. return NULL;
  1027. next = p + p[0];
  1028. if ( next > end )
  1029. return NULL;
  1030. if ( p[1] == USB_DT_INTERFACE ) {
  1031. if ( p[0] < USB_DT_INTERFACE_SIZE )
  1032. return NULL;
  1033. interfaceNumber = p[2];
  1034. altSet = p[3];
  1035. }
  1036. if ( p[1] == dtype &&
  1037.      ( !after || ( p > (unsigned char *)after) ) &&
  1038.      ( ( iface == -1) || (iface == interfaceNumber) ) &&
  1039.      ( (altSetting == -1) || (altSetting == altSet) )) {
  1040. return p;
  1041. }
  1042. p = next;
  1043. }
  1044. return NULL;
  1045. }
  1046. /** Utility to find a class-specfic interface descriptor.
  1047.  *  dsubtype is a descriptor subtype
  1048.  *  Called by parseDescriptor();
  1049.  **/
  1050. static void *find_csinterface_descriptor(void *descStart, unsigned int descLength, void *after, u8 dsubtype, int iface, int altSetting)
  1051. {
  1052. unsigned char *p;
  1053.   
  1054. p = find_descriptor( descStart, descLength, after, USB_DT_CS_INTERFACE, iface, altSetting );
  1055. while ( p ) {
  1056. if ( p[0] >= 3 && p[2] == dsubtype )
  1057. return p;
  1058. p = find_descriptor( descStart, descLength, p, USB_DT_CS_INTERFACE, 
  1059.      iface, altSetting );
  1060. }
  1061. return NULL;
  1062. }
  1063. /** The magic of making a new usb_midi_device from config happens here.
  1064.  *
  1065.  * The caller is responsible for free-ing this return value (if not NULL).
  1066.  *
  1067.  **/
  1068. static struct usb_midi_device *parse_descriptor( struct usb_device *d, unsigned char *buffer, int bufSize, unsigned int ifnum , unsigned int altSetting, int quirks)
  1069. {
  1070. struct usb_midi_device *u;
  1071. unsigned char *p1;
  1072. unsigned char *p2;
  1073. unsigned char *next;
  1074. int iep, oep;
  1075. int length;
  1076. unsigned long longBits;
  1077. int pins, nbytes, offset, shift, jack;
  1078. #ifdef HAVE_JACK_STRINGS
  1079. /** Jacks can have associated names.  **/
  1080. unsigned char jack2string[256];
  1081. #endif
  1082. u = 0;
  1083. /* find audiocontrol interface */
  1084. p1 = find_csinterface_descriptor( buffer, bufSize, NULL,
  1085.   MS_HEADER, ifnum, altSetting);
  1086. if ( !p1 ) {
  1087. goto error_end;
  1088. }
  1089. if ( p1[0] < MS_HEADER_LENGTH ) {
  1090. goto error_end;
  1091. }
  1092. /* Assume success. Since the device corresponds to USB-MIDI spec, we assume
  1093.    that the rest of the USB 2.0 spec is obeyed. */
  1094. u = (struct usb_midi_device *)kmalloc( sizeof(struct usb_midi_device), GFP_KERNEL );
  1095. if ( !u ) {
  1096. return NULL;
  1097. }
  1098. u->deviceName = 0;
  1099. u->idVendor = d->descriptor.idVendor;
  1100. u->idProduct = d->descriptor.idProduct;
  1101. u->interface = ifnum;
  1102. u->altSetting = altSetting;
  1103. u->in[0].endpoint = -1;
  1104. u->in[0].cableId = -1;
  1105. u->out[0].endpoint = -1;
  1106. u->out[0].cableId = -1;
  1107. printk(KERN_INFO "usb-midi: Found MIDIStreaming device corresponding to Release %d.%02d of spec.n",
  1108.        (p1[4] >> 4) * 10 + (p1[4] & 0x0f ),
  1109.        (p1[3] >> 4) * 10 + (p1[3] & 0x0f )
  1110. );
  1111. length = p1[5] | (p1[6] << 8);
  1112. #ifdef HAVE_JACK_STRINGS
  1113. memset(jack2string, 0, sizeof(unsigned char) * 256);
  1114. #endif
  1115. length -= p1[0];
  1116. for (p2 = p1 + p1[0]; length > 0; p2 = next) {
  1117. next = p2 + p2[0];
  1118. length -= p2[0];
  1119. if (p2[0] < 2 ) break;
  1120. if (p2[1] != USB_DT_CS_INTERFACE) break;
  1121. if (p2[2] == MIDI_IN_JACK && p2[0] >= 6 ) {
  1122. jack = p2[4];
  1123. #ifdef HAVE_JACK_STRINGS
  1124. jack2string[jack] = p2[5];
  1125. #endif
  1126. printk(KERN_INFO "usb-midi: Found IN Jack 0x%02x %sn",
  1127.        jack, (p2[3] == EMBEDDED_JACK)?"EMBEDDED":"EXTERNAL" );
  1128. } else if ( p2[2] == MIDI_OUT_JACK && p2[0] >= 6) {
  1129. pins = p2[5];
  1130. if ( p2[0] < (6 + 2 * pins) ) continue;
  1131. jack = p2[4];
  1132. #ifdef HAVE_JACK_STRINGS
  1133. jack2string[jack] = p2[5 + 2 * pins];
  1134. #endif
  1135. printk(KERN_INFO "usb-midi: Found OUT Jack 0x%02x %s, %d pinsn",
  1136.        jack, (p2[3] == EMBEDDED_JACK)?"EMBEDDED":"EXTERNAL", pins );
  1137. } else if ( p2[2] == ELEMENT_DESCRIPTOR  && p2[0]  >= 10) {
  1138. pins = p2[4];
  1139. if ( p2[0] < (9 + 2 * pins ) ) continue;
  1140. nbytes = p2[8 + 2 * pins ];
  1141. if ( p2[0] < (10 + 2 * pins + nbytes) ) continue;
  1142. longBits = 0L;
  1143. for ( offset = 0, shift = 0; offset < nbytes && offset < 8; offset ++, shift += 8) {
  1144. longBits |= ((long)(p2[9 + 2 * pins + offset])) << shift;
  1145. }
  1146. jack = p2[3];
  1147. #ifdef HAVE_JACK_STRINGS
  1148. jack2string[jack] = p2[9 + 2 * pins + nbytes];
  1149. #endif
  1150. printk(KERN_INFO "usb-midi: Found ELEMENT 0x%02x, %d/%d pins in/out, bits: 0x%016lxn",
  1151.        jack, pins, (int)(p2[5 + 2 * pins]), (long)longBits );
  1152. } else {
  1153. }
  1154. }
  1155. iep=0;
  1156. oep=0;
  1157. if (quirks==0) {
  1158. /* MIDISTREAM */
  1159. p2 = 0;
  1160. for (p1 = find_descriptor(buffer, bufSize, NULL, USB_DT_ENDPOINT,
  1161.   ifnum, altSetting ); p1; p1 = next ) {
  1162. next = find_descriptor(buffer, bufSize, p1, USB_DT_ENDPOINT,
  1163.        ifnum, altSetting ); 
  1164. p2 = find_descriptor(buffer, bufSize, p1, USB_DT_CS_ENDPOINT,
  1165.      ifnum, altSetting ); 
  1166. if ( p2 && next && ( p2 > next ) )
  1167. p2 = 0;
  1168. if ( p1[0] < 9 || !p2 || p2[0] < 4 ) continue;
  1169. if ( (p1[2] & 0x80) == 0x80 ) {
  1170. if ( iep < 15 ) {
  1171. pins = p2[3]; /* not pins -- actually "cables" */
  1172. if ( pins > 16 )
  1173. pins = 16;
  1174. u->in[iep].endpoint = p1[2];
  1175. u->in[iep].cableId = ( 1 << pins ) - 1;
  1176. if ( u->in[iep].cableId ) iep ++;
  1177. if ( iep < 15 ) {
  1178. u->in[iep].endpoint = -1;
  1179. u->in[iep].cableId = -1;
  1180. }
  1181. }
  1182. } else {
  1183. if ( oep < 15 ) {
  1184. pins = p2[3]; /* not pins -- actually "cables" */
  1185. if ( pins > 16 )
  1186. pins = 16;
  1187. u->out[oep].endpoint = p1[2];
  1188. u->out[oep].cableId = ( 1 << pins ) - 1;
  1189. if ( u->out[oep].cableId ) oep ++;
  1190. if ( oep < 15 ) {
  1191. u->out[oep].endpoint = -1;
  1192. u->out[oep].cableId = -1;
  1193. }
  1194. }
  1195. }
  1196. }
  1197. } else if (quirks==1) {
  1198. /* YAMAHA quirks */
  1199. for (p1 = find_descriptor(buffer, bufSize, NULL, USB_DT_ENDPOINT,
  1200.   ifnum, altSetting ); p1; p1 = next ) {
  1201. next = find_descriptor(buffer, bufSize, p1, USB_DT_ENDPOINT,
  1202.        ifnum, altSetting ); 
  1203. if ( p1[0] < 7 ) continue;
  1204. if ( (p1[2] & 0x80) == 0x80 ) {
  1205. if ( iep < 15 ) {
  1206. pins = iep+1;
  1207. if ( pins > 16 )
  1208. pins = 16;
  1209. u->in[iep].endpoint = p1[2];
  1210. u->in[iep].cableId = ( 1 << pins ) - 1;
  1211. if ( u->in[iep].cableId ) iep ++;
  1212. if ( iep < 15 ) {
  1213. u->in[iep].endpoint = -1;
  1214. u->in[iep].cableId = -1;
  1215. }
  1216. }
  1217. } else {
  1218. if ( oep < 15 ) {
  1219. pins = oep+1;
  1220. if ( pins > 16 )
  1221. pins = 16;
  1222. u->out[oep].endpoint = p1[2];
  1223. u->out[oep].cableId = ( 1 << pins ) - 1;
  1224. if ( u->out[oep].cableId ) oep ++;
  1225. if ( oep < 15 ) {
  1226. u->out[oep].endpoint = -1;
  1227. u->out[oep].cableId = -1;
  1228. }
  1229. }
  1230. }
  1231. }
  1232. }
  1233. if ( !iep && ! oep ) {
  1234. goto error_end;
  1235. }
  1236. return u;
  1237. error_end:
  1238. if ( u ) kfree(u);
  1239. return NULL;
  1240. }
  1241. /* ------------------------------------------------------------------------- */
  1242. /** Returns number between 0 and 16.
  1243.  *
  1244.  **/
  1245. static int on_bits( unsigned short v )
  1246. {
  1247. int i;
  1248. int ret=0;
  1249. for ( i=0 ; i<16 ; i++ ) {
  1250. if ( v & (1<<i) ) ret++;
  1251. }
  1252. return ret;
  1253. }
  1254. /** USB-device will be interrogated for altSetting.
  1255.  *
  1256.  * Returns negative on error.
  1257.  * Called by allocUsbMidiDev();
  1258.  *
  1259.  **/
  1260. static int get_alt_setting( struct usb_device *d, int ifnum )
  1261. {
  1262. int alts, alt=0;
  1263. struct usb_interface_descriptor *interface;
  1264. struct usb_endpoint_descriptor *ep;
  1265. int epin, epout;
  1266. int i;
  1267. alts = d->actconfig->interface[ifnum].num_altsetting;
  1268. for ( alt=0 ; alt<alts ; alt++ ) {
  1269. interface = &d->actconfig->interface[ifnum].altsetting[alt];
  1270. epin = -1;
  1271. epout = -1;
  1272. for ( i=0 ; i<interface->bNumEndpoints ; i++ ) {
  1273. ep = &interface->endpoint[i];
  1274. if ( (ep->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_BULK ) {
  1275. continue;
  1276. }
  1277. if ( (ep->bEndpointAddress & USB_DIR_IN) && epin < 0 ) {
  1278. epin = i;
  1279. } else if ( epout < 0 ) {
  1280. epout = i;
  1281. }
  1282. if ( epin >= 0 && epout >= 0 ) {
  1283. return alt;
  1284. }
  1285. }
  1286. }
  1287. return -ENODEV;
  1288. }
  1289. /* ------------------------------------------------------------------------- */
  1290. /** Returns 0 if successful in allocating and registering internal structures.
  1291.  * Returns negative on failure.
  1292.  * Calls allocMidiDev which additionally registers /dev/midiXX devices.
  1293.  * Writes messages on success to indicate which /dev/midiXX is which physical
  1294.  * endpoint.
  1295.  *
  1296.  **/
  1297. static int alloc_usb_midi_device( struct usb_device *d, struct usb_midi_state *s, struct usb_midi_device *u )
  1298. {
  1299. struct usb_mididev **mdevs=NULL;
  1300. struct midi_in_endpoint *mins[15], *min;
  1301. struct midi_out_endpoint *mouts[15], *mout;
  1302. int inDevs=0, outDevs=0;
  1303. int inEndpoints=0, outEndpoints=0;
  1304. int inEndpoint, outEndpoint;
  1305. int inCableId, outCableId;
  1306. int i;
  1307. int devices = 0;
  1308. int alt = 0;
  1309. /* Obtain altSetting or die.. */
  1310. alt = u->altSetting;
  1311. if ( alt < 0 ) {
  1312. alt = get_alt_setting( d, u->interface );
  1313. }
  1314. if ( alt < 0 ) { return -ENXIO; }
  1315. /* Configure interface */
  1316. if ( usb_set_interface( d, u->interface, alt ) < 0 ) {
  1317. return -ENXIO;
  1318. }
  1319. for ( i = 0 ; i < 15 ; i++ ) {
  1320. mins[i] = NULL;
  1321. mouts[i] = NULL;
  1322. }
  1323. /* Begin Allocation */
  1324. while( inEndpoints < 15
  1325.        && inDevs < maxdevices
  1326.        && u->in[inEndpoints].cableId >= 0 ) {
  1327. inDevs += on_bits((unsigned short)u->in[inEndpoints].cableId);
  1328. mins[inEndpoints] = alloc_midi_in_endpoint( d, u->in[inEndpoints].endpoint );
  1329. if ( mins[inEndpoints] == NULL ) { goto error_end; }
  1330. inEndpoints++;
  1331. }
  1332. while( outEndpoints < 15
  1333.        && outDevs < maxdevices
  1334.        && u->out[outEndpoints].cableId >= 0 ) {
  1335. outDevs += on_bits((unsigned short)u->out[outEndpoints].cableId);
  1336. mouts[outEndpoints] = alloc_midi_out_endpoint( d, u->out[outEndpoints].endpoint );
  1337. if ( mouts[outEndpoints] == NULL ) { goto error_end; }
  1338. outEndpoints++;
  1339. }
  1340. devices = inDevs > outDevs ? inDevs : outDevs;
  1341. devices = maxdevices > devices ? devices : maxdevices;
  1342. /* obtain space for device name (iProduct) if not known. */
  1343. if ( ! u->deviceName ) {
  1344. mdevs = (struct usb_mididev **)
  1345. kmalloc(sizeof(struct usb_mididevs *)*devices
  1346. + sizeof(char) * 256, GFP_KERNEL);
  1347. } else {
  1348. mdevs = (struct usb_mididev **)
  1349. kmalloc(sizeof(struct usb_mididevs *)*devices, GFP_KERNEL);
  1350. }
  1351. if ( !mdevs ) {
  1352. /* devices = 0; */
  1353. /* mdevs = NULL; */
  1354. goto error_end;
  1355. }
  1356. for ( i=0 ; i<devices ; i++ ) {
  1357. mdevs[i] = NULL;
  1358. }
  1359. /* obtain device name (iProduct) if not known. */
  1360. if ( ! u->deviceName ) {
  1361. u->deviceName = (char *) (mdevs + devices);
  1362. if ( ! d->have_langid && d->descriptor.iProduct) {
  1363. alt = usb_get_string(d, 0, 0, u->deviceName, 250);
  1364. if (alt < 0) {
  1365. printk(KERN_INFO "error getting string descriptor 0 (error=%d)n", alt);
  1366. } else if (u->deviceName[0] < 4) {
  1367. printk(KERN_INFO "string descriptor 0 too short (length = %d)n", alt);
  1368. } else {
  1369. printk(KERN_INFO "string descriptor 0 found (length = %d)n", alt);
  1370. for(; alt >= 4; alt -= 2) {
  1371. i = u->deviceName[alt-2] | (u->deviceName[alt-1]<< 8);
  1372. printk(KERN_INFO "usb-midi: langid(%d) 0x%04xn",
  1373.        (alt-4) >> 1, i);
  1374. if ( ( ( i ^ ulangid ) & 0xff ) == 0 ) {
  1375. d->have_langid = 1;
  1376. d->string_langid = i;
  1377. printk(KERN_INFO "usb-midi: langid(match) 0x%04xn", i);
  1378. if ( i == ulangid )
  1379. break;
  1380. }
  1381. }
  1382. }
  1383. }
  1384. u->deviceName[0] = (char) 0;
  1385. if (d->descriptor.iProduct) {
  1386. printk(KERN_INFO "usb-midi: fetchString(%d)n", d->descriptor.iProduct);
  1387. alt = usb_string(d, d->descriptor.iProduct, u->deviceName, 255);
  1388. if( alt < 0 ) {
  1389. u->deviceName[0] = (char) 0;
  1390. }
  1391. printk(KERN_INFO "usb-midi: fetchString = %dn", alt);
  1392. /* Failsafe */
  1393. if ( !u->deviceName[0] ) {
  1394. if ( d->descriptor.idVendor == USB_VENDOR_ID_ROLAND ) {
  1395. strcpy(u->deviceName, "Unknown Roland");
  1396. } else if ( d->descriptor.idVendor == USB_VENDOR_ID_STEINBERG  ) {
  1397. strcpy(u->deviceName, "Unknown Steinberg");
  1398. } else if ( d->descriptor.idVendor == USB_VENDOR_ID_YAMAHA ) {
  1399. strcpy(u->deviceName, "Unknown Yamaha");
  1400. } else {
  1401. strcpy(u->deviceName, "Unknown");
  1402. }
  1403. }
  1404. }
  1405. inEndpoint  = 0; inCableId  = -1;
  1406. outEndpoint = 0; outCableId = -1;
  1407. for ( i=0 ; i<devices ; i++ ) {
  1408. for ( inCableId ++ ;
  1409.       inEndpoint <15
  1410.       && mins[inEndpoint] 
  1411.       && !(u->in[inEndpoint].cableId & (1<<inCableId)) ;
  1412.       inCableId++ ) {
  1413. if ( inCableId >= 16 ) {
  1414. inEndpoint  ++;
  1415. inCableId  = 0;
  1416. }
  1417. }
  1418. min  = mins[inEndpoint];
  1419. for ( outCableId ++ ;
  1420.       outEndpoint <15
  1421.       && mouts[outEndpoint] 
  1422.       && !(u->out[outEndpoint].cableId & (1<<outCableId)) ;
  1423.       outCableId++ ) {
  1424. if ( outCableId >= 16 ) {
  1425. outEndpoint  ++;
  1426. outCableId  = 0;
  1427. }
  1428. }
  1429. mout = mouts[outEndpoint];
  1430. mdevs[i] = allocMidiDev( s, min, mout, inCableId, outCableId );
  1431. if ( mdevs[i] == NULL ) { goto error_end; }
  1432. }
  1433. /* Success! */
  1434. for ( i=0 ; i<devices ; i++ ) {
  1435. list_add_tail( &mdevs[i]->list, &s->midiDevList );
  1436. }
  1437. for ( i=0 ; i<inEndpoints ; i++ ) {
  1438. list_add_tail( &mins[i]->list, &s->inEndpointList );
  1439. }
  1440. for ( i=0 ; i<outEndpoints ; i++ ) {
  1441. list_add_tail( &mouts[i]->list, &s->outEndpointList );
  1442. }
  1443. printk(KERN_INFO "usbmidi: found [ %s ] (0x%04x:0x%04x), attached:n", u->deviceName, u->idVendor, u->idProduct );
  1444. for ( i=0 ; i<devices ; i++ ) {
  1445. int dm = (mdevs[i]->dev_midi-2)>>4;
  1446. if ( mdevs[i]->mout.ep != NULL && mdevs[i]->min.ep != NULL ) {
  1447. printk(KERN_INFO "usbmidi: /dev/midi%02d: in (ep:%02x cid:%2d bufsiz:%2d) out (ep:%02x cid:%2d bufsiz:%2d)n", 
  1448.        dm,
  1449.        mdevs[i]->min.ep->endpoint|USB_DIR_IN, mdevs[i]->min.cableId, mdevs[i]->min.ep->recvBufSize,
  1450.        mdevs[i]->mout.ep->endpoint, mdevs[i]->mout.cableId, mdevs[i]->mout.ep->bufSize);
  1451. } else if ( mdevs[i]->min.ep != NULL ) {
  1452. printk(KERN_INFO "usbmidi: /dev/midi%02d: in (ep:%02x cid:%2d bufsiz:%02d)n", 
  1453.        dm,
  1454.        mdevs[i]->min.ep->endpoint|USB_DIR_IN, mdevs[i]->min.cableId, mdevs[i]->min.ep->recvBufSize);
  1455. } else if ( mdevs[i]->mout.ep != NULL ) {
  1456. printk(KERN_INFO "usbmidi: /dev/midi%02d: out (ep:%02x cid:%2d bufsiz:%02d)n", 
  1457.        dm,
  1458.        mdevs[i]->mout.ep->endpoint, mdevs[i]->mout.cableId, mdevs[i]->mout.ep->bufSize);
  1459. }
  1460. }
  1461. kfree(mdevs);
  1462. return 0;
  1463.  error_end:
  1464. if ( mdevs != NULL && devices > 0 ) {
  1465. for ( i=0 ; i<devices ; i++ ) {
  1466. if ( mdevs[i] != NULL ) {
  1467. unregister_sound_midi( mdevs[i]->dev_midi );
  1468. kfree(mdevs[i]);
  1469. }
  1470. }
  1471. kfree(mdevs);
  1472. }
  1473. for ( i=0 ; i<15 ; i++ ) {
  1474. if ( mins[i] != NULL ) {
  1475. remove_midi_in_endpoint( mins[i] );
  1476. }
  1477. if ( mouts[i] != NULL ) {
  1478. remove_midi_out_endpoint( mouts[i] );
  1479. }
  1480. }
  1481. return -ENOMEM;
  1482. }
  1483. /* ------------------------------------------------------------------------- */
  1484. /** Attempt to scan YAMAHA's device descriptor and detect correct values of
  1485.  *  them.
  1486.  *  Return 0 on succes, negative on failure.
  1487.  *  Called by usb_midi_probe();
  1488.  **/
  1489. static int detect_yamaha_device( struct usb_device *d, unsigned int ifnum, struct usb_midi_state *s)
  1490. {
  1491. struct usb_config_descriptor    *c = d->actconfig;
  1492. struct usb_interface_descriptor *interface;
  1493. struct usb_midi_device *u;
  1494. unsigned char buf[USB_DT_CONFIG_SIZE], *buffer;
  1495. int bufSize;
  1496. int i;
  1497. int alts=-1;
  1498. int ret;
  1499. if (d->descriptor.idVendor != USB_VENDOR_ID_YAMAHA) {
  1500. return -EINVAL;
  1501. }
  1502. for ( i=0 ; i < c->interface[ifnum].num_altsetting; i++ ) {
  1503. interface = c->interface[ifnum].altsetting + i;
  1504. if ( interface->bInterfaceClass != 255 ||
  1505.      interface->bInterfaceSubClass != 0 )
  1506. continue;
  1507. alts = i;
  1508. }
  1509. if ( alts == -1 ) {
  1510. return -EINVAL;
  1511. }
  1512. printk(KERN_INFO "usb-midi: Found YAMAHA USB-MIDI device on dev %04x:%04x, iface %dn",
  1513.        d->descriptor.idVendor, d->descriptor.idProduct, ifnum);
  1514. for ( i=0 ; i < d->descriptor.bNumConfigurations ; i++ ) {
  1515. if ( d->config+i == c ) goto configfound;
  1516. }
  1517. printk(KERN_INFO "usb-midi: Config not found.n");
  1518. return -EINVAL;
  1519.  configfound:
  1520. /* this may not be necessary. */
  1521. if ( usb_set_configuration( d, c->bConfigurationValue ) < 0 ) {
  1522. printk(KERN_INFO "usb-midi: Could not set config.n");
  1523. return -EINVAL;
  1524. }
  1525. ret = usb_get_descriptor( d, USB_DT_CONFIG, i, buf, USB_DT_CONFIG_SIZE );
  1526. if ( ret < 0 ) {
  1527. printk(KERN_INFO "usb-midi: Could not get config (error=%d).n", ret);
  1528. return -EINVAL;
  1529. }
  1530. if ( buf[1] != USB_DT_CONFIG || buf[0] < USB_DT_CONFIG_SIZE ) {
  1531. printk(KERN_INFO "usb-midi: config not as expected.n");
  1532. return -EINVAL;
  1533. }
  1534. bufSize = buf[2] | buf[3]<<8;
  1535. buffer = (unsigned char *)kmalloc(sizeof(unsigned char)*bufSize, GFP_KERNEL);
  1536. if ( !buffer ) {
  1537. printk(KERN_INFO "usb-midi: Could not allocate memory.n");
  1538. return -EINVAL;
  1539. }
  1540. ret = usb_get_descriptor( d, USB_DT_CONFIG, i, buffer, bufSize );
  1541. if ( ret < 0 ) {
  1542. printk(KERN_INFO "usb-midi: Could not get full config (error=%d).n", ret);
  1543. kfree(buffer);
  1544. return -EINVAL;
  1545. }
  1546. u = parse_descriptor( d, buffer, bufSize, ifnum, alts, 1);
  1547. kfree(buffer);
  1548. if ( u == NULL ) {
  1549. return -EINVAL;
  1550. }
  1551. ret = alloc_usb_midi_device( d, s, u );
  1552. kfree(u);
  1553. return ret;
  1554. }
  1555. /** Scan table of known devices which are only partially compliant with 
  1556.  * the MIDIStreaming specification.
  1557.  * Called by usb_midi_probe();
  1558.  *
  1559.  **/
  1560. static int detect_vendor_specific_device( struct usb_device *d, unsigned int ifnum, struct usb_midi_state *s )
  1561. {
  1562. struct usb_midi_device *u;
  1563. int i;
  1564. int ret = -ENXIO;
  1565. for ( i=0; i<VENDOR_SPECIFIC_USB_MIDI_DEVICES ; i++ ) {
  1566. u=&(usb_midi_devices[i]);
  1567.     
  1568. if ( d->descriptor.idVendor != u->idVendor ||
  1569.      d->descriptor.idProduct != u->idProduct ||
  1570.      ifnum != u->interface )
  1571. continue;
  1572. ret = alloc_usb_midi_device( d, s, u );
  1573. break;
  1574. }
  1575. return ret;
  1576. }
  1577. /** Attempt to match any config of an interface to a MIDISTREAMING interface.
  1578.  *  Returns 0 on success, negative on failure.
  1579.  * Called by usb_midi_probe();
  1580.  **/
  1581. static int detect_midi_subclass(struct usb_device *d, unsigned int ifnum, struct usb_midi_state *s)
  1582. {
  1583. struct usb_config_descriptor    *c = d->actconfig;
  1584. struct usb_interface_descriptor *interface;
  1585. struct usb_midi_device *u;
  1586. unsigned char buf[USB_DT_CONFIG_SIZE], *buffer;
  1587. int bufSize;
  1588. int i;
  1589. int alts=-1;
  1590. int ret;
  1591. for ( i=0 ; i < c->interface[ifnum].num_altsetting; i++ ) {
  1592. interface = c->interface[ifnum].altsetting + i;
  1593. if ( interface->bInterfaceClass != USB_CLASS_AUDIO ||
  1594.      interface->bInterfaceSubClass != USB_SUBCLASS_MIDISTREAMING )
  1595. continue;
  1596. alts = i;
  1597. }
  1598. if ( alts == -1 ) {
  1599. return -EINVAL;
  1600. }
  1601. printk(KERN_INFO "usb-midi: Found MIDISTREAMING on dev %04x:%04x, iface %dn",
  1602.        d->descriptor.idVendor, d->descriptor.idProduct, ifnum);
  1603. for ( i=0 ; i < d->descriptor.bNumConfigurations ; i++ ) {
  1604. if ( d->config+i == c ) goto configfound;
  1605. }
  1606. printk(KERN_INFO "usb-midi: Config not found.n");
  1607. return -EINVAL;
  1608.  configfound:
  1609. /* this may not be necessary. */
  1610. if ( usb_set_configuration( d, c->bConfigurationValue ) < 0 ) {
  1611. printk(KERN_INFO "usb-midi: Could not set config.n");
  1612. return -EINVAL;
  1613. }
  1614. /* From USB Spec v2.0, Section 9.5.
  1615.    If the class or vendor specific descriptors use the same format
  1616.    as standard descriptors (e.g., start with a length byte and
  1617.    followed by a type byte), they must be returned interleaved with
  1618.    standard descriptors in the configuration information returned by
  1619.    a GetDescriptor(Configuration) request. In this case, the class
  1620.    or vendor-specific descriptors must follow a related standard
  1621.    descriptor they modify or extend.
  1622. */
  1623. ret = usb_get_descriptor( d, USB_DT_CONFIG, i, buf, USB_DT_CONFIG_SIZE );
  1624. if ( ret < 0 ) {
  1625. printk(KERN_INFO "usb-midi: Could not get config (error=%d).n", ret);
  1626. return -EINVAL;
  1627. }
  1628. if ( buf[1] != USB_DT_CONFIG || buf[0] < USB_DT_CONFIG_SIZE ) {
  1629. printk(KERN_INFO "usb-midi: config not as expected.n");
  1630. return -EINVAL;
  1631. }
  1632. bufSize = buf[2] | buf[3]<<8;
  1633. buffer = (unsigned char *)kmalloc(sizeof(unsigned char)*bufSize, GFP_KERNEL);
  1634. if ( !buffer ) {
  1635. printk(KERN_INFO "usb-midi: Could not allocate memory.n");
  1636. return -EINVAL;
  1637. }
  1638. ret = usb_get_descriptor( d, USB_DT_CONFIG, i, buffer, bufSize );
  1639. if ( ret < 0 ) {
  1640. printk(KERN_INFO "usb-midi: Could not get full config (error=%d).n", ret);
  1641. kfree(buffer);
  1642. return -EINVAL;
  1643. }
  1644. u = parse_descriptor( d, buffer, bufSize, ifnum, alts, 0);
  1645. kfree(buffer);
  1646. if ( u == NULL ) {
  1647. return -EINVAL;
  1648. }
  1649. ret = alloc_usb_midi_device( d, s, u );
  1650. kfree(u);
  1651. return ret;
  1652. }
  1653. /** When user has requested a specific device, match it exactly.
  1654.  *
  1655.  * Uses uvendor, uproduct, uinterface, ualt, umin, umout and ucable.
  1656.  * Called by usb_midi_probe();
  1657.  *
  1658.  **/
  1659. static int detect_by_hand(struct usb_device *d, unsigned int ifnum, struct usb_midi_state *s)
  1660. {
  1661. struct usb_midi_device u;
  1662. if ( d->descriptor.idVendor != uvendor ||
  1663.      d->descriptor.idProduct != uproduct ||
  1664.      ifnum != uinterface ) {
  1665. return -EINVAL;
  1666. }
  1667. if ( ualt < 0 ) { ualt = -1; }
  1668. if ( umin   < 0 || umin   > 15 ) { umin   = 0x01 | USB_DIR_IN; }
  1669. if ( umout  < 0 || umout  > 15 ) { umout  = 0x01; }
  1670. if ( ucable < 0 || ucable > 15 ) { ucable = 0; }
  1671. u.deviceName = 0; /* A flag for alloc_usb_midi_device to get device name
  1672.      from device. */
  1673. u.idVendor   = uvendor;
  1674. u.idProduct  = uproduct;
  1675. u.interface  = uinterface;
  1676. u.altSetting = ualt;
  1677. u.in[0].endpoint    = umin;
  1678. u.in[0].cableId     = (1<<ucable);
  1679. u.out[0].endpoint   = umout;
  1680. u.out[0].cableId    = (1<<ucable);
  1681. return alloc_usb_midi_device( d, s, &u );
  1682. }
  1683. /* ------------------------------------------------------------------------- */
  1684. static void *usb_midi_probe(struct usb_device *dev, unsigned int ifnum,
  1685.     const struct usb_device_id *id)
  1686. {
  1687. struct usb_midi_state *s;
  1688. s = (struct usb_midi_state *)kmalloc(sizeof(struct usb_midi_state), GFP_KERNEL);
  1689. if ( !s ) { return NULL; }
  1690. memset( s, 0, sizeof(struct usb_midi_state) );
  1691. INIT_LIST_HEAD(&s->midiDevList);
  1692. INIT_LIST_HEAD(&s->inEndpointList);
  1693. INIT_LIST_HEAD(&s->outEndpointList);
  1694. s->usbdev = dev;
  1695. s->count  = 0;
  1696. spin_lock_init(&s->lock);
  1697. if (
  1698. detect_by_hand( dev, ifnum, s ) &&
  1699. detect_midi_subclass( dev, ifnum, s ) &&
  1700. detect_vendor_specific_device( dev, ifnum, s ) &&
  1701. detect_yamaha_device( dev, ifnum, s) ) {
  1702. kfree(s);
  1703. return NULL;
  1704. }
  1705. down(&open_sem);
  1706. list_add_tail(&s->mididev, &mididevs);
  1707. up(&open_sem);
  1708. #ifdef MOD_INC_EACH_PROBE
  1709. MOD_INC_USE_COUNT;
  1710. #endif
  1711. return s;
  1712. }
  1713. static void usb_midi_disconnect(struct usb_device *dev, void *ptr)
  1714. {
  1715. struct usb_midi_state *s = (struct usb_midi_state *)ptr;
  1716. struct list_head      *list;
  1717. struct usb_mididev    *m;
  1718. if ( s == (struct usb_midi_state *)-1 ) {
  1719. return;
  1720. }
  1721. if ( !s->usbdev ) {
  1722. return;
  1723. }
  1724. down(&open_sem);
  1725. list_del(&s->mididev);
  1726. INIT_LIST_HEAD(&s->mididev);
  1727. s->usbdev = NULL;
  1728. for ( list = s->midiDevList.next; list != &s->midiDevList; list = list->next ) {
  1729. m = list_entry(list, struct usb_mididev, list);
  1730. wake_up(&(m->min.ep->wait));
  1731. wake_up(&(m->mout.ep->wait));
  1732. if ( m->dev_midi >= 0 ) {
  1733. unregister_sound_midi(m->dev_midi);
  1734. }
  1735. m->dev_midi = -1;
  1736. }
  1737. release_midi_device(s);
  1738. wake_up(&open_wait);
  1739. #ifdef MOD_INC_EACH_PROBE
  1740. MOD_DEC_USE_COUNT;
  1741. #endif
  1742. return;
  1743. }
  1744. static struct usb_driver usb_midi_driver = {
  1745. name: "midi",
  1746. probe: usb_midi_probe,
  1747. disconnect: usb_midi_disconnect,
  1748. id_table: NULL,  /* check all devices */
  1749. driver_list: LIST_HEAD_INIT(usb_midi_driver.driver_list)
  1750. };
  1751. /* ------------------------------------------------------------------------- */
  1752. int __init usb_midi_init(void)
  1753. {
  1754. if ( usb_register(&usb_midi_driver) < 0 )
  1755. return -1;
  1756. return 0;
  1757. }
  1758. void __exit usb_midi_exit(void)
  1759. {
  1760. usb_deregister(&usb_midi_driver);
  1761. }
  1762. module_init(usb_midi_init) ;
  1763. module_exit(usb_midi_exit) ;
  1764. #ifdef HAVE_ALSA_SUPPORT
  1765. #define SNDRV_MAIN_OBJECT_FILE
  1766. #include "../../include/driver.h"
  1767. #include "../../include/control.h"
  1768. #include "../../include/info.h"
  1769. #include "../../include/cs46xx.h"
  1770. /* ------------------------------------------------------------------------- */
  1771. static int snd_usbmidi_input_close(snd_rawmidi_substream_t * substream)
  1772. {
  1773. return 0;
  1774. }
  1775. static int snd_usbmidi_input_open(snd_rawmidi_substream_t * substream )
  1776. {
  1777. return 0;
  1778. }
  1779. static void snd_usbmidi_input_trigger(snd_rawmidi_substream_t * substream, int up)
  1780. {
  1781. return 0;
  1782. }
  1783. /* ------------------------------------------------------------------------- */
  1784. static int snd_usbmidi_output_close(snd_rawmidi_substream_t * substream)
  1785. {
  1786. return 0;
  1787. }
  1788. static int snd_usbmidi_output_open(snd_rawmidi_substream_t * substream)
  1789. {
  1790. return 0;
  1791. }
  1792. static void snd_usb_midi_output_trigger(snd_rawmidi_substream_t * substream,
  1793. int up)
  1794. {
  1795. return 0;
  1796. }
  1797. /* ------------------------------------------------------------------------- */
  1798. static snd_rawmidi_ops_t snd_usbmidi_output =
  1799. {
  1800.         open:           snd_usbmidi_output_open,
  1801.         close:          snd_usbmidi_output_close,
  1802.         trigger:        snd_usbmidi_output_trigger,
  1803. };
  1804. static snd_rawmidi_ops_t snd_usbmidi_input =
  1805. {
  1806.         open:           snd_usbmidi_input_open,
  1807.         close:          snd_usbmidi_input_close,
  1808.         trigger:        snd_usbmidi_input_trigger,
  1809. };
  1810. int snd_usbmidi_midi(cs46xx_t *chip, int device, snd_rawmidi_t **rrawmidi)
  1811. {
  1812. snd_rawmidi_t *rmidi;
  1813. int err;
  1814. if (rrawmidi)
  1815. *rrawmidi = NULL;
  1816. if ((err = snd_rawmidi_new(chip->card, "USB-MIDI", device, 1, 1, &rmidi)) < 0)
  1817. return err;
  1818. strcpy(rmidi->name, "USB-MIDI");
  1819. snd_rawmidi_set_ops( rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_usbmidi_output );
  1820. snd_rawmidi_set_ops( rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_usbmidi_input );
  1821. rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT | SNDRV_RAWMIDI_INFO_INPUT | SNDRV_RAWMIDI_INFO_DUPLEX;
  1822. rmidi->private_data = chip;
  1823. chip->rmidi = rmidi;
  1824. if (rrawmidi)
  1825. *rrawmidi = NULL;
  1826. return 0;
  1827. }
  1828. int snd_usbmidi_create( snd_card_t * card,
  1829. struct pci_dev * pci,
  1830. usbmidi_t ** rchip )
  1831. {
  1832. usbmidi_t *chip;
  1833. int err, idx;
  1834. snd_region_t *region;
  1835. static snd_device_opt_t ops = {
  1836. dev_free: snd_usbmidi_dev_free,
  1837. };
  1838. *rchip = NULL;
  1839. chip = snd_magic_kcalloc( usbmidi_t, 0, GFP_KERNEL );
  1840. if ( chip == NULL )
  1841. return -ENOMEM;
  1842. }
  1843. EXPORT_SYMBOL(snd_usbmidi_create);
  1844. EXPORT_SYMBOL(snd_usbmidi_midi);
  1845. #endif /* HAVE_ALSA_SUPPORT */