1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Linux driver for M2Tech hiFace compatible devices
5 * Copyright 2012-2013 (C) M2TECH S.r.l and Amarula Solutions B.V.
7 * Authors: Michael Trimarchi <michael@amarulasolutions.com>
8 * Antonio Ospite <ao2@amarulasolutions.com>
10 * The driver is based on the work done in TerraTec DMX 6Fire USB
13 #include <linux/slab.h>
14 #include <sound/pcm.h>
21 #define PCM_PACKET_SIZE 4096
22 #define PCM_BUFFER_SIZE (2 * PCM_N_URBS * PCM_PACKET_SIZE)
25 struct hiface_chip
*chip
;
28 struct usb_anchor submitted
;
32 struct pcm_substream
{
34 struct snd_pcm_substream
*instance
;
37 snd_pcm_uframes_t dma_off
; /* current position in alsa dma_area */
38 snd_pcm_uframes_t period_off
; /* current position in current period */
41 enum { /* pcm streaming states */
42 STREAM_DISABLED
, /* no pcm streaming */
43 STREAM_STARTING
, /* pcm streaming requested, waiting to become ready */
44 STREAM_RUNNING
, /* pcm streaming running */
49 struct hiface_chip
*chip
;
50 struct snd_pcm
*instance
;
52 struct pcm_substream playback
;
53 bool panic
; /* if set driver won't do anymore pcm on device */
55 struct pcm_urb out_urbs
[PCM_N_URBS
];
57 struct mutex stream_mutex
;
58 u8 stream_state
; /* one of STREAM_XXX */
60 wait_queue_head_t stream_wait_queue
;
61 bool stream_wait_cond
;
64 static const unsigned int rates
[] = { 44100, 48000, 88200, 96000, 176400, 192000,
66 static const struct snd_pcm_hw_constraint_list constraints_extra_rates
= {
67 .count
= ARRAY_SIZE(rates
),
72 static const struct snd_pcm_hardware pcm_hw
= {
73 .info
= SNDRV_PCM_INFO_MMAP
|
74 SNDRV_PCM_INFO_INTERLEAVED
|
75 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
76 SNDRV_PCM_INFO_PAUSE
|
77 SNDRV_PCM_INFO_MMAP_VALID
|
80 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
82 .rates
= SNDRV_PCM_RATE_44100
|
83 SNDRV_PCM_RATE_48000
|
84 SNDRV_PCM_RATE_88200
|
85 SNDRV_PCM_RATE_96000
|
86 SNDRV_PCM_RATE_176400
|
87 SNDRV_PCM_RATE_192000
,
90 .rate_max
= 192000, /* changes in hiface_pcm_open to support extra rates */
93 .buffer_bytes_max
= PCM_BUFFER_SIZE
,
94 .period_bytes_min
= PCM_PACKET_SIZE
,
95 .period_bytes_max
= PCM_BUFFER_SIZE
,
100 /* message values used to change the sample rate */
101 #define HIFACE_SET_RATE_REQUEST 0xb0
103 #define HIFACE_RATE_44100 0x43
104 #define HIFACE_RATE_48000 0x4b
105 #define HIFACE_RATE_88200 0x42
106 #define HIFACE_RATE_96000 0x4a
107 #define HIFACE_RATE_176400 0x40
108 #define HIFACE_RATE_192000 0x48
109 #define HIFACE_RATE_352800 0x58
110 #define HIFACE_RATE_384000 0x68
112 static int hiface_pcm_set_rate(struct pcm_runtime
*rt
, unsigned int rate
)
114 struct usb_device
*device
= rt
->chip
->dev
;
118 /* We are already sure that the rate is supported here thanks to
123 rate_value
= HIFACE_RATE_44100
;
126 rate_value
= HIFACE_RATE_48000
;
129 rate_value
= HIFACE_RATE_88200
;
132 rate_value
= HIFACE_RATE_96000
;
135 rate_value
= HIFACE_RATE_176400
;
138 rate_value
= HIFACE_RATE_192000
;
141 rate_value
= HIFACE_RATE_352800
;
144 rate_value
= HIFACE_RATE_384000
;
147 dev_err(&device
->dev
, "Unsupported rate %d\n", rate
);
152 * USBIO: Vendor 0xb0(wValue=0x0043, wIndex=0x0000)
153 * 43 b0 43 00 00 00 00 00
154 * USBIO: Vendor 0xb0(wValue=0x004b, wIndex=0x0000)
155 * 43 b0 4b 00 00 00 00 00
156 * This control message doesn't have any ack from the
159 ret
= usb_control_msg(device
, usb_sndctrlpipe(device
, 0),
160 HIFACE_SET_RATE_REQUEST
,
161 USB_DIR_OUT
| USB_TYPE_VENDOR
| USB_RECIP_OTHER
,
162 rate_value
, 0, NULL
, 0, 100);
164 dev_err(&device
->dev
, "Error setting samplerate %d.\n", rate
);
171 static struct pcm_substream
*hiface_pcm_get_substream(struct snd_pcm_substream
174 struct pcm_runtime
*rt
= snd_pcm_substream_chip(alsa_sub
);
175 struct device
*device
= &rt
->chip
->dev
->dev
;
177 if (alsa_sub
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
178 return &rt
->playback
;
180 dev_err(device
, "Error getting pcm substream slot.\n");
184 /* call with stream_mutex locked */
185 static void hiface_pcm_stream_stop(struct pcm_runtime
*rt
)
189 if (rt
->stream_state
!= STREAM_DISABLED
) {
190 rt
->stream_state
= STREAM_STOPPING
;
192 for (i
= 0; i
< PCM_N_URBS
; i
++) {
193 time
= usb_wait_anchor_empty_timeout(
194 &rt
->out_urbs
[i
].submitted
, 100);
196 usb_kill_anchored_urbs(
197 &rt
->out_urbs
[i
].submitted
);
198 usb_kill_urb(&rt
->out_urbs
[i
].instance
);
201 rt
->stream_state
= STREAM_DISABLED
;
205 /* call with stream_mutex locked */
206 static int hiface_pcm_stream_start(struct pcm_runtime
*rt
)
211 if (rt
->stream_state
== STREAM_DISABLED
) {
213 /* reset panic state when starting a new stream */
216 /* submit our out urbs zero init */
217 rt
->stream_state
= STREAM_STARTING
;
218 for (i
= 0; i
< PCM_N_URBS
; i
++) {
219 memset(rt
->out_urbs
[i
].buffer
, 0, PCM_PACKET_SIZE
);
220 usb_anchor_urb(&rt
->out_urbs
[i
].instance
,
221 &rt
->out_urbs
[i
].submitted
);
222 ret
= usb_submit_urb(&rt
->out_urbs
[i
].instance
,
225 hiface_pcm_stream_stop(rt
);
230 /* wait for first out urb to return (sent in in urb handler) */
231 wait_event_timeout(rt
->stream_wait_queue
, rt
->stream_wait_cond
,
233 if (rt
->stream_wait_cond
) {
234 struct device
*device
= &rt
->chip
->dev
->dev
;
235 dev_dbg(device
, "%s: Stream is running wakeup event\n",
237 rt
->stream_state
= STREAM_RUNNING
;
239 hiface_pcm_stream_stop(rt
);
246 /* The hardware wants word-swapped 32-bit values */
247 static void memcpy_swahw32(u8
*dest
, u8
*src
, unsigned int n
)
251 for (i
= 0; i
< n
/ 4; i
++)
252 ((u32
*)dest
)[i
] = swahw32(((u32
*)src
)[i
]);
255 /* call with substream locked */
256 /* returns true if a period elapsed */
257 static bool hiface_pcm_playback(struct pcm_substream
*sub
, struct pcm_urb
*urb
)
259 struct snd_pcm_runtime
*alsa_rt
= sub
->instance
->runtime
;
260 struct device
*device
= &urb
->chip
->dev
->dev
;
262 unsigned int pcm_buffer_size
;
264 WARN_ON(alsa_rt
->format
!= SNDRV_PCM_FORMAT_S32_LE
);
266 pcm_buffer_size
= snd_pcm_lib_buffer_bytes(sub
->instance
);
268 if (sub
->dma_off
+ PCM_PACKET_SIZE
<= pcm_buffer_size
) {
269 dev_dbg(device
, "%s: (1) buffer_size %#x dma_offset %#x\n", __func__
,
270 (unsigned int) pcm_buffer_size
,
271 (unsigned int) sub
->dma_off
);
273 source
= alsa_rt
->dma_area
+ sub
->dma_off
;
274 memcpy_swahw32(urb
->buffer
, source
, PCM_PACKET_SIZE
);
276 /* wrap around at end of ring buffer */
279 dev_dbg(device
, "%s: (2) buffer_size %#x dma_offset %#x\n", __func__
,
280 (unsigned int) pcm_buffer_size
,
281 (unsigned int) sub
->dma_off
);
283 len
= pcm_buffer_size
- sub
->dma_off
;
285 source
= alsa_rt
->dma_area
+ sub
->dma_off
;
286 memcpy_swahw32(urb
->buffer
, source
, len
);
288 source
= alsa_rt
->dma_area
;
289 memcpy_swahw32(urb
->buffer
+ len
, source
,
290 PCM_PACKET_SIZE
- len
);
292 sub
->dma_off
+= PCM_PACKET_SIZE
;
293 if (sub
->dma_off
>= pcm_buffer_size
)
294 sub
->dma_off
-= pcm_buffer_size
;
296 sub
->period_off
+= PCM_PACKET_SIZE
;
297 if (sub
->period_off
>= alsa_rt
->period_size
) {
298 sub
->period_off
%= alsa_rt
->period_size
;
304 static void hiface_pcm_out_urb_handler(struct urb
*usb_urb
)
306 struct pcm_urb
*out_urb
= usb_urb
->context
;
307 struct pcm_runtime
*rt
= out_urb
->chip
->pcm
;
308 struct pcm_substream
*sub
;
309 bool do_period_elapsed
= false;
313 if (rt
->panic
|| rt
->stream_state
== STREAM_STOPPING
)
316 if (unlikely(usb_urb
->status
== -ENOENT
|| /* unlinked */
317 usb_urb
->status
== -ENODEV
|| /* device removed */
318 usb_urb
->status
== -ECONNRESET
|| /* unlinked */
319 usb_urb
->status
== -ESHUTDOWN
)) { /* device disabled */
323 if (rt
->stream_state
== STREAM_STARTING
) {
324 rt
->stream_wait_cond
= true;
325 wake_up(&rt
->stream_wait_queue
);
328 /* now send our playback data (if a free out urb was found) */
330 spin_lock_irqsave(&sub
->lock
, flags
);
332 do_period_elapsed
= hiface_pcm_playback(sub
, out_urb
);
334 memset(out_urb
->buffer
, 0, PCM_PACKET_SIZE
);
336 spin_unlock_irqrestore(&sub
->lock
, flags
);
338 if (do_period_elapsed
)
339 snd_pcm_period_elapsed(sub
->instance
);
341 ret
= usb_submit_urb(&out_urb
->instance
, GFP_ATOMIC
);
351 static int hiface_pcm_open(struct snd_pcm_substream
*alsa_sub
)
353 struct pcm_runtime
*rt
= snd_pcm_substream_chip(alsa_sub
);
354 struct pcm_substream
*sub
= NULL
;
355 struct snd_pcm_runtime
*alsa_rt
= alsa_sub
->runtime
;
361 mutex_lock(&rt
->stream_mutex
);
362 alsa_rt
->hw
= pcm_hw
;
364 if (alsa_sub
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
368 struct device
*device
= &rt
->chip
->dev
->dev
;
369 mutex_unlock(&rt
->stream_mutex
);
370 dev_err(device
, "Invalid stream type\n");
374 if (rt
->extra_freq
) {
375 alsa_rt
->hw
.rates
|= SNDRV_PCM_RATE_KNOT
;
376 alsa_rt
->hw
.rate_max
= 384000;
378 /* explicit constraints needed as we added SNDRV_PCM_RATE_KNOT */
379 ret
= snd_pcm_hw_constraint_list(alsa_sub
->runtime
, 0,
380 SNDRV_PCM_HW_PARAM_RATE
,
381 &constraints_extra_rates
);
383 mutex_unlock(&rt
->stream_mutex
);
388 sub
->instance
= alsa_sub
;
390 mutex_unlock(&rt
->stream_mutex
);
394 static int hiface_pcm_close(struct snd_pcm_substream
*alsa_sub
)
396 struct pcm_runtime
*rt
= snd_pcm_substream_chip(alsa_sub
);
397 struct pcm_substream
*sub
= hiface_pcm_get_substream(alsa_sub
);
403 mutex_lock(&rt
->stream_mutex
);
405 hiface_pcm_stream_stop(rt
);
407 /* deactivate substream */
408 spin_lock_irqsave(&sub
->lock
, flags
);
409 sub
->instance
= NULL
;
411 spin_unlock_irqrestore(&sub
->lock
, flags
);
414 mutex_unlock(&rt
->stream_mutex
);
418 static int hiface_pcm_prepare(struct snd_pcm_substream
*alsa_sub
)
420 struct pcm_runtime
*rt
= snd_pcm_substream_chip(alsa_sub
);
421 struct pcm_substream
*sub
= hiface_pcm_get_substream(alsa_sub
);
422 struct snd_pcm_runtime
*alsa_rt
= alsa_sub
->runtime
;
430 mutex_lock(&rt
->stream_mutex
);
432 hiface_pcm_stream_stop(rt
);
437 if (rt
->stream_state
== STREAM_DISABLED
) {
439 ret
= hiface_pcm_set_rate(rt
, alsa_rt
->rate
);
441 mutex_unlock(&rt
->stream_mutex
);
444 ret
= hiface_pcm_stream_start(rt
);
446 mutex_unlock(&rt
->stream_mutex
);
450 mutex_unlock(&rt
->stream_mutex
);
454 static int hiface_pcm_trigger(struct snd_pcm_substream
*alsa_sub
, int cmd
)
456 struct pcm_substream
*sub
= hiface_pcm_get_substream(alsa_sub
);
457 struct pcm_runtime
*rt
= snd_pcm_substream_chip(alsa_sub
);
465 case SNDRV_PCM_TRIGGER_START
:
466 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
467 spin_lock_irq(&sub
->lock
);
469 spin_unlock_irq(&sub
->lock
);
472 case SNDRV_PCM_TRIGGER_STOP
:
473 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
474 spin_lock_irq(&sub
->lock
);
476 spin_unlock_irq(&sub
->lock
);
484 static snd_pcm_uframes_t
hiface_pcm_pointer(struct snd_pcm_substream
*alsa_sub
)
486 struct pcm_substream
*sub
= hiface_pcm_get_substream(alsa_sub
);
487 struct pcm_runtime
*rt
= snd_pcm_substream_chip(alsa_sub
);
489 snd_pcm_uframes_t dma_offset
;
491 if (rt
->panic
|| !sub
)
492 return SNDRV_PCM_POS_XRUN
;
494 spin_lock_irqsave(&sub
->lock
, flags
);
495 dma_offset
= sub
->dma_off
;
496 spin_unlock_irqrestore(&sub
->lock
, flags
);
497 return bytes_to_frames(alsa_sub
->runtime
, dma_offset
);
500 static const struct snd_pcm_ops pcm_ops
= {
501 .open
= hiface_pcm_open
,
502 .close
= hiface_pcm_close
,
503 .prepare
= hiface_pcm_prepare
,
504 .trigger
= hiface_pcm_trigger
,
505 .pointer
= hiface_pcm_pointer
,
508 static int hiface_pcm_init_urb(struct pcm_urb
*urb
,
509 struct hiface_chip
*chip
,
511 void (*handler
)(struct urb
*))
514 usb_init_urb(&urb
->instance
);
516 urb
->buffer
= kzalloc(PCM_PACKET_SIZE
, GFP_KERNEL
);
520 usb_fill_bulk_urb(&urb
->instance
, chip
->dev
,
521 usb_sndbulkpipe(chip
->dev
, ep
), (void *)urb
->buffer
,
522 PCM_PACKET_SIZE
, handler
, urb
);
523 if (usb_urb_ep_type_check(&urb
->instance
))
525 init_usb_anchor(&urb
->submitted
);
530 void hiface_pcm_abort(struct hiface_chip
*chip
)
532 struct pcm_runtime
*rt
= chip
->pcm
;
537 mutex_lock(&rt
->stream_mutex
);
538 hiface_pcm_stream_stop(rt
);
539 mutex_unlock(&rt
->stream_mutex
);
543 static void hiface_pcm_destroy(struct hiface_chip
*chip
)
545 struct pcm_runtime
*rt
= chip
->pcm
;
548 for (i
= 0; i
< PCM_N_URBS
; i
++)
549 kfree(rt
->out_urbs
[i
].buffer
);
555 static void hiface_pcm_free(struct snd_pcm
*pcm
)
557 struct pcm_runtime
*rt
= pcm
->private_data
;
560 hiface_pcm_destroy(rt
->chip
);
563 int hiface_pcm_init(struct hiface_chip
*chip
, u8 extra_freq
)
568 struct pcm_runtime
*rt
;
570 rt
= kzalloc(sizeof(*rt
), GFP_KERNEL
);
575 rt
->stream_state
= STREAM_DISABLED
;
579 init_waitqueue_head(&rt
->stream_wait_queue
);
580 mutex_init(&rt
->stream_mutex
);
581 spin_lock_init(&rt
->playback
.lock
);
583 for (i
= 0; i
< PCM_N_URBS
; i
++) {
584 ret
= hiface_pcm_init_urb(&rt
->out_urbs
[i
], chip
, OUT_EP
,
585 hiface_pcm_out_urb_handler
);
590 ret
= snd_pcm_new(chip
->card
, "USB-SPDIF Audio", 0, 1, 0, &pcm
);
592 dev_err(&chip
->dev
->dev
, "Cannot create pcm instance\n");
596 pcm
->private_data
= rt
;
597 pcm
->private_free
= hiface_pcm_free
;
599 strlcpy(pcm
->name
, "USB-SPDIF Audio", sizeof(pcm
->name
));
600 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &pcm_ops
);
601 snd_pcm_set_managed_buffer_all(pcm
, SNDRV_DMA_TYPE_VMALLOC
,
610 for (i
= 0; i
< PCM_N_URBS
; i
++)
611 kfree(rt
->out_urbs
[i
].buffer
);