firewire-fireworks-protocols 0.2.0

Implementation of protocols defined by Echo Digital Audio Corporation for Fireworks board module.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
// SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright (c) 2021 Takashi Sakamoto

//! Protocol about port configuration.
//!
//! The module includes protocol about port configuration defined by Echo Audio Digital Corporation
//! for Fireworks board module.

use super::*;

const CATEGORY_PORT_CONF: u32 = 9;

const CMD_SET_MIRROR: u32 = 0;
const CMD_GET_MIRROR: u32 = 1;
const CMD_SET_DIG_MODE: u32 = 2;
const CMD_GET_DIG_MODE: u32 = 3;
const CMD_SET_PHANTOM: u32 = 4;
const CMD_GET_PHANTOM: u32 = 5;
const CMD_SET_STREAM_MAP: u32 = 6;
const CMD_GET_STREAM_MAP: u32 = 7;

/// The parameters for source of control room.
#[derive(Default, Debug, Copy, Clone, PartialEq, Eq)]
pub struct EfwControlRoomSource(pub usize);

const CONTROL_ROOM_SOURCES: &[PhysGroupType] = &[
    PhysGroupType::Analog,
    PhysGroupType::Headphones,
    PhysGroupType::Spdif,
];

/// The specification of control room operation.
pub trait EfwControlRoomSpecification: EfwHardwareSpecification {
    fn control_room_source_pairs() -> Vec<(PhysGroupType, usize)> {
        Self::PHYS_OUTPUT_GROUPS
            .iter()
            .filter(|(group_type, _)| {
                CONTROL_ROOM_SOURCES
                    .iter()
                    .find(|t| group_type.eq(t))
                    .is_some()
            })
            .flat_map(|&(group_type, count)| {
                let entries: Vec<(PhysGroupType, usize)> =
                    (0..count).step_by(2).map(|i| (group_type, i)).collect();
                entries
            })
            .collect()
    }
}

fn phys_group_pairs(groups: &[(PhysGroupType, usize)]) -> Vec<(PhysGroupType, usize)> {
    groups
        .iter()
        .flat_map(|&(group_type, count)| {
            let entries: Vec<(PhysGroupType, usize)> =
                (0..count).step_by(2).map(|pos| (group_type, pos)).collect();
            entries
        })
        .collect()
}

impl<O, P> EfwWhollyCachableParamsOperation<P, EfwControlRoomSource> for O
where
    O: EfwControlRoomSpecification,
    P: EfwProtocolExtManual,
{
    fn cache_wholly(
        proto: &mut P,
        states: &mut EfwControlRoomSource,
        timeout_ms: u32,
    ) -> Result<(), Error> {
        let args = Vec::new();
        let mut params = vec![0];
        proto.transaction(
            CATEGORY_PORT_CONF,
            CMD_GET_MIRROR,
            &args,
            &mut params,
            timeout_ms,
        )?;
        let pos = (params[0] / 2) as usize;
        let entries = phys_group_pairs(Self::PHYS_OUTPUT_GROUPS);
        let entry = entries.iter().nth(pos).ok_or_else(|| {
            let msg = format!("Unexpected value {} for source of control room", pos);
            Error::new(FileError::Nxio, &msg)
        })?;

        states.0 = Self::control_room_source_pairs()
            .iter()
            .position(|e| entry.eq(e))
            .ok_or_else(|| {
                let msg = format!(
                    "Unexpected entry for source of control room: {:?},{}",
                    entry.0, entry.1
                );
                Error::new(FileError::Nxio, &msg)
            })?;

        Ok(())
    }
}

impl<O, P> EfwWhollyUpdatableParamsOperation<P, EfwControlRoomSource> for O
where
    O: EfwControlRoomSpecification,
    P: EfwProtocolExtManual,
{
    fn update_wholly(
        proto: &mut P,
        states: &EfwControlRoomSource,
        timeout_ms: u32,
    ) -> Result<(), Error> {
        let pairs = Self::control_room_source_pairs();
        let entry = pairs.iter().nth(states.0).ok_or_else(|| {
            let msg = format!("Invalid value for source of control room: {}", states.0);
            Error::new(FileError::Inval, &msg)
        })?;

        let pos = phys_group_pairs(Self::PHYS_OUTPUT_GROUPS)
            .iter()
            .position(|e| entry.eq(&e))
            .map(|pos| pos * 2)
            .ok_or_else(|| {
                let msg = format!(
                    "Invalid entry for source of control room: {:?},{}",
                    entry.0, entry.1
                );
                Error::new(FileError::Inval, &msg)
            })?;

        let args = [pos as u32];
        let mut params = Vec::new();
        proto.transaction(
            CATEGORY_PORT_CONF,
            CMD_SET_MIRROR,
            &args,
            &mut params,
            timeout_ms,
        )
    }
}

