drivers/gpu/drm/panel/panel-samsung-atna33xc20.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/panel/panel-samsung-atna33xc20.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/panel/panel-samsung-atna33xc20.c- Extension
.c- Size
- 9393 bytes
- Lines
- 371
- Domain
- Driver Families
- Bucket
- drivers/gpu
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/backlight.hlinux/delay.hlinux/gpio/consumer.hlinux/iopoll.hlinux/module.hlinux/pm_runtime.hlinux/regulator/consumer.hdrm/display/drm_dp_aux_bus.hdrm/display/drm_dp_helper.hdrm/drm_edid.hdrm/drm_panel.h
Detected Declarations
struct atana33xc20_panelfunction atana33xc20_waitfunction atana33xc20_suspendfunction atana33xc20_resumefunction atana33xc20_disablefunction atana33xc20_enablefunction atana33xc20_unpreparefunction atana33xc20_preparefunction atana33xc20_get_modesfunction atana33xc20_runtime_disablefunction atana33xc20_dont_use_autosuspendfunction atana33xc20_probefunction atana33xc20_removefunction atana33xc20_initfunction atana33xc20_exitmodule init atana33xc20_init
Annotated Snippet
module_init(atana33xc20_init);
static void __exit atana33xc20_exit(void)
{
dp_aux_dp_driver_unregister(&atana33xc20_driver);
}
module_exit(atana33xc20_exit);
MODULE_DESCRIPTION("Samsung ATANA33XC20 Panel Driver");
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/backlight.h`, `linux/delay.h`, `linux/gpio/consumer.h`, `linux/iopoll.h`, `linux/module.h`, `linux/pm_runtime.h`, `linux/regulator/consumer.h`, `drm/display/drm_dp_aux_bus.h`.
- Detected declarations: `struct atana33xc20_panel`, `function atana33xc20_wait`, `function atana33xc20_suspend`, `function atana33xc20_resume`, `function atana33xc20_disable`, `function atana33xc20_enable`, `function atana33xc20_unprepare`, `function atana33xc20_prepare`, `function atana33xc20_get_modes`, `function atana33xc20_runtime_disable`.
- Atlas domain: Driver Families / drivers/gpu.
- Implementation status: integration 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.