drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.h
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.h- Extension
.h- Size
- 1092 bytes
- Lines
- 47
- 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
drm/drm_crtc.hdrm/drm_connector.hdrm/drm_encoder.hlinux/wait.hvideo/videomode.h
Detected Declarations
struct drm_pending_vblank_eventstruct shmob_drm_devicestruct shmob_drm_format_infostruct shmob_drm_crtcstruct shmob_drm_connector
Annotated Snippet
struct shmob_drm_crtc {
struct drm_crtc base;
struct drm_pending_vblank_event *event;
wait_queue_head_t flip_wait;
};
/* Legacy connector */
struct shmob_drm_connector {
struct drm_connector base;
struct drm_encoder *encoder;
const struct videomode *mode;
};
int shmob_drm_crtc_create(struct shmob_drm_device *sdev);
void shmob_drm_crtc_finish_page_flip(struct shmob_drm_crtc *scrtc);
int shmob_drm_encoder_create(struct shmob_drm_device *sdev);
int shmob_drm_connector_create(struct shmob_drm_device *sdev,
struct drm_encoder *encoder);
#endif /* __SHMOB_DRM_CRTC_H__ */
Annotation
- Immediate include surface: `drm/drm_crtc.h`, `drm/drm_connector.h`, `drm/drm_encoder.h`, `linux/wait.h`, `video/videomode.h`.
- Detected declarations: `struct drm_pending_vblank_event`, `struct shmob_drm_device`, `struct shmob_drm_format_info`, `struct shmob_drm_crtc`, `struct shmob_drm_connector`.
- 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.