diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-06-04 05:41:48 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-06-04 05:42:27 -0400 |
commit | cdbc653a04ee692a7105a96e8dd6055d9971d45c (patch) | |
tree | c1282680b3115edfd693a27bc6758208534ac557 /sound/firewire/dice/dice-mytek.c | |
parent | 009f8c90f571d87855914dbc20e6c0ea2a3b19ae (diff) | |
parent | ceec4684085a9e4dc60439d84ab47ce260444804 (diff) |
Merge branch 'for-next' into for-linus
4.18-rc1 merge material.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/dice/dice-mytek.c')
-rw-r--r-- | sound/firewire/dice/dice-mytek.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sound/firewire/dice/dice-mytek.c b/sound/firewire/dice/dice-mytek.c new file mode 100644 index 000000000000..eb7d5492d10b --- /dev/null +++ b/sound/firewire/dice/dice-mytek.c | |||
@@ -0,0 +1,46 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
2 | /* | ||
3 | * dice-mytek.c - a part of driver for DICE based devices | ||
4 | * | ||
5 | * Copyright (c) 2018 Melvin Vermeeren | ||
6 | */ | ||
7 | |||
8 | #include "dice.h" | ||
9 | |||
10 | struct dice_mytek_spec { | ||
11 | unsigned int tx_pcm_chs[MAX_STREAMS][SND_DICE_RATE_MODE_COUNT]; | ||
12 | unsigned int rx_pcm_chs[MAX_STREAMS][SND_DICE_RATE_MODE_COUNT]; | ||
13 | }; | ||
14 | |||
15 | static const struct dice_mytek_spec stereo_192_dsd_dac = { | ||
16 | /* AES, TOSLINK, SPDIF, ADAT inputs on device */ | ||
17 | .tx_pcm_chs = {{8, 8, 8}, {0, 0, 0} }, | ||
18 | /* PCM 44.1-192, native DSD64/DSD128 to device */ | ||
19 | .rx_pcm_chs = {{4, 4, 4}, {0, 0, 0} } | ||
20 | }; | ||
21 | |||
22 | /* | ||
23 | * Mytek has a few other firewire-capable devices, though newer models appear | ||
24 | * to lack the port more often than not. As I don't have access to any of them | ||
25 | * they are missing here. An example is the Mytek 8x192 ADDA, which is DICE. | ||
26 | */ | ||
27 | |||
28 | int snd_dice_detect_mytek_formats(struct snd_dice *dice) | ||
29 | { | ||
30 | int i; | ||
31 | const struct dice_mytek_spec *dev; | ||
32 | |||
33 | dev = &stereo_192_dsd_dac; | ||
34 | |||
35 | memcpy(dice->tx_pcm_chs, dev->tx_pcm_chs, | ||
36 | MAX_STREAMS * SND_DICE_RATE_MODE_COUNT * sizeof(unsigned int)); | ||
37 | memcpy(dice->rx_pcm_chs, dev->rx_pcm_chs, | ||
38 | MAX_STREAMS * SND_DICE_RATE_MODE_COUNT * sizeof(unsigned int)); | ||
39 | |||
40 | for (i = 0; i < MAX_STREAMS; ++i) { | ||
41 | dice->tx_midi_ports[i] = 0; | ||
42 | dice->rx_midi_ports[i] = 0; | ||
43 | } | ||
44 | |||
45 | return 0; | ||
46 | } | ||