drivers/gpu/drm/drm_crtc_internal.h
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/drm_crtc_internal.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/drm_crtc_internal.h- Extension
.h- Size
- 12365 bytes
- Lines
- 335
- 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.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/err.hlinux/types.h
Detected Declarations
struct cea_sadstruct drm_atomic_commitstruct drm_bridgestruct drm_connectorstruct drm_crtcstruct drm_devicestruct drm_display_modestruct drm_edidstruct drm_filestruct drm_framebufferstruct drm_mode_create_dumbstruct drm_mode_fb_cmd2struct drm_mode_fb_cmdstruct drm_mode_objectstruct drm_mode_setstruct drm_planestruct drm_plane_statestruct drm_printerstruct drm_propertystruct edidstruct fwnode_handlestruct krefstruct seq_filestruct work_structstruct drm_minorenum drm_color_encodingenum drm_color_rangeenum drm_connector_forceenum drm_mode_statusfunction drm_edid_load_firmwarefunction drm_panic_is_enabledfunction drm_panic_register
Annotated Snippet
static inline bool drm_panic_is_enabled(struct drm_device *dev) { return false; }
static inline void drm_panic_register(struct drm_device *dev) {}
static inline void drm_panic_unregister(struct drm_device *dev) {}
static inline void drm_panic_init(void) {}
static inline void drm_panic_exit(void) {}
#endif
#endif /* __DRM_CRTC_INTERNAL_H__ */
Annotation
- Immediate include surface: `linux/err.h`, `linux/types.h`.
- Detected declarations: `struct cea_sad`, `struct drm_atomic_commit`, `struct drm_bridge`, `struct drm_connector`, `struct drm_crtc`, `struct drm_device`, `struct drm_display_mode`, `struct drm_edid`, `struct drm_file`, `struct drm_framebuffer`.
- Atlas domain: Driver Families / drivers/gpu.
- Implementation status: source implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.