sound/firewire/dice/dice-harman.c
Source file repositories/reference/linux-study-clean/sound/firewire/dice/dice-harman.c
File Facts
- System
- Linux kernel
- Corpus path
sound/firewire/dice/dice-harman.c- Extension
.c- Size
- 629 bytes
- Lines
- 25
- Domain
- Driver Families
- Bucket
- sound/firewire
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
dice.h
Detected Declarations
function snd_dice_detect_harman_formats
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
// dice-harman.c - a part of driver for DICE based devices
//
// Copyright (c) 2021 Takashi Sakamoto
#include "dice.h"
int snd_dice_detect_harman_formats(struct snd_dice *dice)
{
int i;
// Lexicon I-ONYX FW810s supports sampling transfer frequency up to
// 96.0 kHz, 12 PCM channels and 1 MIDI channel in its first tx stream
// , 10 PCM channels and 1 MIDI channel in its first rx stream for all
// of the frequencies.
for (i = 0; i < 2; ++i) {
dice->tx_pcm_chs[0][i] = 12;
dice->tx_midi_ports[0] = 1;
dice->rx_pcm_chs[0][i] = 10;
dice->rx_midi_ports[0] = 1;
}
return 0;
}
Annotation
- Immediate include surface: `dice.h`.
- Detected declarations: `function snd_dice_detect_harman_formats`.
- Atlas domain: Driver Families / sound/firewire.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.