oxfw.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 <sound/control.h>
  16. #include <sound/core.h>
  17. #include <sound/initval.h>
  18. #include <sound/pcm.h>
  19. #include <sound/pcm_params.h>
  20. #include <sound/info.h>
  21. #include <sound/rawmidi.h>
  22. #include <sound/firewire.h>
  23. #include <sound/hwdep.h>
  24. #include "../lib.h"
  25. #include "../fcp.h"
  26. #include "../packets-buffer.h"
  27. #include "../iso-resources.h"
  28. #include "../amdtp-am824.h"
  29. #include "../cmp.h"
  30. struct device_info {
  31. const char *driver_name;
  32. const char *vendor_name;
  33. const char *model_name;
  34. unsigned int mixer_channels;
  35. u8 mute_fb_id;
  36. u8 volume_fb_id;
  37. };
  38. /* This is an arbitrary number for convinience. */
  39. #define SND_OXFW_STREAM_FORMAT_ENTRIES 10
  40. struct snd_oxfw {
  41. struct snd_card *card;
  42. struct fw_unit *unit;
  43. const struct device_info *device_info;
  44. struct mutex mutex;
  45. spinlock_t lock;
  46. bool wrong_dbs;
  47. bool has_output;
  48. u8 *tx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
  49. u8 *rx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES];
  50. bool assumed;
  51. struct cmp_connection out_conn;
  52. struct cmp_connection in_conn;
  53. struct amdtp_stream tx_stream;
  54. struct amdtp_stream rx_stream;
  55. unsigned int capture_substreams;
  56. unsigned int playback_substreams;
  57. unsigned int midi_input_ports;
  58. unsigned int midi_output_ports;
  59. bool mute;
  60. s16 volume[6];
  61. s16 volume_min;
  62. s16 volume_max;
  63. int dev_lock_count;
  64. bool dev_lock_changed;
  65. wait_queue_head_t hwdep_wait;
  66. };
  67. /*
  68. * AV/C Stream Format Information Specification 1.1 Working Draft
  69. * (Apr 2005, 1394TA)
  70. */
  71. int avc_stream_set_format(struct fw_unit *unit, enum avc_general_plug_dir dir,
  72. unsigned int pid, u8 *format, unsigned int len);
  73. int avc_stream_get_format(struct fw_unit *unit,
  74. enum avc_general_plug_dir dir, unsigned int pid,
  75. u8 *buf, unsigned int *len, unsigned int eid);
  76. static inline int
  77. avc_stream_get_format_single(struct fw_unit *unit,
  78. enum avc_general_plug_dir dir, unsigned int pid,
  79. u8 *buf, unsigned int *len)
  80. {
  81. return avc_stream_get_format(unit, dir, pid, buf, len, 0xff);
  82. }
  83. static inline int
  84. avc_stream_get_format_list(struct fw_unit *unit,
  85. enum avc_general_plug_dir dir, unsigned int pid,
  86. u8 *buf, unsigned int *len,
  87. unsigned int eid)
  88. {
  89. return avc_stream_get_format(unit, dir, pid, buf, len, eid);
  90. }
  91. /*
  92. * AV/C Digital Interface Command Set General Specification 4.2
  93. * (Sep 2004, 1394TA)
  94. */
  95. int avc_general_inquiry_sig_fmt(struct fw_unit *unit, unsigned int rate,
  96. enum avc_general_plug_dir dir,
  97. unsigned short pid);
  98. int snd_oxfw_stream_init_simplex(struct snd_oxfw *oxfw,
  99. struct amdtp_stream *stream);
  100. int snd_oxfw_stream_start_simplex(struct snd_oxfw *oxfw,
  101. struct amdtp_stream *stream,
  102. unsigned int rate, unsigned int pcm_channels);
  103. void snd_oxfw_stream_stop_simplex(struct snd_oxfw *oxfw,
  104. struct amdtp_stream *stream);
  105. void snd_oxfw_stream_destroy_simplex(struct snd_oxfw *oxfw,
  106. struct amdtp_stream *stream);
  107. void snd_oxfw_stream_update_simplex(struct snd_oxfw *oxfw,
  108. struct amdtp_stream *stream);
  109. struct snd_oxfw_stream_formation {
  110. unsigned int rate;
  111. unsigned int pcm;
  112. unsigned int midi;
  113. };
  114. int snd_oxfw_stream_parse_format(u8 *format,
  115. struct snd_oxfw_stream_formation *formation);
  116. int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw,
  117. enum avc_general_plug_dir dir,
  118. struct snd_oxfw_stream_formation *formation);
  119. int snd_oxfw_stream_discover(struct snd_oxfw *oxfw);
  120. void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw);
  121. int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw);
  122. void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw);
  123. int snd_oxfw_create_pcm(struct snd_oxfw *oxfw);
  124. int snd_oxfw_create_mixer(struct snd_oxfw *oxfw);
  125. void snd_oxfw_proc_init(struct snd_oxfw *oxfw);
  126. int snd_oxfw_create_midi(struct snd_oxfw *oxfw);
  127. int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw);