blob: fdec4aa05c8a9785cdc03f78c934af89b1446954 [file] [log] [blame]
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001/*
2 * Asihpi soundcard
3 * Copyright (c) by AudioScience Inc <alsa@audioscience.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 *
19 * The following is not a condition of use, merely a request:
20 * If you modify this program, particularly if you fix errors, AudioScience Inc
21 * would appreciate it if you grant us the right to use those modifications
22 * for any purpose including commercial applications.
23 */
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +130024
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020025#include "hpi_internal.h"
Eliot Blennerhassettf50efa22011-12-22 13:38:48 +130026#include "hpi_version.h"
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020027#include "hpimsginit.h"
28#include "hpioctl.h"
Eliot Blennerhassett7036b922011-12-22 13:38:43 +130029#include "hpicmn.h"
30
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020031
32#include <linux/pci.h>
33#include <linux/init.h>
34#include <linux/jiffies.h>
35#include <linux/slab.h>
36#include <linux/time.h>
37#include <linux/wait.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040038#include <linux/module.h>
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020039#include <sound/core.h>
40#include <sound/control.h>
41#include <sound/pcm.h>
42#include <sound/pcm_params.h>
43#include <sound/info.h>
44#include <sound/initval.h>
45#include <sound/tlv.h>
46#include <sound/hwdep.h>
47
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020048MODULE_LICENSE("GPL");
49MODULE_AUTHOR("AudioScience inc. <support@audioscience.com>");
Eliot Blennerhassettf50efa22011-12-22 13:38:48 +130050MODULE_DESCRIPTION("AudioScience ALSA ASI5000 ASI6000 ASI87xx ASI89xx "
51 HPI_VER_STRING);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020052
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +130053#if defined CONFIG_SND_DEBUG_VERBOSE
54/**
55 * snd_printddd - very verbose debug printk
56 * @format: format string
57 *
58 * Works like snd_printk() for debugging purposes.
59 * Ignored when CONFIG_SND_DEBUG_VERBOSE is not set.
60 * Must set snd module debug parameter to 3 to enable at runtime.
61 */
62#define snd_printddd(format, args...) \
63 __snd_printk(3, __FILE__, __LINE__, format, ##args)
64#else
Eliot Blennerhassettb0096a62011-04-05 20:55:46 +120065#define snd_printddd(format, args...) do { } while (0)
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +130066#endif
67
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020068static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* index 0-MAX */
69static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103070static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
71static bool enable_hpi_hwdep = 1;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020072
73module_param_array(index, int, NULL, S_IRUGO);
74MODULE_PARM_DESC(index, "ALSA index value for AudioScience soundcard.");
75
76module_param_array(id, charp, NULL, S_IRUGO);
77MODULE_PARM_DESC(id, "ALSA ID string for AudioScience soundcard.");
78
79module_param_array(enable, bool, NULL, S_IRUGO);
80MODULE_PARM_DESC(enable, "ALSA enable AudioScience soundcard.");
81
82module_param(enable_hpi_hwdep, bool, S_IRUGO|S_IWUSR);
83MODULE_PARM_DESC(enable_hpi_hwdep,
84 "ALSA enable HPI hwdep for AudioScience soundcard ");
85
86/* identify driver */
87#ifdef KERNEL_ALSA_BUILD
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +130088static char *build_info = "Built using headers from kernel source";
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020089module_param(build_info, charp, S_IRUGO);
90MODULE_PARM_DESC(build_info, "built using headers from kernel source");
91#else
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +130092static char *build_info = "Built within ALSA source";
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +020093module_param(build_info, charp, S_IRUGO);
94MODULE_PARM_DESC(build_info, "built within ALSA source");
95#endif
96
97/* set to 1 to dump every control from adapter to log */
98static const int mixer_dump;
99
100#define DEFAULT_SAMPLERATE 44100
101static int adapter_fs = DEFAULT_SAMPLERATE;
102
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200103/* defaults */
104#define PERIODS_MIN 2
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300105#define PERIOD_BYTES_MIN 2048
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200106#define BUFFER_BYTES_MAX (512 * 1024)
107
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200108#define MAX_CLOCKSOURCES (HPI_SAMPLECLOCK_SOURCE_LAST + 1 + 7)
109
110struct clk_source {
111 int source;
112 int index;
113 char *name;
114};
115
116struct clk_cache {
117 int count;
118 int has_local;
119 struct clk_source s[MAX_CLOCKSOURCES];
120};
121
122/* Per card data */
123struct snd_card_asihpi {
124 struct snd_card *card;
125 struct pci_dev *pci;
Eliot Blennerhassett7036b922011-12-22 13:38:43 +1300126 struct hpi_adapter *hpi;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200127
128 u32 h_mixer;
129 struct clk_cache cc;
130
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200131 u16 can_dma;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200132 u16 support_grouping;
133 u16 support_mrx;
134 u16 update_interval_frames;
135 u16 in_max_chans;
136 u16 out_max_chans;
Eliot Blennerhassettc382a5d2011-12-22 13:38:33 +1300137 u16 in_min_chans;
138 u16 out_min_chans;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200139};
140
141/* Per stream data */
142struct snd_card_asihpi_pcm {
143 struct timer_list timer;
144 unsigned int respawn_timer;
145 unsigned int hpi_buffer_attached;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300146 unsigned int buffer_bytes;
147 unsigned int period_bytes;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200148 unsigned int bytes_per_sec;
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300149 unsigned int pcm_buf_host_rw_ofs; /* Host R/W pos */
150 unsigned int pcm_buf_dma_ofs; /* DMA R/W offset in buffer */
151 unsigned int pcm_buf_elapsed_dma_ofs; /* DMA R/W offset in buffer */
Eliot Blennerhassett0b7ce9e2011-04-05 20:55:43 +1200152 unsigned int drained_count;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200153 struct snd_pcm_substream *substream;
154 u32 h_stream;
155 struct hpi_format format;
156};
157
158/* universal stream verbs work with out or in stream handles */
159
160/* Functions to allow driver to give a buffer to HPI for busmastering */
161
162static u16 hpi_stream_host_buffer_attach(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200163 u32 h_stream, /* handle to outstream. */
164 u32 size_in_bytes, /* size in bytes of bus mastering buffer */
165 u32 pci_address
166)
167{
168 struct hpi_message hm;
169 struct hpi_response hr;
170 unsigned int obj = hpi_handle_object(h_stream);
171
172 if (!h_stream)
173 return HPI_ERROR_INVALID_OBJ;
174 hpi_init_message_response(&hm, &hr, obj,
175 obj == HPI_OBJ_OSTREAM ?
176 HPI_OSTREAM_HOSTBUFFER_ALLOC :
177 HPI_ISTREAM_HOSTBUFFER_ALLOC);
178
179 hpi_handle_to_indexes(h_stream, &hm.adapter_index,
180 &hm.obj_index);
181
182 hm.u.d.u.buffer.buffer_size = size_in_bytes;
183 hm.u.d.u.buffer.pci_address = pci_address;
184 hm.u.d.u.buffer.command = HPI_BUFFER_CMD_INTERNAL_GRANTADAPTER;
185 hpi_send_recv(&hm, &hr);
186 return hr.error;
187}
188
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300189static u16 hpi_stream_host_buffer_detach(u32 h_stream)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200190{
191 struct hpi_message hm;
192 struct hpi_response hr;
193 unsigned int obj = hpi_handle_object(h_stream);
194
195 if (!h_stream)
196 return HPI_ERROR_INVALID_OBJ;
197
198 hpi_init_message_response(&hm, &hr, obj,
199 obj == HPI_OBJ_OSTREAM ?
200 HPI_OSTREAM_HOSTBUFFER_FREE :
201 HPI_ISTREAM_HOSTBUFFER_FREE);
202
203 hpi_handle_to_indexes(h_stream, &hm.adapter_index,
204 &hm.obj_index);
205 hm.u.d.u.buffer.command = HPI_BUFFER_CMD_INTERNAL_REVOKEADAPTER;
206 hpi_send_recv(&hm, &hr);
207 return hr.error;
208}
209
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300210static inline u16 hpi_stream_start(u32 h_stream)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200211{
212 if (hpi_handle_object(h_stream) == HPI_OBJ_OSTREAM)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300213 return hpi_outstream_start(h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200214 else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300215 return hpi_instream_start(h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200216}
217
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300218static inline u16 hpi_stream_stop(u32 h_stream)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200219{
220 if (hpi_handle_object(h_stream) == HPI_OBJ_OSTREAM)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300221 return hpi_outstream_stop(h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200222 else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300223 return hpi_instream_stop(h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200224}
225
226static inline u16 hpi_stream_get_info_ex(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200227 u32 h_stream,
228 u16 *pw_state,
229 u32 *pbuffer_size,
230 u32 *pdata_in_buffer,
231 u32 *psample_count,
232 u32 *pauxiliary_data
233)
234{
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300235 u16 e;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200236 if (hpi_handle_object(h_stream) == HPI_OBJ_OSTREAM)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300237 e = hpi_outstream_get_info_ex(h_stream, pw_state,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200238 pbuffer_size, pdata_in_buffer,
239 psample_count, pauxiliary_data);
240 else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300241 e = hpi_instream_get_info_ex(h_stream, pw_state,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200242 pbuffer_size, pdata_in_buffer,
243 psample_count, pauxiliary_data);
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300244 return e;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200245}
246
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300247static inline u16 hpi_stream_group_add(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200248 u32 h_master,
249 u32 h_stream)
250{
251 if (hpi_handle_object(h_master) == HPI_OBJ_OSTREAM)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300252 return hpi_outstream_group_add(h_master, h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200253 else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300254 return hpi_instream_group_add(h_master, h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200255}
256
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300257static inline u16 hpi_stream_group_reset(u32 h_stream)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200258{
259 if (hpi_handle_object(h_stream) == HPI_OBJ_OSTREAM)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300260 return hpi_outstream_group_reset(h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200261 else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300262 return hpi_instream_group_reset(h_stream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200263}
264
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300265static inline u16 hpi_stream_group_get_map(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200266 u32 h_stream, u32 *mo, u32 *mi)
267{
268 if (hpi_handle_object(h_stream) == HPI_OBJ_OSTREAM)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300269 return hpi_outstream_group_get_map(h_stream, mo, mi);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200270 else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300271 return hpi_instream_group_get_map(h_stream, mo, mi);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200272}
273
274static u16 handle_error(u16 err, int line, char *filename)
275{
276 if (err)
277 printk(KERN_WARNING
278 "in file %s, line %d: HPI error %d\n",
279 filename, line, err);
280 return err;
281}
282
283#define hpi_handle_error(x) handle_error(x, __LINE__, __FILE__)
284
285/***************************** GENERAL PCM ****************/
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200286
287static void print_hwparams(struct snd_pcm_substream *substream,
288 struct snd_pcm_hw_params *p)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200289{
Eliot Blennerhassett0a17e992011-07-22 15:52:44 +1200290 char name[16];
291 snd_pcm_debug_name(substream, name, sizeof(name));
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200292 snd_printd("%s HWPARAMS\n", name);
293 snd_printd(" samplerate %d Hz\n", params_rate(p));
294 snd_printd(" channels %d\n", params_channels(p));
295 snd_printd(" format %d\n", params_format(p));
296 snd_printd(" subformat %d\n", params_subformat(p));
297 snd_printd(" buffer %d B\n", params_buffer_bytes(p));
298 snd_printd(" period %d B\n", params_period_bytes(p));
299 snd_printd(" access %d\n", params_access(p));
300 snd_printd(" period_size %d\n", params_period_size(p));
301 snd_printd(" periods %d\n", params_periods(p));
302 snd_printd(" buffer_size %d\n", params_buffer_size(p));
303 snd_printd(" %d B/s\n", params_rate(p) *
304 params_channels(p) *
305 snd_pcm_format_width(params_format(p)) / 8);
306
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200307}
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200308
309static snd_pcm_format_t hpi_to_alsa_formats[] = {
310 -1, /* INVALID */
311 SNDRV_PCM_FORMAT_U8, /* HPI_FORMAT_PCM8_UNSIGNED 1 */
312 SNDRV_PCM_FORMAT_S16, /* HPI_FORMAT_PCM16_SIGNED 2 */
313 -1, /* HPI_FORMAT_MPEG_L1 3 */
314 SNDRV_PCM_FORMAT_MPEG, /* HPI_FORMAT_MPEG_L2 4 */
315 SNDRV_PCM_FORMAT_MPEG, /* HPI_FORMAT_MPEG_L3 5 */
316 -1, /* HPI_FORMAT_DOLBY_AC2 6 */
317 -1, /* HPI_FORMAT_DOLBY_AC3 7 */
318 SNDRV_PCM_FORMAT_S16_BE,/* HPI_FORMAT_PCM16_BIGENDIAN 8 */
319 -1, /* HPI_FORMAT_AA_TAGIT1_HITS 9 */
320 -1, /* HPI_FORMAT_AA_TAGIT1_INSERTS 10 */
321 SNDRV_PCM_FORMAT_S32, /* HPI_FORMAT_PCM32_SIGNED 11 */
322 -1, /* HPI_FORMAT_RAW_BITSTREAM 12 */
323 -1, /* HPI_FORMAT_AA_TAGIT1_HITS_EX1 13 */
324 SNDRV_PCM_FORMAT_FLOAT, /* HPI_FORMAT_PCM32_FLOAT 14 */
325#if 1
326 /* ALSA can't handle 3 byte sample size together with power-of-2
327 * constraint on buffer_bytes, so disable this format
328 */
329 -1
330#else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300331 /* SNDRV_PCM_FORMAT_S24_3LE */ /* HPI_FORMAT_PCM24_SIGNED 15 */
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200332#endif
333};
334
335
336static int snd_card_asihpi_format_alsa2hpi(snd_pcm_format_t alsa_format,
337 u16 *hpi_format)
338{
339 u16 format;
340
341 for (format = HPI_FORMAT_PCM8_UNSIGNED;
342 format <= HPI_FORMAT_PCM24_SIGNED; format++) {
343 if (hpi_to_alsa_formats[format] == alsa_format) {
344 *hpi_format = format;
345 return 0;
346 }
347 }
348
349 snd_printd(KERN_WARNING "failed match for alsa format %d\n",
350 alsa_format);
351 *hpi_format = 0;
352 return -EINVAL;
353}
354
355static void snd_card_asihpi_pcm_samplerates(struct snd_card_asihpi *asihpi,
356 struct snd_pcm_hardware *pcmhw)
357{
358 u16 err;
359 u32 h_control;
360 u32 sample_rate;
361 int idx;
362 unsigned int rate_min = 200000;
363 unsigned int rate_max = 0;
364 unsigned int rates = 0;
365
366 if (asihpi->support_mrx) {
367 rates |= SNDRV_PCM_RATE_CONTINUOUS;
368 rates |= SNDRV_PCM_RATE_8000_96000;
369 rate_min = 8000;
370 rate_max = 100000;
371 } else {
372 /* on cards without SRC,
373 valid rates are determined by sampleclock */
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300374 err = hpi_mixer_get_control(asihpi->h_mixer,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200375 HPI_SOURCENODE_CLOCK_SOURCE, 0, 0, 0,
376 HPI_CONTROL_SAMPLECLOCK, &h_control);
377 if (err) {
378 snd_printk(KERN_ERR
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300379 "No local sampleclock, err %d\n", err);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200380 }
381
Eliot Blennerhassett7bf76c32011-03-25 15:25:46 +1300382 for (idx = -1; idx < 100; idx++) {
383 if (idx == -1) {
384 if (hpi_sample_clock_get_sample_rate(h_control,
385 &sample_rate))
386 continue;
387 } else if (hpi_sample_clock_query_local_rate(h_control,
388 idx, &sample_rate)) {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200389 break;
390 }
391
392 rate_min = min(rate_min, sample_rate);
393 rate_max = max(rate_max, sample_rate);
394
395 switch (sample_rate) {
396 case 5512:
397 rates |= SNDRV_PCM_RATE_5512;
398 break;
399 case 8000:
400 rates |= SNDRV_PCM_RATE_8000;
401 break;
402 case 11025:
403 rates |= SNDRV_PCM_RATE_11025;
404 break;
405 case 16000:
406 rates |= SNDRV_PCM_RATE_16000;
407 break;
408 case 22050:
409 rates |= SNDRV_PCM_RATE_22050;
410 break;
411 case 32000:
412 rates |= SNDRV_PCM_RATE_32000;
413 break;
414 case 44100:
415 rates |= SNDRV_PCM_RATE_44100;
416 break;
417 case 48000:
418 rates |= SNDRV_PCM_RATE_48000;
419 break;
420 case 64000:
421 rates |= SNDRV_PCM_RATE_64000;
422 break;
423 case 88200:
424 rates |= SNDRV_PCM_RATE_88200;
425 break;
426 case 96000:
427 rates |= SNDRV_PCM_RATE_96000;
428 break;
429 case 176400:
430 rates |= SNDRV_PCM_RATE_176400;
431 break;
432 case 192000:
433 rates |= SNDRV_PCM_RATE_192000;
434 break;
435 default: /* some other rate */
436 rates |= SNDRV_PCM_RATE_KNOT;
437 }
438 }
439 }
440
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200441 pcmhw->rates = rates;
442 pcmhw->rate_min = rate_min;
443 pcmhw->rate_max = rate_max;
444}
445
446static int snd_card_asihpi_pcm_hw_params(struct snd_pcm_substream *substream,
447 struct snd_pcm_hw_params *params)
448{
449 struct snd_pcm_runtime *runtime = substream->runtime;
450 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
451 struct snd_card_asihpi *card = snd_pcm_substream_chip(substream);
452 int err;
453 u16 format;
Kulikov Vasiliy315e8f72010-07-15 22:48:19 +0400454 int width;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200455 unsigned int bytes_per_sec;
456
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200457 print_hwparams(substream, params);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200458 err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params));
459 if (err < 0)
460 return err;
461 err = snd_card_asihpi_format_alsa2hpi(params_format(params), &format);
462 if (err)
463 return err;
464
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200465 hpi_handle_error(hpi_format_create(&dpcm->format,
466 params_channels(params),
467 format, params_rate(params), 0, 0));
468
469 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300470 if (hpi_instream_reset(dpcm->h_stream) != 0)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200471 return -EINVAL;
472
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300473 if (hpi_instream_set_format(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200474 dpcm->h_stream, &dpcm->format) != 0)
475 return -EINVAL;
476 }
477
478 dpcm->hpi_buffer_attached = 0;
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200479 if (card->can_dma) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300480 err = hpi_stream_host_buffer_attach(dpcm->h_stream,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200481 params_buffer_bytes(params), runtime->dma_addr);
482 if (err == 0) {
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300483 snd_printdd(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200484 "stream_host_buffer_attach succeeded %u %lu\n",
485 params_buffer_bytes(params),
486 (unsigned long)runtime->dma_addr);
487 } else {
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300488 snd_printd("stream_host_buffer_attach error %d\n",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200489 err);
490 return -ENOMEM;
491 }
492
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300493 err = hpi_stream_get_info_ex(dpcm->h_stream, NULL,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200494 &dpcm->hpi_buffer_attached,
495 NULL, NULL, NULL);
496
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300497 snd_printdd("stream_host_buffer_attach status 0x%x\n",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200498 dpcm->hpi_buffer_attached);
Eliot Blennerhassett7036b922011-12-22 13:38:43 +1300499
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200500 }
501 bytes_per_sec = params_rate(params) * params_channels(params);
Kulikov Vasiliy315e8f72010-07-15 22:48:19 +0400502 width = snd_pcm_format_width(params_format(params));
503 bytes_per_sec *= width;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200504 bytes_per_sec /= 8;
Kulikov Vasiliy315e8f72010-07-15 22:48:19 +0400505 if (width < 0 || bytes_per_sec == 0)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200506 return -EINVAL;
507
508 dpcm->bytes_per_sec = bytes_per_sec;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300509 dpcm->buffer_bytes = params_buffer_bytes(params);
510 dpcm->period_bytes = params_period_bytes(params);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200511
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200512 return 0;
513}
514
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300515static int
516snd_card_asihpi_hw_free(struct snd_pcm_substream *substream)
517{
518 struct snd_pcm_runtime *runtime = substream->runtime;
519 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
520 if (dpcm->hpi_buffer_attached)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300521 hpi_stream_host_buffer_detach(dpcm->h_stream);
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300522
523 snd_pcm_lib_free_pages(substream);
524 return 0;
525}
526
527static void snd_card_asihpi_runtime_free(struct snd_pcm_runtime *runtime)
528{
529 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
530 kfree(dpcm);
531}
532
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200533static void snd_card_asihpi_pcm_timer_start(struct snd_pcm_substream *
534 substream)
535{
536 struct snd_pcm_runtime *runtime = substream->runtime;
537 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
538 int expiry;
539
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300540 expiry = HZ / 200;
541 /*? (dpcm->period_bytes * HZ / dpcm->bytes_per_sec); */
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300542 expiry = max(expiry, 1); /* don't let it be zero! */
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200543 dpcm->timer.expires = jiffies + expiry;
544 dpcm->respawn_timer = 1;
545 add_timer(&dpcm->timer);
546}
547
548static void snd_card_asihpi_pcm_timer_stop(struct snd_pcm_substream *substream)
549{
550 struct snd_pcm_runtime *runtime = substream->runtime;
551 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
552
553 dpcm->respawn_timer = 0;
554 del_timer(&dpcm->timer);
555}
556
557static int snd_card_asihpi_trigger(struct snd_pcm_substream *substream,
558 int cmd)
559{
560 struct snd_card_asihpi_pcm *dpcm = substream->runtime->private_data;
561 struct snd_card_asihpi *card = snd_pcm_substream_chip(substream);
562 struct snd_pcm_substream *s;
563 u16 e;
Eliot Blennerhassett0a17e992011-07-22 15:52:44 +1200564 char name[16];
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200565
Eliot Blennerhassett0a17e992011-07-22 15:52:44 +1200566 snd_pcm_debug_name(substream, name, sizeof(name));
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200567 snd_printdd("%s trigger\n", name);
568
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200569 switch (cmd) {
570 case SNDRV_PCM_TRIGGER_START:
571 snd_pcm_group_for_each_entry(s, substream) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300572 struct snd_pcm_runtime *runtime = s->runtime;
573 struct snd_card_asihpi_pcm *ds = runtime->private_data;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200574
575 if (snd_pcm_substream_chip(s) != card)
576 continue;
577
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300578 /* don't link Cap and Play */
579 if (substream->stream != s->stream)
580 continue;
581
Eliot Blennerhassett0b7ce9e2011-04-05 20:55:43 +1200582 ds->drained_count = 0;
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200583 if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200584 /* How do I know how much valid data is present
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300585 * in buffer? Must be at least one period!
586 * Guessing 2 periods, but if
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200587 * buffer is bigger it may contain even more
588 * data??
589 */
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300590 unsigned int preload = ds->period_bytes * 1;
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300591 snd_printddd("%d preload x%x\n", s->number, preload);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200592 hpi_handle_error(hpi_outstream_write_buf(
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300593 ds->h_stream,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300594 &runtime->dma_area[0],
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200595 preload,
596 &ds->format));
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300597 ds->pcm_buf_host_rw_ofs = preload;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200598 }
599
600 if (card->support_grouping) {
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200601 snd_printdd("%d group\n", s->number);
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300602 e = hpi_stream_group_add(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200603 dpcm->h_stream,
604 ds->h_stream);
605 if (!e) {
606 snd_pcm_trigger_done(s, substream);
607 } else {
608 hpi_handle_error(e);
609 break;
610 }
611 } else
612 break;
613 }
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300614 snd_printdd("start\n");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200615 /* start the master stream */
616 snd_card_asihpi_pcm_timer_start(substream);
Eliot Blennerhassettc4ed97d2011-02-10 17:26:20 +1300617 if ((substream->stream == SNDRV_PCM_STREAM_CAPTURE) ||
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200618 !card->can_dma)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300619 hpi_handle_error(hpi_stream_start(dpcm->h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200620 break;
621
622 case SNDRV_PCM_TRIGGER_STOP:
623 snd_card_asihpi_pcm_timer_stop(substream);
624 snd_pcm_group_for_each_entry(s, substream) {
625 if (snd_pcm_substream_chip(s) != card)
626 continue;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300627 /* don't link Cap and Play */
628 if (substream->stream != s->stream)
629 continue;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200630
631 /*? workaround linked streams don't
632 transition to SETUP 20070706*/
633 s->runtime->status->state = SNDRV_PCM_STATE_SETUP;
634
635 if (card->support_grouping) {
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200636 snd_printdd("%d group\n", s->number);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200637 snd_pcm_trigger_done(s, substream);
638 } else
639 break;
640 }
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300641 snd_printdd("stop\n");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200642
643 /* _prepare and _hwparams reset the stream */
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300644 hpi_handle_error(hpi_stream_stop(dpcm->h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200645 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
646 hpi_handle_error(
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300647 hpi_outstream_reset(dpcm->h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200648
649 if (card->support_grouping)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300650 hpi_handle_error(hpi_stream_group_reset(dpcm->h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200651 break;
652
653 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300654 snd_printdd("pause release\n");
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300655 hpi_handle_error(hpi_stream_start(dpcm->h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200656 snd_card_asihpi_pcm_timer_start(substream);
657 break;
658 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300659 snd_printdd("pause\n");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200660 snd_card_asihpi_pcm_timer_stop(substream);
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300661 hpi_handle_error(hpi_stream_stop(dpcm->h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200662 break;
663 default:
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300664 snd_printd(KERN_ERR "\tINVALID\n");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200665 return -EINVAL;
666 }
667
668 return 0;
669}
670
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200671/*algorithm outline
672 Without linking degenerates to getting single stream pos etc
673 Without mmap 2nd loop degenerates to snd_pcm_period_elapsed
674*/
675/*
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300676pcm_buf_dma_ofs=get_buf_pos(s);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200677for_each_linked_stream(s) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300678 pcm_buf_dma_ofs=get_buf_pos(s);
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300679 min_buf_pos = modulo_min(min_buf_pos, pcm_buf_dma_ofs, buffer_bytes)
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300680 new_data = min(new_data, calc_new_data(pcm_buf_dma_ofs,irq_pos)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200681}
682timer.expires = jiffies + predict_next_period_ready(min_buf_pos);
683for_each_linked_stream(s) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300684 s->pcm_buf_dma_ofs = min_buf_pos;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300685 if (new_data > period_bytes) {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200686 if (mmap) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300687 irq_pos = (irq_pos + period_bytes) % buffer_bytes;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200688 if (playback) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300689 write(period_bytes);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200690 } else {
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300691 read(period_bytes);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200692 }
693 }
694 snd_pcm_period_elapsed(s);
695 }
696}
697*/
698
699/** Minimum of 2 modulo values. Works correctly when the difference between
700* the values is less than half the modulus
701*/
702static inline unsigned int modulo_min(unsigned int a, unsigned int b,
703 unsigned long int modulus)
704{
705 unsigned int result;
706 if (((a-b) % modulus) < (modulus/2))
707 result = b;
708 else
709 result = a;
710
711 return result;
712}
713
714/** Timer function, equivalent to interrupt service routine for cards
715*/
716static void snd_card_asihpi_timer_function(unsigned long data)
717{
718 struct snd_card_asihpi_pcm *dpcm = (struct snd_card_asihpi_pcm *)data;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300719 struct snd_pcm_substream *substream = dpcm->substream;
720 struct snd_card_asihpi *card = snd_pcm_substream_chip(substream);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200721 struct snd_pcm_runtime *runtime;
722 struct snd_pcm_substream *s;
723 unsigned int newdata = 0;
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300724 unsigned int pcm_buf_dma_ofs, min_buf_pos = 0;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200725 unsigned int remdata, xfercount, next_jiffies;
726 int first = 1;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300727 int loops = 0;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200728 u16 state;
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300729 u32 buffer_size, bytes_avail, samples_played, on_card_bytes;
Eliot Blennerhassett0a17e992011-07-22 15:52:44 +1200730 char name[16];
731
732 snd_pcm_debug_name(substream, name, sizeof(name));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200733
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200734 snd_printdd("%s snd_card_asihpi_timer_function\n", name);
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300735
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200736 /* find minimum newdata and buffer pos in group */
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300737 snd_pcm_group_for_each_entry(s, substream) {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200738 struct snd_card_asihpi_pcm *ds = s->runtime->private_data;
739 runtime = s->runtime;
740
741 if (snd_pcm_substream_chip(s) != card)
742 continue;
743
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300744 /* don't link Cap and Play */
745 if (substream->stream != s->stream)
746 continue;
747
748 hpi_handle_error(hpi_stream_get_info_ex(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200749 ds->h_stream, &state,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300750 &buffer_size, &bytes_avail,
751 &samples_played, &on_card_bytes));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200752
753 /* number of bytes in on-card buffer */
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300754 runtime->delay = on_card_bytes;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200755
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200756 if (!card->can_dma)
757 on_card_bytes = bytes_avail;
758
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300759 if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300760 pcm_buf_dma_ofs = ds->pcm_buf_host_rw_ofs - bytes_avail;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300761 if (state == HPI_STATE_STOPPED) {
Eliot Blennerhassett0be55c42011-12-22 13:38:37 +1300762 if (bytes_avail == 0) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300763 hpi_handle_error(hpi_stream_start(ds->h_stream));
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300764 snd_printdd("P%d start\n", s->number);
Eliot Blennerhassett0b7ce9e2011-04-05 20:55:43 +1200765 ds->drained_count = 0;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300766 }
767 } else if (state == HPI_STATE_DRAINED) {
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +1300768 snd_printd(KERN_WARNING "P%d drained\n",
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300769 s->number);
Eliot Blennerhassett0b7ce9e2011-04-05 20:55:43 +1200770 ds->drained_count++;
Eliot Blennerhassett0be55c42011-12-22 13:38:37 +1300771 if (ds->drained_count > 20) {
Eliot Blennerhassett0b7ce9e2011-04-05 20:55:43 +1200772 snd_pcm_stop(s, SNDRV_PCM_STATE_XRUN);
773 continue;
774 }
775 } else {
776 ds->drained_count = 0;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300777 }
778 } else
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300779 pcm_buf_dma_ofs = bytes_avail + ds->pcm_buf_host_rw_ofs;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200780
781 if (first) {
782 /* can't statically init min when wrap is involved */
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300783 min_buf_pos = pcm_buf_dma_ofs;
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300784 newdata = (pcm_buf_dma_ofs - ds->pcm_buf_elapsed_dma_ofs) % ds->buffer_bytes;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200785 first = 0;
786 } else {
787 min_buf_pos =
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300788 modulo_min(min_buf_pos, pcm_buf_dma_ofs, UINT_MAX+1L);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200789 newdata = min(
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300790 (pcm_buf_dma_ofs - ds->pcm_buf_elapsed_dma_ofs) % ds->buffer_bytes,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200791 newdata);
792 }
793
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200794 snd_printdd("hw_ptr 0x%04lX, appl_ptr 0x%04lX\n",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200795 (unsigned long)frames_to_bytes(runtime,
796 runtime->status->hw_ptr),
797 (unsigned long)frames_to_bytes(runtime,
798 runtime->control->appl_ptr));
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300799
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200800 snd_printdd("%d S=%d, "
801 "rw=0x%04X, dma=0x%04X, left=0x%04X, "
802 "aux=0x%04X space=0x%04X\n",
803 s->number, state,
804 ds->pcm_buf_host_rw_ofs, pcm_buf_dma_ofs,
805 (int)bytes_avail,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300806 (int)on_card_bytes, buffer_size-bytes_avail);
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300807 loops++;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200808 }
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300809 pcm_buf_dma_ofs = min_buf_pos;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200810
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300811 remdata = newdata % dpcm->period_bytes;
812 xfercount = newdata - remdata; /* a multiple of period_bytes */
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300813 /* come back when on_card_bytes has decreased enough to allow
814 write to happen, or when data has been consumed to make another
815 period
816 */
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300817 if (xfercount && (on_card_bytes > dpcm->period_bytes))
818 next_jiffies = ((on_card_bytes - dpcm->period_bytes) * HZ / dpcm->bytes_per_sec);
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300819 else
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300820 next_jiffies = ((dpcm->period_bytes - remdata) * HZ / dpcm->bytes_per_sec);
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300821
822 next_jiffies = max(next_jiffies, 1U);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200823 dpcm->timer.expires = jiffies + next_jiffies;
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200824 snd_printdd("jif %d buf pos 0x%04X newdata 0x%04X xfer 0x%04X\n",
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300825 next_jiffies, pcm_buf_dma_ofs, newdata, xfercount);
826
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300827 snd_pcm_group_for_each_entry(s, substream) {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200828 struct snd_card_asihpi_pcm *ds = s->runtime->private_data;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200829
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300830 /* don't link Cap and Play */
831 if (substream->stream != s->stream)
832 continue;
833
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300834 ds->pcm_buf_dma_ofs = pcm_buf_dma_ofs;
835
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200836 if (xfercount &&
837 /* Limit use of on card fifo for playback */
838 ((on_card_bytes <= ds->period_bytes) ||
839 (s->stream == SNDRV_PCM_STREAM_CAPTURE)))
840
841 {
842
843 unsigned int buf_ofs = ds->pcm_buf_host_rw_ofs % ds->buffer_bytes;
844 unsigned int xfer1, xfer2;
845 char *pd = &s->runtime->dma_area[buf_ofs];
846
Eliot Blennerhassettb0096a62011-04-05 20:55:46 +1200847 if (card->can_dma) { /* buffer wrap is handled at lower level */
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200848 xfer1 = xfercount;
849 xfer2 = 0;
850 } else {
851 xfer1 = min(xfercount, ds->buffer_bytes - buf_ofs);
852 xfer2 = xfercount - xfer1;
853 }
854
855 if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) {
856 snd_printddd("P%d write1 0x%04X 0x%04X\n",
857 s->number, xfer1, buf_ofs);
858 hpi_handle_error(
859 hpi_outstream_write_buf(
860 ds->h_stream, pd, xfer1,
861 &ds->format));
862
863 if (xfer2) {
864 pd = s->runtime->dma_area;
865
866 snd_printddd("P%d write2 0x%04X 0x%04X\n",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200867 s->number,
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200868 xfercount - xfer1, buf_ofs);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200869 hpi_handle_error(
870 hpi_outstream_write_buf(
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200871 ds->h_stream, pd,
872 xfercount - xfer1,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200873 &ds->format));
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200874 }
875 } else {
876 snd_printddd("C%d read1 0x%04x\n",
877 s->number, xfer1);
878 hpi_handle_error(
879 hpi_instream_read_buf(
880 ds->h_stream,
881 pd, xfer1));
882 if (xfer2) {
883 pd = s->runtime->dma_area;
884 snd_printddd("C%d read2 0x%04x\n",
885 s->number, xfer2);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200886 hpi_handle_error(
887 hpi_instream_read_buf(
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300888 ds->h_stream,
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200889 pd, xfer2));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200890 }
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +1200891 }
Eliot Blennerhassett47a74a52011-12-22 11:54:02 +1300892 ds->pcm_buf_host_rw_ofs += xfercount;
893 ds->pcm_buf_elapsed_dma_ofs += xfercount;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200894 snd_pcm_period_elapsed(s);
895 }
896 }
897
898 if (dpcm->respawn_timer)
899 add_timer(&dpcm->timer);
900}
901
902/***************************** PLAYBACK OPS ****************/
903static int snd_card_asihpi_playback_ioctl(struct snd_pcm_substream *substream,
904 unsigned int cmd, void *arg)
905{
Eliot Blennerhassettcbd757d2011-12-22 13:38:35 +1300906 char name[16];
907 snd_pcm_debug_name(substream, name, sizeof(name));
908 snd_printddd(KERN_INFO "%s ioctl %d\n", name, cmd);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200909 return snd_pcm_lib_ioctl(substream, cmd, arg);
910}
911
912static int snd_card_asihpi_playback_prepare(struct snd_pcm_substream *
913 substream)
914{
915 struct snd_pcm_runtime *runtime = substream->runtime;
916 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
917
Eliot Blennerhassetta6477132011-04-05 20:55:42 +1200918 snd_printdd("P%d prepare\n", substream->number);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200919
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300920 hpi_handle_error(hpi_outstream_reset(dpcm->h_stream));
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +1300921 dpcm->pcm_buf_host_rw_ofs = 0;
922 dpcm->pcm_buf_dma_ofs = 0;
923 dpcm->pcm_buf_elapsed_dma_ofs = 0;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200924 return 0;
925}
926
927static snd_pcm_uframes_t
928snd_card_asihpi_playback_pointer(struct snd_pcm_substream *substream)
929{
930 struct snd_pcm_runtime *runtime = substream->runtime;
931 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
932 snd_pcm_uframes_t ptr;
Eliot Blennerhassettcbd757d2011-12-22 13:38:35 +1300933 char name[16];
934 snd_pcm_debug_name(substream, name, sizeof(name));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200935
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300936 ptr = bytes_to_frames(runtime, dpcm->pcm_buf_dma_ofs % dpcm->buffer_bytes);
Eliot Blennerhassettcbd757d2011-12-22 13:38:35 +1300937 snd_printddd("%s pointer = 0x%04lx\n", name, (unsigned long)ptr);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200938 return ptr;
939}
940
941static void snd_card_asihpi_playback_format(struct snd_card_asihpi *asihpi,
942 u32 h_stream,
943 struct snd_pcm_hardware *pcmhw)
944{
945 struct hpi_format hpi_format;
946 u16 format;
947 u16 err;
948 u32 h_control;
949 u32 sample_rate = 48000;
950
951 /* on cards without SRC, must query at valid rate,
952 * maybe set by external sync
953 */
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300954 err = hpi_mixer_get_control(asihpi->h_mixer,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200955 HPI_SOURCENODE_CLOCK_SOURCE, 0, 0, 0,
956 HPI_CONTROL_SAMPLECLOCK, &h_control);
957
958 if (!err)
Eliot Blennerhassettba944552011-02-10 17:26:04 +1300959 err = hpi_sample_clock_get_sample_rate(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200960 &sample_rate);
961
962 for (format = HPI_FORMAT_PCM8_UNSIGNED;
963 format <= HPI_FORMAT_PCM24_SIGNED; format++) {
Eliot Blennerhassettc1d70dd2011-12-22 13:38:50 +1300964 err = hpi_format_create(&hpi_format, asihpi->out_max_chans,
965 format, sample_rate, 128000, 0);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200966 if (!err)
Eliot Blennerhassettc1d70dd2011-12-22 13:38:50 +1300967 err = hpi_outstream_query_format(h_stream, &hpi_format);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200968 if (!err && (hpi_to_alsa_formats[format] != -1))
Eliot Blennerhassettc1d70dd2011-12-22 13:38:50 +1300969 pcmhw->formats |= (1ULL << hpi_to_alsa_formats[format]);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200970 }
971}
972
973static struct snd_pcm_hardware snd_card_asihpi_playback = {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200974 .buffer_bytes_max = BUFFER_BYTES_MAX,
975 .period_bytes_min = PERIOD_BYTES_MIN,
976 .period_bytes_max = BUFFER_BYTES_MAX / PERIODS_MIN,
977 .periods_min = PERIODS_MIN,
978 .periods_max = BUFFER_BYTES_MAX / PERIOD_BYTES_MIN,
979 .fifo_size = 0,
980};
981
982static int snd_card_asihpi_playback_open(struct snd_pcm_substream *substream)
983{
984 struct snd_pcm_runtime *runtime = substream->runtime;
985 struct snd_card_asihpi_pcm *dpcm;
986 struct snd_card_asihpi *card = snd_pcm_substream_chip(substream);
987 int err;
988
989 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
990 if (dpcm == NULL)
991 return -ENOMEM;
992
993 err =
Eliot Blennerhassett7036b922011-12-22 13:38:43 +1300994 hpi_outstream_open(card->hpi->adapter->index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +0200995 substream->number, &dpcm->h_stream);
996 hpi_handle_error(err);
997 if (err)
998 kfree(dpcm);
999 if (err == HPI_ERROR_OBJ_ALREADY_OPEN)
1000 return -EBUSY;
1001 if (err)
1002 return -EIO;
1003
1004 /*? also check ASI5000 samplerate source
1005 If external, only support external rate.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001006 If internal and other stream playing, can't switch
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001007 */
1008
1009 init_timer(&dpcm->timer);
1010 dpcm->timer.data = (unsigned long) dpcm;
1011 dpcm->timer.function = snd_card_asihpi_timer_function;
1012 dpcm->substream = substream;
1013 runtime->private_data = dpcm;
1014 runtime->private_free = snd_card_asihpi_runtime_free;
1015
1016 snd_card_asihpi_playback.channels_max = card->out_max_chans;
Eliot Blennerhassettc382a5d2011-12-22 13:38:33 +13001017 snd_card_asihpi_playback.channels_min = card->out_min_chans;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001018 /*?snd_card_asihpi_playback.period_bytes_min =
1019 card->out_max_chans * 4096; */
1020
1021 snd_card_asihpi_playback_format(card, dpcm->h_stream,
1022 &snd_card_asihpi_playback);
1023
1024 snd_card_asihpi_pcm_samplerates(card, &snd_card_asihpi_playback);
1025
1026 snd_card_asihpi_playback.info = SNDRV_PCM_INFO_INTERLEAVED |
1027 SNDRV_PCM_INFO_DOUBLE |
1028 SNDRV_PCM_INFO_BATCH |
1029 SNDRV_PCM_INFO_BLOCK_TRANSFER |
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12001030 SNDRV_PCM_INFO_PAUSE |
1031 SNDRV_PCM_INFO_MMAP |
1032 SNDRV_PCM_INFO_MMAP_VALID;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001033
Eliot Blennerhassett09c728a2011-12-22 13:38:38 +13001034 if (card->support_grouping) {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001035 snd_card_asihpi_playback.info |= SNDRV_PCM_INFO_SYNC_START;
Eliot Blennerhassett09c728a2011-12-22 13:38:38 +13001036 snd_pcm_set_sync(substream);
1037 }
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001038
1039 /* struct is copied, so can create initializer dynamically */
1040 runtime->hw = snd_card_asihpi_playback;
1041
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12001042 if (card->can_dma)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001043 err = snd_pcm_hw_constraint_pow2(runtime, 0,
1044 SNDRV_PCM_HW_PARAM_BUFFER_BYTES);
1045 if (err < 0)
1046 return err;
1047
1048 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1049 card->update_interval_frames);
Eliot Blennerhassett26aebef2011-03-25 15:25:47 +13001050
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001051 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001052 card->update_interval_frames * 2, UINT_MAX);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001053
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +13001054 snd_printdd("playback open\n");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001055
1056 return 0;
1057}
1058
1059static int snd_card_asihpi_playback_close(struct snd_pcm_substream *substream)
1060{
1061 struct snd_pcm_runtime *runtime = substream->runtime;
1062 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
1063
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001064 hpi_handle_error(hpi_outstream_close(dpcm->h_stream));
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +13001065 snd_printdd("playback close\n");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001066
1067 return 0;
1068}
1069
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001070static struct snd_pcm_ops snd_card_asihpi_playback_mmap_ops = {
1071 .open = snd_card_asihpi_playback_open,
1072 .close = snd_card_asihpi_playback_close,
1073 .ioctl = snd_card_asihpi_playback_ioctl,
1074 .hw_params = snd_card_asihpi_pcm_hw_params,
1075 .hw_free = snd_card_asihpi_hw_free,
1076 .prepare = snd_card_asihpi_playback_prepare,
1077 .trigger = snd_card_asihpi_trigger,
1078 .pointer = snd_card_asihpi_playback_pointer,
1079};
1080
1081/***************************** CAPTURE OPS ****************/
1082static snd_pcm_uframes_t
1083snd_card_asihpi_capture_pointer(struct snd_pcm_substream *substream)
1084{
1085 struct snd_pcm_runtime *runtime = substream->runtime;
1086 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
1087
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +13001088 snd_printddd("capture pointer %d=%d\n",
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001089 substream->number, dpcm->pcm_buf_dma_ofs);
1090 /* NOTE Unlike playback can't use actual samples_played
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001091 for the capture position, because those samples aren't yet in
1092 the local buffer available for reading.
1093 */
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001094 return bytes_to_frames(runtime, dpcm->pcm_buf_dma_ofs % dpcm->buffer_bytes);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001095}
1096
1097static int snd_card_asihpi_capture_ioctl(struct snd_pcm_substream *substream,
1098 unsigned int cmd, void *arg)
1099{
1100 return snd_pcm_lib_ioctl(substream, cmd, arg);
1101}
1102
1103static int snd_card_asihpi_capture_prepare(struct snd_pcm_substream *substream)
1104{
1105 struct snd_pcm_runtime *runtime = substream->runtime;
1106 struct snd_card_asihpi_pcm *dpcm = runtime->private_data;
1107
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001108 hpi_handle_error(hpi_instream_reset(dpcm->h_stream));
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001109 dpcm->pcm_buf_host_rw_ofs = 0;
1110 dpcm->pcm_buf_dma_ofs = 0;
1111 dpcm->pcm_buf_elapsed_dma_ofs = 0;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001112
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +13001113 snd_printdd("Capture Prepare %d\n", substream->number);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001114 return 0;
1115}
1116
1117
1118
1119static void snd_card_asihpi_capture_format(struct snd_card_asihpi *asihpi,
1120 u32 h_stream,
1121 struct snd_pcm_hardware *pcmhw)
1122{
1123 struct hpi_format hpi_format;
1124 u16 format;
1125 u16 err;
1126 u32 h_control;
1127 u32 sample_rate = 48000;
1128
1129 /* on cards without SRC, must query at valid rate,
1130 maybe set by external sync */
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001131 err = hpi_mixer_get_control(asihpi->h_mixer,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001132 HPI_SOURCENODE_CLOCK_SOURCE, 0, 0, 0,
1133 HPI_CONTROL_SAMPLECLOCK, &h_control);
1134
1135 if (!err)
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001136 err = hpi_sample_clock_get_sample_rate(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001137 &sample_rate);
1138
1139 for (format = HPI_FORMAT_PCM8_UNSIGNED;
1140 format <= HPI_FORMAT_PCM24_SIGNED; format++) {
1141
Eliot Blennerhassettc1d70dd2011-12-22 13:38:50 +13001142 err = hpi_format_create(&hpi_format, asihpi->in_max_chans,
1143 format, sample_rate, 128000, 0);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001144 if (!err)
Eliot Blennerhassettc1d70dd2011-12-22 13:38:50 +13001145 err = hpi_instream_query_format(h_stream, &hpi_format);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001146 if (!err)
Eliot Blennerhassettc1d70dd2011-12-22 13:38:50 +13001147 pcmhw->formats |= (1ULL << hpi_to_alsa_formats[format]);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001148 }
1149}
1150
1151
1152static struct snd_pcm_hardware snd_card_asihpi_capture = {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001153 .buffer_bytes_max = BUFFER_BYTES_MAX,
1154 .period_bytes_min = PERIOD_BYTES_MIN,
1155 .period_bytes_max = BUFFER_BYTES_MAX / PERIODS_MIN,
1156 .periods_min = PERIODS_MIN,
1157 .periods_max = BUFFER_BYTES_MAX / PERIOD_BYTES_MIN,
1158 .fifo_size = 0,
1159};
1160
1161static int snd_card_asihpi_capture_open(struct snd_pcm_substream *substream)
1162{
1163 struct snd_pcm_runtime *runtime = substream->runtime;
1164 struct snd_card_asihpi *card = snd_pcm_substream_chip(substream);
1165 struct snd_card_asihpi_pcm *dpcm;
1166 int err;
1167
1168 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
1169 if (dpcm == NULL)
1170 return -ENOMEM;
1171
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +13001172 snd_printdd("capture open adapter %d stream %d\n",
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13001173 card->hpi->adapter->index, substream->number);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001174
1175 err = hpi_handle_error(
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13001176 hpi_instream_open(card->hpi->adapter->index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001177 substream->number, &dpcm->h_stream));
1178 if (err)
1179 kfree(dpcm);
1180 if (err == HPI_ERROR_OBJ_ALREADY_OPEN)
1181 return -EBUSY;
1182 if (err)
1183 return -EIO;
1184
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001185 init_timer(&dpcm->timer);
1186 dpcm->timer.data = (unsigned long) dpcm;
1187 dpcm->timer.function = snd_card_asihpi_timer_function;
1188 dpcm->substream = substream;
1189 runtime->private_data = dpcm;
1190 runtime->private_free = snd_card_asihpi_runtime_free;
1191
1192 snd_card_asihpi_capture.channels_max = card->in_max_chans;
Eliot Blennerhassettc382a5d2011-12-22 13:38:33 +13001193 snd_card_asihpi_capture.channels_min = card->in_min_chans;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001194 snd_card_asihpi_capture_format(card, dpcm->h_stream,
1195 &snd_card_asihpi_capture);
1196 snd_card_asihpi_pcm_samplerates(card, &snd_card_asihpi_capture);
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12001197 snd_card_asihpi_capture.info = SNDRV_PCM_INFO_INTERLEAVED |
1198 SNDRV_PCM_INFO_MMAP |
1199 SNDRV_PCM_INFO_MMAP_VALID;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001200
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001201 if (card->support_grouping)
1202 snd_card_asihpi_capture.info |= SNDRV_PCM_INFO_SYNC_START;
1203
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001204 runtime->hw = snd_card_asihpi_capture;
1205
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12001206 if (card->can_dma)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001207 err = snd_pcm_hw_constraint_pow2(runtime, 0,
1208 SNDRV_PCM_HW_PARAM_BUFFER_BYTES);
1209 if (err < 0)
1210 return err;
1211
1212 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1213 card->update_interval_frames);
1214 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1215 card->update_interval_frames * 2, UINT_MAX);
1216
1217 snd_pcm_set_sync(substream);
1218
1219 return 0;
1220}
1221
1222static int snd_card_asihpi_capture_close(struct snd_pcm_substream *substream)
1223{
1224 struct snd_card_asihpi_pcm *dpcm = substream->runtime->private_data;
1225
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001226 hpi_handle_error(hpi_instream_close(dpcm->h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001227 return 0;
1228}
1229
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001230static struct snd_pcm_ops snd_card_asihpi_capture_mmap_ops = {
1231 .open = snd_card_asihpi_capture_open,
1232 .close = snd_card_asihpi_capture_close,
1233 .ioctl = snd_card_asihpi_capture_ioctl,
1234 .hw_params = snd_card_asihpi_pcm_hw_params,
1235 .hw_free = snd_card_asihpi_hw_free,
1236 .prepare = snd_card_asihpi_capture_prepare,
1237 .trigger = snd_card_asihpi_trigger,
1238 .pointer = snd_card_asihpi_capture_pointer,
1239};
1240
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13001241static int __devinit snd_card_asihpi_pcm_new(
1242 struct snd_card_asihpi *asihpi, int device)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001243{
1244 struct snd_pcm *pcm;
1245 int err;
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13001246 u16 num_instreams, num_outstreams, x16;
1247 u32 x32;
1248
1249 err = hpi_adapter_get_info(asihpi->hpi->adapter->index,
1250 &num_outstreams, &num_instreams,
1251 &x16, &x32, &x16);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001252
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001253 err = snd_pcm_new(asihpi->card, "Asihpi PCM", device,
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13001254 num_outstreams, num_instreams, &pcm);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001255 if (err < 0)
1256 return err;
1257 /* pointer to ops struct is stored, dont change ops afterwards! */
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001258 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1259 &snd_card_asihpi_playback_mmap_ops);
1260 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1261 &snd_card_asihpi_capture_mmap_ops);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001262
1263 pcm->private_data = asihpi;
1264 pcm->info_flags = 0;
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001265 strcpy(pcm->name, "Asihpi PCM");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001266
1267 /*? do we want to emulate MMAP for non-BBM cards?
1268 Jack doesn't work with ALSAs MMAP emulation - WHY NOT? */
1269 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1270 snd_dma_pci_data(asihpi->pci),
1271 64*1024, BUFFER_BYTES_MAX);
1272
1273 return 0;
1274}
1275
1276/***************************** MIXER CONTROLS ****************/
1277struct hpi_control {
1278 u32 h_control;
1279 u16 control_type;
1280 u16 src_node_type;
1281 u16 src_node_index;
1282 u16 dst_node_type;
1283 u16 dst_node_index;
1284 u16 band;
1285 char name[44]; /* copied to snd_ctl_elem_id.name[44]; */
1286};
1287
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001288static const char * const asihpi_tuner_band_names[] = {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001289 "invalid",
1290 "AM",
1291 "FM mono",
1292 "TV NTSC-M",
1293 "FM stereo",
1294 "AUX",
1295 "TV PAL BG",
1296 "TV PAL I",
1297 "TV PAL DK",
1298 "TV SECAM",
1299};
1300
1301compile_time_assert(
1302 (ARRAY_SIZE(asihpi_tuner_band_names) ==
1303 (HPI_TUNER_BAND_LAST+1)),
1304 assert_tuner_band_names_size);
1305
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001306static const char * const asihpi_src_names[] = {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001307 "no source",
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001308 "PCM",
1309 "Line",
1310 "Digital",
1311 "Tuner",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001312 "RF",
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001313 "Clock",
1314 "Bitstream",
Eliot Blennerhassettc8306132011-07-22 15:53:00 +12001315 "Mic",
1316 "Net",
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001317 "Analog",
1318 "Adapter",
Eliot Blennerhassettc8306132011-07-22 15:53:00 +12001319 "RTP",
Eliot Blennerhassett502f2712011-12-22 13:38:39 +13001320 "Internal"
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001321};
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001322
1323compile_time_assert(
1324 (ARRAY_SIZE(asihpi_src_names) ==
Eliot Blennerhassett168f1b02010-07-06 08:37:06 +12001325 (HPI_SOURCENODE_LAST_INDEX-HPI_SOURCENODE_NONE+1)),
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001326 assert_src_names_size);
1327
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001328static const char * const asihpi_dst_names[] = {
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001329 "no destination",
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001330 "PCM",
1331 "Line",
1332 "Digital",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001333 "RF",
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001334 "Speaker",
Eliot Blennerhassettc8306132011-07-22 15:53:00 +12001335 "Net",
1336 "Analog",
1337 "RTP",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001338};
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001339
1340compile_time_assert(
1341 (ARRAY_SIZE(asihpi_dst_names) ==
Eliot Blennerhassett168f1b02010-07-06 08:37:06 +12001342 (HPI_DESTNODE_LAST_INDEX-HPI_DESTNODE_NONE+1)),
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001343 assert_dst_names_size);
1344
1345static inline int ctl_add(struct snd_card *card, struct snd_kcontrol_new *ctl,
1346 struct snd_card_asihpi *asihpi)
1347{
1348 int err;
1349
1350 err = snd_ctl_add(card, snd_ctl_new1(ctl, asihpi));
1351 if (err < 0)
1352 return err;
1353 else if (mixer_dump)
1354 snd_printk(KERN_INFO "added %s(%d)\n", ctl->name, ctl->index);
1355
1356 return 0;
1357}
1358
1359/* Convert HPI control name and location into ALSA control name */
1360static void asihpi_ctl_init(struct snd_kcontrol_new *snd_control,
1361 struct hpi_control *hpi_ctl,
1362 char *name)
1363{
Eliot Blennerhassett550ac6b2011-04-05 20:55:41 +12001364 char *dir;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001365 memset(snd_control, 0, sizeof(*snd_control));
1366 snd_control->name = hpi_ctl->name;
1367 snd_control->private_value = hpi_ctl->h_control;
1368 snd_control->iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1369 snd_control->index = 0;
1370
Eliot Blennerhassett550ac6b2011-04-05 20:55:41 +12001371 if (hpi_ctl->src_node_type + HPI_SOURCENODE_NONE == HPI_SOURCENODE_CLOCK_SOURCE)
1372 dir = ""; /* clock is neither capture nor playback */
1373 else if (hpi_ctl->dst_node_type + HPI_DESTNODE_NONE == HPI_DESTNODE_ISTREAM)
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001374 dir = "Capture "; /* On or towards a PCM capture destination*/
1375 else if ((hpi_ctl->src_node_type + HPI_SOURCENODE_NONE != HPI_SOURCENODE_OSTREAM) &&
1376 (!hpi_ctl->dst_node_type))
1377 dir = "Capture "; /* On a source node that is not PCM playback */
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001378 else if (hpi_ctl->src_node_type &&
1379 (hpi_ctl->src_node_type + HPI_SOURCENODE_NONE != HPI_SOURCENODE_OSTREAM) &&
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001380 (hpi_ctl->dst_node_type))
1381 dir = "Monitor Playback "; /* Between an input and an output */
1382 else
1383 dir = "Playback "; /* PCM Playback source, or output node */
1384
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001385 if (hpi_ctl->src_node_type && hpi_ctl->dst_node_type)
Eliot Blennerhassett550ac6b2011-04-05 20:55:41 +12001386 sprintf(hpi_ctl->name, "%s %d %s %d %s%s",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001387 asihpi_src_names[hpi_ctl->src_node_type],
1388 hpi_ctl->src_node_index,
1389 asihpi_dst_names[hpi_ctl->dst_node_type],
1390 hpi_ctl->dst_node_index,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001391 dir, name);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001392 else if (hpi_ctl->dst_node_type) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001393 sprintf(hpi_ctl->name, "%s %d %s%s",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001394 asihpi_dst_names[hpi_ctl->dst_node_type],
1395 hpi_ctl->dst_node_index,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001396 dir, name);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001397 } else {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001398 sprintf(hpi_ctl->name, "%s %d %s%s",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001399 asihpi_src_names[hpi_ctl->src_node_type],
1400 hpi_ctl->src_node_index,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001401 dir, name);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001402 }
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001403 /* printk(KERN_INFO "Adding %s %d to %d ", hpi_ctl->name,
1404 hpi_ctl->wSrcNodeType, hpi_ctl->wDstNodeType); */
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001405}
1406
1407/*------------------------------------------------------------
1408 Volume controls
1409 ------------------------------------------------------------*/
1410#define VOL_STEP_mB 1
1411static int snd_asihpi_volume_info(struct snd_kcontrol *kcontrol,
1412 struct snd_ctl_elem_info *uinfo)
1413{
1414 u32 h_control = kcontrol->private_value;
Eliot Blennerhassettd4b06d22011-12-22 13:38:34 +13001415 u32 count;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001416 u16 err;
1417 /* native gains are in millibels */
1418 short min_gain_mB;
1419 short max_gain_mB;
1420 short step_gain_mB;
1421
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001422 err = hpi_volume_query_range(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001423 &min_gain_mB, &max_gain_mB, &step_gain_mB);
1424 if (err) {
1425 max_gain_mB = 0;
1426 min_gain_mB = -10000;
1427 step_gain_mB = VOL_STEP_mB;
1428 }
1429
Eliot Blennerhassettd4b06d22011-12-22 13:38:34 +13001430 err = hpi_meter_query_channels(h_control, &count);
1431 if (err)
1432 count = HPI_MAX_CHANNELS;
1433
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001434 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Eliot Blennerhassettd4b06d22011-12-22 13:38:34 +13001435 uinfo->count = count;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001436 uinfo->value.integer.min = min_gain_mB / VOL_STEP_mB;
1437 uinfo->value.integer.max = max_gain_mB / VOL_STEP_mB;
1438 uinfo->value.integer.step = step_gain_mB / VOL_STEP_mB;
1439 return 0;
1440}
1441
1442static int snd_asihpi_volume_get(struct snd_kcontrol *kcontrol,
1443 struct snd_ctl_elem_value *ucontrol)
1444{
1445 u32 h_control = kcontrol->private_value;
1446 short an_gain_mB[HPI_MAX_CHANNELS];
1447
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001448 hpi_handle_error(hpi_volume_get_gain(h_control, an_gain_mB));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001449 ucontrol->value.integer.value[0] = an_gain_mB[0] / VOL_STEP_mB;
1450 ucontrol->value.integer.value[1] = an_gain_mB[1] / VOL_STEP_mB;
1451
1452 return 0;
1453}
1454
1455static int snd_asihpi_volume_put(struct snd_kcontrol *kcontrol,
1456 struct snd_ctl_elem_value *ucontrol)
1457{
1458 int change;
1459 u32 h_control = kcontrol->private_value;
1460 short an_gain_mB[HPI_MAX_CHANNELS];
1461
1462 an_gain_mB[0] =
1463 (ucontrol->value.integer.value[0]) * VOL_STEP_mB;
1464 an_gain_mB[1] =
1465 (ucontrol->value.integer.value[1]) * VOL_STEP_mB;
1466 /* change = asihpi->mixer_volume[addr][0] != left ||
1467 asihpi->mixer_volume[addr][1] != right;
1468 */
1469 change = 1;
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001470 hpi_handle_error(hpi_volume_set_gain(h_control, an_gain_mB));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001471 return change;
1472}
1473
1474static const DECLARE_TLV_DB_SCALE(db_scale_100, -10000, VOL_STEP_mB, 0);
1475
Takashi Iwai000477a2011-07-22 07:57:44 +02001476#define snd_asihpi_volume_mute_info snd_ctl_boolean_mono_info
Eliot Blennerhassettfe0aa88e2011-07-22 15:53:03 +12001477
1478static int snd_asihpi_volume_mute_get(struct snd_kcontrol *kcontrol,
1479 struct snd_ctl_elem_value *ucontrol)
1480{
1481 u32 h_control = kcontrol->private_value;
1482 u32 mute;
1483
1484 hpi_handle_error(hpi_volume_get_mute(h_control, &mute));
1485 ucontrol->value.integer.value[0] = mute ? 0 : 1;
1486
1487 return 0;
1488}
1489
1490static int snd_asihpi_volume_mute_put(struct snd_kcontrol *kcontrol,
1491 struct snd_ctl_elem_value *ucontrol)
1492{
1493 u32 h_control = kcontrol->private_value;
1494 int change = 1;
1495 /* HPI currently only supports all or none muting of multichannel volume
1496 ALSA Switch element has opposite sense to HPI mute: on==unmuted, off=muted
1497 */
1498 int mute = ucontrol->value.integer.value[0] ? 0 : HPI_BITMASK_ALL_CHANNELS;
1499 hpi_handle_error(hpi_volume_set_mute(h_control, mute));
1500 return change;
1501}
1502
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001503static int __devinit snd_asihpi_volume_add(struct snd_card_asihpi *asihpi,
1504 struct hpi_control *hpi_ctl)
1505{
1506 struct snd_card *card = asihpi->card;
1507 struct snd_kcontrol_new snd_control;
Eliot Blennerhassettfe0aa88e2011-07-22 15:53:03 +12001508 int err;
1509 u32 mute;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001510
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001511 asihpi_ctl_init(&snd_control, hpi_ctl, "Volume");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001512 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
1513 SNDRV_CTL_ELEM_ACCESS_TLV_READ;
1514 snd_control.info = snd_asihpi_volume_info;
1515 snd_control.get = snd_asihpi_volume_get;
1516 snd_control.put = snd_asihpi_volume_put;
1517 snd_control.tlv.p = db_scale_100;
1518
Eliot Blennerhassettfe0aa88e2011-07-22 15:53:03 +12001519 err = ctl_add(card, &snd_control, asihpi);
1520 if (err)
1521 return err;
1522
1523 if (hpi_volume_get_mute(hpi_ctl->h_control, &mute) == 0) {
1524 asihpi_ctl_init(&snd_control, hpi_ctl, "Switch");
1525 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
1526 snd_control.info = snd_asihpi_volume_mute_info;
1527 snd_control.get = snd_asihpi_volume_mute_get;
1528 snd_control.put = snd_asihpi_volume_mute_put;
1529 err = ctl_add(card, &snd_control, asihpi);
1530 }
1531 return err;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001532}
1533
1534/*------------------------------------------------------------
1535 Level controls
1536 ------------------------------------------------------------*/
1537static int snd_asihpi_level_info(struct snd_kcontrol *kcontrol,
1538 struct snd_ctl_elem_info *uinfo)
1539{
1540 u32 h_control = kcontrol->private_value;
1541 u16 err;
1542 short min_gain_mB;
1543 short max_gain_mB;
1544 short step_gain_mB;
1545
1546 err =
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001547 hpi_level_query_range(h_control, &min_gain_mB,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001548 &max_gain_mB, &step_gain_mB);
1549 if (err) {
1550 max_gain_mB = 2400;
1551 min_gain_mB = -1000;
1552 step_gain_mB = 100;
1553 }
1554
1555 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1556 uinfo->count = 2;
1557 uinfo->value.integer.min = min_gain_mB / HPI_UNITS_PER_dB;
1558 uinfo->value.integer.max = max_gain_mB / HPI_UNITS_PER_dB;
1559 uinfo->value.integer.step = step_gain_mB / HPI_UNITS_PER_dB;
1560 return 0;
1561}
1562
1563static int snd_asihpi_level_get(struct snd_kcontrol *kcontrol,
1564 struct snd_ctl_elem_value *ucontrol)
1565{
1566 u32 h_control = kcontrol->private_value;
1567 short an_gain_mB[HPI_MAX_CHANNELS];
1568
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001569 hpi_handle_error(hpi_level_get_gain(h_control, an_gain_mB));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001570 ucontrol->value.integer.value[0] =
1571 an_gain_mB[0] / HPI_UNITS_PER_dB;
1572 ucontrol->value.integer.value[1] =
1573 an_gain_mB[1] / HPI_UNITS_PER_dB;
1574
1575 return 0;
1576}
1577
1578static int snd_asihpi_level_put(struct snd_kcontrol *kcontrol,
1579 struct snd_ctl_elem_value *ucontrol)
1580{
1581 int change;
1582 u32 h_control = kcontrol->private_value;
1583 short an_gain_mB[HPI_MAX_CHANNELS];
1584
1585 an_gain_mB[0] =
1586 (ucontrol->value.integer.value[0]) * HPI_UNITS_PER_dB;
1587 an_gain_mB[1] =
1588 (ucontrol->value.integer.value[1]) * HPI_UNITS_PER_dB;
1589 /* change = asihpi->mixer_level[addr][0] != left ||
1590 asihpi->mixer_level[addr][1] != right;
1591 */
1592 change = 1;
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001593 hpi_handle_error(hpi_level_set_gain(h_control, an_gain_mB));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001594 return change;
1595}
1596
1597static const DECLARE_TLV_DB_SCALE(db_scale_level, -1000, 100, 0);
1598
1599static int __devinit snd_asihpi_level_add(struct snd_card_asihpi *asihpi,
1600 struct hpi_control *hpi_ctl)
1601{
1602 struct snd_card *card = asihpi->card;
1603 struct snd_kcontrol_new snd_control;
1604
1605 /* can't use 'volume' cos some nodes have volume as well */
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001606 asihpi_ctl_init(&snd_control, hpi_ctl, "Level");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001607 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
1608 SNDRV_CTL_ELEM_ACCESS_TLV_READ;
1609 snd_control.info = snd_asihpi_level_info;
1610 snd_control.get = snd_asihpi_level_get;
1611 snd_control.put = snd_asihpi_level_put;
1612 snd_control.tlv.p = db_scale_level;
1613
1614 return ctl_add(card, &snd_control, asihpi);
1615}
1616
1617/*------------------------------------------------------------
1618 AESEBU controls
1619 ------------------------------------------------------------*/
1620
1621/* AESEBU format */
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001622static const char * const asihpi_aesebu_format_names[] = {
1623 "N/A", "S/PDIF", "AES/EBU" };
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001624
1625static int snd_asihpi_aesebu_format_info(struct snd_kcontrol *kcontrol,
1626 struct snd_ctl_elem_info *uinfo)
1627{
1628 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1629 uinfo->count = 1;
1630 uinfo->value.enumerated.items = 3;
1631
1632 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1633 uinfo->value.enumerated.item =
1634 uinfo->value.enumerated.items - 1;
1635
1636 strcpy(uinfo->value.enumerated.name,
1637 asihpi_aesebu_format_names[uinfo->value.enumerated.item]);
1638
1639 return 0;
1640}
1641
1642static int snd_asihpi_aesebu_format_get(struct snd_kcontrol *kcontrol,
1643 struct snd_ctl_elem_value *ucontrol,
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001644 u16 (*func)(u32, u16 *))
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001645{
1646 u32 h_control = kcontrol->private_value;
1647 u16 source, err;
1648
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001649 err = func(h_control, &source);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001650
1651 /* default to N/A */
1652 ucontrol->value.enumerated.item[0] = 0;
1653 /* return success but set the control to N/A */
1654 if (err)
1655 return 0;
1656 if (source == HPI_AESEBU_FORMAT_SPDIF)
1657 ucontrol->value.enumerated.item[0] = 1;
1658 if (source == HPI_AESEBU_FORMAT_AESEBU)
1659 ucontrol->value.enumerated.item[0] = 2;
1660
1661 return 0;
1662}
1663
1664static int snd_asihpi_aesebu_format_put(struct snd_kcontrol *kcontrol,
1665 struct snd_ctl_elem_value *ucontrol,
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001666 u16 (*func)(u32, u16))
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001667{
1668 u32 h_control = kcontrol->private_value;
1669
1670 /* default to S/PDIF */
1671 u16 source = HPI_AESEBU_FORMAT_SPDIF;
1672
1673 if (ucontrol->value.enumerated.item[0] == 1)
1674 source = HPI_AESEBU_FORMAT_SPDIF;
1675 if (ucontrol->value.enumerated.item[0] == 2)
1676 source = HPI_AESEBU_FORMAT_AESEBU;
1677
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001678 if (func(h_control, source) != 0)
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001679 return -EINVAL;
1680
1681 return 1;
1682}
1683
1684static int snd_asihpi_aesebu_rx_format_get(struct snd_kcontrol *kcontrol,
1685 struct snd_ctl_elem_value *ucontrol) {
1686 return snd_asihpi_aesebu_format_get(kcontrol, ucontrol,
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001687 hpi_aesebu_receiver_get_format);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001688}
1689
1690static int snd_asihpi_aesebu_rx_format_put(struct snd_kcontrol *kcontrol,
1691 struct snd_ctl_elem_value *ucontrol) {
1692 return snd_asihpi_aesebu_format_put(kcontrol, ucontrol,
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001693 hpi_aesebu_receiver_set_format);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001694}
1695
1696static int snd_asihpi_aesebu_rxstatus_info(struct snd_kcontrol *kcontrol,
1697 struct snd_ctl_elem_info *uinfo)
1698{
1699 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1700 uinfo->count = 1;
1701
1702 uinfo->value.integer.min = 0;
1703 uinfo->value.integer.max = 0X1F;
1704 uinfo->value.integer.step = 1;
1705
1706 return 0;
1707}
1708
1709static int snd_asihpi_aesebu_rxstatus_get(struct snd_kcontrol *kcontrol,
1710 struct snd_ctl_elem_value *ucontrol) {
1711
1712 u32 h_control = kcontrol->private_value;
1713 u16 status;
1714
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001715 hpi_handle_error(hpi_aesebu_receiver_get_error_status(
1716 h_control, &status));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001717 ucontrol->value.integer.value[0] = status;
1718 return 0;
1719}
1720
1721static int __devinit snd_asihpi_aesebu_rx_add(struct snd_card_asihpi *asihpi,
1722 struct hpi_control *hpi_ctl)
1723{
1724 struct snd_card *card = asihpi->card;
1725 struct snd_kcontrol_new snd_control;
1726
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001727 asihpi_ctl_init(&snd_control, hpi_ctl, "Format");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001728 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
1729 snd_control.info = snd_asihpi_aesebu_format_info;
1730 snd_control.get = snd_asihpi_aesebu_rx_format_get;
1731 snd_control.put = snd_asihpi_aesebu_rx_format_put;
1732
1733
1734 if (ctl_add(card, &snd_control, asihpi) < 0)
1735 return -EINVAL;
1736
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001737 asihpi_ctl_init(&snd_control, hpi_ctl, "Status");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001738 snd_control.access =
1739 SNDRV_CTL_ELEM_ACCESS_VOLATILE | SNDRV_CTL_ELEM_ACCESS_READ;
1740 snd_control.info = snd_asihpi_aesebu_rxstatus_info;
1741 snd_control.get = snd_asihpi_aesebu_rxstatus_get;
1742
1743 return ctl_add(card, &snd_control, asihpi);
1744}
1745
1746static int snd_asihpi_aesebu_tx_format_get(struct snd_kcontrol *kcontrol,
1747 struct snd_ctl_elem_value *ucontrol) {
1748 return snd_asihpi_aesebu_format_get(kcontrol, ucontrol,
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001749 hpi_aesebu_transmitter_get_format);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001750}
1751
1752static int snd_asihpi_aesebu_tx_format_put(struct snd_kcontrol *kcontrol,
1753 struct snd_ctl_elem_value *ucontrol) {
1754 return snd_asihpi_aesebu_format_put(kcontrol, ucontrol,
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001755 hpi_aesebu_transmitter_set_format);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001756}
1757
1758
1759static int __devinit snd_asihpi_aesebu_tx_add(struct snd_card_asihpi *asihpi,
1760 struct hpi_control *hpi_ctl)
1761{
1762 struct snd_card *card = asihpi->card;
1763 struct snd_kcontrol_new snd_control;
1764
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13001765 asihpi_ctl_init(&snd_control, hpi_ctl, "Format");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001766 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
1767 snd_control.info = snd_asihpi_aesebu_format_info;
1768 snd_control.get = snd_asihpi_aesebu_tx_format_get;
1769 snd_control.put = snd_asihpi_aesebu_tx_format_put;
1770
1771 return ctl_add(card, &snd_control, asihpi);
1772}
1773
1774/*------------------------------------------------------------
1775 Tuner controls
1776 ------------------------------------------------------------*/
1777
1778/* Gain */
1779
1780static int snd_asihpi_tuner_gain_info(struct snd_kcontrol *kcontrol,
1781 struct snd_ctl_elem_info *uinfo)
1782{
1783 u32 h_control = kcontrol->private_value;
1784 u16 err;
1785 short idx;
1786 u16 gain_range[3];
1787
1788 for (idx = 0; idx < 3; idx++) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001789 err = hpi_tuner_query_gain(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001790 idx, &gain_range[idx]);
1791 if (err != 0)
1792 return err;
1793 }
1794
1795 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1796 uinfo->count = 1;
1797 uinfo->value.integer.min = ((int)gain_range[0]) / HPI_UNITS_PER_dB;
1798 uinfo->value.integer.max = ((int)gain_range[1]) / HPI_UNITS_PER_dB;
1799 uinfo->value.integer.step = ((int) gain_range[2]) / HPI_UNITS_PER_dB;
1800 return 0;
1801}
1802
1803static int snd_asihpi_tuner_gain_get(struct snd_kcontrol *kcontrol,
1804 struct snd_ctl_elem_value *ucontrol)
1805{
1806 /*
1807 struct snd_card_asihpi *asihpi = snd_kcontrol_chip(kcontrol);
1808 */
1809 u32 h_control = kcontrol->private_value;
1810 short gain;
1811
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001812 hpi_handle_error(hpi_tuner_get_gain(h_control, &gain));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001813 ucontrol->value.integer.value[0] = gain / HPI_UNITS_PER_dB;
1814
1815 return 0;
1816}
1817
1818static int snd_asihpi_tuner_gain_put(struct snd_kcontrol *kcontrol,
1819 struct snd_ctl_elem_value *ucontrol)
1820{
1821 /*
1822 struct snd_card_asihpi *asihpi = snd_kcontrol_chip(kcontrol);
1823 */
1824 u32 h_control = kcontrol->private_value;
1825 short gain;
1826
1827 gain = (ucontrol->value.integer.value[0]) * HPI_UNITS_PER_dB;
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001828 hpi_handle_error(hpi_tuner_set_gain(h_control, gain));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001829
1830 return 1;
1831}
1832
1833/* Band */
1834
1835static int asihpi_tuner_band_query(struct snd_kcontrol *kcontrol,
1836 u16 *band_list, u32 len) {
1837 u32 h_control = kcontrol->private_value;
1838 u16 err = 0;
1839 u32 i;
1840
1841 for (i = 0; i < len; i++) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001842 err = hpi_tuner_query_band(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001843 h_control, i, &band_list[i]);
1844 if (err != 0)
1845 break;
1846 }
1847
1848 if (err && (err != HPI_ERROR_INVALID_OBJ_INDEX))
1849 return -EIO;
1850
1851 return i;
1852}
1853
1854static int snd_asihpi_tuner_band_info(struct snd_kcontrol *kcontrol,
1855 struct snd_ctl_elem_info *uinfo)
1856{
1857 u16 tuner_bands[HPI_TUNER_BAND_LAST];
1858 int num_bands = 0;
1859
1860 num_bands = asihpi_tuner_band_query(kcontrol, tuner_bands,
1861 HPI_TUNER_BAND_LAST);
1862
1863 if (num_bands < 0)
1864 return num_bands;
1865
1866 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1867 uinfo->count = 1;
1868 uinfo->value.enumerated.items = num_bands;
1869
1870 if (num_bands > 0) {
1871 if (uinfo->value.enumerated.item >=
1872 uinfo->value.enumerated.items)
1873 uinfo->value.enumerated.item =
1874 uinfo->value.enumerated.items - 1;
1875
1876 strcpy(uinfo->value.enumerated.name,
1877 asihpi_tuner_band_names[
1878 tuner_bands[uinfo->value.enumerated.item]]);
1879
1880 }
1881 return 0;
1882}
1883
1884static int snd_asihpi_tuner_band_get(struct snd_kcontrol *kcontrol,
1885 struct snd_ctl_elem_value *ucontrol)
1886{
1887 u32 h_control = kcontrol->private_value;
1888 /*
1889 struct snd_card_asihpi *asihpi = snd_kcontrol_chip(kcontrol);
1890 */
1891 u16 band, idx;
1892 u16 tuner_bands[HPI_TUNER_BAND_LAST];
1893 u32 num_bands = 0;
1894
1895 num_bands = asihpi_tuner_band_query(kcontrol, tuner_bands,
1896 HPI_TUNER_BAND_LAST);
1897
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001898 hpi_handle_error(hpi_tuner_get_band(h_control, &band));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001899
1900 ucontrol->value.enumerated.item[0] = -1;
1901 for (idx = 0; idx < HPI_TUNER_BAND_LAST; idx++)
1902 if (tuner_bands[idx] == band) {
1903 ucontrol->value.enumerated.item[0] = idx;
1904 break;
1905 }
1906
1907 return 0;
1908}
1909
1910static int snd_asihpi_tuner_band_put(struct snd_kcontrol *kcontrol,
1911 struct snd_ctl_elem_value *ucontrol)
1912{
1913 /*
1914 struct snd_card_asihpi *asihpi = snd_kcontrol_chip(kcontrol);
1915 */
1916 u32 h_control = kcontrol->private_value;
1917 u16 band;
1918 u16 tuner_bands[HPI_TUNER_BAND_LAST];
1919 u32 num_bands = 0;
1920
1921 num_bands = asihpi_tuner_band_query(kcontrol, tuner_bands,
1922 HPI_TUNER_BAND_LAST);
1923
1924 band = tuner_bands[ucontrol->value.enumerated.item[0]];
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001925 hpi_handle_error(hpi_tuner_set_band(h_control, band));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001926
1927 return 1;
1928}
1929
1930/* Freq */
1931
1932static int snd_asihpi_tuner_freq_info(struct snd_kcontrol *kcontrol,
1933 struct snd_ctl_elem_info *uinfo)
1934{
1935 u32 h_control = kcontrol->private_value;
1936 u16 err;
1937 u16 tuner_bands[HPI_TUNER_BAND_LAST];
1938 u16 num_bands = 0, band_iter, idx;
1939 u32 freq_range[3], temp_freq_range[3];
1940
1941 num_bands = asihpi_tuner_band_query(kcontrol, tuner_bands,
1942 HPI_TUNER_BAND_LAST);
1943
1944 freq_range[0] = INT_MAX;
1945 freq_range[1] = 0;
1946 freq_range[2] = INT_MAX;
1947
1948 for (band_iter = 0; band_iter < num_bands; band_iter++) {
1949 for (idx = 0; idx < 3; idx++) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001950 err = hpi_tuner_query_frequency(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001951 idx, tuner_bands[band_iter],
1952 &temp_freq_range[idx]);
1953 if (err != 0)
1954 return err;
1955 }
1956
1957 /* skip band with bogus stepping */
1958 if (temp_freq_range[2] <= 0)
1959 continue;
1960
1961 if (temp_freq_range[0] < freq_range[0])
1962 freq_range[0] = temp_freq_range[0];
1963 if (temp_freq_range[1] > freq_range[1])
1964 freq_range[1] = temp_freq_range[1];
1965 if (temp_freq_range[2] < freq_range[2])
1966 freq_range[2] = temp_freq_range[2];
1967 }
1968
1969 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1970 uinfo->count = 1;
1971 uinfo->value.integer.min = ((int)freq_range[0]);
1972 uinfo->value.integer.max = ((int)freq_range[1]);
1973 uinfo->value.integer.step = ((int)freq_range[2]);
1974 return 0;
1975}
1976
1977static int snd_asihpi_tuner_freq_get(struct snd_kcontrol *kcontrol,
1978 struct snd_ctl_elem_value *ucontrol)
1979{
1980 u32 h_control = kcontrol->private_value;
1981 u32 freq;
1982
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001983 hpi_handle_error(hpi_tuner_get_frequency(h_control, &freq));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001984 ucontrol->value.integer.value[0] = freq;
1985
1986 return 0;
1987}
1988
1989static int snd_asihpi_tuner_freq_put(struct snd_kcontrol *kcontrol,
1990 struct snd_ctl_elem_value *ucontrol)
1991{
1992 u32 h_control = kcontrol->private_value;
1993 u32 freq;
1994
1995 freq = ucontrol->value.integer.value[0];
Eliot Blennerhassettba944552011-02-10 17:26:04 +13001996 hpi_handle_error(hpi_tuner_set_frequency(h_control, freq));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02001997
1998 return 1;
1999}
2000
2001/* Tuner control group initializer */
2002static int __devinit snd_asihpi_tuner_add(struct snd_card_asihpi *asihpi,
2003 struct hpi_control *hpi_ctl)
2004{
2005 struct snd_card *card = asihpi->card;
2006 struct snd_kcontrol_new snd_control;
2007
2008 snd_control.private_value = hpi_ctl->h_control;
2009 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
2010
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002011 if (!hpi_tuner_get_gain(hpi_ctl->h_control, NULL)) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002012 asihpi_ctl_init(&snd_control, hpi_ctl, "Gain");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002013 snd_control.info = snd_asihpi_tuner_gain_info;
2014 snd_control.get = snd_asihpi_tuner_gain_get;
2015 snd_control.put = snd_asihpi_tuner_gain_put;
2016
2017 if (ctl_add(card, &snd_control, asihpi) < 0)
2018 return -EINVAL;
2019 }
2020
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002021 asihpi_ctl_init(&snd_control, hpi_ctl, "Band");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002022 snd_control.info = snd_asihpi_tuner_band_info;
2023 snd_control.get = snd_asihpi_tuner_band_get;
2024 snd_control.put = snd_asihpi_tuner_band_put;
2025
2026 if (ctl_add(card, &snd_control, asihpi) < 0)
2027 return -EINVAL;
2028
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002029 asihpi_ctl_init(&snd_control, hpi_ctl, "Freq");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002030 snd_control.info = snd_asihpi_tuner_freq_info;
2031 snd_control.get = snd_asihpi_tuner_freq_get;
2032 snd_control.put = snd_asihpi_tuner_freq_put;
2033
2034 return ctl_add(card, &snd_control, asihpi);
2035}
2036
2037/*------------------------------------------------------------
2038 Meter controls
2039 ------------------------------------------------------------*/
2040static int snd_asihpi_meter_info(struct snd_kcontrol *kcontrol,
2041 struct snd_ctl_elem_info *uinfo)
2042{
Eliot Blennerhassettd4b06d22011-12-22 13:38:34 +13002043 u32 h_control = kcontrol->private_value;
2044 u32 count;
2045 u16 err;
2046 err = hpi_meter_query_channels(h_control, &count);
2047 if (err)
2048 count = HPI_MAX_CHANNELS;
2049
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002050 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
Eliot Blennerhassettd4b06d22011-12-22 13:38:34 +13002051 uinfo->count = count;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002052 uinfo->value.integer.min = 0;
2053 uinfo->value.integer.max = 0x7FFFFFFF;
2054 return 0;
2055}
2056
2057/* linear values for 10dB steps */
2058static int log2lin[] = {
2059 0x7FFFFFFF, /* 0dB */
2060 679093956,
2061 214748365,
2062 67909396,
2063 21474837,
2064 6790940,
2065 2147484, /* -60dB */
2066 679094,
2067 214748, /* -80 */
2068 67909,
2069 21475, /* -100 */
2070 6791,
2071 2147,
2072 679,
2073 214,
2074 68,
2075 21,
2076 7,
2077 2
2078};
2079
2080static int snd_asihpi_meter_get(struct snd_kcontrol *kcontrol,
2081 struct snd_ctl_elem_value *ucontrol)
2082{
2083 u32 h_control = kcontrol->private_value;
2084 short an_gain_mB[HPI_MAX_CHANNELS], i;
2085 u16 err;
2086
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002087 err = hpi_meter_get_peak(h_control, an_gain_mB);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002088
2089 for (i = 0; i < HPI_MAX_CHANNELS; i++) {
2090 if (err) {
2091 ucontrol->value.integer.value[i] = 0;
2092 } else if (an_gain_mB[i] >= 0) {
2093 ucontrol->value.integer.value[i] =
2094 an_gain_mB[i] << 16;
2095 } else {
2096 /* -ve is log value in millibels < -60dB,
2097 * convert to (roughly!) linear,
2098 */
2099 ucontrol->value.integer.value[i] =
2100 log2lin[an_gain_mB[i] / -1000];
2101 }
2102 }
2103 return 0;
2104}
2105
2106static int __devinit snd_asihpi_meter_add(struct snd_card_asihpi *asihpi,
2107 struct hpi_control *hpi_ctl, int subidx)
2108{
2109 struct snd_card *card = asihpi->card;
2110 struct snd_kcontrol_new snd_control;
2111
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002112 asihpi_ctl_init(&snd_control, hpi_ctl, "Meter");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002113 snd_control.access =
2114 SNDRV_CTL_ELEM_ACCESS_VOLATILE | SNDRV_CTL_ELEM_ACCESS_READ;
2115 snd_control.info = snd_asihpi_meter_info;
2116 snd_control.get = snd_asihpi_meter_get;
2117
2118 snd_control.index = subidx;
2119
2120 return ctl_add(card, &snd_control, asihpi);
2121}
2122
2123/*------------------------------------------------------------
2124 Multiplexer controls
2125 ------------------------------------------------------------*/
2126static int snd_card_asihpi_mux_count_sources(struct snd_kcontrol *snd_control)
2127{
2128 u32 h_control = snd_control->private_value;
2129 struct hpi_control hpi_ctl;
2130 int s, err;
2131 for (s = 0; s < 32; s++) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002132 err = hpi_multiplexer_query_source(h_control, s,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002133 &hpi_ctl.
2134 src_node_type,
2135 &hpi_ctl.
2136 src_node_index);
2137 if (err)
2138 break;
2139 }
2140 return s;
2141}
2142
2143static int snd_asihpi_mux_info(struct snd_kcontrol *kcontrol,
2144 struct snd_ctl_elem_info *uinfo)
2145{
2146 int err;
2147 u16 src_node_type, src_node_index;
2148 u32 h_control = kcontrol->private_value;
2149
2150 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2151 uinfo->count = 1;
2152 uinfo->value.enumerated.items =
2153 snd_card_asihpi_mux_count_sources(kcontrol);
2154
2155 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2156 uinfo->value.enumerated.item =
2157 uinfo->value.enumerated.items - 1;
2158
2159 err =
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002160 hpi_multiplexer_query_source(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002161 uinfo->value.enumerated.item,
2162 &src_node_type, &src_node_index);
2163
2164 sprintf(uinfo->value.enumerated.name, "%s %d",
Eliot Blennerhassett168f1b02010-07-06 08:37:06 +12002165 asihpi_src_names[src_node_type - HPI_SOURCENODE_NONE],
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002166 src_node_index);
2167 return 0;
2168}
2169
2170static int snd_asihpi_mux_get(struct snd_kcontrol *kcontrol,
2171 struct snd_ctl_elem_value *ucontrol)
2172{
2173 u32 h_control = kcontrol->private_value;
2174 u16 source_type, source_index;
2175 u16 src_node_type, src_node_index;
2176 int s;
2177
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002178 hpi_handle_error(hpi_multiplexer_get_source(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002179 &source_type, &source_index));
2180 /* Should cache this search result! */
2181 for (s = 0; s < 256; s++) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002182 if (hpi_multiplexer_query_source(h_control, s,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002183 &src_node_type, &src_node_index))
2184 break;
2185
2186 if ((source_type == src_node_type)
2187 && (source_index == src_node_index)) {
2188 ucontrol->value.enumerated.item[0] = s;
2189 return 0;
2190 }
2191 }
2192 snd_printd(KERN_WARNING
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002193 "Control %x failed to match mux source %hu %hu\n",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002194 h_control, source_type, source_index);
2195 ucontrol->value.enumerated.item[0] = 0;
2196 return 0;
2197}
2198
2199static int snd_asihpi_mux_put(struct snd_kcontrol *kcontrol,
2200 struct snd_ctl_elem_value *ucontrol)
2201{
2202 int change;
2203 u32 h_control = kcontrol->private_value;
2204 u16 source_type, source_index;
2205 u16 e;
2206
2207 change = 1;
2208
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002209 e = hpi_multiplexer_query_source(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002210 ucontrol->value.enumerated.item[0],
2211 &source_type, &source_index);
2212 if (!e)
2213 hpi_handle_error(
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002214 hpi_multiplexer_set_source(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002215 source_type, source_index));
2216 return change;
2217}
2218
2219
2220static int __devinit snd_asihpi_mux_add(struct snd_card_asihpi *asihpi,
2221 struct hpi_control *hpi_ctl)
2222{
2223 struct snd_card *card = asihpi->card;
2224 struct snd_kcontrol_new snd_control;
2225
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002226 asihpi_ctl_init(&snd_control, hpi_ctl, "Route");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002227 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
2228 snd_control.info = snd_asihpi_mux_info;
2229 snd_control.get = snd_asihpi_mux_get;
2230 snd_control.put = snd_asihpi_mux_put;
2231
2232 return ctl_add(card, &snd_control, asihpi);
2233
2234}
2235
2236/*------------------------------------------------------------
2237 Channel mode controls
2238 ------------------------------------------------------------*/
2239static int snd_asihpi_cmode_info(struct snd_kcontrol *kcontrol,
2240 struct snd_ctl_elem_info *uinfo)
2241{
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002242 static const char * const mode_names[HPI_CHANNEL_MODE_LAST + 1] = {
2243 "invalid",
2244 "Normal", "Swap",
2245 "From Left", "From Right",
2246 "To Left", "To Right"
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002247 };
2248
2249 u32 h_control = kcontrol->private_value;
2250 u16 mode;
2251 int i;
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002252 u16 mode_map[6];
2253 int valid_modes = 0;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002254
2255 /* HPI channel mode values can be from 1 to 6
2256 Some adapters only support a contiguous subset
2257 */
2258 for (i = 0; i < HPI_CHANNEL_MODE_LAST; i++)
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002259 if (!hpi_channel_mode_query_mode(
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002260 h_control, i, &mode)) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002261 mode_map[valid_modes] = mode;
2262 valid_modes++;
2263 }
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002264
2265 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2266 uinfo->count = 1;
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002267 uinfo->value.enumerated.items = valid_modes;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002268
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002269 if (uinfo->value.enumerated.item >= valid_modes)
2270 uinfo->value.enumerated.item = valid_modes - 1;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002271
2272 strcpy(uinfo->value.enumerated.name,
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002273 mode_names[mode_map[uinfo->value.enumerated.item]]);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002274
2275 return 0;
2276}
2277
2278static int snd_asihpi_cmode_get(struct snd_kcontrol *kcontrol,
2279 struct snd_ctl_elem_value *ucontrol)
2280{
2281 u32 h_control = kcontrol->private_value;
2282 u16 mode;
2283
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002284 if (hpi_channel_mode_get(h_control, &mode))
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002285 mode = 1;
2286
2287 ucontrol->value.enumerated.item[0] = mode - 1;
2288
2289 return 0;
2290}
2291
2292static int snd_asihpi_cmode_put(struct snd_kcontrol *kcontrol,
2293 struct snd_ctl_elem_value *ucontrol)
2294{
2295 int change;
2296 u32 h_control = kcontrol->private_value;
2297
2298 change = 1;
2299
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002300 hpi_handle_error(hpi_channel_mode_set(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002301 ucontrol->value.enumerated.item[0] + 1));
2302 return change;
2303}
2304
2305
2306static int __devinit snd_asihpi_cmode_add(struct snd_card_asihpi *asihpi,
2307 struct hpi_control *hpi_ctl)
2308{
2309 struct snd_card *card = asihpi->card;
2310 struct snd_kcontrol_new snd_control;
2311
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002312 asihpi_ctl_init(&snd_control, hpi_ctl, "Mode");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002313 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
2314 snd_control.info = snd_asihpi_cmode_info;
2315 snd_control.get = snd_asihpi_cmode_get;
2316 snd_control.put = snd_asihpi_cmode_put;
2317
2318 return ctl_add(card, &snd_control, asihpi);
2319}
2320
2321/*------------------------------------------------------------
2322 Sampleclock source controls
2323 ------------------------------------------------------------*/
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002324static char *sampleclock_sources[MAX_CLOCKSOURCES] = {
2325 "N/A", "Local PLL", "Digital Sync", "Word External", "Word Header",
2326 "SMPTE", "Digital1", "Auto", "Network", "Invalid",
2327 "Prev Module",
2328 "Digital2", "Digital3", "Digital4", "Digital5",
2329 "Digital6", "Digital7", "Digital8"};
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002330
2331static int snd_asihpi_clksrc_info(struct snd_kcontrol *kcontrol,
2332 struct snd_ctl_elem_info *uinfo)
2333{
2334 struct snd_card_asihpi *asihpi =
2335 (struct snd_card_asihpi *)(kcontrol->private_data);
2336 struct clk_cache *clkcache = &asihpi->cc;
2337 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2338 uinfo->count = 1;
2339 uinfo->value.enumerated.items = clkcache->count;
2340
2341 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2342 uinfo->value.enumerated.item =
2343 uinfo->value.enumerated.items - 1;
2344
2345 strcpy(uinfo->value.enumerated.name,
2346 clkcache->s[uinfo->value.enumerated.item].name);
2347 return 0;
2348}
2349
2350static int snd_asihpi_clksrc_get(struct snd_kcontrol *kcontrol,
2351 struct snd_ctl_elem_value *ucontrol)
2352{
2353 struct snd_card_asihpi *asihpi =
2354 (struct snd_card_asihpi *)(kcontrol->private_data);
2355 struct clk_cache *clkcache = &asihpi->cc;
2356 u32 h_control = kcontrol->private_value;
2357 u16 source, srcindex = 0;
2358 int i;
2359
2360 ucontrol->value.enumerated.item[0] = 0;
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002361 if (hpi_sample_clock_get_source(h_control, &source))
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002362 source = 0;
2363
2364 if (source == HPI_SAMPLECLOCK_SOURCE_AESEBU_INPUT)
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002365 if (hpi_sample_clock_get_source_index(h_control, &srcindex))
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002366 srcindex = 0;
2367
2368 for (i = 0; i < clkcache->count; i++)
2369 if ((clkcache->s[i].source == source) &&
2370 (clkcache->s[i].index == srcindex))
2371 break;
2372
2373 ucontrol->value.enumerated.item[0] = i;
2374
2375 return 0;
2376}
2377
2378static int snd_asihpi_clksrc_put(struct snd_kcontrol *kcontrol,
2379 struct snd_ctl_elem_value *ucontrol)
2380{
2381 struct snd_card_asihpi *asihpi =
2382 (struct snd_card_asihpi *)(kcontrol->private_data);
2383 struct clk_cache *clkcache = &asihpi->cc;
2384 int change, item;
2385 u32 h_control = kcontrol->private_value;
2386
2387 change = 1;
2388 item = ucontrol->value.enumerated.item[0];
2389 if (item >= clkcache->count)
2390 item = clkcache->count-1;
2391
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002392 hpi_handle_error(hpi_sample_clock_set_source(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002393 h_control, clkcache->s[item].source));
2394
2395 if (clkcache->s[item].source == HPI_SAMPLECLOCK_SOURCE_AESEBU_INPUT)
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002396 hpi_handle_error(hpi_sample_clock_set_source_index(
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002397 h_control, clkcache->s[item].index));
2398 return change;
2399}
2400
2401/*------------------------------------------------------------
2402 Clkrate controls
2403 ------------------------------------------------------------*/
2404/* Need to change this to enumerated control with list of rates */
2405static int snd_asihpi_clklocal_info(struct snd_kcontrol *kcontrol,
2406 struct snd_ctl_elem_info *uinfo)
2407{
2408 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2409 uinfo->count = 1;
2410 uinfo->value.integer.min = 8000;
2411 uinfo->value.integer.max = 192000;
2412 uinfo->value.integer.step = 100;
2413
2414 return 0;
2415}
2416
2417static int snd_asihpi_clklocal_get(struct snd_kcontrol *kcontrol,
2418 struct snd_ctl_elem_value *ucontrol)
2419{
2420 u32 h_control = kcontrol->private_value;
2421 u32 rate;
2422 u16 e;
2423
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002424 e = hpi_sample_clock_get_local_rate(h_control, &rate);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002425 if (!e)
2426 ucontrol->value.integer.value[0] = rate;
2427 else
2428 ucontrol->value.integer.value[0] = 0;
2429 return 0;
2430}
2431
2432static int snd_asihpi_clklocal_put(struct snd_kcontrol *kcontrol,
2433 struct snd_ctl_elem_value *ucontrol)
2434{
2435 int change;
2436 u32 h_control = kcontrol->private_value;
2437
2438 /* change = asihpi->mixer_clkrate[addr][0] != left ||
2439 asihpi->mixer_clkrate[addr][1] != right;
2440 */
2441 change = 1;
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002442 hpi_handle_error(hpi_sample_clock_set_local_rate(h_control,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002443 ucontrol->value.integer.value[0]));
2444 return change;
2445}
2446
2447static int snd_asihpi_clkrate_info(struct snd_kcontrol *kcontrol,
2448 struct snd_ctl_elem_info *uinfo)
2449{
2450 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2451 uinfo->count = 1;
2452 uinfo->value.integer.min = 8000;
2453 uinfo->value.integer.max = 192000;
2454 uinfo->value.integer.step = 100;
2455
2456 return 0;
2457}
2458
2459static int snd_asihpi_clkrate_get(struct snd_kcontrol *kcontrol,
2460 struct snd_ctl_elem_value *ucontrol)
2461{
2462 u32 h_control = kcontrol->private_value;
2463 u32 rate;
2464 u16 e;
2465
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002466 e = hpi_sample_clock_get_sample_rate(h_control, &rate);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002467 if (!e)
2468 ucontrol->value.integer.value[0] = rate;
2469 else
2470 ucontrol->value.integer.value[0] = 0;
2471 return 0;
2472}
2473
2474static int __devinit snd_asihpi_sampleclock_add(struct snd_card_asihpi *asihpi,
2475 struct hpi_control *hpi_ctl)
2476{
2477 struct snd_card *card = asihpi->card;
2478 struct snd_kcontrol_new snd_control;
2479
2480 struct clk_cache *clkcache = &asihpi->cc;
2481 u32 hSC = hpi_ctl->h_control;
2482 int has_aes_in = 0;
2483 int i, j;
2484 u16 source;
2485
2486 snd_control.private_value = hpi_ctl->h_control;
2487
2488 clkcache->has_local = 0;
2489
2490 for (i = 0; i <= HPI_SAMPLECLOCK_SOURCE_LAST; i++) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002491 if (hpi_sample_clock_query_source(hSC,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002492 i, &source))
2493 break;
2494 clkcache->s[i].source = source;
2495 clkcache->s[i].index = 0;
2496 clkcache->s[i].name = sampleclock_sources[source];
2497 if (source == HPI_SAMPLECLOCK_SOURCE_AESEBU_INPUT)
2498 has_aes_in = 1;
2499 if (source == HPI_SAMPLECLOCK_SOURCE_LOCAL)
2500 clkcache->has_local = 1;
2501 }
2502 if (has_aes_in)
2503 /* already will have picked up index 0 above */
2504 for (j = 1; j < 8; j++) {
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002505 if (hpi_sample_clock_query_source_index(hSC,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002506 j, HPI_SAMPLECLOCK_SOURCE_AESEBU_INPUT,
2507 &source))
2508 break;
2509 clkcache->s[i].source =
2510 HPI_SAMPLECLOCK_SOURCE_AESEBU_INPUT;
2511 clkcache->s[i].index = j;
2512 clkcache->s[i].name = sampleclock_sources[
2513 j+HPI_SAMPLECLOCK_SOURCE_LAST];
2514 i++;
2515 }
2516 clkcache->count = i;
2517
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002518 asihpi_ctl_init(&snd_control, hpi_ctl, "Source");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002519 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE ;
2520 snd_control.info = snd_asihpi_clksrc_info;
2521 snd_control.get = snd_asihpi_clksrc_get;
2522 snd_control.put = snd_asihpi_clksrc_put;
2523 if (ctl_add(card, &snd_control, asihpi) < 0)
2524 return -EINVAL;
2525
2526
2527 if (clkcache->has_local) {
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002528 asihpi_ctl_init(&snd_control, hpi_ctl, "Localrate");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002529 snd_control.access = SNDRV_CTL_ELEM_ACCESS_READWRITE ;
2530 snd_control.info = snd_asihpi_clklocal_info;
2531 snd_control.get = snd_asihpi_clklocal_get;
2532 snd_control.put = snd_asihpi_clklocal_put;
2533
2534
2535 if (ctl_add(card, &snd_control, asihpi) < 0)
2536 return -EINVAL;
2537 }
2538
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002539 asihpi_ctl_init(&snd_control, hpi_ctl, "Rate");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002540 snd_control.access =
2541 SNDRV_CTL_ELEM_ACCESS_VOLATILE | SNDRV_CTL_ELEM_ACCESS_READ;
2542 snd_control.info = snd_asihpi_clkrate_info;
2543 snd_control.get = snd_asihpi_clkrate_get;
2544
2545 return ctl_add(card, &snd_control, asihpi);
2546}
2547/*------------------------------------------------------------
2548 Mixer
2549 ------------------------------------------------------------*/
2550
2551static int __devinit snd_card_asihpi_mixer_new(struct snd_card_asihpi *asihpi)
2552{
2553 struct snd_card *card = asihpi->card;
2554 unsigned int idx = 0;
2555 unsigned int subindex = 0;
2556 int err;
2557 struct hpi_control hpi_ctl, prev_ctl;
2558
2559 if (snd_BUG_ON(!asihpi))
2560 return -EINVAL;
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002561 strcpy(card->mixername, "Asihpi Mixer");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002562
2563 err =
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002564 hpi_mixer_open(asihpi->hpi->adapter->index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002565 &asihpi->h_mixer);
2566 hpi_handle_error(err);
2567 if (err)
2568 return -err;
2569
Takashi Iwai21896bc2010-06-02 12:08:37 +02002570 memset(&prev_ctl, 0, sizeof(prev_ctl));
2571 prev_ctl.control_type = -1;
2572
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002573 for (idx = 0; idx < 2000; idx++) {
2574 err = hpi_mixer_get_control_by_index(
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002575 asihpi->h_mixer,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002576 idx,
2577 &hpi_ctl.src_node_type,
2578 &hpi_ctl.src_node_index,
2579 &hpi_ctl.dst_node_type,
2580 &hpi_ctl.dst_node_index,
2581 &hpi_ctl.control_type,
2582 &hpi_ctl.h_control);
2583 if (err) {
2584 if (err == HPI_ERROR_CONTROL_DISABLED) {
2585 if (mixer_dump)
2586 snd_printk(KERN_INFO
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002587 "Disabled HPI Control(%d)\n",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002588 idx);
2589 continue;
2590 } else
2591 break;
2592
2593 }
2594
Eliot Blennerhassett168f1b02010-07-06 08:37:06 +12002595 hpi_ctl.src_node_type -= HPI_SOURCENODE_NONE;
2596 hpi_ctl.dst_node_type -= HPI_DESTNODE_NONE;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002597
2598 /* ASI50xx in SSX mode has multiple meters on the same node.
2599 Use subindex to create distinct ALSA controls
2600 for any duplicated controls.
2601 */
2602 if ((hpi_ctl.control_type == prev_ctl.control_type) &&
2603 (hpi_ctl.src_node_type == prev_ctl.src_node_type) &&
2604 (hpi_ctl.src_node_index == prev_ctl.src_node_index) &&
2605 (hpi_ctl.dst_node_type == prev_ctl.dst_node_type) &&
2606 (hpi_ctl.dst_node_index == prev_ctl.dst_node_index))
2607 subindex++;
2608 else
2609 subindex = 0;
2610
2611 prev_ctl = hpi_ctl;
2612
2613 switch (hpi_ctl.control_type) {
2614 case HPI_CONTROL_VOLUME:
2615 err = snd_asihpi_volume_add(asihpi, &hpi_ctl);
2616 break;
2617 case HPI_CONTROL_LEVEL:
2618 err = snd_asihpi_level_add(asihpi, &hpi_ctl);
2619 break;
2620 case HPI_CONTROL_MULTIPLEXER:
2621 err = snd_asihpi_mux_add(asihpi, &hpi_ctl);
2622 break;
2623 case HPI_CONTROL_CHANNEL_MODE:
2624 err = snd_asihpi_cmode_add(asihpi, &hpi_ctl);
2625 break;
2626 case HPI_CONTROL_METER:
2627 err = snd_asihpi_meter_add(asihpi, &hpi_ctl, subindex);
2628 break;
2629 case HPI_CONTROL_SAMPLECLOCK:
2630 err = snd_asihpi_sampleclock_add(
2631 asihpi, &hpi_ctl);
2632 break;
2633 case HPI_CONTROL_CONNECTION: /* ignore these */
2634 continue;
2635 case HPI_CONTROL_TUNER:
2636 err = snd_asihpi_tuner_add(asihpi, &hpi_ctl);
2637 break;
2638 case HPI_CONTROL_AESEBU_TRANSMITTER:
2639 err = snd_asihpi_aesebu_tx_add(asihpi, &hpi_ctl);
2640 break;
2641 case HPI_CONTROL_AESEBU_RECEIVER:
2642 err = snd_asihpi_aesebu_rx_add(asihpi, &hpi_ctl);
2643 break;
2644 case HPI_CONTROL_VOX:
2645 case HPI_CONTROL_BITSTREAM:
2646 case HPI_CONTROL_MICROPHONE:
2647 case HPI_CONTROL_PARAMETRIC_EQ:
2648 case HPI_CONTROL_COMPANDER:
2649 default:
2650 if (mixer_dump)
2651 snd_printk(KERN_INFO
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002652 "Untranslated HPI Control"
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002653 "(%d) %d %d %d %d %d\n",
2654 idx,
2655 hpi_ctl.control_type,
2656 hpi_ctl.src_node_type,
2657 hpi_ctl.src_node_index,
2658 hpi_ctl.dst_node_type,
2659 hpi_ctl.dst_node_index);
2660 continue;
2661 };
2662 if (err < 0)
2663 return err;
2664 }
2665 if (HPI_ERROR_INVALID_OBJ_INDEX != err)
2666 hpi_handle_error(err);
2667
2668 snd_printk(KERN_INFO "%d mixer controls found\n", idx);
2669
2670 return 0;
2671}
2672
2673/*------------------------------------------------------------
2674 /proc interface
2675 ------------------------------------------------------------*/
2676
2677static void
2678snd_asihpi_proc_read(struct snd_info_entry *entry,
2679 struct snd_info_buffer *buffer)
2680{
2681 struct snd_card_asihpi *asihpi = entry->private_data;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002682 u32 h_control;
2683 u32 rate = 0;
2684 u16 source = 0;
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002685
2686 u16 num_outstreams;
2687 u16 num_instreams;
2688 u16 version;
2689 u32 serial_number;
2690 u16 type;
2691
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002692 int err;
2693
2694 snd_iprintf(buffer, "ASIHPI driver proc file\n");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002695
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002696 hpi_handle_error(hpi_adapter_get_info(asihpi->hpi->adapter->index,
2697 &num_outstreams, &num_instreams,
2698 &version, &serial_number, &type));
2699
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002700 snd_iprintf(buffer,
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002701 "Adapter type ASI%4X\nHardware Index %d\n"
2702 "%d outstreams\n%d instreams\n",
2703 type, asihpi->hpi->adapter->index,
2704 num_outstreams, num_instreams);
2705
2706 snd_iprintf(buffer,
2707 "Serial#%d\nHardware version %c%d\nDSP code version %03d\n",
2708 serial_number, ((version >> 3) & 0xf) + 'A', version & 0x7,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002709 ((version >> 13) * 100) + ((version >> 7) & 0x3f));
2710
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002711 err = hpi_mixer_get_control(asihpi->h_mixer,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002712 HPI_SOURCENODE_CLOCK_SOURCE, 0, 0, 0,
2713 HPI_CONTROL_SAMPLECLOCK, &h_control);
2714
2715 if (!err) {
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002716 err = hpi_sample_clock_get_sample_rate(h_control, &rate);
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002717 err += hpi_sample_clock_get_source(h_control, &source);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002718
2719 if (!err)
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002720 snd_iprintf(buffer, "Sample Clock %dHz, source %s\n",
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002721 rate, sampleclock_sources[source]);
2722 }
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002723}
2724
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002725static void __devinit snd_asihpi_proc_init(struct snd_card_asihpi *asihpi)
2726{
2727 struct snd_info_entry *entry;
2728
2729 if (!snd_card_proc_new(asihpi->card, "info", &entry))
2730 snd_info_set_text_ops(entry, asihpi, snd_asihpi_proc_read);
2731}
2732
2733/*------------------------------------------------------------
2734 HWDEP
2735 ------------------------------------------------------------*/
2736
2737static int snd_asihpi_hpi_open(struct snd_hwdep *hw, struct file *file)
2738{
2739 if (enable_hpi_hwdep)
2740 return 0;
2741 else
2742 return -ENODEV;
2743
2744}
2745
2746static int snd_asihpi_hpi_release(struct snd_hwdep *hw, struct file *file)
2747{
2748 if (enable_hpi_hwdep)
2749 return asihpi_hpi_release(file);
2750 else
2751 return -ENODEV;
2752}
2753
2754static int snd_asihpi_hpi_ioctl(struct snd_hwdep *hw, struct file *file,
2755 unsigned int cmd, unsigned long arg)
2756{
2757 if (enable_hpi_hwdep)
2758 return asihpi_hpi_ioctl(file, cmd, arg);
2759 else
2760 return -ENODEV;
2761}
2762
2763
2764/* results in /dev/snd/hwC#D0 file for each card with index #
2765 also /proc/asound/hwdep will contain '#-00: asihpi (HPI) for each card'
2766*/
2767static int __devinit snd_asihpi_hpi_new(struct snd_card_asihpi *asihpi,
2768 int device, struct snd_hwdep **rhwdep)
2769{
2770 struct snd_hwdep *hw;
2771 int err;
2772
2773 if (rhwdep)
2774 *rhwdep = NULL;
2775 err = snd_hwdep_new(asihpi->card, "HPI", device, &hw);
2776 if (err < 0)
2777 return err;
2778 strcpy(hw->name, "asihpi (HPI)");
2779 hw->iface = SNDRV_HWDEP_IFACE_LAST;
2780 hw->ops.open = snd_asihpi_hpi_open;
2781 hw->ops.ioctl = snd_asihpi_hpi_ioctl;
2782 hw->ops.release = snd_asihpi_hpi_release;
2783 hw->private_data = asihpi;
2784 if (rhwdep)
2785 *rhwdep = hw;
2786 return 0;
2787}
2788
2789/*------------------------------------------------------------
2790 CARD
2791 ------------------------------------------------------------*/
2792static int __devinit snd_asihpi_probe(struct pci_dev *pci_dev,
2793 const struct pci_device_id *pci_id)
2794{
2795 int err;
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002796 struct hpi_adapter *hpi;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002797 struct snd_card *card;
2798 struct snd_card_asihpi *asihpi;
2799
2800 u32 h_control;
2801 u32 h_stream;
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002802 u32 adapter_index;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002803
2804 static int dev;
2805 if (dev >= SNDRV_CARDS)
2806 return -ENODEV;
2807
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002808 /* Should this be enable[hpi->index] ? */
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002809 if (!enable[dev]) {
2810 dev++;
2811 return -ENOENT;
2812 }
2813
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002814 /* Initialise low-level HPI driver */
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002815 err = asihpi_adapter_probe(pci_dev, pci_id);
2816 if (err < 0)
2817 return err;
2818
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002819 hpi = pci_get_drvdata(pci_dev);
2820 adapter_index = hpi->adapter->index;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002821 /* first try to give the card the same index as its hardware index */
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002822 err = snd_card_create(adapter_index,
2823 id[adapter_index], THIS_MODULE,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002824 sizeof(struct snd_card_asihpi),
2825 &card);
2826 if (err < 0) {
2827 /* if that fails, try the default index==next available */
2828 err =
2829 snd_card_create(index[dev], id[dev],
2830 THIS_MODULE,
2831 sizeof(struct snd_card_asihpi),
2832 &card);
2833 if (err < 0)
2834 return err;
2835 snd_printk(KERN_WARNING
Eliot Blennerhassette64b1a22011-02-10 17:25:59 +13002836 "**** WARNING **** Adapter index %d->ALSA index %d\n",
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002837 adapter_index, card->number);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002838 }
2839
Eliot Blennerhassett12253672011-02-10 17:26:10 +13002840 snd_card_set_dev(card, &pci_dev->dev);
2841
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002842 asihpi = card->private_data;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002843 asihpi->card = card;
Eliot Blennerhassett12253672011-02-10 17:26:10 +13002844 asihpi->pci = pci_dev;
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002845 asihpi->hpi = hpi;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002846
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002847 snd_printk(KERN_INFO "adapter ID=%4X index=%d\n",
2848 asihpi->hpi->adapter->type, adapter_index);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002849
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002850 err = hpi_adapter_get_property(adapter_index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002851 HPI_ADAPTER_PROPERTY_CAPS1,
2852 NULL, &asihpi->support_grouping);
2853 if (err)
2854 asihpi->support_grouping = 0;
2855
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002856 err = hpi_adapter_get_property(adapter_index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002857 HPI_ADAPTER_PROPERTY_CAPS2,
2858 &asihpi->support_mrx, NULL);
2859 if (err)
2860 asihpi->support_mrx = 0;
2861
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002862 err = hpi_adapter_get_property(adapter_index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002863 HPI_ADAPTER_PROPERTY_INTERVAL,
2864 NULL, &asihpi->update_interval_frames);
2865 if (err)
2866 asihpi->update_interval_frames = 512;
2867
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12002868 if (!asihpi->can_dma)
Eliot Blennerhassett26aebef2011-03-25 15:25:47 +13002869 asihpi->update_interval_frames *= 2;
2870
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002871 hpi_handle_error(hpi_instream_open(adapter_index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002872 0, &h_stream));
2873
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002874 err = hpi_instream_host_buffer_free(h_stream);
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12002875 asihpi->can_dma = (!err);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002876
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002877 hpi_handle_error(hpi_instream_close(h_stream));
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002878
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002879 err = hpi_adapter_get_property(adapter_index,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002880 HPI_ADAPTER_PROPERTY_CURCHANNELS,
2881 &asihpi->in_max_chans, &asihpi->out_max_chans);
2882 if (err) {
2883 asihpi->in_max_chans = 2;
2884 asihpi->out_max_chans = 2;
2885 }
2886
Eliot Blennerhassettc382a5d2011-12-22 13:38:33 +13002887 if (asihpi->out_max_chans > 2) { /* assume LL mode */
2888 asihpi->out_min_chans = asihpi->out_max_chans;
2889 asihpi->in_min_chans = asihpi->in_max_chans;
2890 asihpi->support_grouping = 0;
2891 } else {
2892 asihpi->out_min_chans = 1;
2893 asihpi->in_min_chans = 1;
2894 }
2895
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002896 snd_printk(KERN_INFO "Has dma:%d, grouping:%d, mrx:%d\n",
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12002897 asihpi->can_dma,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002898 asihpi->support_grouping,
2899 asihpi->support_mrx
2900 );
2901
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002902 err = snd_card_asihpi_pcm_new(asihpi, 0);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002903 if (err < 0) {
2904 snd_printk(KERN_ERR "pcm_new failed\n");
2905 goto __nodev;
2906 }
2907 err = snd_card_asihpi_mixer_new(asihpi);
2908 if (err < 0) {
2909 snd_printk(KERN_ERR "mixer_new failed\n");
2910 goto __nodev;
2911 }
2912
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002913 err = hpi_mixer_get_control(asihpi->h_mixer,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002914 HPI_SOURCENODE_CLOCK_SOURCE, 0, 0, 0,
2915 HPI_CONTROL_SAMPLECLOCK, &h_control);
2916
2917 if (!err)
2918 err = hpi_sample_clock_set_local_rate(
Eliot Blennerhassettba944552011-02-10 17:26:04 +13002919 h_control, adapter_fs);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002920
2921 snd_asihpi_proc_init(asihpi);
2922
2923 /* always create, can be enabled or disabled dynamically
2924 by enable_hwdep module param*/
2925 snd_asihpi_hpi_new(asihpi, 0, NULL);
2926
Eliot Blennerhassettf3d145a2011-04-05 20:55:44 +12002927 strcpy(card->driver, "ASIHPI");
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002928
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002929 sprintf(card->shortname, "AudioScience ASI%4X",
2930 asihpi->hpi->adapter->type);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002931 sprintf(card->longname, "%s %i",
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002932 card->shortname, adapter_index);
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002933 err = snd_card_register(card);
Eliot Blennerhassettb2e65c82011-03-25 15:25:48 +13002934
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002935 if (!err) {
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002936 hpi->snd_card = card;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002937 dev++;
2938 return 0;
2939 }
2940__nodev:
2941 snd_card_free(card);
2942 snd_printk(KERN_ERR "snd_asihpi_probe error %d\n", err);
2943 return err;
2944
2945}
2946
2947static void __devexit snd_asihpi_remove(struct pci_dev *pci_dev)
2948{
Eliot Blennerhassett7036b922011-12-22 13:38:43 +13002949 struct hpi_adapter *hpi = pci_get_drvdata(pci_dev);
2950 snd_card_free(hpi->snd_card);
2951 hpi->snd_card = NULL;
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002952 asihpi_adapter_remove(pci_dev);
2953}
2954
2955static DEFINE_PCI_DEVICE_TABLE(asihpi_pci_tbl) = {
2956 {HPI_PCI_VENDOR_ID_TI, HPI_PCI_DEV_ID_DSP6205,
2957 HPI_PCI_VENDOR_ID_AUDIOSCIENCE, PCI_ANY_ID, 0, 0,
2958 (kernel_ulong_t)HPI_6205},
2959 {HPI_PCI_VENDOR_ID_TI, HPI_PCI_DEV_ID_PCI2040,
2960 HPI_PCI_VENDOR_ID_AUDIOSCIENCE, PCI_ANY_ID, 0, 0,
2961 (kernel_ulong_t)HPI_6000},
2962 {0,}
2963};
2964MODULE_DEVICE_TABLE(pci, asihpi_pci_tbl);
2965
2966static struct pci_driver driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +02002967 .name = KBUILD_MODNAME,
Eliot Blennerhassett719f82d2010-04-21 18:17:39 +02002968 .id_table = asihpi_pci_tbl,
2969 .probe = snd_asihpi_probe,
2970 .remove = __devexit_p(snd_asihpi_remove),
2971#ifdef CONFIG_PM
2972/* .suspend = snd_asihpi_suspend,
2973 .resume = snd_asihpi_resume, */
2974#endif
2975};
2976
2977static int __init snd_asihpi_init(void)
2978{
2979 asihpi_init();
2980 return pci_register_driver(&driver);
2981}
2982
2983static void __exit snd_asihpi_exit(void)
2984{
2985
2986 pci_unregister_driver(&driver);
2987 asihpi_exit();
2988}
2989
2990module_init(snd_asihpi_init)
2991module_exit(snd_asihpi_exit)
2992