oxfw.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * oxfw.h - a part of driver for OXFW970/971 based devices
  3. *
  4. * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
  5. * Licensed under the terms of the GNU General Public License, version 2.
  6. */
  7. #include <linux/device.h>
  8. #include <linux/firewire.h>
  9. #include <linux/firewire-constants.h>
  10. #include <linux/module.h>
  11. #include <linux/mod_devicetable.h>
  12. #include <linux/mutex.h>
  13. #include <linux/slab.h>
  14. #include <linux/compat.h>
  15. #include <linux/sched/signal.h>
  16. #include <sound/control.h>
  17. #include <sound/core.h>
  18. #include <sound/initval.h>
  19. #include <sound/pcm.h>
  20. #include <sound/pcm_params.h>
  21. #include <sound/info.h>
  22. #include <sound/rawmidi.h>
  23. #include <sound/firewire.h>
  24. #include <sound/hwdep.h>
  25. #include "../lib.h"
  26. #include "../fcp.h"
  27. #include "../packets-buffer.h"
  28. #include "../iso-resources.h"
  29. #include "../amdtp-am824.h"
  30. #include "../cmp.h"
  31. /* This is an arbitrary number for convinience. */
  32. #define SND_OXFW_STREAM_FORMAT_ENTRIES 10
  33. struct snd_oxfw {
  34. struct snd_card *card;
  35. struct fw_unit *unit;
  36. struct mutex mutex;
  37. spinlock_t lock;
  38. bool registered;
  39. struct delayed_work dwork;
  40. bool wrong_dbs;
  41. bool has_output;
  42. u8 *tx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
  43. u8 *rx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
  44. bool assumed;
  45. struct cmp_connection out_conn;
  46. struct cmp_connection in_conn;
  47. struct amdtp_stream tx_stream;
  48. struct amdtp_stream rx_stream;
  49. unsigned int capture_substreams;
  50. unsigned int playback_substreams;
  51. unsigned int midi_input_ports;
  52. unsigned int midi_output_ports;
  53. int dev_lock_count;
  54. bool dev_lock_changed;
  55. wait_queue_head_t hwdep_wait;
  56. const struct ieee1394_device_id *entry;
  57. void *spec;
  58. };
  59. /*
  60. * AV/C Stream Format Information Specification 1.1 Working Draft
  61. * (Apr 2005, 1394TA)
  62. */
  63. int avc_stream_set_format(struct fw_unit *unit, enum avc_general_plug_dir dir,
  64. unsigned int pid, u8 *format, unsigned int len);
  65. int avc_stream_get_format(struct fw_unit *unit,
  66. enum avc_general_plug_dir dir, unsigned int pid,
  67. u8 *buf, unsigned int *len, unsigned int eid);
  68. static inline int
  69. avc_stream_get_format_single(struct fw_unit *unit,
  70. enum avc_general_plug_dir dir, unsigned int pid,
  71. u8 *buf, unsigned int *len)
  72. {
  73. return avc_stream_get_format(unit, dir, pid, buf, len, 0xff);
  74. }
  75. static inline int
  76. avc_stream_get_format_list(struct fw_unit *unit,
  77. enum avc_general_plug_dir dir, unsigned int pid,
  78. u8 *buf, unsigned int *len,
  79. unsigned int eid)
  80. {
  81. return avc_stream_get_format(unit, dir, pid, buf, len, eid);
  82. }
  83. /*
  84. * AV/C Digital Interface Command Set General Specification 4.2
  85. * (Sep 2004, 1394TA)
  86. */
  87. int avc_general_inquiry_sig_fmt(struct fw_unit *unit, unsigned int rate,
  88. enum avc_general_plug_dir dir,
  89. unsigned short pid);
  90. int snd_oxfw_stream_init_simplex(struct snd_oxfw *oxfw,
  91. struct amdtp_stream *stream);
  92. int snd_oxfw_stream_start_simplex(struct snd_oxfw *oxfw,
  93. struct amdtp_stream *stream,
  94. unsigned int rate, unsigned int pcm_channels);
  95. void snd_oxfw_stream_stop_simplex(struct snd_oxfw *oxfw,
  96. struct amdtp_stream *stream);
  97. void snd_oxfw_stream_destroy_simplex(struct snd_oxfw *oxfw,
  98. struct amdtp_stream *stream);
  99. void snd_oxfw_stream_update_simplex(struct snd_oxfw *oxfw,
  100. struct amdtp_stream *stream);
  101. struct snd_oxfw_stream_formation {
  102. unsigned int rate;
  103. unsigned int pcm;
  104. unsigned int midi;
  105. };
  106. int snd_oxfw_stream_parse_format(u8 *format,
  107. struct snd_oxfw_stream_formation *formation);
  108. int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw,
  109. enum avc_general_plug_dir dir,
  110. struct snd_oxfw_stream_formation *formation);
  111. int snd_oxfw_stream_discover(struct snd_oxfw *oxfw);
  112. void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw);
  113. int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw);
  114. void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw);
  115. int snd_oxfw_create_pcm(struct snd_oxfw *oxfw);
  116. void snd_oxfw_proc_init(struct snd_oxfw *oxfw);
  117. int snd_oxfw_create_midi(struct snd_oxfw *oxfw);
  118. int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw);
  119. int snd_oxfw_add_spkr(struct snd_oxfw *oxfw, bool is_lacie);
  120. int snd_oxfw_scs1x_add(struct snd_oxfw *oxfw);
  121. void snd_oxfw_scs1x_update(struct snd_oxfw *oxfw);