include/linux/platform_data/lp855x.h
Source file repositories/reference/linux-study-clean/include/linux/platform_data/lp855x.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/platform_data/lp855x.h- Extension
.h- Size
- 4055 bytes
- Lines
- 146
- 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
- No C-style include directives detected by the generator.
Detected Declarations
struct lp855x_rom_datastruct lp855x_platform_dataenum lp855x_chip_idenum lp8550_brighntess_sourceenum lp8551_brighntess_sourceenum lp8552_brighntess_sourceenum lp8553_brighntess_sourceenum lp8555_brightness_sourceenum lp8556_brightness_sourceenum lp8557_brightness_source
Annotated Snippet
struct lp855x_rom_data {
u8 addr;
u8 val;
};
/**
* struct lp855x_platform_data - lp855 platform-specific data
* @name : Backlight driver name. If it is not defined, default name is set.
* @device_control : value of DEVICE CONTROL register
* @initial_brightness : initial value of backlight brightness
* @period_ns : platform specific pwm period value. unit is nano.
* Only valid when mode is PWM_BASED.
* @size_program : total size of lp855x_rom_data
* @rom_data : list of new eeprom/eprom registers
*/
struct lp855x_platform_data {
const char *name;
u8 device_control;
u8 initial_brightness;
unsigned int period_ns;
int size_program;
struct lp855x_rom_data *rom_data;
};
#endif
Annotation
- Detected declarations: `struct lp855x_rom_data`, `struct lp855x_platform_data`, `enum lp855x_chip_id`, `enum lp8550_brighntess_source`, `enum lp8551_brighntess_source`, `enum lp8552_brighntess_source`, `enum lp8553_brighntess_source`, `enum lp8555_brightness_source`, `enum lp8556_brightness_source`, `enum lp8557_brightness_source`.
- 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.