1 // SPDX-License-Identifier: GPL-2.0-only
3 * dice_proc.c - a part of driver for Dice based devices
5 * Copyright (c) Clemens Ladisch
6 * Copyright (c) 2014 Takashi Sakamoto
11 static int dice_proc_read_mem(struct snd_dice
*dice
, void *buffer
,
12 unsigned int offset_q
, unsigned int quadlets
)
17 err
= snd_fw_transaction(dice
->unit
, TCODE_READ_BLOCK_REQUEST
,
18 DICE_PRIVATE_SPACE
+ 4 * offset_q
,
19 buffer
, 4 * quadlets
, 0);
23 for (i
= 0; i
< quadlets
; ++i
)
24 be32_to_cpus(&((u32
*)buffer
)[i
]);
29 static const char *str_from_array(const char *const strs
[], unsigned int count
,
38 static void dice_proc_fixup_string(char *s
, unsigned int size
)
42 for (i
= 0; i
< size
; i
+= 4)
43 cpu_to_le32s((u32
*)(s
+ i
));
45 for (i
= 0; i
< size
- 2; ++i
) {
48 if (s
[i
] == '\\' && s
[i
+ 1] == '\\') {
56 static void dice_proc_read(struct snd_info_entry
*entry
,
57 struct snd_info_buffer
*buffer
)
59 static const char *const section_names
[5] = {
60 "global", "tx", "rx", "ext_sync", "unused2"
62 static const char *const clock_sources
[] = {
63 "aes1", "aes2", "aes3", "aes4", "aes", "adat", "tdif",
64 "wc", "arx1", "arx2", "arx3", "arx4", "internal"
66 static const char *const rates
[] = {
67 "32000", "44100", "48000", "88200", "96000", "176400", "192000",
68 "any low", "any mid", "any high", "none"
70 struct snd_dice
*dice
= entry
->private_data
;
71 u32 sections
[ARRAY_SIZE(section_names
) * 2];
78 u32 owner_hi
, owner_lo
;
80 char nick_name
[NICK_NAME_SIZE
];
88 char clock_source_names
[CLOCK_SOURCE_NAMES_SIZE
];
95 char names
[TX_NAMES_SIZE
];
104 char names
[RX_NAMES_SIZE
];
115 unsigned int quadlets
, stream
, i
;
117 if (dice_proc_read_mem(dice
, sections
, 0, ARRAY_SIZE(sections
)) < 0)
119 snd_iprintf(buffer
, "sections:\n");
120 for (i
= 0; i
< ARRAY_SIZE(section_names
); ++i
)
121 snd_iprintf(buffer
, " %s: offset %u, size %u\n",
123 sections
[i
* 2], sections
[i
* 2 + 1]);
125 quadlets
= min_t(u32
, sections
[1], sizeof(buf
.global
) / 4);
126 if (dice_proc_read_mem(dice
, &buf
.global
, sections
[0], quadlets
) < 0)
128 snd_iprintf(buffer
, "global:\n");
129 snd_iprintf(buffer
, " owner: %04x:%04x%08x\n",
130 buf
.global
.owner_hi
>> 16,
131 buf
.global
.owner_hi
& 0xffff, buf
.global
.owner_lo
);
132 snd_iprintf(buffer
, " notification: %08x\n", buf
.global
.notification
);
133 dice_proc_fixup_string(buf
.global
.nick_name
, NICK_NAME_SIZE
);
134 snd_iprintf(buffer
, " nick name: %s\n", buf
.global
.nick_name
);
135 snd_iprintf(buffer
, " clock select: %s %s\n",
136 str_from_array(clock_sources
, ARRAY_SIZE(clock_sources
),
137 buf
.global
.clock_select
& CLOCK_SOURCE_MASK
),
138 str_from_array(rates
, ARRAY_SIZE(rates
),
139 (buf
.global
.clock_select
& CLOCK_RATE_MASK
)
140 >> CLOCK_RATE_SHIFT
));
141 snd_iprintf(buffer
, " enable: %u\n", buf
.global
.enable
);
142 snd_iprintf(buffer
, " status: %slocked %s\n",
143 buf
.global
.status
& STATUS_SOURCE_LOCKED
? "" : "un",
144 str_from_array(rates
, ARRAY_SIZE(rates
),
146 STATUS_NOMINAL_RATE_MASK
)
147 >> CLOCK_RATE_SHIFT
));
148 snd_iprintf(buffer
, " ext status: %08x\n", buf
.global
.extended_status
);
149 snd_iprintf(buffer
, " sample rate: %u\n", buf
.global
.sample_rate
);
150 if (quadlets
>= 90) {
151 snd_iprintf(buffer
, " version: %u.%u.%u.%u\n",
152 (buf
.global
.version
>> 24) & 0xff,
153 (buf
.global
.version
>> 16) & 0xff,
154 (buf
.global
.version
>> 8) & 0xff,
155 (buf
.global
.version
>> 0) & 0xff);
156 snd_iprintf(buffer
, " clock caps:");
157 for (i
= 0; i
<= 6; ++i
)
158 if (buf
.global
.clock_caps
& (1 << i
))
159 snd_iprintf(buffer
, " %s", rates
[i
]);
160 for (i
= 0; i
<= 12; ++i
)
161 if (buf
.global
.clock_caps
& (1 << (16 + i
)))
162 snd_iprintf(buffer
, " %s", clock_sources
[i
]);
163 snd_iprintf(buffer
, "\n");
164 dice_proc_fixup_string(buf
.global
.clock_source_names
,
165 CLOCK_SOURCE_NAMES_SIZE
);
166 snd_iprintf(buffer
, " clock source names: %s\n",
167 buf
.global
.clock_source_names
);
170 if (dice_proc_read_mem(dice
, &tx_rx_header
, sections
[2], 2) < 0)
172 quadlets
= min_t(u32
, tx_rx_header
.size
, sizeof(buf
.tx
) / 4);
173 for (stream
= 0; stream
< tx_rx_header
.number
; ++stream
) {
174 if (dice_proc_read_mem(dice
, &buf
.tx
, sections
[2] + 2 +
175 stream
* tx_rx_header
.size
,
178 snd_iprintf(buffer
, "tx %u:\n", stream
);
179 snd_iprintf(buffer
, " iso channel: %d\n", (int)buf
.tx
.iso
);
180 snd_iprintf(buffer
, " audio channels: %u\n",
181 buf
.tx
.number_audio
);
182 snd_iprintf(buffer
, " midi ports: %u\n", buf
.tx
.number_midi
);
183 snd_iprintf(buffer
, " speed: S%u\n", 100u << buf
.tx
.speed
);
184 if (quadlets
>= 68) {
185 dice_proc_fixup_string(buf
.tx
.names
, TX_NAMES_SIZE
);
186 snd_iprintf(buffer
, " names: %s\n", buf
.tx
.names
);
188 if (quadlets
>= 70) {
189 snd_iprintf(buffer
, " ac3 caps: %08x\n",
191 snd_iprintf(buffer
, " ac3 enable: %08x\n",
196 if (dice_proc_read_mem(dice
, &tx_rx_header
, sections
[4], 2) < 0)
198 quadlets
= min_t(u32
, tx_rx_header
.size
, sizeof(buf
.rx
) / 4);
199 for (stream
= 0; stream
< tx_rx_header
.number
; ++stream
) {
200 if (dice_proc_read_mem(dice
, &buf
.rx
, sections
[4] + 2 +
201 stream
* tx_rx_header
.size
,
204 snd_iprintf(buffer
, "rx %u:\n", stream
);
205 snd_iprintf(buffer
, " iso channel: %d\n", (int)buf
.rx
.iso
);
206 snd_iprintf(buffer
, " sequence start: %u\n", buf
.rx
.seq_start
);
207 snd_iprintf(buffer
, " audio channels: %u\n",
208 buf
.rx
.number_audio
);
209 snd_iprintf(buffer
, " midi ports: %u\n", buf
.rx
.number_midi
);
210 if (quadlets
>= 68) {
211 dice_proc_fixup_string(buf
.rx
.names
, RX_NAMES_SIZE
);
212 snd_iprintf(buffer
, " names: %s\n", buf
.rx
.names
);
214 if (quadlets
>= 70) {
215 snd_iprintf(buffer
, " ac3 caps: %08x\n",
217 snd_iprintf(buffer
, " ac3 enable: %08x\n",
222 quadlets
= min_t(u32
, sections
[7], sizeof(buf
.ext_sync
) / 4);
224 if (dice_proc_read_mem(dice
, &buf
.ext_sync
,
227 snd_iprintf(buffer
, "ext status:\n");
228 snd_iprintf(buffer
, " clock source: %s\n",
229 str_from_array(clock_sources
,
230 ARRAY_SIZE(clock_sources
),
231 buf
.ext_sync
.clock_source
));
232 snd_iprintf(buffer
, " locked: %u\n", buf
.ext_sync
.locked
);
233 snd_iprintf(buffer
, " rate: %s\n",
234 str_from_array(rates
, ARRAY_SIZE(rates
),
236 snd_iprintf(buffer
, " adat user data: ");
237 if (buf
.ext_sync
.adat_user_data
& ADAT_USER_DATA_NO_DATA
)
238 snd_iprintf(buffer
, "-\n");
240 snd_iprintf(buffer
, "%x\n",
241 buf
.ext_sync
.adat_user_data
);
245 static void dice_proc_read_formation(struct snd_info_entry
*entry
,
246 struct snd_info_buffer
*buffer
)
248 static const char *const rate_labels
[] = {
249 [SND_DICE_RATE_MODE_LOW
] = "low",
250 [SND_DICE_RATE_MODE_MIDDLE
] = "middle",
251 [SND_DICE_RATE_MODE_HIGH
] = "high",
253 struct snd_dice
*dice
= entry
->private_data
;
256 snd_iprintf(buffer
, "Output stream from unit:\n");
257 for (i
= 0; i
< SND_DICE_RATE_MODE_COUNT
; ++i
)
258 snd_iprintf(buffer
, "\t%s", rate_labels
[i
]);
259 snd_iprintf(buffer
, "\tMIDI\n");
260 for (i
= 0; i
< MAX_STREAMS
; ++i
) {
261 snd_iprintf(buffer
, "Tx %u:", i
);
262 for (j
= 0; j
< SND_DICE_RATE_MODE_COUNT
; ++j
)
263 snd_iprintf(buffer
, "\t%u", dice
->tx_pcm_chs
[i
][j
]);
264 snd_iprintf(buffer
, "\t%u\n", dice
->tx_midi_ports
[i
]);
267 snd_iprintf(buffer
, "Input stream to unit:\n");
268 for (i
= 0; i
< SND_DICE_RATE_MODE_COUNT
; ++i
)
269 snd_iprintf(buffer
, "\t%s", rate_labels
[i
]);
270 snd_iprintf(buffer
, "\n");
271 for (i
= 0; i
< MAX_STREAMS
; ++i
) {
272 snd_iprintf(buffer
, "Rx %u:", i
);
273 for (j
= 0; j
< SND_DICE_RATE_MODE_COUNT
; ++j
)
274 snd_iprintf(buffer
, "\t%u", dice
->rx_pcm_chs
[i
][j
]);
275 snd_iprintf(buffer
, "\t%u\n", dice
->rx_midi_ports
[i
]);
279 static void add_node(struct snd_dice
*dice
, struct snd_info_entry
*root
,
281 void (*op
)(struct snd_info_entry
*entry
,
282 struct snd_info_buffer
*buffer
))
284 struct snd_info_entry
*entry
;
286 entry
= snd_info_create_card_entry(dice
->card
, name
, root
);
288 snd_info_set_text_ops(entry
, dice
, op
);
291 void snd_dice_create_proc(struct snd_dice
*dice
)
293 struct snd_info_entry
*root
;
296 * All nodes are automatically removed at snd_card_disconnect(),
297 * by following to link list.
299 root
= snd_info_create_card_entry(dice
->card
, "firewire",
300 dice
->card
->proc_root
);
303 root
->mode
= S_IFDIR
| 0555;
305 add_node(dice
, root
, "dice", dice_proc_read
);
306 add_node(dice
, root
, "formation", dice_proc_read_formation
);