xref: /openbmc/linux/sound/firewire/amdtp-stream.h (revision 9863874f)
1d67c46b9STakashi Sakamoto #ifndef SOUND_FIREWIRE_AMDTP_H_INCLUDED
2d67c46b9STakashi Sakamoto #define SOUND_FIREWIRE_AMDTP_H_INCLUDED
3d67c46b9STakashi Sakamoto 
4d67c46b9STakashi Sakamoto #include <linux/err.h>
5d67c46b9STakashi Sakamoto #include <linux/interrupt.h>
6d67c46b9STakashi Sakamoto #include <linux/mutex.h>
75955815eSTakashi Sakamoto #include <linux/sched.h>
8d67c46b9STakashi Sakamoto #include <sound/asound.h>
9d67c46b9STakashi Sakamoto #include "packets-buffer.h"
10d67c46b9STakashi Sakamoto 
11d67c46b9STakashi Sakamoto /**
12d67c46b9STakashi Sakamoto  * enum cip_flags - describes details of the streaming protocol
13d67c46b9STakashi Sakamoto  * @CIP_NONBLOCKING: In non-blocking mode, each packet contains
14d67c46b9STakashi Sakamoto  *	sample_rate/8000 samples, with rounding up or down to adjust
15d67c46b9STakashi Sakamoto  *	for clock skew and left-over fractional samples.  This should
16d67c46b9STakashi Sakamoto  *	be used if supported by the device.
17d67c46b9STakashi Sakamoto  * @CIP_BLOCKING: In blocking mode, each packet contains either zero or
18d67c46b9STakashi Sakamoto  *	SYT_INTERVAL samples, with these two types alternating so that
19d67c46b9STakashi Sakamoto  *	the overall sample rate comes out right.
20d67c46b9STakashi Sakamoto  * @CIP_EMPTY_WITH_TAG0: Only for in-stream. Empty in-packets have TAG0.
21d67c46b9STakashi Sakamoto  * @CIP_DBC_IS_END_EVENT: Only for in-stream. The value of dbc in an in-packet
22d67c46b9STakashi Sakamoto  *	corresponds to the end of event in the packet. Out of IEC 61883.
23d67c46b9STakashi Sakamoto  * @CIP_WRONG_DBS: Only for in-stream. The value of dbs is wrong in in-packets.
24d67c46b9STakashi Sakamoto  *	The value of data_block_quadlets is used instead of reported value.
25d67c46b9STakashi Sakamoto  * @CIP_SKIP_DBC_ZERO_CHECK: Only for in-stream.  Packets with zero in dbc is
26d67c46b9STakashi Sakamoto  *	skipped for detecting discontinuity.
27d67c46b9STakashi Sakamoto  * @CIP_EMPTY_HAS_WRONG_DBC: Only for in-stream. The value of dbc in empty
28d67c46b9STakashi Sakamoto  *	packet is wrong but the others are correct.
29d67c46b9STakashi Sakamoto  * @CIP_JUMBO_PAYLOAD: Only for in-stream. The number of data blocks in an
30d67c46b9STakashi Sakamoto  *	packet is larger than IEC 61883-6 defines. Current implementation
31d67c46b9STakashi Sakamoto  *	allows 5 times as large as IEC 61883-6 defines.
32d67c46b9STakashi Sakamoto  */
33d67c46b9STakashi Sakamoto enum cip_flags {
34d67c46b9STakashi Sakamoto 	CIP_NONBLOCKING		= 0x00,
35d67c46b9STakashi Sakamoto 	CIP_BLOCKING		= 0x01,
36dec63cc8STakashi Sakamoto 	CIP_EMPTY_WITH_TAG0	= 0x02,
37dec63cc8STakashi Sakamoto 	CIP_DBC_IS_END_EVENT	= 0x04,
38dec63cc8STakashi Sakamoto 	CIP_WRONG_DBS		= 0x08,
39dec63cc8STakashi Sakamoto 	CIP_SKIP_DBC_ZERO_CHECK	= 0x10,
4062f00e40STakashi Sakamoto 	CIP_EMPTY_HAS_WRONG_DBC	= 0x20,
4162f00e40STakashi Sakamoto 	CIP_JUMBO_PAYLOAD	= 0x40,
42d67c46b9STakashi Sakamoto };
43d67c46b9STakashi Sakamoto 
44d67c46b9STakashi Sakamoto /**
45d67c46b9STakashi Sakamoto  * enum cip_sfc - supported Sampling Frequency Codes (SFCs)
46d67c46b9STakashi Sakamoto  * @CIP_SFC_32000:   32,000 data blocks
47d67c46b9STakashi Sakamoto  * @CIP_SFC_44100:   44,100 data blocks
48d67c46b9STakashi Sakamoto  * @CIP_SFC_48000:   48,000 data blocks
49d67c46b9STakashi Sakamoto  * @CIP_SFC_88200:   88,200 data blocks
50d67c46b9STakashi Sakamoto  * @CIP_SFC_96000:   96,000 data blocks
51d67c46b9STakashi Sakamoto  * @CIP_SFC_176400: 176,400 data blocks
52d67c46b9STakashi Sakamoto  * @CIP_SFC_192000: 192,000 data blocks
53d67c46b9STakashi Sakamoto  * @CIP_SFC_COUNT: the number of supported SFCs
54d67c46b9STakashi Sakamoto  *
55d67c46b9STakashi Sakamoto  * These values are used to show nominal Sampling Frequency Code in
56d67c46b9STakashi Sakamoto  * Format Dependent Field (FDF) of AMDTP packet header. In IEC 61883-6:2002,
57d67c46b9STakashi Sakamoto  * this code means the number of events per second. Actually the code
58d67c46b9STakashi Sakamoto  * represents the number of data blocks transferred per second in an AMDTP
59d67c46b9STakashi Sakamoto  * stream.
60d67c46b9STakashi Sakamoto  *
61d67c46b9STakashi Sakamoto  * In IEC 61883-6:2005, some extensions were added to support more types of
62d67c46b9STakashi Sakamoto  * data such as 'One Bit LInear Audio', therefore the meaning of SFC became
63d67c46b9STakashi Sakamoto  * different depending on the types.
64d67c46b9STakashi Sakamoto  *
65d67c46b9STakashi Sakamoto  * Currently our implementation is compatible with IEC 61883-6:2002.
66d67c46b9STakashi Sakamoto  */
67d67c46b9STakashi Sakamoto enum cip_sfc {
68d67c46b9STakashi Sakamoto 	CIP_SFC_32000  = 0,
69d67c46b9STakashi Sakamoto 	CIP_SFC_44100  = 1,
70d67c46b9STakashi Sakamoto 	CIP_SFC_48000  = 2,
71d67c46b9STakashi Sakamoto 	CIP_SFC_88200  = 3,
72d67c46b9STakashi Sakamoto 	CIP_SFC_96000  = 4,
73d67c46b9STakashi Sakamoto 	CIP_SFC_176400 = 5,
74d67c46b9STakashi Sakamoto 	CIP_SFC_192000 = 6,
75d67c46b9STakashi Sakamoto 	CIP_SFC_COUNT
76d67c46b9STakashi Sakamoto };
77d67c46b9STakashi Sakamoto 
78d67c46b9STakashi Sakamoto struct fw_unit;
79d67c46b9STakashi Sakamoto struct fw_iso_context;
80d67c46b9STakashi Sakamoto struct snd_pcm_substream;
81d67c46b9STakashi Sakamoto struct snd_pcm_runtime;
82d67c46b9STakashi Sakamoto 
83d67c46b9STakashi Sakamoto enum amdtp_stream_direction {
84d67c46b9STakashi Sakamoto 	AMDTP_OUT_STREAM = 0,
85d67c46b9STakashi Sakamoto 	AMDTP_IN_STREAM
86d67c46b9STakashi Sakamoto };
87d67c46b9STakashi Sakamoto 
88df075feeSTakashi Sakamoto struct amdtp_stream;
89df075feeSTakashi Sakamoto typedef unsigned int (*amdtp_stream_process_data_blocks_t)(
90df075feeSTakashi Sakamoto 						struct amdtp_stream *s,
91df075feeSTakashi Sakamoto 						__be32 *buffer,
92df075feeSTakashi Sakamoto 						unsigned int data_blocks,
93df075feeSTakashi Sakamoto 						unsigned int *syt);
94d67c46b9STakashi Sakamoto struct amdtp_stream {
95d67c46b9STakashi Sakamoto 	struct fw_unit *unit;
96d67c46b9STakashi Sakamoto 	enum cip_flags flags;
97d67c46b9STakashi Sakamoto 	enum amdtp_stream_direction direction;
98d67c46b9STakashi Sakamoto 	struct mutex mutex;
99d67c46b9STakashi Sakamoto 
100d67c46b9STakashi Sakamoto 	/* For packet processing. */
101d67c46b9STakashi Sakamoto 	struct fw_iso_context *context;
102d67c46b9STakashi Sakamoto 	struct iso_packets_buffer buffer;
103d67c46b9STakashi Sakamoto 	int packet_index;
104d67c46b9STakashi Sakamoto 
105d67c46b9STakashi Sakamoto 	/* For CIP headers. */
106d67c46b9STakashi Sakamoto 	unsigned int source_node_id_field;
107d67c46b9STakashi Sakamoto 	unsigned int data_block_quadlets;
108d67c46b9STakashi Sakamoto 	unsigned int data_block_counter;
1099863874fSTakashi Sakamoto 	unsigned int sph;
110d67c46b9STakashi Sakamoto 	unsigned int fmt;
111d67c46b9STakashi Sakamoto 	unsigned int fdf;
112d67c46b9STakashi Sakamoto 	/* quirk: fixed interval of dbc between previos/current packets. */
113d67c46b9STakashi Sakamoto 	unsigned int tx_dbc_interval;
114d67c46b9STakashi Sakamoto 	/* quirk: indicate the value of dbc field in a first packet. */
115d67c46b9STakashi Sakamoto 	unsigned int tx_first_dbc;
116d67c46b9STakashi Sakamoto 
117d67c46b9STakashi Sakamoto 	/* Internal flags. */
118d67c46b9STakashi Sakamoto 	enum cip_sfc sfc;
119d67c46b9STakashi Sakamoto 	unsigned int syt_interval;
120d67c46b9STakashi Sakamoto 	unsigned int transfer_delay;
121d67c46b9STakashi Sakamoto 	unsigned int data_block_state;
122d67c46b9STakashi Sakamoto 	unsigned int last_syt_offset;
123d67c46b9STakashi Sakamoto 	unsigned int syt_offset_state;
124d67c46b9STakashi Sakamoto 
125d67c46b9STakashi Sakamoto 	/* For a PCM substream processing. */
126d67c46b9STakashi Sakamoto 	struct snd_pcm_substream *pcm;
127d67c46b9STakashi Sakamoto 	struct tasklet_struct period_tasklet;
128d67c46b9STakashi Sakamoto 	unsigned int pcm_buffer_pointer;
129d67c46b9STakashi Sakamoto 	unsigned int pcm_period_pointer;
130d67c46b9STakashi Sakamoto 
131d67c46b9STakashi Sakamoto 	/* To wait for first packet. */
132d67c46b9STakashi Sakamoto 	bool callbacked;
133d67c46b9STakashi Sakamoto 	wait_queue_head_t callback_wait;
134a04513f8STakashi Sakamoto 	u32 start_cycle;
135d67c46b9STakashi Sakamoto 
136df075feeSTakashi Sakamoto 	/* For backends to process data blocks. */
137df075feeSTakashi Sakamoto 	void *protocol;
138df075feeSTakashi Sakamoto 	amdtp_stream_process_data_blocks_t process_data_blocks;
139d67c46b9STakashi Sakamoto };
140d67c46b9STakashi Sakamoto 
141d67c46b9STakashi Sakamoto int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit,
142df075feeSTakashi Sakamoto 		      enum amdtp_stream_direction dir, enum cip_flags flags,
143df075feeSTakashi Sakamoto 		      unsigned int fmt,
144df075feeSTakashi Sakamoto 		      amdtp_stream_process_data_blocks_t process_data_blocks,
145df075feeSTakashi Sakamoto 		      unsigned int protocol_size);
146d67c46b9STakashi Sakamoto void amdtp_stream_destroy(struct amdtp_stream *s);
147d67c46b9STakashi Sakamoto 
148df075feeSTakashi Sakamoto int amdtp_stream_set_parameters(struct amdtp_stream *s, unsigned int rate,
149df075feeSTakashi Sakamoto 				unsigned int data_block_quadlets);
150d67c46b9STakashi Sakamoto unsigned int amdtp_stream_get_max_payload(struct amdtp_stream *s);
151d67c46b9STakashi Sakamoto 
152d67c46b9STakashi Sakamoto int amdtp_stream_start(struct amdtp_stream *s, int channel, int speed);
153d67c46b9STakashi Sakamoto void amdtp_stream_update(struct amdtp_stream *s);
154d67c46b9STakashi Sakamoto void amdtp_stream_stop(struct amdtp_stream *s);
155d67c46b9STakashi Sakamoto 
156d67c46b9STakashi Sakamoto int amdtp_stream_add_pcm_hw_constraints(struct amdtp_stream *s,
157d67c46b9STakashi Sakamoto 					struct snd_pcm_runtime *runtime);
158df075feeSTakashi Sakamoto 
159d67c46b9STakashi Sakamoto void amdtp_stream_pcm_prepare(struct amdtp_stream *s);
160d67c46b9STakashi Sakamoto unsigned long amdtp_stream_pcm_pointer(struct amdtp_stream *s);
161d67c46b9STakashi Sakamoto void amdtp_stream_pcm_abort(struct amdtp_stream *s);
162d67c46b9STakashi Sakamoto 
163d67c46b9STakashi Sakamoto extern const unsigned int amdtp_syt_intervals[CIP_SFC_COUNT];
164d67c46b9STakashi Sakamoto extern const unsigned int amdtp_rate_table[CIP_SFC_COUNT];
165d67c46b9STakashi Sakamoto 
166d67c46b9STakashi Sakamoto /**
167d67c46b9STakashi Sakamoto  * amdtp_stream_running - check stream is running or not
168d67c46b9STakashi Sakamoto  * @s: the AMDTP stream
169d67c46b9STakashi Sakamoto  *
170d67c46b9STakashi Sakamoto  * If this function returns true, the stream is running.
171d67c46b9STakashi Sakamoto  */
172d67c46b9STakashi Sakamoto static inline bool amdtp_stream_running(struct amdtp_stream *s)
173d67c46b9STakashi Sakamoto {
174d67c46b9STakashi Sakamoto 	return !IS_ERR(s->context);
175d67c46b9STakashi Sakamoto }
176d67c46b9STakashi Sakamoto 
177d67c46b9STakashi Sakamoto /**
178d67c46b9STakashi Sakamoto  * amdtp_streaming_error - check for streaming error
179d67c46b9STakashi Sakamoto  * @s: the AMDTP stream
180d67c46b9STakashi Sakamoto  *
181d67c46b9STakashi Sakamoto  * If this function returns true, the stream's packet queue has stopped due to
182d67c46b9STakashi Sakamoto  * an asynchronous error.
183d67c46b9STakashi Sakamoto  */
184d67c46b9STakashi Sakamoto static inline bool amdtp_streaming_error(struct amdtp_stream *s)
185d67c46b9STakashi Sakamoto {
186d67c46b9STakashi Sakamoto 	return s->packet_index < 0;
187d67c46b9STakashi Sakamoto }
188d67c46b9STakashi Sakamoto 
189d67c46b9STakashi Sakamoto /**
190d67c46b9STakashi Sakamoto  * amdtp_stream_pcm_running - check PCM substream is running or not
191d67c46b9STakashi Sakamoto  * @s: the AMDTP stream
192d67c46b9STakashi Sakamoto  *
193d67c46b9STakashi Sakamoto  * If this function returns true, PCM substream in the AMDTP stream is running.
194d67c46b9STakashi Sakamoto  */
195d67c46b9STakashi Sakamoto static inline bool amdtp_stream_pcm_running(struct amdtp_stream *s)
196d67c46b9STakashi Sakamoto {
197d67c46b9STakashi Sakamoto 	return !!s->pcm;
198d67c46b9STakashi Sakamoto }
199d67c46b9STakashi Sakamoto 
200d67c46b9STakashi Sakamoto /**
201d67c46b9STakashi Sakamoto  * amdtp_stream_pcm_trigger - start/stop playback from a PCM device
202d67c46b9STakashi Sakamoto  * @s: the AMDTP stream
203d67c46b9STakashi Sakamoto  * @pcm: the PCM device to be started, or %NULL to stop the current device
204d67c46b9STakashi Sakamoto  *
205d67c46b9STakashi Sakamoto  * Call this function on a running isochronous stream to enable the actual
206d67c46b9STakashi Sakamoto  * transmission of PCM data.  This function should be called from the PCM
207d67c46b9STakashi Sakamoto  * device's .trigger callback.
208d67c46b9STakashi Sakamoto  */
209d67c46b9STakashi Sakamoto static inline void amdtp_stream_pcm_trigger(struct amdtp_stream *s,
210d67c46b9STakashi Sakamoto 					    struct snd_pcm_substream *pcm)
211d67c46b9STakashi Sakamoto {
212d67c46b9STakashi Sakamoto 	ACCESS_ONCE(s->pcm) = pcm;
213d67c46b9STakashi Sakamoto }
214d67c46b9STakashi Sakamoto 
215d67c46b9STakashi Sakamoto static inline bool cip_sfc_is_base_44100(enum cip_sfc sfc)
216d67c46b9STakashi Sakamoto {
217d67c46b9STakashi Sakamoto 	return sfc & 1;
218d67c46b9STakashi Sakamoto }
219d67c46b9STakashi Sakamoto 
220d67c46b9STakashi Sakamoto /**
221d67c46b9STakashi Sakamoto  * amdtp_stream_wait_callback - sleep till callbacked or timeout
222d67c46b9STakashi Sakamoto  * @s: the AMDTP stream
223d67c46b9STakashi Sakamoto  * @timeout: msec till timeout
224d67c46b9STakashi Sakamoto  *
225d67c46b9STakashi Sakamoto  * If this function return false, the AMDTP stream should be stopped.
226d67c46b9STakashi Sakamoto  */
227d67c46b9STakashi Sakamoto static inline bool amdtp_stream_wait_callback(struct amdtp_stream *s,
228d67c46b9STakashi Sakamoto 					      unsigned int timeout)
229d67c46b9STakashi Sakamoto {
230d67c46b9STakashi Sakamoto 	return wait_event_timeout(s->callback_wait,
231d67c46b9STakashi Sakamoto 				  s->callbacked == true,
232d67c46b9STakashi Sakamoto 				  msecs_to_jiffies(timeout)) > 0;
233d67c46b9STakashi Sakamoto }
234d67c46b9STakashi Sakamoto 
235d67c46b9STakashi Sakamoto #endif
236