/// Type of audio signal for dignal input and output.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum EfwDigitalMode {
    /// Coaxial interface for S/PDIF signal.
    SpdifCoax,
    /// XLR interface for AES/EBU signal.
    AesebuXlr,
    /// Optical interface for S/PDIF signal.
    SpdifOpt,
    /// Optical interface for ADAT signal.
    AdatOpt,
    Unknown(u32),
}

impl Default for EfwDigitalMode {
    fn default() -> Self {
        Self::Unknown(u32::MAX)
    }
}

fn serialize_digital_mode(mode: &EfwDigitalMode, val: &mut u32) {
    *val = match *mode {
        EfwDigitalMode::SpdifCoax => 0,
        EfwDigitalMode::AesebuXlr => 1,
        EfwDigitalMode::SpdifOpt => 2,
        EfwDigitalMode::AdatOpt => 3,
        EfwDigitalMode::Unknown(val) => val,
    };
}

fn deserialize_digital_mode(val: u32) -> EfwDigitalMode {
    match val {
        0 => EfwDigitalMode::SpdifCoax,
        1 => EfwDigitalMode::AesebuXlr,
        2 => EfwDigitalMode::SpdifOpt,
        3 => EfwDigitalMode::AdatOpt,
        _ => EfwDigitalMode::Unknown(val),
    }
}

/// The specification for mode of digital input and output.
pub trait EfwDigitalModeSpecification: EfwHardwareSpecification {
    const DIG_MODES: &'static [(HwCap, EfwDigitalMode)] = &[
        (HwCap::OptionalSpdifCoax, EfwDigitalMode::SpdifCoax),
        (HwCap::OptionalAesebuXlr, EfwDigitalMode::AesebuXlr),
        (HwCap::OptionalSpdifOpt, EfwDigitalMode::SpdifOpt),
        (HwCap::OptionalAdatOpt, EfwDigitalMode::AdatOpt),
    ];

    fn create_digital_mode() -> EfwDigitalMode {
        Self::DIG_MODES
            .iter()
            .find(|(cap, _)| Self::CAPABILITIES.iter().find(|c| cap.eq(c)).is_some())
            .map(|(_, mode)| *mode)
            .unwrap()
    }

    fn create_digital_modes() -> Vec<EfwDigitalMode> {
        Self::DIG_MODES
            .iter()
            .filter(|(cap, _)| Self::CAPABILITIES.iter().find(|c| cap.eq(c)).is_some())
            .map(|(_, mode)| *mode)
            .collect()
    }
}

impl<O, P> EfwWhollyCachableParamsOperation<P, EfwDigitalMode> for O
where
    O: EfwDigitalModeSpecification,
    P: EfwProtocolExtManual,
{
    fn cache_wholly(
        proto: &mut P,
        states: &mut EfwDigitalMode,
        timeout_ms: u32,
    ) -> Result<(), Error> {
        assert!(Self::CAPABILITIES
            .iter()
            .find(|cap| Self::DIG_MODES.iter().find(|(c, _)| c.eq(cap)).is_some())
            .is_some());

        let args = Vec::new();
        let mut params = vec![0];
        proto
            .transaction(
                CATEGORY_PORT_CONF,
                CMD_GET_DIG_MODE,
                &args,
                &mut params,
                timeout_ms,
            )
            .map(|_| *states = deserialize_digital_mode(params[0]))
    }
}

impl<O, P> EfwWhollyUpdatableParamsOperation<P, EfwDigitalMode> for O
where
    O: EfwDigitalModeSpecification,
    P: EfwProtocolExtManual,
{
    fn update_wholly(proto: &mut P, states: &EfwDigitalMode, timeout_ms: u32) -> Result<(), Error> {
        assert!(Self::CAPABILITIES
            .iter()
            .find(|cap| Self::DIG_MODES.iter().find(|(c, _)| c.eq(cap)).is_some())
            .is_some());

        let mut args = [0];
        let mut params = Vec::new();
        serialize_digital_mode(&states, &mut args[0]);
        proto.transaction(
            CATEGORY_PORT_CONF,
            CMD_SET_DIG_MODE,
            &args,
            &mut params,
            timeout_ms,
        )
    }
}

/// The parameters for phantom powering.
#[derive(Default, Debug, Copy, Clone, PartialEq, Eq)]
pub struct EfwPhantomPowering(pub bool);

/// The specification for mode of digital input and output.
pub trait EfwPhantomPoweringSpecification: EfwHardwareSpecification {}

