sound/soc/ti/omap-mcbsp.h
Source file repositories/reference/linux-study-clean/sound/soc/ti/omap-mcbsp.h
File Facts
- System
- Linux kernel
- Corpus path
sound/soc/ti/omap-mcbsp.h- Extension
.h- Size
- 855 bytes
- Lines
- 33
- Domain
- Driver Families
- Bucket
- sound/soc
- 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
sound/dmaengine_pcm.h
Detected Declarations
enum omap_mcbsp_clksrg_clkenum omap_mcbsp_div
Annotated Snippet
#ifndef __OMAP_MCBSP_H__
#define __OMAP_MCBSP_H__
#include <sound/dmaengine_pcm.h>
/* Source clocks for McBSP sample rate generator */
enum omap_mcbsp_clksrg_clk {
OMAP_MCBSP_SYSCLK_CLKS_FCLK, /* Internal FCLK */
OMAP_MCBSP_SYSCLK_CLKS_EXT, /* External CLKS pin */
OMAP_MCBSP_SYSCLK_CLK, /* Internal ICLK */
OMAP_MCBSP_SYSCLK_CLKX_EXT, /* External CLKX pin */
OMAP_MCBSP_SYSCLK_CLKR_EXT, /* External CLKR pin */
};
/* McBSP dividers */
enum omap_mcbsp_div {
OMAP_MCBSP_CLKGDV, /* Sample rate generator divider */
};
int omap_mcbsp_st_add_controls(struct snd_soc_pcm_runtime *rtd, int port_id);
#endif /* __OMAP_MCBSP_H__ */
Annotation
- Immediate include surface: `sound/dmaengine_pcm.h`.
- Detected declarations: `enum omap_mcbsp_clksrg_clk`, `enum omap_mcbsp_div`.
- Atlas domain: Driver Families / sound/soc.
- 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.