include/sound/cs8403.h
Source file repositories/reference/linux-study-clean/include/sound/cs8403.h
File Facts
- System
- Linux kernel
- Corpus path
include/sound/cs8403.h- Extension
.h- Size
- 8138 bytes
- Lines
- 243
- Domain
- Driver Families
- Bucket
- include/sound
- 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
- No C-style include directives detected by the generator.
Detected Declarations
function Copyrightfunction SND_CS8403_ENCODEfunction SND_CS8404_DECODEfunction SND_CS8404_ENCODE
Annotated Snippet
switch (bits & 0x10) {
case 0x10: diga->status[0] |= IEC958_AES0_CON_EMPHASIS_NONE; break;
case 0x00: diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015; break;
}
if (!(bits & 0x80))
diga->status[1] |= IEC958_AES1_CON_ORIGINAL;
switch (bits & 0x60) {
case 0x00: diga->status[1] |= IEC958_AES1_CON_MAGNETIC_ID; break;
case 0x20: diga->status[1] |= IEC958_AES1_CON_DIGDIGCONV_ID; break;
case 0x40: diga->status[1] |= IEC958_AES1_CON_LASEROPT_ID; break;
case 0x60: diga->status[1] |= IEC958_AES1_CON_GENERAL; break;
}
switch (bits & 0x06) {
case 0x00: diga->status[3] |= IEC958_AES3_CON_FS_44100; break;
case 0x02: diga->status[3] |= IEC958_AES3_CON_FS_48000; break;
case 0x04: diga->status[3] |= IEC958_AES3_CON_FS_32000; break;
}
} else {
diga->status[0] = IEC958_AES0_PROFESSIONAL;
switch (bits & 0x18) {
case 0x00: diga->status[0] |= IEC958_AES0_PRO_FS_32000; break;
case 0x10: diga->status[0] |= IEC958_AES0_PRO_FS_44100; break;
case 0x08: diga->status[0] |= IEC958_AES0_PRO_FS_48000; break;
case 0x18: diga->status[0] |= IEC958_AES0_PRO_FS_NOTID; break;
}
switch (bits & 0x60) {
case 0x20: diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_NONE; break;
case 0x40: diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015; break;
case 0x00: diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_CCITT; break;
case 0x60: diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_NOTID; break;
}
if (bits & 0x80)
diga->status[1] |= IEC958_AES1_PRO_MODE_STEREOPHONIC;
}
}
SND_CS8403_DECL unsigned char SND_CS8403_ENCODE(struct snd_aes_iec958 *diga)
{
unsigned char bits;
if (!(diga->status[0] & IEC958_AES0_PROFESSIONAL)) {
bits = 0x01; /* consumer mode */
if (diga->status[0] & IEC958_AES0_NONAUDIO)
bits &= ~0x02;
else
bits |= 0x02;
if (diga->status[0] & IEC958_AES0_CON_NOT_COPYRIGHT)
bits &= ~0x08;
else
bits |= 0x08;
switch (diga->status[0] & IEC958_AES0_CON_EMPHASIS) {
default:
case IEC958_AES0_CON_EMPHASIS_NONE: bits |= 0x10; break;
case IEC958_AES0_CON_EMPHASIS_5015: bits |= 0x00; break;
}
if (diga->status[1] & IEC958_AES1_CON_ORIGINAL)
bits &= ~0x80;
else
bits |= 0x80;
if ((diga->status[1] & IEC958_AES1_CON_CATEGORY) == IEC958_AES1_CON_GENERAL)
bits |= 0x60;
else {
switch(diga->status[1] & IEC958_AES1_CON_MAGNETIC_MASK) {
case IEC958_AES1_CON_MAGNETIC_ID:
bits |= 0x00; break;
case IEC958_AES1_CON_DIGDIGCONV_ID:
bits |= 0x20; break;
default:
case IEC958_AES1_CON_LASEROPT_ID:
bits |= 0x40; break;
}
}
switch (diga->status[3] & IEC958_AES3_CON_FS) {
default:
case IEC958_AES3_CON_FS_44100: bits |= 0x00; break;
case IEC958_AES3_CON_FS_48000: bits |= 0x02; break;
case IEC958_AES3_CON_FS_32000: bits |= 0x04; break;
}
} else {
bits = 0x00; /* professional mode */
if (diga->status[0] & IEC958_AES0_NONAUDIO)
bits &= ~0x02;
else
bits |= 0x02;
/* CHECKME: I'm not sure about the bit order in val here */
switch (diga->status[0] & IEC958_AES0_PRO_FS) {
case IEC958_AES0_PRO_FS_32000: bits |= 0x00; break;
case IEC958_AES0_PRO_FS_44100: bits |= 0x10; break; /* 44.1kHz */
case IEC958_AES0_PRO_FS_48000: bits |= 0x08; break; /* 48kHz */
default:
Annotation
- Detected declarations: `function Copyright`, `function SND_CS8403_ENCODE`, `function SND_CS8404_DECODE`, `function SND_CS8404_ENCODE`.
- Atlas domain: Driver Families / include/sound.
- 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.