xref: /openbmc/linux/sound/firewire/bebob/bebob.h (revision 877013bc)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * bebob.h - a part of driver for BeBoB based devices
4  *
5  * Copyright (c) 2013-2014 Takashi Sakamoto
6  */
7 
8 #ifndef SOUND_BEBOB_H_INCLUDED
9 #define SOUND_BEBOB_H_INCLUDED
10 
11 #include <linux/compat.h>
12 #include <linux/device.h>
13 #include <linux/firewire.h>
14 #include <linux/firewire-constants.h>
15 #include <linux/module.h>
16 #include <linux/mod_devicetable.h>
17 #include <linux/delay.h>
18 #include <linux/slab.h>
19 #include <linux/sched/signal.h>
20 
21 #include <sound/core.h>
22 #include <sound/initval.h>
23 #include <sound/info.h>
24 #include <sound/rawmidi.h>
25 #include <sound/pcm.h>
26 #include <sound/pcm_params.h>
27 #include <sound/firewire.h>
28 #include <sound/hwdep.h>
29 
30 #include "../lib.h"
31 #include "../fcp.h"
32 #include "../packets-buffer.h"
33 #include "../iso-resources.h"
34 #include "../amdtp-am824.h"
35 #include "../cmp.h"
36 
37 /* basic register addresses on DM1000/DM1100/DM1500 */
38 #define BEBOB_ADDR_REG_INFO	0xffffc8020000ULL
39 #define BEBOB_ADDR_REG_REQ	0xffffc8021000ULL
40 
41 struct snd_bebob;
42 
43 #define SND_BEBOB_STRM_FMT_ENTRIES	7
44 struct snd_bebob_stream_formation {
45 	unsigned int pcm;
46 	unsigned int midi;
47 };
48 /* this is a lookup table for index of stream formations */
49 extern const unsigned int snd_bebob_rate_table[SND_BEBOB_STRM_FMT_ENTRIES];
50 
51 /* device specific operations */
52 enum snd_bebob_clock_type {
53 	SND_BEBOB_CLOCK_TYPE_INTERNAL = 0,
54 	SND_BEBOB_CLOCK_TYPE_EXTERNAL,
55 	SND_BEBOB_CLOCK_TYPE_SYT,
56 };
57 struct snd_bebob_clock_spec {
58 	unsigned int num;
59 	const char *const *labels;
60 	const enum snd_bebob_clock_type *types;
61 	int (*get)(struct snd_bebob *bebob, unsigned int *id);
62 };
63 struct snd_bebob_rate_spec {
64 	int (*get)(struct snd_bebob *bebob, unsigned int *rate);
65 	int (*set)(struct snd_bebob *bebob, unsigned int rate);
66 };
67 struct snd_bebob_meter_spec {
68 	unsigned int num;
69 	const char *const *labels;
70 	int (*get)(struct snd_bebob *bebob, u32 *target, unsigned int size);
71 };
72 struct snd_bebob_spec {
73 	const struct snd_bebob_clock_spec *clock;
74 	const struct snd_bebob_rate_spec *rate;
75 	const struct snd_bebob_meter_spec *meter;
76 };
77 
78 struct snd_bebob {
79 	struct snd_card *card;
80 	struct fw_unit *unit;
81 	int card_index;
82 
83 	struct mutex mutex;
84 	spinlock_t lock;
85 
86 	bool registered;
87 	struct delayed_work dwork;
88 
89 	const struct ieee1394_device_id *entry;
90 	const struct snd_bebob_spec *spec;
91 
92 	unsigned int midi_input_ports;
93 	unsigned int midi_output_ports;
94 
95 	struct amdtp_stream tx_stream;
96 	struct amdtp_stream rx_stream;
97 	struct cmp_connection out_conn;
98 	struct cmp_connection in_conn;
99 	unsigned int substreams_counter;
100 
101 	struct snd_bebob_stream_formation
102 		tx_stream_formations[SND_BEBOB_STRM_FMT_ENTRIES];
103 	struct snd_bebob_stream_formation
104 		rx_stream_formations[SND_BEBOB_STRM_FMT_ENTRIES];
105 
106 	int sync_input_plug;
107 
108 	/* for uapi */
109 	int dev_lock_count;
110 	bool dev_lock_changed;
111 	wait_queue_head_t hwdep_wait;
112 
113 	/* for M-Audio special devices */
114 	void *maudio_special_quirk;
115 
116 	/* For BeBoB version quirk. */
117 	unsigned int version;
118 	bool discontinuity_quirk;
119 
120 	struct amdtp_domain domain;
121 };
122 
123 static inline int
124 snd_bebob_read_block(struct fw_unit *unit, u64 addr, void *buf, int size)
125 {
126 	return snd_fw_transaction(unit, TCODE_READ_BLOCK_REQUEST,
127 				  BEBOB_ADDR_REG_INFO + addr,
128 				  buf, size, 0);
129 }
130 
131 static inline int
132 snd_bebob_read_quad(struct fw_unit *unit, u64 addr, u32 *buf)
133 {
134 	return snd_fw_transaction(unit, TCODE_READ_QUADLET_REQUEST,
135 				  BEBOB_ADDR_REG_INFO + addr,
136 				  (void *)buf, sizeof(u32), 0);
137 }
138 
139 /* AV/C Audio Subunit Specification 1.0 (Oct 2000, 1394TA) */
140 int avc_audio_set_selector(struct fw_unit *unit, unsigned int subunit_id,
141 			   unsigned int fb_id, unsigned int num);
142 int avc_audio_get_selector(struct fw_unit *unit, unsigned  int subunit_id,
143 			   unsigned int fb_id, unsigned int *num);
144 
145 /*
146  * AVC command extensions, AV/C Unit and Subunit, Revision 17
147  * (Nov 2003, BridgeCo)
148  */
149 #define	AVC_BRIDGECO_ADDR_BYTES	6
150 enum avc_bridgeco_plug_dir {
151 	AVC_BRIDGECO_PLUG_DIR_IN	= 0x00,
152 	AVC_BRIDGECO_PLUG_DIR_OUT	= 0x01
153 };
154 enum avc_bridgeco_plug_mode {
155 	AVC_BRIDGECO_PLUG_MODE_UNIT		= 0x00,
156 	AVC_BRIDGECO_PLUG_MODE_SUBUNIT		= 0x01,
157 	AVC_BRIDGECO_PLUG_MODE_FUNCTION_BLOCK	= 0x02
158 };
159 enum avc_bridgeco_plug_unit {
160 	AVC_BRIDGECO_PLUG_UNIT_ISOC	= 0x00,
161 	AVC_BRIDGECO_PLUG_UNIT_EXT	= 0x01,
162 	AVC_BRIDGECO_PLUG_UNIT_ASYNC	= 0x02
163 };
164 enum avc_bridgeco_plug_type {
165 	AVC_BRIDGECO_PLUG_TYPE_ISOC	= 0x00,
166 	AVC_BRIDGECO_PLUG_TYPE_ASYNC	= 0x01,
167 	AVC_BRIDGECO_PLUG_TYPE_MIDI	= 0x02,
168 	AVC_BRIDGECO_PLUG_TYPE_SYNC	= 0x03,
169 	AVC_BRIDGECO_PLUG_TYPE_ANA	= 0x04,
170 	AVC_BRIDGECO_PLUG_TYPE_DIG	= 0x05,
171 	AVC_BRIDGECO_PLUG_TYPE_ADDITION	= 0x06
172 };
173 static inline void
174 avc_bridgeco_fill_unit_addr(u8 buf[AVC_BRIDGECO_ADDR_BYTES],
175 			    enum avc_bridgeco_plug_dir dir,
176 			    enum avc_bridgeco_plug_unit unit,
177 			    unsigned int pid)
178 {
179 	buf[0] = 0xff;	/* Unit */
180 	buf[1] = dir;
181 	buf[2] = AVC_BRIDGECO_PLUG_MODE_UNIT;
182 	buf[3] = unit;
183 	buf[4] = 0xff & pid;
184 	buf[5] = 0xff;	/* reserved */
185 }
186 static inline void
187 avc_bridgeco_fill_msu_addr(u8 buf[AVC_BRIDGECO_ADDR_BYTES],
188 			   enum avc_bridgeco_plug_dir dir,
189 			   unsigned int pid)
190 {
191 	buf[0] = 0x60;	/* Music subunit */
192 	buf[1] = dir;
193 	buf[2] = AVC_BRIDGECO_PLUG_MODE_SUBUNIT;
194 	buf[3] = 0xff & pid;
195 	buf[4] = 0xff;	/* reserved */
196 	buf[5] = 0xff;	/* reserved */
197 }
198 int avc_bridgeco_get_plug_ch_pos(struct fw_unit *unit,
199 				 u8 addr[AVC_BRIDGECO_ADDR_BYTES],
200 				 u8 *buf, unsigned int len);
201 int avc_bridgeco_get_plug_type(struct fw_unit *unit,
202 			       u8 addr[AVC_BRIDGECO_ADDR_BYTES],
203 			       enum avc_bridgeco_plug_type *type);
204 int avc_bridgeco_get_plug_ch_count(struct fw_unit *unit, u8 addr[AVC_BRIDGECO_ADDR_BYTES],
205 				   unsigned int *ch_count);
206 int avc_bridgeco_get_plug_section_type(struct fw_unit *unit,
207 				       u8 addr[AVC_BRIDGECO_ADDR_BYTES],
208 				       unsigned int id, u8 *type);
209 int avc_bridgeco_get_plug_input(struct fw_unit *unit,
210 				u8 addr[AVC_BRIDGECO_ADDR_BYTES],
211 				u8 input[7]);
212 int avc_bridgeco_get_plug_strm_fmt(struct fw_unit *unit,
213 				   u8 addr[AVC_BRIDGECO_ADDR_BYTES], u8 *buf,
214 				   unsigned int *len, unsigned int eid);
215 
216 /* for AMDTP streaming */
217 int snd_bebob_stream_get_rate(struct snd_bebob *bebob, unsigned int *rate);
218 int snd_bebob_stream_set_rate(struct snd_bebob *bebob, unsigned int rate);
219 int snd_bebob_stream_get_clock_src(struct snd_bebob *bebob,
220 				   enum snd_bebob_clock_type *src);
221 int snd_bebob_stream_discover(struct snd_bebob *bebob);
222 int snd_bebob_stream_init_duplex(struct snd_bebob *bebob);
223 int snd_bebob_stream_reserve_duplex(struct snd_bebob *bebob, unsigned int rate,
224 				    unsigned int frames_per_period,
225 				    unsigned int frames_per_buffer);
226 int snd_bebob_stream_start_duplex(struct snd_bebob *bebob);
227 void snd_bebob_stream_stop_duplex(struct snd_bebob *bebob);
228 void snd_bebob_stream_destroy_duplex(struct snd_bebob *bebob);
229 
230 void snd_bebob_stream_lock_changed(struct snd_bebob *bebob);
231 int snd_bebob_stream_lock_try(struct snd_bebob *bebob);
232 void snd_bebob_stream_lock_release(struct snd_bebob *bebob);
233 
234 void snd_bebob_proc_init(struct snd_bebob *bebob);
235 
236 int snd_bebob_create_midi_devices(struct snd_bebob *bebob);
237 
238 int snd_bebob_create_pcm_devices(struct snd_bebob *bebob);
239 
240 int snd_bebob_create_hwdep_device(struct snd_bebob *bebob);
241 
242 /* model specific operations */
243 extern const struct snd_bebob_spec phase88_rack_spec;
244 extern const struct snd_bebob_spec yamaha_terratec_spec;
245 extern const struct snd_bebob_spec saffirepro_26_spec;
246 extern const struct snd_bebob_spec saffirepro_10_spec;
247 extern const struct snd_bebob_spec saffire_le_spec;
248 extern const struct snd_bebob_spec saffire_spec;
249 extern const struct snd_bebob_spec maudio_fw410_spec;
250 extern const struct snd_bebob_spec maudio_audiophile_spec;
251 extern const struct snd_bebob_spec maudio_solo_spec;
252 extern const struct snd_bebob_spec maudio_ozonic_spec;
253 extern const struct snd_bebob_spec maudio_nrv10_spec;
254 extern const struct snd_bebob_spec maudio_special_spec;
255 int snd_bebob_maudio_special_discover(struct snd_bebob *bebob, bool is1814);
256 int snd_bebob_maudio_load_firmware(struct fw_unit *unit);
257 
258 #define SND_BEBOB_DEV_ENTRY(vendor, model, data) \
259 { \
260 	.match_flags	= IEEE1394_MATCH_VENDOR_ID | \
261 			  IEEE1394_MATCH_MODEL_ID, \
262 	.vendor_id	= vendor, \
263 	.model_id	= model, \
264 	.driver_data	= (kernel_ulong_t)data \
265 }
266 
267 #endif
268