drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
Source file repositories/reference/linux-study-clean/drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c- Extension
.c- Size
- 11109 bytes
- Lines
- 412
- 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.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Touches IRQ or DMA behavior; this matters for the representative real-device path.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/i2c.hlinux/module.hlinux/of.hdrm/drm_atomic.hdrm/drm_atomic_helper.hdrm/drm_bridge.hdrm/drm_edid.hdrm/drm_print.hdrm/drm_probe_helper.h
Detected Declarations
struct ge_b850v3_lvdsfunction stdp2690_read_blockfunction ge_b850v3_lvds_get_modesfunction ge_b850v3_lvds_bridge_detectfunction ge_b850v3_lvds_detectfunction ge_b850v3_lvds_create_connectorfunction ge_b850v3_lvds_irq_handlerfunction ge_b850v3_lvds_attachfunction ge_b850v3_lvds_initfunction ge_b850v3_lvds_removefunction ge_b850v3_registerfunction stdp4028_ge_b850v3_fw_probefunction stdp4028_ge_b850v3_fw_removefunction stdp2690_ge_b850v3_fw_probefunction stdp2690_ge_b850v3_fw_removefunction stdpxxxx_ge_b850v3_initfunction stdpxxxx_ge_b850v3_exitmodule init stdpxxxx_ge_b850v3_init
Annotated Snippet
module_init(stdpxxxx_ge_b850v3_init);
static void __exit stdpxxxx_ge_b850v3_exit(void)
{
i2c_del_driver(&stdp2690_ge_b850v3_fw_driver);
i2c_del_driver(&stdp4028_ge_b850v3_fw_driver);
}
module_exit(stdpxxxx_ge_b850v3_exit);
MODULE_AUTHOR("Peter Senna Tschudin <peter.senna@collabora.com>");
MODULE_AUTHOR("Martyn Welch <martyn.welch@collabora.co.uk>");
MODULE_DESCRIPTION("GE LVDS to DP++ display bridge)");
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/i2c.h`, `linux/module.h`, `linux/of.h`, `drm/drm_atomic.h`, `drm/drm_atomic_helper.h`, `drm/drm_bridge.h`, `drm/drm_edid.h`, `drm/drm_print.h`.
- Detected declarations: `struct ge_b850v3_lvds`, `function stdp2690_read_block`, `function ge_b850v3_lvds_get_modes`, `function ge_b850v3_lvds_bridge_detect`, `function ge_b850v3_lvds_detect`, `function ge_b850v3_lvds_create_connector`, `function ge_b850v3_lvds_irq_handler`, `function ge_b850v3_lvds_attach`, `function ge_b850v3_lvds_init`, `function ge_b850v3_lvds_remove`.
- Atlas domain: Driver Families / drivers/gpu.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
- IRQ or DMA behavior appears here, which is relevant to the selected PCIe/NVMe device path.
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.