include/linux/mfd/tps6105x.h
Source file repositories/reference/linux-study-clean/include/linux/mfd/tps6105x.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/mfd/tps6105x.h- Extension
.h- Size
- 3110 bytes
- Lines
- 98
- 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/i2c.hlinux/regmap.hlinux/regulator/machine.h
Detected Declarations
struct tps6105x_platform_datastruct tps6105xenum tps6105x_mode
Annotated Snippet
struct tps6105x_platform_data {
enum tps6105x_mode mode;
struct regulator_init_data *regulator_data;
};
/**
* struct tps6105x - state holder for the TPS6105x drivers
* @pdata: associated platform data
* @client: corresponding I2C client
* @regulator: regulator device if used in voltage mode
* @regmap: used for i2c communcation on accessing registers
*/
struct tps6105x {
struct tps6105x_platform_data *pdata;
struct i2c_client *client;
struct regulator_dev *regulator;
struct regmap *regmap;
};
#endif
Annotation
- Immediate include surface: `linux/i2c.h`, `linux/regmap.h`, `linux/regulator/machine.h`.
- Detected declarations: `struct tps6105x_platform_data`, `struct tps6105x`, `enum tps6105x_mode`.
- 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.