impl<O, P> EfwWhollyCachableParamsOperation<P, EfwPhantomPowering> for O
where
    O: EfwPhantomPoweringSpecification,
    P: EfwProtocolExtManual,
{
    fn cache_wholly(
        proto: &mut P,
        states: &mut EfwPhantomPowering,
        timeout_ms: u32,
    ) -> Result<(), Error> {
        let args = Vec::new();
        let mut params = vec![0];
        proto
            .transaction(
                CATEGORY_PORT_CONF,
                CMD_GET_PHANTOM,
                &args,
                &mut params,
                timeout_ms,
            )
            .map(|_| states.0 = params[0] > 0)
    }
}

impl<O, P> EfwWhollyUpdatableParamsOperation<P, EfwPhantomPowering> for O
where
    O: EfwPhantomPoweringSpecification,
    P: EfwProtocolExtManual,
{
    fn update_wholly(
        proto: &mut P,
        states: &EfwPhantomPowering,
        timeout_ms: u32,
    ) -> Result<(), Error> {
        let args = [states.0 as u32];
        let mut params = Vec::new();
        proto.transaction(
            CATEGORY_PORT_CONF,
            CMD_SET_PHANTOM,
            &args,
            &mut params,
            timeout_ms,
        )
    }
}

/// Mapping between rx stream channel pairs and physical output channel pairs per mode of sampling
/// transfer frequency.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct EfwRxStreamMaps(pub Vec<Vec<usize>>);

/// The specification of rx stream mapping.
pub trait EfwRxStreamMapsSpecification: EfwHardwareSpecification {
    const STREAM_MAPPING_RATE_TABLE: [&'static [u32]; 3] =
        [&[44100, 48000, 32000], &[88200, 96000], &[176400, 192000]];

    fn create_rx_stream_maps() -> EfwRxStreamMaps {
        let maps = Self::RX_CHANNEL_COUNTS
            .iter()
            .map(|&count| vec![Default::default(); count])
            .collect();
        EfwRxStreamMaps(maps)
    }
}

const MAP_SIZE: usize = 70;
const MAP_ENTRY_UNABAILABLE: u32 = 0xffffffff;

impl<O, P> EfwWhollyCachableParamsOperation<P, EfwRxStreamMaps> for O
where
    O: EfwRxStreamMapsSpecification,
    P: EfwProtocolExtManual,
{
    fn cache_wholly(
        proto: &mut P,
        states: &mut EfwRxStreamMaps,
        timeout_ms: u32,
    ) -> Result<(), Error> {
        states
            .0
            .iter_mut()
            .zip(Self::STREAM_MAPPING_RATE_TABLE)
            .try_for_each(|(state, rates)| {
                let args = [rates[0] as u32];
                let mut params = vec![0; MAP_SIZE];

                proto
                    .transaction(
                        CATEGORY_PORT_CONF,
                        CMD_GET_STREAM_MAP,
                        &args,
                        &mut params,
                        timeout_ms,
                    )
                    .map(|_| {
                        params[4..]
                            .iter()
                            .zip(state.iter_mut())
                            .for_each(|(&quad, src)| *src = (quad / 2) as usize);
                    })
            })
    }
}

impl<O, P> EfwPartiallyUpdatableParamsOperation<P, EfwRxStreamMaps> for O
where
    O: EfwRxStreamMapsSpecification,
    P: EfwProtocolExtManual,
{
    fn update_partially(
        proto: &mut P,
        states: &mut EfwRxStreamMaps,
        updates: EfwRxStreamMaps,
        timeout_ms: u32,
    ) -> Result<(), Error> {
        states
            .0
            .iter_mut()
            .zip(&updates.0)
            .zip(Self::STREAM_MAPPING_RATE_TABLE)
            .zip(Self::RX_CHANNEL_COUNTS)
            .zip(Self::TX_CHANNEL_COUNTS)
            .filter(|((((o, n), _), _), _)| !n.eq(o))
            .try_for_each(
                |((((curr, update), rates), rx_channel_count), tx_channel_count)| {
                    let mut args = [0; MAP_SIZE];

                    args[0] = rates[0];
                    // NOTE: This field is filled with clock source bits, however it's not used actually.
                    args[1] = 0;
                    args[2] = (rx_channel_count / 2) as u32;
                    args[3] = (Self::phys_output_count() / 2) as u32;
                    args[4..36].fill(MAP_ENTRY_UNABAILABLE);
                    args[36] = (tx_channel_count / 2) as u32;
                    args[37] = (Self::phys_input_count() / 2) as u32;
                    args[38..70].fill(MAP_ENTRY_UNABAILABLE);

                    args[4..]
                        .iter_mut()
                        .zip(update.iter())
                        .for_each(|(quad, &src)| *quad = (src * 2) as u32);

                    // MEMO: No hardware supports tx stream mapping.

                    proto
                        .transaction(
                            CATEGORY_PORT_CONF,
                            CMD_SET_STREAM_MAP,
                            &args,
                            &mut Vec::new(),
                            timeout_ms,
                        )
                        .map(|_| curr.copy_from_slice(&update))
                },
            )
    }
}