drivers/gpu/drm/i915/i915_module.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/i915/i915_module.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/i915/i915_module.c- Extension
.c- Size
- 3104 bytes
- Lines
- 130
- 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.
Dependency Surface
drm/drm_drv.hdrm/drm_print.hgem/i915_gem_context.hgem/i915_gem_object.hi915_active.hi915_driver.hi915_params.hi915_pci.hi915_perf.hi915_request.hi915_scheduler.hi915_selftest.hi915_vma.hi915_vma_resource.h
Detected Declarations
function i915_check_nomodesetfunction i915_initfunction i915_exitmodule init i915_init
Annotated Snippet
module_init(i915_init);
module_exit(i915_exit);
MODULE_AUTHOR("Tungsten Graphics, Inc.");
MODULE_AUTHOR("Intel Corporation");
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL and additional rights");
Annotation
- Immediate include surface: `drm/drm_drv.h`, `drm/drm_print.h`, `gem/i915_gem_context.h`, `gem/i915_gem_object.h`, `i915_active.h`, `i915_driver.h`, `i915_params.h`, `i915_pci.h`.
- Detected declarations: `function i915_check_nomodeset`, `function i915_init`, `function i915_exit`, `module init i915_init`.
- 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.