blob: 019134edb9f7793c918b2b13c1a516a878804471 [file] [log] [blame]
Clemens Ladisch31ef9132011-03-15 07:53:21 +01001#ifndef SOUND_FIREWIRE_AMDTP_H_INCLUDED
2#define SOUND_FIREWIRE_AMDTP_H_INCLUDED
3
Clemens Ladisch20b65dd2011-09-04 22:15:44 +02004#include <linux/err.h>
Clemens Ladisch76fb8782012-05-13 22:03:09 +02005#include <linux/interrupt.h>
Clemens Ladisch31ef9132011-03-15 07:53:21 +01006#include <linux/mutex.h>
Takashi Sakamoto777fb572013-11-19 13:29:24 +09007#include <sound/asound.h>
Clemens Ladisch31ef9132011-03-15 07:53:21 +01008#include "packets-buffer.h"
9
10/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090011 * enum cip_flags - describes details of the streaming protocol
Clemens Ladisch31ef9132011-03-15 07:53:21 +010012 * @CIP_NONBLOCKING: In non-blocking mode, each packet contains
13 * sample_rate/8000 samples, with rounding up or down to adjust
14 * for clock skew and left-over fractional samples. This should
15 * be used if supported by the device.
Clemens Ladische84d15f2011-09-04 22:12:48 +020016 * @CIP_BLOCKING: In blocking mode, each packet contains either zero or
17 * SYT_INTERVAL samples, with these two types alternating so that
18 * the overall sample rate comes out right.
Clemens Ladischa7304e32011-09-04 22:16:10 +020019 * @CIP_HI_DUALWIRE: At rates above 96 kHz, pretend that the stream runs
20 * at half the actual sample rate with twice the number of channels;
21 * two samples of a channel are stored consecutively in the packet.
22 * Requires blocking mode and SYT_INTERVAL-aligned PCM buffer size.
Clemens Ladisch31ef9132011-03-15 07:53:21 +010023 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090024enum cip_flags {
Clemens Ladische84d15f2011-09-04 22:12:48 +020025 CIP_NONBLOCKING = 0x00,
26 CIP_BLOCKING = 0x01,
Clemens Ladischa7304e32011-09-04 22:16:10 +020027 CIP_HI_DUALWIRE = 0x02,
Clemens Ladisch31ef9132011-03-15 07:53:21 +010028};
29
30/**
31 * enum cip_sfc - a stream's sample rate
32 */
33enum cip_sfc {
34 CIP_SFC_32000 = 0,
35 CIP_SFC_44100 = 1,
36 CIP_SFC_48000 = 2,
37 CIP_SFC_88200 = 3,
38 CIP_SFC_96000 = 4,
39 CIP_SFC_176400 = 5,
40 CIP_SFC_192000 = 6,
Clemens Ladischa7304e32011-09-04 22:16:10 +020041 CIP_SFC_COUNT
Clemens Ladisch31ef9132011-03-15 07:53:21 +010042};
43
44#define AMDTP_OUT_PCM_FORMAT_BITS (SNDRV_PCM_FMTBIT_S16 | \
45 SNDRV_PCM_FMTBIT_S32)
46
47struct fw_unit;
48struct fw_iso_context;
49struct snd_pcm_substream;
50
Takashi Sakamoto3ff7e8f2014-04-25 22:44:44 +090051enum amdtp_stream_direction {
52 AMDTP_OUT_STREAM = 0,
53 AMDTP_IN_STREAM
54};
55
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090056struct amdtp_stream {
Clemens Ladisch31ef9132011-03-15 07:53:21 +010057 struct fw_unit *unit;
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090058 enum cip_flags flags;
Takashi Sakamoto3ff7e8f2014-04-25 22:44:44 +090059 enum amdtp_stream_direction direction;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010060 struct fw_iso_context *context;
61 struct mutex mutex;
62
63 enum cip_sfc sfc;
Clemens Ladischa7304e32011-09-04 22:16:10 +020064 bool dual_wire;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010065 unsigned int data_block_quadlets;
66 unsigned int pcm_channels;
67 unsigned int midi_ports;
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090068 void (*transfer_samples)(struct amdtp_stream *s,
Clemens Ladisch31ef9132011-03-15 07:53:21 +010069 struct snd_pcm_substream *pcm,
70 __be32 *buffer, unsigned int frames);
71
72 unsigned int syt_interval;
Clemens Ladische84d15f2011-09-04 22:12:48 +020073 unsigned int transfer_delay;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010074 unsigned int source_node_id_field;
75 struct iso_packets_buffer buffer;
76
77 struct snd_pcm_substream *pcm;
Clemens Ladisch76fb8782012-05-13 22:03:09 +020078 struct tasklet_struct period_tasklet;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010079
Clemens Ladischec00f5e2011-03-15 07:57:24 +010080 int packet_index;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010081 unsigned int data_block_counter;
82
83 unsigned int data_block_state;
84
85 unsigned int last_syt_offset;
86 unsigned int syt_offset_state;
87
88 unsigned int pcm_buffer_pointer;
89 unsigned int pcm_period_pointer;
Clemens Ladisch92b862c2012-05-13 19:07:22 +020090 bool pointer_flush;
Clemens Ladisch31ef9132011-03-15 07:53:21 +010091};
92
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090093int amdtp_stream_init(struct amdtp_stream *s, struct fw_unit *unit,
Takashi Sakamoto3ff7e8f2014-04-25 22:44:44 +090094 enum amdtp_stream_direction dir,
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090095 enum cip_flags flags);
96void amdtp_stream_destroy(struct amdtp_stream *s);
Clemens Ladisch31ef9132011-03-15 07:53:21 +010097
Takashi Sakamotobe4a2892014-04-25 22:44:42 +090098void amdtp_stream_set_parameters(struct amdtp_stream *s,
99 unsigned int rate,
100 unsigned int pcm_channels,
101 unsigned int midi_ports);
102unsigned int amdtp_stream_get_max_payload(struct amdtp_stream *s);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100103
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900104int amdtp_stream_start(struct amdtp_stream *s, int channel, int speed);
105void amdtp_stream_update(struct amdtp_stream *s);
106void amdtp_stream_stop(struct amdtp_stream *s);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100107
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900108void amdtp_stream_set_pcm_format(struct amdtp_stream *s,
109 snd_pcm_format_t format);
110void amdtp_stream_pcm_prepare(struct amdtp_stream *s);
111unsigned long amdtp_stream_pcm_pointer(struct amdtp_stream *s);
112void amdtp_stream_pcm_abort(struct amdtp_stream *s);
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100113
Clemens Ladischc5280e92011-10-16 21:39:00 +0200114extern const unsigned int amdtp_syt_intervals[CIP_SFC_COUNT];
Clemens Ladischa7304e32011-09-04 22:16:10 +0200115
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900116/**
117 * amdtp_stream_running - check stream is running or not
118 * @s: the AMDTP stream
119 *
120 * If this function returns true, the stream is running.
121 */
122static inline bool amdtp_stream_running(struct amdtp_stream *s)
Clemens Ladisch20b65dd2011-09-04 22:15:44 +0200123{
124 return !IS_ERR(s->context);
125}
126
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100127/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900128 * amdtp_streaming_error - check for streaming error
129 * @s: the AMDTP stream
Clemens Ladischec00f5e2011-03-15 07:57:24 +0100130 *
131 * If this function returns true, the stream's packet queue has stopped due to
132 * an asynchronous error.
133 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900134static inline bool amdtp_streaming_error(struct amdtp_stream *s)
Clemens Ladischec00f5e2011-03-15 07:57:24 +0100135{
136 return s->packet_index < 0;
137}
138
139/**
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900140 * amdtp_stream_pcm_trigger - start/stop playback from a PCM device
141 * @s: the AMDTP stream
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100142 * @pcm: the PCM device to be started, or %NULL to stop the current device
143 *
144 * Call this function on a running isochronous stream to enable the actual
145 * transmission of PCM data. This function should be called from the PCM
146 * device's .trigger callback.
147 */
Takashi Sakamotobe4a2892014-04-25 22:44:42 +0900148static inline void amdtp_stream_pcm_trigger(struct amdtp_stream *s,
149 struct snd_pcm_substream *pcm)
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100150{
151 ACCESS_ONCE(s->pcm) = pcm;
152}
153
Clemens Ladisch31ef9132011-03-15 07:53:21 +0100154static inline bool cip_sfc_is_base_44100(enum cip_sfc sfc)
155{
156 return sfc & 1;
157}
158
159#endif