2 * bebob_focusrite.c - a part of driver for BeBoB based devices
4 * Copyright (c) 2013-2014 Takashi Sakamoto
6 * Licensed under the terms of the GNU General Public License, version 2.
11 #define ANA_IN "Analog In"
12 #define DIG_IN "Digital In"
13 #define ANA_OUT "Analog Out"
14 #define DIG_OUT "Digital Out"
15 #define STM_IN "Stream In"
17 #define SAFFIRE_ADDRESS_BASE 0x000100000000ULL
19 #define SAFFIRE_OFFSET_CLOCK_SOURCE 0x00f8
20 #define SAFFIREPRO_OFFSET_CLOCK_SOURCE 0x0174
22 /* whether sync to external device or not */
23 #define SAFFIRE_OFFSET_CLOCK_SYNC_EXT 0x013c
24 #define SAFFIRE_LE_OFFSET_CLOCK_SYNC_EXT 0x0432
25 #define SAFFIREPRO_OFFSET_CLOCK_SYNC_EXT 0x0164
27 #define SAFFIRE_CLOCK_SOURCE_INTERNAL 0
28 #define SAFFIRE_CLOCK_SOURCE_SPDIF 1
30 /* clock sources as returned from register of Saffire Pro 10 and 26 */
31 #define SAFFIREPRO_CLOCK_SOURCE_INTERNAL 0
32 #define SAFFIREPRO_CLOCK_SOURCE_SKIP 1 /* never used on hardware */
33 #define SAFFIREPRO_CLOCK_SOURCE_SPDIF 2
34 #define SAFFIREPRO_CLOCK_SOURCE_ADAT1 3 /* not used on s.pro. 10 */
35 #define SAFFIREPRO_CLOCK_SOURCE_ADAT2 4 /* not used on s.pro. 10 */
36 #define SAFFIREPRO_CLOCK_SOURCE_WORDCLOCK 5
37 #define SAFFIREPRO_CLOCK_SOURCE_COUNT 6
39 /* S/PDIF, ADAT1, ADAT2 is enabled or not. three quadlets */
40 #define SAFFIREPRO_ENABLE_DIG_IFACES 0x01a4
42 /* saffirepro has its own parameter for sampling frequency */
43 #define SAFFIREPRO_RATE_NOREBOOT 0x01cc
44 /* index is the value for this register */
45 static const unsigned int rates
[] = {
55 /* saffire(no label)/saffire LE has metering */
56 #define SAFFIRE_OFFSET_METER 0x0100
57 #define SAFFIRE_LE_OFFSET_METER 0x0168
60 saffire_read_block(struct snd_bebob
*bebob
, u64 offset
,
61 u32
*buf
, unsigned int size
)
65 __be32
*tmp
= (__be32
*)buf
;
67 err
= snd_fw_transaction(bebob
->unit
, TCODE_READ_BLOCK_REQUEST
,
68 SAFFIRE_ADDRESS_BASE
+ offset
,
73 for (i
= 0; i
< size
/ sizeof(u32
); i
++)
74 buf
[i
] = be32_to_cpu(tmp
[i
]);
80 saffire_read_quad(struct snd_bebob
*bebob
, u64 offset
, u32
*value
)
85 err
= snd_fw_transaction(bebob
->unit
, TCODE_READ_QUADLET_REQUEST
,
86 SAFFIRE_ADDRESS_BASE
+ offset
,
87 &tmp
, sizeof(__be32
), 0);
91 *value
= be32_to_cpu(tmp
);
97 saffire_write_quad(struct snd_bebob
*bebob
, u64 offset
, u32 value
)
99 __be32 data
= cpu_to_be32(value
);
101 return snd_fw_transaction(bebob
->unit
, TCODE_WRITE_QUADLET_REQUEST
,
102 SAFFIRE_ADDRESS_BASE
+ offset
,
103 &data
, sizeof(__be32
), 0);
106 static const enum snd_bebob_clock_type saffirepro_10_clk_src_types
[] = {
107 SND_BEBOB_CLOCK_TYPE_INTERNAL
,
108 SND_BEBOB_CLOCK_TYPE_EXTERNAL
, /* S/PDIF */
109 SND_BEBOB_CLOCK_TYPE_EXTERNAL
, /* Word Clock */
111 static const enum snd_bebob_clock_type saffirepro_26_clk_src_types
[] = {
112 SND_BEBOB_CLOCK_TYPE_INTERNAL
,
113 SND_BEBOB_CLOCK_TYPE_EXTERNAL
, /* S/PDIF */
114 SND_BEBOB_CLOCK_TYPE_EXTERNAL
, /* ADAT1 */
115 SND_BEBOB_CLOCK_TYPE_EXTERNAL
, /* ADAT2 */
116 SND_BEBOB_CLOCK_TYPE_EXTERNAL
, /* Word Clock */
118 /* Value maps between registers and labels for SaffirePro 10/26. */
119 static const signed char saffirepro_clk_maps
[][SAFFIREPRO_CLOCK_SOURCE_COUNT
] = {
122 [SAFFIREPRO_CLOCK_SOURCE_INTERNAL
] = 0,
123 [SAFFIREPRO_CLOCK_SOURCE_SKIP
] = -1, /* not supported */
124 [SAFFIREPRO_CLOCK_SOURCE_SPDIF
] = 1,
125 [SAFFIREPRO_CLOCK_SOURCE_ADAT1
] = -1, /* not supported */
126 [SAFFIREPRO_CLOCK_SOURCE_ADAT2
] = -1, /* not supported */
127 [SAFFIREPRO_CLOCK_SOURCE_WORDCLOCK
] = 2,
131 [SAFFIREPRO_CLOCK_SOURCE_INTERNAL
] = 0,
132 [SAFFIREPRO_CLOCK_SOURCE_SKIP
] = -1, /* not supported */
133 [SAFFIREPRO_CLOCK_SOURCE_SPDIF
] = 1,
134 [SAFFIREPRO_CLOCK_SOURCE_ADAT1
] = 2,
135 [SAFFIREPRO_CLOCK_SOURCE_ADAT2
] = 3,
136 [SAFFIREPRO_CLOCK_SOURCE_WORDCLOCK
] = 4,
141 saffirepro_both_clk_freq_get(struct snd_bebob
*bebob
, unsigned int *rate
)
146 err
= saffire_read_quad(bebob
, SAFFIREPRO_RATE_NOREBOOT
, &id
);
149 if (id
>= ARRAY_SIZE(rates
))
157 saffirepro_both_clk_freq_set(struct snd_bebob
*bebob
, unsigned int rate
)
161 for (id
= 0; id
< ARRAY_SIZE(rates
); id
++) {
162 if (rates
[id
] == rate
)
165 if (id
== ARRAY_SIZE(rates
))
168 return saffire_write_quad(bebob
, SAFFIREPRO_RATE_NOREBOOT
, id
);
172 * query hardware for current clock source, return our internally
173 * used clock index in *id, depending on hardware.
176 saffirepro_both_clk_src_get(struct snd_bebob
*bebob
, unsigned int *id
)
179 u32 value
; /* clock source read from hw register */
180 const signed char *map
;
182 err
= saffire_read_quad(bebob
, SAFFIREPRO_OFFSET_CLOCK_SOURCE
, &value
);
186 /* depending on hardware, use a different mapping */
187 if (bebob
->spec
->clock
->types
== saffirepro_10_clk_src_types
)
188 map
= saffirepro_clk_maps
[0];
190 map
= saffirepro_clk_maps
[1];
192 /* In a case that this driver cannot handle the value of register. */
193 if (value
>= SAFFIREPRO_CLOCK_SOURCE_COUNT
|| map
[value
] < 0) {
198 *id
= (unsigned int)map
[value
];
203 const struct snd_bebob_spec saffire_le_spec
;
204 static const enum snd_bebob_clock_type saffire_both_clk_src_types
[] = {
205 SND_BEBOB_CLOCK_TYPE_INTERNAL
,
206 SND_BEBOB_CLOCK_TYPE_EXTERNAL
,
209 saffire_both_clk_src_get(struct snd_bebob
*bebob
, unsigned int *id
)
214 err
= saffire_read_quad(bebob
, SAFFIRE_OFFSET_CLOCK_SOURCE
, &value
);
220 static const char *const saffire_le_meter_labels
[] = {
221 ANA_IN
, ANA_IN
, DIG_IN
,
222 ANA_OUT
, ANA_OUT
, ANA_OUT
, ANA_OUT
,
225 static const char *const saffire_meter_labels
[] = {
227 STM_IN
, STM_IN
, STM_IN
, STM_IN
, STM_IN
,
230 saffire_meter_get(struct snd_bebob
*bebob
, u32
*buf
, unsigned int size
)
232 const struct snd_bebob_meter_spec
*spec
= bebob
->spec
->meter
;
233 unsigned int channels
;
237 if (spec
->labels
== saffire_le_meter_labels
)
238 offset
= SAFFIRE_LE_OFFSET_METER
;
240 offset
= SAFFIRE_OFFSET_METER
;
242 channels
= spec
->num
* 2;
243 if (size
< channels
* sizeof(u32
))
246 err
= saffire_read_block(bebob
, offset
, buf
, size
);
247 if (err
>= 0 && spec
->labels
== saffire_le_meter_labels
) {
248 swap(buf
[1], buf
[3]);
249 swap(buf
[2], buf
[3]);
250 swap(buf
[3], buf
[4]);
252 swap(buf
[7], buf
[10]);
253 swap(buf
[8], buf
[10]);
254 swap(buf
[9], buf
[11]);
255 swap(buf
[11], buf
[12]);
257 swap(buf
[15], buf
[16]);
263 static const struct snd_bebob_rate_spec saffirepro_both_rate_spec
= {
264 .get
= &saffirepro_both_clk_freq_get
,
265 .set
= &saffirepro_both_clk_freq_set
,
267 /* Saffire Pro 26 I/O */
268 static const struct snd_bebob_clock_spec saffirepro_26_clk_spec
= {
269 .num
= ARRAY_SIZE(saffirepro_26_clk_src_types
),
270 .types
= saffirepro_26_clk_src_types
,
271 .get
= &saffirepro_both_clk_src_get
,
273 const struct snd_bebob_spec saffirepro_26_spec
= {
274 .clock
= &saffirepro_26_clk_spec
,
275 .rate
= &saffirepro_both_rate_spec
,
278 /* Saffire Pro 10 I/O */
279 static const struct snd_bebob_clock_spec saffirepro_10_clk_spec
= {
280 .num
= ARRAY_SIZE(saffirepro_10_clk_src_types
),
281 .types
= saffirepro_10_clk_src_types
,
282 .get
= &saffirepro_both_clk_src_get
,
284 const struct snd_bebob_spec saffirepro_10_spec
= {
285 .clock
= &saffirepro_10_clk_spec
,
286 .rate
= &saffirepro_both_rate_spec
,
290 static const struct snd_bebob_rate_spec saffire_both_rate_spec
= {
291 .get
= &snd_bebob_stream_get_rate
,
292 .set
= &snd_bebob_stream_set_rate
,
294 static const struct snd_bebob_clock_spec saffire_both_clk_spec
= {
295 .num
= ARRAY_SIZE(saffire_both_clk_src_types
),
296 .types
= saffire_both_clk_src_types
,
297 .get
= &saffire_both_clk_src_get
,
300 static const struct snd_bebob_meter_spec saffire_le_meter_spec
= {
301 .num
= ARRAY_SIZE(saffire_le_meter_labels
),
302 .labels
= saffire_le_meter_labels
,
303 .get
= &saffire_meter_get
,
305 const struct snd_bebob_spec saffire_le_spec
= {
306 .clock
= &saffire_both_clk_spec
,
307 .rate
= &saffire_both_rate_spec
,
308 .meter
= &saffire_le_meter_spec
311 static const struct snd_bebob_meter_spec saffire_meter_spec
= {
312 .num
= ARRAY_SIZE(saffire_meter_labels
),
313 .labels
= saffire_meter_labels
,
314 .get
= &saffire_meter_get
,
316 const struct snd_bebob_spec saffire_spec
= {
317 .clock
= &saffire_both_clk_spec
,
318 .rate
= &saffire_both_rate_spec
,
319 .meter
= &saffire_meter_spec