drivers/media/platform/samsung/exynos4-is/fimc-is.c
Source file repositories/reference/linux-study-clean/drivers/media/platform/samsung/exynos4-is/fimc-is.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/media/platform/samsung/exynos4-is/fimc-is.c- Extension
.c- Size
- 23721 bytes
- Lines
- 1000
- Domain
- Driver Families
- Bucket
- drivers/media
- 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.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/device.hlinux/debugfs.hlinux/delay.hlinux/errno.hlinux/firmware.hlinux/interrupt.hlinux/kernel.hlinux/module.hlinux/i2c.hlinux/of_irq.hlinux/of_address.hlinux/of_graph.hlinux/of_platform.hlinux/platform_device.hlinux/pm_runtime.hlinux/slab.hlinux/types.hlinux/videodev2.hmedia/videobuf2-dma-contig.hmedia-dev.hfimc-is.hfimc-is-command.hfimc-is-errno.hfimc-is-i2c.hfimc-is-param.hfimc-is-regs.h
Detected Declarations
function fimc_is_put_clocksfunction fimc_is_get_clocksfunction fimc_is_setup_clocksfunction fimc_is_enable_clocksfunction fimc_is_disable_clocksfunction fimc_is_parse_sensor_configfunction fimc_is_register_subdevsfunction for_each_compatible_node_scopedfunction fimc_is_unregister_subdevsfunction fimc_is_load_setfilefunction fimc_is_cpu_set_powerfunction fimc_is_wait_eventfunction fimc_is_start_firmwarefunction fimc_is_alloc_cpu_memoryfunction fimc_is_free_cpu_memoryfunction fimc_is_load_firmwarefunction fimc_is_request_firmwarefunction fimc_is_general_irq_handlerfunction fimc_is_irq_handlerfunction fimc_is_hw_open_sensorfunction fimc_is_hw_initializefunction fimc_is_showfunction fimc_is_debugfs_removefunction fimc_is_debugfs_createfunction fimc_is_probefunction fimc_is_runtime_resumefunction fimc_is_runtime_suspendfunction fimc_is_resumefunction fimc_is_suspendfunction fimc_is_removefunction fimc_is_module_initfunction fimc_is_module_exitmodule init fimc_is_module_init
Annotated Snippet
module_init(fimc_is_module_init);
module_exit(fimc_is_module_exit);
MODULE_AUTHOR("Younghwan Joo <yhwan.joo@samsung.com>");
MODULE_AUTHOR("Sylwester Nawrocki <s.nawrocki@samsung.com>");
MODULE_DESCRIPTION("Samsung EXYNOS4x12 FIMC-IS (Imaging Subsystem) driver");
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/device.h`, `linux/debugfs.h`, `linux/delay.h`, `linux/errno.h`, `linux/firmware.h`, `linux/interrupt.h`, `linux/kernel.h`, `linux/module.h`.
- Detected declarations: `function fimc_is_put_clocks`, `function fimc_is_get_clocks`, `function fimc_is_setup_clocks`, `function fimc_is_enable_clocks`, `function fimc_is_disable_clocks`, `function fimc_is_parse_sensor_config`, `function fimc_is_register_subdevs`, `function for_each_compatible_node_scoped`, `function fimc_is_unregister_subdevs`, `function fimc_is_load_setfile`.
- Atlas domain: Driver Families / drivers/media.
- 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.