drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c
Extension
.c
Size
12795 bytes
Lines
512
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.

Dependency Surface

Detected Declarations

Annotated Snippet

module_init(rpi_touchscreen_init);

static void __exit rpi_touchscreen_exit(void)
{
	i2c_del_driver(&rpi_touchscreen_driver);
	mipi_dsi_driver_unregister(&rpi_touchscreen_dsi_driver);
}
module_exit(rpi_touchscreen_exit);

MODULE_AUTHOR("Eric Anholt <eric@anholt.net>");
MODULE_DESCRIPTION("Raspberry Pi 7-inch touchscreen driver");
MODULE_LICENSE("GPL v2");

Annotation

Implementation Notes