1 /* SPDX-License-Identifier: GPL-2.0-only */ << 2 /* 1 /* 3 * oxfw.h - a part of driver for OXFW970/971 b 2 * oxfw.h - a part of driver for OXFW970/971 based devices 4 * 3 * 5 * Copyright (c) Clemens Ladisch <clemens@ladi 4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de> >> 5 * Licensed under the terms of the GNU General Public License, version 2. 6 */ 6 */ 7 7 8 #include <linux/device.h> 8 #include <linux/device.h> 9 #include <linux/firewire.h> 9 #include <linux/firewire.h> 10 #include <linux/firewire-constants.h> 10 #include <linux/firewire-constants.h> 11 #include <linux/module.h> 11 #include <linux/module.h> 12 #include <linux/mod_devicetable.h> 12 #include <linux/mod_devicetable.h> 13 #include <linux/mutex.h> 13 #include <linux/mutex.h> 14 #include <linux/slab.h> 14 #include <linux/slab.h> 15 #include <linux/compat.h> 15 #include <linux/compat.h> 16 #include <linux/sched/signal.h> << 17 16 18 #include <sound/control.h> 17 #include <sound/control.h> 19 #include <sound/core.h> 18 #include <sound/core.h> 20 #include <sound/initval.h> 19 #include <sound/initval.h> 21 #include <sound/pcm.h> 20 #include <sound/pcm.h> 22 #include <sound/pcm_params.h> 21 #include <sound/pcm_params.h> 23 #include <sound/info.h> 22 #include <sound/info.h> 24 #include <sound/rawmidi.h> 23 #include <sound/rawmidi.h> 25 #include <sound/firewire.h> 24 #include <sound/firewire.h> 26 #include <sound/hwdep.h> 25 #include <sound/hwdep.h> 27 26 28 #include "../lib.h" 27 #include "../lib.h" 29 #include "../fcp.h" 28 #include "../fcp.h" 30 #include "../packets-buffer.h" 29 #include "../packets-buffer.h" 31 #include "../iso-resources.h" 30 #include "../iso-resources.h" 32 #include "../amdtp-am824.h" 31 #include "../amdtp-am824.h" 33 #include "../cmp.h" 32 #include "../cmp.h" 34 33 35 enum snd_oxfw_quirk { << 36 // Postpone transferring packets durin << 37 // next isochronous packet includes mo << 38 SND_OXFW_QUIRK_JUMBO_PAYLOAD = 0x01, << 39 // The dbs field of CIP header in tx p << 40 SND_OXFW_QUIRK_WRONG_DBS = 0x02, << 41 // Blocking transmission mode is used. << 42 SND_OXFW_QUIRK_BLOCKING_TRANSMISSION = << 43 // Stanton SCS1.d and SCS1.m support u << 44 SND_OXFW_QUIRK_SCS_TRANSACTION = 0x08, << 45 // Apogee Duet FireWire ignores data b << 46 // processing, while output level mete << 47 // the device to process audio data ev << 48 // IEC 61883-1/6. << 49 SND_OXFW_QUIRK_IGNORE_NO_INFO_PACKET = << 50 // Loud Technologies Mackie Onyx 1640i << 51 // event frequency according to events << 52 // performs media clock recovery volun << 53 // are ignored, thus driver should tra << 54 SND_OXFW_QUIRK_VOLUNTARY_RECOVERY = 0x << 55 // Miglia Harmony Audio does not suppo << 56 SND_OXFW_QUIRK_STREAM_FORMAT_INFO_UNSU << 57 // Miglia Harmony Audio transmits CIP << 58 // of accumulated payload quadlets inc << 59 SND_OXFW_QUIRK_DBC_IS_TOTAL_PAYLOAD_QU << 60 }; << 61 << 62 /* This is an arbitrary number for convinience 34 /* This is an arbitrary number for convinience. */ 63 #define SND_OXFW_STREAM_FORMAT_ENTRIES 10 35 #define SND_OXFW_STREAM_FORMAT_ENTRIES 10 64 struct snd_oxfw { 36 struct snd_oxfw { 65 struct snd_card *card; 37 struct snd_card *card; 66 struct fw_unit *unit; 38 struct fw_unit *unit; 67 struct mutex mutex; 39 struct mutex mutex; 68 spinlock_t lock; 40 spinlock_t lock; 69 41 70 // The combination of snd_oxfw_quirk e !! 42 bool registered; 71 unsigned int quirks; !! 43 struct delayed_work dwork; >> 44 >> 45 bool wrong_dbs; 72 bool has_output; 46 bool has_output; 73 bool has_input; << 74 u8 *tx_stream_formats[SND_OXFW_STREAM_ 47 u8 *tx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES]; 75 u8 *rx_stream_formats[SND_OXFW_STREAM_ 48 u8 *rx_stream_formats[SND_OXFW_STREAM_FORMAT_ENTRIES]; 76 bool assumed; 49 bool assumed; 77 struct cmp_connection out_conn; 50 struct cmp_connection out_conn; 78 struct cmp_connection in_conn; 51 struct cmp_connection in_conn; 79 struct amdtp_stream tx_stream; 52 struct amdtp_stream tx_stream; 80 struct amdtp_stream rx_stream; 53 struct amdtp_stream rx_stream; 81 unsigned int substreams_count; !! 54 unsigned int capture_substreams; >> 55 unsigned int playback_substreams; 82 56 83 unsigned int midi_input_ports; 57 unsigned int midi_input_ports; 84 unsigned int midi_output_ports; 58 unsigned int midi_output_ports; 85 59 86 int dev_lock_count; 60 int dev_lock_count; 87 bool dev_lock_changed; 61 bool dev_lock_changed; 88 wait_queue_head_t hwdep_wait; 62 wait_queue_head_t hwdep_wait; 89 63 >> 64 const struct ieee1394_device_id *entry; 90 void *spec; 65 void *spec; 91 << 92 struct amdtp_domain domain; << 93 }; 66 }; 94 67 95 /* 68 /* 96 * AV/C Stream Format Information Specificatio 69 * AV/C Stream Format Information Specification 1.1 Working Draft 97 * (Apr 2005, 1394TA) 70 * (Apr 2005, 1394TA) 98 */ 71 */ 99 int avc_stream_set_format(struct fw_unit *unit 72 int avc_stream_set_format(struct fw_unit *unit, enum avc_general_plug_dir dir, 100 unsigned int pid, u8 73 unsigned int pid, u8 *format, unsigned int len); 101 int avc_stream_get_format(struct fw_unit *unit 74 int avc_stream_get_format(struct fw_unit *unit, 102 enum avc_general_plu 75 enum avc_general_plug_dir dir, unsigned int pid, 103 u8 *buf, unsigned in 76 u8 *buf, unsigned int *len, unsigned int eid); 104 static inline int 77 static inline int 105 avc_stream_get_format_single(struct fw_unit *u 78 avc_stream_get_format_single(struct fw_unit *unit, 106 enum avc_general_ 79 enum avc_general_plug_dir dir, unsigned int pid, 107 u8 *buf, unsigned 80 u8 *buf, unsigned int *len) 108 { 81 { 109 return avc_stream_get_format(unit, dir 82 return avc_stream_get_format(unit, dir, pid, buf, len, 0xff); 110 } 83 } 111 static inline int 84 static inline int 112 avc_stream_get_format_list(struct fw_unit *uni 85 avc_stream_get_format_list(struct fw_unit *unit, 113 enum avc_general_pl 86 enum avc_general_plug_dir dir, unsigned int pid, 114 u8 *buf, unsigned i 87 u8 *buf, unsigned int *len, 115 unsigned int eid) 88 unsigned int eid) 116 { 89 { 117 return avc_stream_get_format(unit, dir 90 return avc_stream_get_format(unit, dir, pid, buf, len, eid); 118 } 91 } 119 92 120 /* 93 /* 121 * AV/C Digital Interface Command Set General 94 * AV/C Digital Interface Command Set General Specification 4.2 122 * (Sep 2004, 1394TA) 95 * (Sep 2004, 1394TA) 123 */ 96 */ 124 int avc_general_inquiry_sig_fmt(struct fw_unit 97 int avc_general_inquiry_sig_fmt(struct fw_unit *unit, unsigned int rate, 125 enum avc_gener 98 enum avc_general_plug_dir dir, 126 unsigned short 99 unsigned short pid); 127 100 128 int snd_oxfw_stream_init_duplex(struct snd_oxf !! 101 int snd_oxfw_stream_init_simplex(struct snd_oxfw *oxfw, 129 int snd_oxfw_stream_reserve_duplex(struct snd_ !! 102 struct amdtp_stream *stream); 130 struct amdt !! 103 int snd_oxfw_stream_start_simplex(struct snd_oxfw *oxfw, 131 unsigned in !! 104 struct amdtp_stream *stream, 132 unsigned in !! 105 unsigned int rate, unsigned int pcm_channels); 133 unsigned in !! 106 void snd_oxfw_stream_stop_simplex(struct snd_oxfw *oxfw, 134 int snd_oxfw_stream_start_duplex(struct snd_ox !! 107 struct amdtp_stream *stream); 135 void snd_oxfw_stream_stop_duplex(struct snd_ox !! 108 void snd_oxfw_stream_destroy_simplex(struct snd_oxfw *oxfw, 136 void snd_oxfw_stream_destroy_duplex(struct snd !! 109 struct amdtp_stream *stream); 137 void snd_oxfw_stream_update_duplex(struct snd_ !! 110 void snd_oxfw_stream_update_simplex(struct snd_oxfw *oxfw, >> 111 struct amdtp_stream *stream); 138 112 139 struct snd_oxfw_stream_formation { 113 struct snd_oxfw_stream_formation { 140 unsigned int rate; 114 unsigned int rate; 141 unsigned int pcm; 115 unsigned int pcm; 142 unsigned int midi; 116 unsigned int midi; 143 }; 117 }; 144 int snd_oxfw_stream_parse_format(const u8 *for !! 118 int snd_oxfw_stream_parse_format(u8 *format, 145 struct snd_ox 119 struct snd_oxfw_stream_formation *formation); 146 int snd_oxfw_stream_get_current_formation(stru 120 int snd_oxfw_stream_get_current_formation(struct snd_oxfw *oxfw, 147 enum avc_gener 121 enum avc_general_plug_dir dir, 148 struct snd_oxf 122 struct snd_oxfw_stream_formation *formation); 149 123 150 int snd_oxfw_stream_discover(struct snd_oxfw * 124 int snd_oxfw_stream_discover(struct snd_oxfw *oxfw); 151 125 152 void snd_oxfw_stream_lock_changed(struct snd_o 126 void snd_oxfw_stream_lock_changed(struct snd_oxfw *oxfw); 153 int snd_oxfw_stream_lock_try(struct snd_oxfw * 127 int snd_oxfw_stream_lock_try(struct snd_oxfw *oxfw); 154 void snd_oxfw_stream_lock_release(struct snd_o 128 void snd_oxfw_stream_lock_release(struct snd_oxfw *oxfw); 155 129 156 int snd_oxfw_create_pcm(struct snd_oxfw *oxfw) 130 int snd_oxfw_create_pcm(struct snd_oxfw *oxfw); 157 131 158 void snd_oxfw_proc_init(struct snd_oxfw *oxfw) 132 void snd_oxfw_proc_init(struct snd_oxfw *oxfw); 159 133 160 int snd_oxfw_create_midi(struct snd_oxfw *oxfw 134 int snd_oxfw_create_midi(struct snd_oxfw *oxfw); 161 135 162 int snd_oxfw_create_hwdep(struct snd_oxfw *oxf 136 int snd_oxfw_create_hwdep(struct snd_oxfw *oxfw); 163 137 164 int snd_oxfw_add_spkr(struct snd_oxfw *oxfw, b 138 int snd_oxfw_add_spkr(struct snd_oxfw *oxfw, bool is_lacie); 165 int snd_oxfw_scs1x_add(struct snd_oxfw *oxfw); 139 int snd_oxfw_scs1x_add(struct snd_oxfw *oxfw); 166 void snd_oxfw_scs1x_update(struct snd_oxfw *ox 140 void snd_oxfw_scs1x_update(struct snd_oxfw *oxfw); 167 141
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.