xref: /linux/sound/firewire/motu/motu.h (revision b0f84a84fff180718995b1269da2988e5b28be42)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * motu.h - a part of driver for MOTU FireWire series
4  *
5  * Copyright (c) 2015-2017 Takashi Sakamoto <o-takashi@sakamocchi.jp>
6  */
7 
8 #ifndef SOUND_FIREWIRE_MOTU_H_INCLUDED
9 #define SOUND_FIREWIRE_MOTU_H_INCLUDED
10 
11 #include <linux/device.h>
12 #include <linux/firewire.h>
13 #include <linux/firewire-constants.h>
14 #include <linux/module.h>
15 #include <linux/mod_devicetable.h>
16 #include <linux/mutex.h>
17 #include <linux/slab.h>
18 #include <linux/compat.h>
19 #include <linux/sched/signal.h>
20 
21 #include <sound/control.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/info.h>
25 #include <sound/rawmidi.h>
26 #include <sound/firewire.h>
27 #include <sound/hwdep.h>
28 
29 #include "../lib.h"
30 #include "../amdtp-stream.h"
31 #include "../iso-resources.h"
32 
33 struct snd_motu_packet_format {
34 	unsigned char midi_flag_offset;
35 	unsigned char midi_byte_offset;
36 	unsigned char pcm_byte_offset;
37 
38 	unsigned char msg_chunks;
39 	unsigned char fixed_part_pcm_chunks[3];
40 	unsigned char differed_part_pcm_chunks[3];
41 };
42 
43 struct snd_motu {
44 	struct snd_card *card;
45 	struct fw_unit *unit;
46 	struct mutex mutex;
47 	spinlock_t lock;
48 
49 	bool registered;
50 	struct delayed_work dwork;
51 
52 	/* Model dependent information. */
53 	const struct snd_motu_spec *spec;
54 
55 	/* For packet streaming */
56 	struct snd_motu_packet_format tx_packet_formats;
57 	struct snd_motu_packet_format rx_packet_formats;
58 	struct amdtp_stream tx_stream;
59 	struct amdtp_stream rx_stream;
60 	struct fw_iso_resources tx_resources;
61 	struct fw_iso_resources rx_resources;
62 	unsigned int capture_substreams;
63 	unsigned int playback_substreams;
64 
65 	/* For notification. */
66 	struct fw_address_handler async_handler;
67 	u32 msg;
68 
69 	/* For uapi */
70 	int dev_lock_count;
71 	bool dev_lock_changed;
72 	wait_queue_head_t hwdep_wait;
73 };
74 
75 enum snd_motu_spec_flags {
76 	SND_MOTU_SPEC_SUPPORT_CLOCK_X2	= 0x0001,
77 	SND_MOTU_SPEC_SUPPORT_CLOCK_X4	= 0x0002,
78 	SND_MOTU_SPEC_TX_MICINST_CHUNK	= 0x0004,
79 	SND_MOTU_SPEC_TX_RETURN_CHUNK	= 0x0008,
80 	SND_MOTU_SPEC_TX_REVERB_CHUNK	= 0x0010,
81 	SND_MOTU_SPEC_HAS_AESEBU_IFACE	= 0x0020,
82 	SND_MOTU_SPEC_HAS_OPT_IFACE_A	= 0x0040,
83 	SND_MOTU_SPEC_HAS_OPT_IFACE_B	= 0x0080,
84 	SND_MOTU_SPEC_RX_MIDI_2ND_Q	= 0x0100,
85 	SND_MOTU_SPEC_RX_MIDI_3RD_Q	= 0x0200,
86 	SND_MOTU_SPEC_TX_MIDI_2ND_Q	= 0x0400,
87 	SND_MOTU_SPEC_TX_MIDI_3RD_Q	= 0x0800,
88 	SND_MOTU_SPEC_RX_SEPARETED_MAIN	= 0x1000,
89 };
90 
91 #define SND_MOTU_CLOCK_RATE_COUNT	6
92 extern const unsigned int snd_motu_clock_rates[SND_MOTU_CLOCK_RATE_COUNT];
93 
94 enum snd_motu_clock_source {
95 	SND_MOTU_CLOCK_SOURCE_INTERNAL,
96 	SND_MOTU_CLOCK_SOURCE_ADAT_ON_DSUB,
97 	SND_MOTU_CLOCK_SOURCE_ADAT_ON_OPT,
98 	SND_MOTU_CLOCK_SOURCE_ADAT_ON_OPT_A,
99 	SND_MOTU_CLOCK_SOURCE_ADAT_ON_OPT_B,
100 	SND_MOTU_CLOCK_SOURCE_SPDIF_ON_OPT,
101 	SND_MOTU_CLOCK_SOURCE_SPDIF_ON_OPT_A,
102 	SND_MOTU_CLOCK_SOURCE_SPDIF_ON_OPT_B,
103 	SND_MOTU_CLOCK_SOURCE_SPDIF_ON_COAX,
104 	SND_MOTU_CLOCK_SOURCE_AESEBU_ON_XLR,
105 	SND_MOTU_CLOCK_SOURCE_WORD_ON_BNC,
106 	SND_MOTU_CLOCK_SOURCE_UNKNOWN,
107 };
108 
109 struct snd_motu_protocol {
110 	int (*get_clock_rate)(struct snd_motu *motu, unsigned int *rate);
111 	int (*set_clock_rate)(struct snd_motu *motu, unsigned int rate);
112 	int (*get_clock_source)(struct snd_motu *motu,
113 				enum snd_motu_clock_source *source);
114 	int (*switch_fetching_mode)(struct snd_motu *motu, bool enable);
115 	int (*cache_packet_formats)(struct snd_motu *motu);
116 };
117 
118 struct snd_motu_spec {
119 	const char *const name;
120 	enum snd_motu_spec_flags flags;
121 
122 	unsigned char analog_in_ports;
123 	unsigned char analog_out_ports;
124 
125 	const struct snd_motu_protocol *const protocol;
126 };
127 
128 extern const struct snd_motu_protocol snd_motu_protocol_v2;
129 extern const struct snd_motu_protocol snd_motu_protocol_v3;
130 
131 extern const struct snd_motu_spec snd_motu_spec_traveler;
132 extern const struct snd_motu_spec snd_motu_spec_8pre;
133 
134 int amdtp_motu_init(struct amdtp_stream *s, struct fw_unit *unit,
135 		    enum amdtp_stream_direction dir,
136 		    const struct snd_motu_protocol *const protocol);
137 int amdtp_motu_set_parameters(struct amdtp_stream *s, unsigned int rate,
138 			      unsigned int midi_ports,
139 			      struct snd_motu_packet_format *formats);
140 int amdtp_motu_add_pcm_hw_constraints(struct amdtp_stream *s,
141 				      struct snd_pcm_runtime *runtime);
142 void amdtp_motu_midi_trigger(struct amdtp_stream *s, unsigned int port,
143 			     struct snd_rawmidi_substream *midi);
144 
145 int snd_motu_transaction_read(struct snd_motu *motu, u32 offset, __be32 *reg,
146 			      size_t size);
147 int snd_motu_transaction_write(struct snd_motu *motu, u32 offset, __be32 *reg,
148 			       size_t size);
149 int snd_motu_transaction_register(struct snd_motu *motu);
150 int snd_motu_transaction_reregister(struct snd_motu *motu);
151 void snd_motu_transaction_unregister(struct snd_motu *motu);
152 
153 int snd_motu_stream_init_duplex(struct snd_motu *motu);
154 void snd_motu_stream_destroy_duplex(struct snd_motu *motu);
155 int snd_motu_stream_cache_packet_formats(struct snd_motu *motu);
156 int snd_motu_stream_start_duplex(struct snd_motu *motu, unsigned int rate);
157 void snd_motu_stream_stop_duplex(struct snd_motu *motu);
158 int snd_motu_stream_lock_try(struct snd_motu *motu);
159 void snd_motu_stream_lock_release(struct snd_motu *motu);
160 
161 void snd_motu_proc_init(struct snd_motu *motu);
162 
163 int snd_motu_create_pcm_devices(struct snd_motu *motu);
164 
165 int snd_motu_create_midi_devices(struct snd_motu *motu);
166 
167 int snd_motu_create_hwdep_device(struct snd_motu *motu);
168 #endif
169