seq_ports.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. /*
  2. * ALSA sequencer Ports
  3. * Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
  4. * Jaroslav Kysela <perex@perex.cz>
  5. *
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. #include <sound/core.h>
  23. #include <linux/slab.h>
  24. #include <linux/module.h>
  25. #include "seq_system.h"
  26. #include "seq_ports.h"
  27. #include "seq_clientmgr.h"
  28. /*
  29. registration of client ports
  30. */
  31. /*
  32. NOTE: the current implementation of the port structure as a linked list is
  33. not optimal for clients that have many ports. For sending messages to all
  34. subscribers of a port we first need to find the address of the port
  35. structure, which means we have to traverse the list. A direct access table
  36. (array) would be better, but big preallocated arrays waste memory.
  37. Possible actions:
  38. 1) leave it this way, a client does normaly does not have more than a few
  39. ports
  40. 2) replace the linked list of ports by a array of pointers which is
  41. dynamicly kmalloced. When a port is added or deleted we can simply allocate
  42. a new array, copy the corresponding pointers, and delete the old one. We
  43. then only need a pointer to this array, and an integer that tells us how
  44. much elements are in array.
  45. */
  46. /* return pointer to port structure - port is locked if found */
  47. struct snd_seq_client_port *snd_seq_port_use_ptr(struct snd_seq_client *client,
  48. int num)
  49. {
  50. struct snd_seq_client_port *port;
  51. if (client == NULL)
  52. return NULL;
  53. read_lock(&client->ports_lock);
  54. list_for_each_entry(port, &client->ports_list_head, list) {
  55. if (port->addr.port == num) {
  56. if (port->closing)
  57. break; /* deleting now */
  58. snd_use_lock_use(&port->use_lock);
  59. read_unlock(&client->ports_lock);
  60. return port;
  61. }
  62. }
  63. read_unlock(&client->ports_lock);
  64. return NULL; /* not found */
  65. }
  66. /* search for the next port - port is locked if found */
  67. struct snd_seq_client_port *snd_seq_port_query_nearest(struct snd_seq_client *client,
  68. struct snd_seq_port_info *pinfo)
  69. {
  70. int num;
  71. struct snd_seq_client_port *port, *found;
  72. num = pinfo->addr.port;
  73. found = NULL;
  74. read_lock(&client->ports_lock);
  75. list_for_each_entry(port, &client->ports_list_head, list) {
  76. if (port->addr.port < num)
  77. continue;
  78. if (port->addr.port == num) {
  79. found = port;
  80. break;
  81. }
  82. if (found == NULL || port->addr.port < found->addr.port)
  83. found = port;
  84. }
  85. if (found) {
  86. if (found->closing)
  87. found = NULL;
  88. else
  89. snd_use_lock_use(&found->use_lock);
  90. }
  91. read_unlock(&client->ports_lock);
  92. return found;
  93. }
  94. /* initialize snd_seq_port_subs_info */
  95. static void port_subs_info_init(struct snd_seq_port_subs_info *grp)
  96. {
  97. INIT_LIST_HEAD(&grp->list_head);
  98. grp->count = 0;
  99. grp->exclusive = 0;
  100. rwlock_init(&grp->list_lock);
  101. init_rwsem(&grp->list_mutex);
  102. grp->open = NULL;
  103. grp->close = NULL;
  104. }
  105. /* create a port, port number is returned (-1 on failure);
  106. * the caller needs to unref the port via snd_seq_port_unlock() appropriately
  107. */
  108. struct snd_seq_client_port *snd_seq_create_port(struct snd_seq_client *client,
  109. int port)
  110. {
  111. unsigned long flags;
  112. struct snd_seq_client_port *new_port, *p;
  113. int num = -1;
  114. /* sanity check */
  115. if (snd_BUG_ON(!client))
  116. return NULL;
  117. if (client->num_ports >= SNDRV_SEQ_MAX_PORTS) {
  118. pr_warn("ALSA: seq: too many ports for client %d\n", client->number);
  119. return NULL;
  120. }
  121. /* create a new port */
  122. new_port = kzalloc(sizeof(*new_port), GFP_KERNEL);
  123. if (!new_port)
  124. return NULL; /* failure, out of memory */
  125. /* init port data */
  126. new_port->addr.client = client->number;
  127. new_port->addr.port = -1;
  128. new_port->owner = THIS_MODULE;
  129. sprintf(new_port->name, "port-%d", num);
  130. snd_use_lock_init(&new_port->use_lock);
  131. port_subs_info_init(&new_port->c_src);
  132. port_subs_info_init(&new_port->c_dest);
  133. snd_use_lock_use(&new_port->use_lock);
  134. num = port >= 0 ? port : 0;
  135. mutex_lock(&client->ports_mutex);
  136. write_lock_irqsave(&client->ports_lock, flags);
  137. list_for_each_entry(p, &client->ports_list_head, list) {
  138. if (p->addr.port > num)
  139. break;
  140. if (port < 0) /* auto-probe mode */
  141. num = p->addr.port + 1;
  142. }
  143. /* insert the new port */
  144. list_add_tail(&new_port->list, &p->list);
  145. client->num_ports++;
  146. new_port->addr.port = num; /* store the port number in the port */
  147. sprintf(new_port->name, "port-%d", num);
  148. write_unlock_irqrestore(&client->ports_lock, flags);
  149. mutex_unlock(&client->ports_mutex);
  150. return new_port;
  151. }
  152. /* */
  153. static int subscribe_port(struct snd_seq_client *client,
  154. struct snd_seq_client_port *port,
  155. struct snd_seq_port_subs_info *grp,
  156. struct snd_seq_port_subscribe *info, int send_ack);
  157. static int unsubscribe_port(struct snd_seq_client *client,
  158. struct snd_seq_client_port *port,
  159. struct snd_seq_port_subs_info *grp,
  160. struct snd_seq_port_subscribe *info, int send_ack);
  161. static struct snd_seq_client_port *get_client_port(struct snd_seq_addr *addr,
  162. struct snd_seq_client **cp)
  163. {
  164. struct snd_seq_client_port *p;
  165. *cp = snd_seq_client_use_ptr(addr->client);
  166. if (*cp) {
  167. p = snd_seq_port_use_ptr(*cp, addr->port);
  168. if (! p) {
  169. snd_seq_client_unlock(*cp);
  170. *cp = NULL;
  171. }
  172. return p;
  173. }
  174. return NULL;
  175. }
  176. static void delete_and_unsubscribe_port(struct snd_seq_client *client,
  177. struct snd_seq_client_port *port,
  178. struct snd_seq_subscribers *subs,
  179. bool is_src, bool ack);
  180. static inline struct snd_seq_subscribers *
  181. get_subscriber(struct list_head *p, bool is_src)
  182. {
  183. if (is_src)
  184. return list_entry(p, struct snd_seq_subscribers, src_list);
  185. else
  186. return list_entry(p, struct snd_seq_subscribers, dest_list);
  187. }
  188. /*
  189. * remove all subscribers on the list
  190. * this is called from port_delete, for each src and dest list.
  191. */
  192. static void clear_subscriber_list(struct snd_seq_client *client,
  193. struct snd_seq_client_port *port,
  194. struct snd_seq_port_subs_info *grp,
  195. int is_src)
  196. {
  197. struct list_head *p, *n;
  198. list_for_each_safe(p, n, &grp->list_head) {
  199. struct snd_seq_subscribers *subs;
  200. struct snd_seq_client *c;
  201. struct snd_seq_client_port *aport;
  202. subs = get_subscriber(p, is_src);
  203. if (is_src)
  204. aport = get_client_port(&subs->info.dest, &c);
  205. else
  206. aport = get_client_port(&subs->info.sender, &c);
  207. delete_and_unsubscribe_port(client, port, subs, is_src, false);
  208. if (!aport) {
  209. /* looks like the connected port is being deleted.
  210. * we decrease the counter, and when both ports are deleted
  211. * remove the subscriber info
  212. */
  213. if (atomic_dec_and_test(&subs->ref_count))
  214. kfree(subs);
  215. continue;
  216. }
  217. /* ok we got the connected port */
  218. delete_and_unsubscribe_port(c, aport, subs, !is_src, true);
  219. kfree(subs);
  220. snd_seq_port_unlock(aport);
  221. snd_seq_client_unlock(c);
  222. }
  223. }
  224. /* delete port data */
  225. static int port_delete(struct snd_seq_client *client,
  226. struct snd_seq_client_port *port)
  227. {
  228. /* set closing flag and wait for all port access are gone */
  229. port->closing = 1;
  230. snd_use_lock_sync(&port->use_lock);
  231. /* clear subscribers info */
  232. clear_subscriber_list(client, port, &port->c_src, true);
  233. clear_subscriber_list(client, port, &port->c_dest, false);
  234. if (port->private_free)
  235. port->private_free(port->private_data);
  236. snd_BUG_ON(port->c_src.count != 0);
  237. snd_BUG_ON(port->c_dest.count != 0);
  238. kfree(port);
  239. return 0;
  240. }
  241. /* delete a port with the given port id */
  242. int snd_seq_delete_port(struct snd_seq_client *client, int port)
  243. {
  244. unsigned long flags;
  245. struct snd_seq_client_port *found = NULL, *p;
  246. mutex_lock(&client->ports_mutex);
  247. write_lock_irqsave(&client->ports_lock, flags);
  248. list_for_each_entry(p, &client->ports_list_head, list) {
  249. if (p->addr.port == port) {
  250. /* ok found. delete from the list at first */
  251. list_del(&p->list);
  252. client->num_ports--;
  253. found = p;
  254. break;
  255. }
  256. }
  257. write_unlock_irqrestore(&client->ports_lock, flags);
  258. mutex_unlock(&client->ports_mutex);
  259. if (found)
  260. return port_delete(client, found);
  261. else
  262. return -ENOENT;
  263. }
  264. /* delete the all ports belonging to the given client */
  265. int snd_seq_delete_all_ports(struct snd_seq_client *client)
  266. {
  267. unsigned long flags;
  268. struct list_head deleted_list;
  269. struct snd_seq_client_port *port, *tmp;
  270. /* move the port list to deleted_list, and
  271. * clear the port list in the client data.
  272. */
  273. mutex_lock(&client->ports_mutex);
  274. write_lock_irqsave(&client->ports_lock, flags);
  275. if (! list_empty(&client->ports_list_head)) {
  276. list_add(&deleted_list, &client->ports_list_head);
  277. list_del_init(&client->ports_list_head);
  278. } else {
  279. INIT_LIST_HEAD(&deleted_list);
  280. }
  281. client->num_ports = 0;
  282. write_unlock_irqrestore(&client->ports_lock, flags);
  283. /* remove each port in deleted_list */
  284. list_for_each_entry_safe(port, tmp, &deleted_list, list) {
  285. list_del(&port->list);
  286. snd_seq_system_client_ev_port_exit(port->addr.client, port->addr.port);
  287. port_delete(client, port);
  288. }
  289. mutex_unlock(&client->ports_mutex);
  290. return 0;
  291. }
  292. /* set port info fields */
  293. int snd_seq_set_port_info(struct snd_seq_client_port * port,
  294. struct snd_seq_port_info * info)
  295. {
  296. if (snd_BUG_ON(!port || !info))
  297. return -EINVAL;
  298. /* set port name */
  299. if (info->name[0])
  300. strlcpy(port->name, info->name, sizeof(port->name));
  301. /* set capabilities */
  302. port->capability = info->capability;
  303. /* get port type */
  304. port->type = info->type;
  305. /* information about supported channels/voices */
  306. port->midi_channels = info->midi_channels;
  307. port->midi_voices = info->midi_voices;
  308. port->synth_voices = info->synth_voices;
  309. /* timestamping */
  310. port->timestamping = (info->flags & SNDRV_SEQ_PORT_FLG_TIMESTAMP) ? 1 : 0;
  311. port->time_real = (info->flags & SNDRV_SEQ_PORT_FLG_TIME_REAL) ? 1 : 0;
  312. port->time_queue = info->time_queue;
  313. return 0;
  314. }
  315. /* get port info fields */
  316. int snd_seq_get_port_info(struct snd_seq_client_port * port,
  317. struct snd_seq_port_info * info)
  318. {
  319. if (snd_BUG_ON(!port || !info))
  320. return -EINVAL;
  321. /* get port name */
  322. strlcpy(info->name, port->name, sizeof(info->name));
  323. /* get capabilities */
  324. info->capability = port->capability;
  325. /* get port type */
  326. info->type = port->type;
  327. /* information about supported channels/voices */
  328. info->midi_channels = port->midi_channels;
  329. info->midi_voices = port->midi_voices;
  330. info->synth_voices = port->synth_voices;
  331. /* get subscriber counts */
  332. info->read_use = port->c_src.count;
  333. info->write_use = port->c_dest.count;
  334. /* timestamping */
  335. info->flags = 0;
  336. if (port->timestamping) {
  337. info->flags |= SNDRV_SEQ_PORT_FLG_TIMESTAMP;
  338. if (port->time_real)
  339. info->flags |= SNDRV_SEQ_PORT_FLG_TIME_REAL;
  340. info->time_queue = port->time_queue;
  341. }
  342. return 0;
  343. }
  344. /*
  345. * call callback functions (if any):
  346. * the callbacks are invoked only when the first (for connection) or
  347. * the last subscription (for disconnection) is done. Second or later
  348. * subscription results in increment of counter, but no callback is
  349. * invoked.
  350. * This feature is useful if these callbacks are associated with
  351. * initialization or termination of devices (see seq_midi.c).
  352. */
  353. static int subscribe_port(struct snd_seq_client *client,
  354. struct snd_seq_client_port *port,
  355. struct snd_seq_port_subs_info *grp,
  356. struct snd_seq_port_subscribe *info,
  357. int send_ack)
  358. {
  359. int err = 0;
  360. if (!try_module_get(port->owner))
  361. return -EFAULT;
  362. grp->count++;
  363. if (grp->open && grp->count == 1) {
  364. err = grp->open(port->private_data, info);
  365. if (err < 0) {
  366. module_put(port->owner);
  367. grp->count--;
  368. }
  369. }
  370. if (err >= 0 && send_ack && client->type == USER_CLIENT)
  371. snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
  372. info, SNDRV_SEQ_EVENT_PORT_SUBSCRIBED);
  373. return err;
  374. }
  375. static int unsubscribe_port(struct snd_seq_client *client,
  376. struct snd_seq_client_port *port,
  377. struct snd_seq_port_subs_info *grp,
  378. struct snd_seq_port_subscribe *info,
  379. int send_ack)
  380. {
  381. int err = 0;
  382. if (! grp->count)
  383. return -EINVAL;
  384. grp->count--;
  385. if (grp->close && grp->count == 0)
  386. err = grp->close(port->private_data, info);
  387. if (send_ack && client->type == USER_CLIENT)
  388. snd_seq_client_notify_subscription(port->addr.client, port->addr.port,
  389. info, SNDRV_SEQ_EVENT_PORT_UNSUBSCRIBED);
  390. module_put(port->owner);
  391. return err;
  392. }
  393. /* check if both addresses are identical */
  394. static inline int addr_match(struct snd_seq_addr *r, struct snd_seq_addr *s)
  395. {
  396. return (r->client == s->client) && (r->port == s->port);
  397. }
  398. /* check the two subscribe info match */
  399. /* if flags is zero, checks only sender and destination addresses */
  400. static int match_subs_info(struct snd_seq_port_subscribe *r,
  401. struct snd_seq_port_subscribe *s)
  402. {
  403. if (addr_match(&r->sender, &s->sender) &&
  404. addr_match(&r->dest, &s->dest)) {
  405. if (r->flags && r->flags == s->flags)
  406. return r->queue == s->queue;
  407. else if (! r->flags)
  408. return 1;
  409. }
  410. return 0;
  411. }
  412. static int check_and_subscribe_port(struct snd_seq_client *client,
  413. struct snd_seq_client_port *port,
  414. struct snd_seq_subscribers *subs,
  415. bool is_src, bool exclusive, bool ack)
  416. {
  417. struct snd_seq_port_subs_info *grp;
  418. struct list_head *p;
  419. struct snd_seq_subscribers *s;
  420. int err;
  421. grp = is_src ? &port->c_src : &port->c_dest;
  422. err = -EBUSY;
  423. down_write(&grp->list_mutex);
  424. if (exclusive) {
  425. if (!list_empty(&grp->list_head))
  426. goto __error;
  427. } else {
  428. if (grp->exclusive)
  429. goto __error;
  430. /* check whether already exists */
  431. list_for_each(p, &grp->list_head) {
  432. s = get_subscriber(p, is_src);
  433. if (match_subs_info(&subs->info, &s->info))
  434. goto __error;
  435. }
  436. }
  437. err = subscribe_port(client, port, grp, &subs->info, ack);
  438. if (err < 0) {
  439. grp->exclusive = 0;
  440. goto __error;
  441. }
  442. /* add to list */
  443. write_lock_irq(&grp->list_lock);
  444. if (is_src)
  445. list_add_tail(&subs->src_list, &grp->list_head);
  446. else
  447. list_add_tail(&subs->dest_list, &grp->list_head);
  448. grp->exclusive = exclusive;
  449. atomic_inc(&subs->ref_count);
  450. write_unlock_irq(&grp->list_lock);
  451. err = 0;
  452. __error:
  453. up_write(&grp->list_mutex);
  454. return err;
  455. }
  456. static void delete_and_unsubscribe_port(struct snd_seq_client *client,
  457. struct snd_seq_client_port *port,
  458. struct snd_seq_subscribers *subs,
  459. bool is_src, bool ack)
  460. {
  461. struct snd_seq_port_subs_info *grp;
  462. struct list_head *list;
  463. bool empty;
  464. grp = is_src ? &port->c_src : &port->c_dest;
  465. list = is_src ? &subs->src_list : &subs->dest_list;
  466. down_write(&grp->list_mutex);
  467. write_lock_irq(&grp->list_lock);
  468. empty = list_empty(list);
  469. if (!empty)
  470. list_del_init(list);
  471. grp->exclusive = 0;
  472. write_unlock_irq(&grp->list_lock);
  473. up_write(&grp->list_mutex);
  474. if (!empty)
  475. unsubscribe_port(client, port, grp, &subs->info, ack);
  476. }
  477. /* connect two ports */
  478. int snd_seq_port_connect(struct snd_seq_client *connector,
  479. struct snd_seq_client *src_client,
  480. struct snd_seq_client_port *src_port,
  481. struct snd_seq_client *dest_client,
  482. struct snd_seq_client_port *dest_port,
  483. struct snd_seq_port_subscribe *info)
  484. {
  485. struct snd_seq_subscribers *subs;
  486. bool exclusive;
  487. int err;
  488. subs = kzalloc(sizeof(*subs), GFP_KERNEL);
  489. if (!subs)
  490. return -ENOMEM;
  491. subs->info = *info;
  492. atomic_set(&subs->ref_count, 0);
  493. INIT_LIST_HEAD(&subs->src_list);
  494. INIT_LIST_HEAD(&subs->dest_list);
  495. exclusive = !!(info->flags & SNDRV_SEQ_PORT_SUBS_EXCLUSIVE);
  496. err = check_and_subscribe_port(src_client, src_port, subs, true,
  497. exclusive,
  498. connector->number != src_client->number);
  499. if (err < 0)
  500. goto error;
  501. err = check_and_subscribe_port(dest_client, dest_port, subs, false,
  502. exclusive,
  503. connector->number != dest_client->number);
  504. if (err < 0)
  505. goto error_dest;
  506. return 0;
  507. error_dest:
  508. delete_and_unsubscribe_port(src_client, src_port, subs, true,
  509. connector->number != src_client->number);
  510. error:
  511. kfree(subs);
  512. return err;
  513. }
  514. /* remove the connection */
  515. int snd_seq_port_disconnect(struct snd_seq_client *connector,
  516. struct snd_seq_client *src_client,
  517. struct snd_seq_client_port *src_port,
  518. struct snd_seq_client *dest_client,
  519. struct snd_seq_client_port *dest_port,
  520. struct snd_seq_port_subscribe *info)
  521. {
  522. struct snd_seq_port_subs_info *src = &src_port->c_src;
  523. struct snd_seq_subscribers *subs;
  524. int err = -ENOENT;
  525. down_write(&src->list_mutex);
  526. /* look for the connection */
  527. list_for_each_entry(subs, &src->list_head, src_list) {
  528. if (match_subs_info(info, &subs->info)) {
  529. atomic_dec(&subs->ref_count); /* mark as not ready */
  530. err = 0;
  531. break;
  532. }
  533. }
  534. up_write(&src->list_mutex);
  535. if (err < 0)
  536. return err;
  537. delete_and_unsubscribe_port(src_client, src_port, subs, true,
  538. connector->number != src_client->number);
  539. delete_and_unsubscribe_port(dest_client, dest_port, subs, false,
  540. connector->number != dest_client->number);
  541. kfree(subs);
  542. return 0;
  543. }
  544. /* get matched subscriber */
  545. struct snd_seq_subscribers *snd_seq_port_get_subscription(struct snd_seq_port_subs_info *src_grp,
  546. struct snd_seq_addr *dest_addr)
  547. {
  548. struct snd_seq_subscribers *s, *found = NULL;
  549. down_read(&src_grp->list_mutex);
  550. list_for_each_entry(s, &src_grp->list_head, src_list) {
  551. if (addr_match(dest_addr, &s->info.dest)) {
  552. found = s;
  553. break;
  554. }
  555. }
  556. up_read(&src_grp->list_mutex);
  557. return found;
  558. }
  559. /*
  560. * Attach a device driver that wants to receive events from the
  561. * sequencer. Returns the new port number on success.
  562. * A driver that wants to receive the events converted to midi, will
  563. * use snd_seq_midisynth_register_port().
  564. */
  565. /* exported */
  566. int snd_seq_event_port_attach(int client,
  567. struct snd_seq_port_callback *pcbp,
  568. int cap, int type, int midi_channels,
  569. int midi_voices, char *portname)
  570. {
  571. struct snd_seq_port_info portinfo;
  572. int ret;
  573. /* Set up the port */
  574. memset(&portinfo, 0, sizeof(portinfo));
  575. portinfo.addr.client = client;
  576. strlcpy(portinfo.name, portname ? portname : "Unamed port",
  577. sizeof(portinfo.name));
  578. portinfo.capability = cap;
  579. portinfo.type = type;
  580. portinfo.kernel = pcbp;
  581. portinfo.midi_channels = midi_channels;
  582. portinfo.midi_voices = midi_voices;
  583. /* Create it */
  584. ret = snd_seq_kernel_client_ctl(client,
  585. SNDRV_SEQ_IOCTL_CREATE_PORT,
  586. &portinfo);
  587. if (ret >= 0)
  588. ret = portinfo.addr.port;
  589. return ret;
  590. }
  591. EXPORT_SYMBOL(snd_seq_event_port_attach);
  592. /*
  593. * Detach the driver from a port.
  594. */
  595. /* exported */
  596. int snd_seq_event_port_detach(int client, int port)
  597. {
  598. struct snd_seq_port_info portinfo;
  599. int err;
  600. memset(&portinfo, 0, sizeof(portinfo));
  601. portinfo.addr.client = client;
  602. portinfo.addr.port = port;
  603. err = snd_seq_kernel_client_ctl(client,
  604. SNDRV_SEQ_IOCTL_DELETE_PORT,
  605. &portinfo);
  606. return err;
  607. }
  608. EXPORT_SYMBOL(snd_seq_event_port_detach);