drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c- Extension
.c- Size
- 7579 bytes
- Lines
- 303
- 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.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/component.hlinux/module.hlinux/of.hlinux/platform_device.hdrm/drm_modeset_helper_vtables.hdrm/drm_of.hdrm/drm_simple_kms_helper.hsun8i_dw_hdmi.hsun8i_tcon_top.h
Detected Declarations
function Copyrightfunction sun8i_dw_hdmi_mode_valid_a83tfunction sun8i_dw_hdmi_mode_valid_h6function sun8i_dw_hdmi_node_is_tcon_topfunction sun8i_dw_hdmi_find_possible_crtcsfunction for_each_child_of_nodefunction sun8i_dw_hdmi_bindfunction dw_hdmi_bindfunction sun8i_dw_hdmi_unbindfunction sun8i_dw_hdmi_probefunction sun8i_dw_hdmi_removefunction sun8i_dw_hdmi_initfunction sun8i_dw_hdmi_exitmodule init sun8i_dw_hdmi_init
Annotated Snippet
module_init(sun8i_dw_hdmi_init);
module_exit(sun8i_dw_hdmi_exit);
MODULE_AUTHOR("Jernej Skrabec <jernej.skrabec@siol.net>");
MODULE_DESCRIPTION("Allwinner DW HDMI bridge");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/component.h`, `linux/module.h`, `linux/of.h`, `linux/platform_device.h`, `drm/drm_modeset_helper_vtables.h`, `drm/drm_of.h`, `drm/drm_simple_kms_helper.h`, `sun8i_dw_hdmi.h`.
- Detected declarations: `function Copyright`, `function sun8i_dw_hdmi_mode_valid_a83t`, `function sun8i_dw_hdmi_mode_valid_h6`, `function sun8i_dw_hdmi_node_is_tcon_top`, `function sun8i_dw_hdmi_find_possible_crtcs`, `function for_each_child_of_node`, `function sun8i_dw_hdmi_bind`, `function dw_hdmi_bind`, `function sun8i_dw_hdmi_unbind`, `function sun8i_dw_hdmi_probe`.
- 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.