drivers/gpu/drm/amd/display/modules/color/luts_1d.h
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/amd/display/modules/color/luts_1d.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/amd/display/modules/color/luts_1d.h- Extension
.h- Size
- 1654 bytes
- Lines
- 52
- Domain
- Driver Families
- Bucket
- drivers/gpu
- 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
hw_shared.h
Detected Declarations
struct point_configstruct lut_pointstruct pwl_1dlut_parameter
Annotated Snippet
struct point_config {
uint32_t custom_float_x;
uint32_t custom_float_y;
uint32_t custom_float_slope;
};
struct lut_point {
uint32_t red;
uint32_t green;
uint32_t blue;
uint32_t delta_red;
uint32_t delta_green;
uint32_t delta_blue;
};
struct pwl_1dlut_parameter {
struct gamma_curve arr_curve_points[34];
struct point_config arr_points[2];
struct lut_point rgb_resulted[256];
uint32_t hw_points_num;
};
#endif // LUTS_1D_H
Annotation
- Immediate include surface: `hw_shared.h`.
- Detected declarations: `struct point_config`, `struct lut_point`, `struct pwl_1dlut_parameter`.
- Atlas domain: Driver Families / drivers/gpu.
- 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.