include/linux/mfd/madera/core.h
Source file repositories/reference/linux-study-clean/include/linux/mfd/madera/core.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/mfd/madera/core.h- Extension
.h- Size
- 6555 bytes
- Lines
- 211
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/clk.hlinux/gpio/consumer.hlinux/interrupt.hlinux/mfd/madera/pdata.hlinux/mutex.hlinux/notifier.hlinux/regmap.hlinux/regulator/consumer.h
Detected Declarations
struct snd_soc_dapm_contextstruct maderaenum madera_type
Annotated Snippet
struct madera {
struct regmap *regmap;
struct regmap *regmap_32bit;
struct device *dev;
enum madera_type type;
unsigned int rev;
const char *type_name;
int num_core_supplies;
struct regulator_bulk_data core_supplies[MADERA_MAX_CORE_SUPPLIES];
struct regulator *dcvdd;
bool internal_dcvdd;
bool reset_errata;
struct madera_pdata pdata;
struct device *irq_dev;
struct regmap_irq_chip_data *irq_data;
int irq;
struct clk_bulk_data mclk[MADERA_NUM_MCLK];
unsigned int num_micbias;
unsigned int num_childbias[MADERA_MAX_MICBIAS];
struct snd_soc_dapm_context *dapm;
struct mutex dapm_ptr_lock;
unsigned int hp_ena;
bool out_clamp[MADERA_MAX_HP_OUTPUT];
bool out_shorted[MADERA_MAX_HP_OUTPUT];
struct blocking_notifier_head notifier;
};
#endif
Annotation
- Immediate include surface: `linux/clk.h`, `linux/gpio/consumer.h`, `linux/interrupt.h`, `linux/mfd/madera/pdata.h`, `linux/mutex.h`, `linux/notifier.h`, `linux/regmap.h`, `linux/regulator/consumer.h`.
- Detected declarations: `struct snd_soc_dapm_context`, `struct madera`, `enum madera_type`.
- Atlas domain: Core OS / Core Kernel Interface.
- 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.