aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2014-04-25 09:44:52 -0400
committerTakashi Iwai <tiwai@suse.de>2014-05-26 08:21:46 -0400
commit7b2d99fa6b127707cf0d78feedbb3613aed4d576 (patch)
tree5dbee1997b68e276446643ac1f7885928337cf3d
parent10550bea44a8d7cec8a503c8f91fb6014e7849e9 (diff)
ALSA: firewire-lib/dice/speakers: Add common PCM constraints for AMDTP streams
This commit adds common PCM constraints according to current firewire-lib implementation. 1.Maximum width for each sample is limited by 24. AM824 in IEC 61883-6 can deliver 24bit data. 2. Minimum time for period is 5msec. Apply the old value. For shorter latency, further works are needed. 3. In blocking mode, frames per period/buffer is aligned to 32. Each packet can include some frames depending on its sampling rate. In blocking mode, the number equals to SYT_INTERVAL. Currently firewire-lib can schedule snd_pcm_period_elapsed() for each packet. So, for accurate PCM interrupt, the number of frames per period/buffer should be aligned to SYT_INTERVAL. Currently firewire-lib is lack of better rules to achieve this. So LCM of each value of SYT_INTERVALs (=32) is applied. This can be improved for further work. [Fixed the compile error due to the missing "&" by tiwai] Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/firewire/amdtp.c56
-rw-r--r--sound/firewire/amdtp.h3
-rw-r--r--sound/firewire/dice.c17
-rw-r--r--sound/firewire/speakers.c8
4 files changed, 61 insertions, 23 deletions
diff --git a/sound/firewire/amdtp.c b/sound/firewire/amdtp.c
index 3475b76b3304..ac8c35830cd9 100644
--- a/sound/firewire/amdtp.c
+++ b/sound/firewire/amdtp.c
@@ -13,6 +13,7 @@
13#include <linux/slab.h> 13#include <linux/slab.h>
14#include <linux/sched.h> 14#include <linux/sched.h>
15#include <sound/pcm.h> 15#include <sound/pcm.h>
16#include <sound/pcm_params.h>
16#include <sound/rawmidi.h> 17#include <sound/rawmidi.h>
17#include "amdtp.h" 18#include "amdtp.h"
18 19
@@ -105,6 +106,61 @@ const unsigned int amdtp_syt_intervals[CIP_SFC_COUNT] = {
105EXPORT_SYMBOL(amdtp_syt_intervals); 106EXPORT_SYMBOL(amdtp_syt_intervals);
106 107
107/** 108/**
109 * amdtp_stream_add_pcm_hw_constraints - add hw constraints for PCM substream
110 * @s: the AMDTP stream, which must be initialized.
111 * @runtime: the PCM substream runtime
112 */
113int amdtp_stream_add_pcm_hw_constraints(struct amdtp_stream *s,
114 struct snd_pcm_runtime *runtime)
115{
116 int err;
117
118 /* AM824 in IEC 61883-6 can deliver 24bit data */
119 err = snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
120 if (err < 0)
121 goto end;
122
123 /*
124 * Currently firewire-lib processes 16 packets in one software
125 * interrupt callback. This equals to 2msec but actually the
126 * interval of the interrupts has a jitter.
127 * Additionally, even if adding a constraint to fit period size to
128 * 2msec, actual calculated frames per period doesn't equal to 2msec,
129 * depending on sampling rate.
130 * Anyway, the interval to call snd_pcm_period_elapsed() cannot 2msec.
131 * Here let us use 5msec for safe period interrupt.
132 */
133 err = snd_pcm_hw_constraint_minmax(runtime,
134 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
135 5000, UINT_MAX);
136 if (err < 0)
137 goto end;
138
139 /* Non-Blocking stream has no more constraints */
140 if (!(s->flags & CIP_BLOCKING))
141 goto end;
142
143 /*
144 * One AMDTP packet can include some frames. In blocking mode, the
145 * number equals to SYT_INTERVAL. So the number is 8, 16 or 32,
146 * depending on its sampling rate. For accurate period interrupt, it's
147 * preferrable to aligh period/buffer sizes to current SYT_INTERVAL.
148 *
149 * TODO: These constraints can be improved with propper rules.
150 * Currently apply LCM of SYT_INTEVALs.
151 */
152 err = snd_pcm_hw_constraint_step(runtime, 0,
153 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 32);
154 if (err < 0)
155 goto end;
156 err = snd_pcm_hw_constraint_step(runtime, 0,
157 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 32);
158end:
159 return err;
160}
161EXPORT_SYMBOL(amdtp_stream_add_pcm_hw_constraints);
162
163/**
108 * amdtp_stream_set_parameters - set stream parameters 164 * amdtp_stream_set_parameters - set stream parameters
109 * @s: the AMDTP stream to configure 165 * @s: the AMDTP stream to configure
110 * @rate: the sample rate 166 * @rate: the sample rate
diff --git a/sound/firewire/amdtp.h b/sound/firewire/amdtp.h
index db60425f2781..d6bb7eb86f0f 100644
--- a/sound/firewire/amdtp.h
+++ b/sound/firewire/amdtp.h
@@ -64,6 +64,7 @@ enum cip_sfc {
64struct fw_unit; 64struct fw_unit;
65struct fw_iso_context; 65struct fw_iso_context;
66struct snd_pcm_substream; 66struct snd_pcm_substream;
67struct snd_pcm_runtime;
67struct snd_rawmidi_substream; 68struct snd_rawmidi_substream;
68 69
69enum amdtp_stream_direction { 70enum amdtp_stream_direction {
@@ -130,6 +131,8 @@ int amdtp_stream_start(struct amdtp_stream *s, int channel, int speed);
130void amdtp_stream_update(struct amdtp_stream *s); 131void amdtp_stream_update(struct amdtp_stream *s);
131void amdtp_stream_stop(struct amdtp_stream *s); 132void amdtp_stream_stop(struct amdtp_stream *s);
132 133
134int amdtp_stream_add_pcm_hw_constraints(struct amdtp_stream *s,
135 struct snd_pcm_runtime *runtime);
133void amdtp_stream_set_pcm_format(struct amdtp_stream *s, 136void amdtp_stream_set_pcm_format(struct amdtp_stream *s,
134 snd_pcm_format_t format); 137 snd_pcm_format_t format);
135void amdtp_stream_pcm_prepare(struct amdtp_stream *s); 138void amdtp_stream_pcm_prepare(struct amdtp_stream *s);
diff --git a/sound/firewire/dice.c b/sound/firewire/dice.c
index cd4c6b6d072e..a9a30c0161f1 100644
--- a/sound/firewire/dice.c
+++ b/sound/firewire/dice.c
@@ -420,22 +420,7 @@ static int dice_open(struct snd_pcm_substream *substream)
420 if (err < 0) 420 if (err < 0)
421 goto err_lock; 421 goto err_lock;
422 422
423 err = snd_pcm_hw_constraint_step(runtime, 0, 423 err = amdtp_stream_add_pcm_hw_constraints(&dice->stream, runtime);
424 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, 32);
425 if (err < 0)
426 goto err_lock;
427 err = snd_pcm_hw_constraint_step(runtime, 0,
428 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 32);
429 if (err < 0)
430 goto err_lock;
431
432 err = snd_pcm_hw_constraint_minmax(runtime,
433 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
434 5000, UINT_MAX);
435 if (err < 0)
436 goto err_lock;
437
438 err = snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
439 if (err < 0) 424 if (err < 0)
440 goto err_lock; 425 goto err_lock;
441 426
diff --git a/sound/firewire/speakers.c b/sound/firewire/speakers.c
index c07e7cd154f2..58e7ab010c60 100644
--- a/sound/firewire/speakers.c
+++ b/sound/firewire/speakers.c
@@ -167,13 +167,7 @@ static int fwspk_open(struct snd_pcm_substream *substream)
167 if (err < 0) 167 if (err < 0)
168 return err; 168 return err;
169 169
170 err = snd_pcm_hw_constraint_minmax(runtime, 170 err = amdtp_stream_add_pcm_hw_constraints(&fwspk->stream, runtime);
171 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
172 5000, UINT_MAX);
173 if (err < 0)
174 return err;
175
176 err = snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
177 if (err < 0) 171 if (err < 0)
178 return err; 172 return err;
179 173