drivers/input/serio/hil_mlc.c
Source file repositories/reference/linux-study-clean/drivers/input/serio/hil_mlc.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/input/serio/hil_mlc.c- Extension
.c- Size
- 25788 bytes
- Lines
- 1027
- Domain
- Driver Families
- Bucket
- drivers/input
- 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.
- 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/hil_mlc.hlinux/errno.hlinux/export.hlinux/kernel.hlinux/module.hlinux/init.hlinux/interrupt.hlinux/slab.hlinux/timer.hlinux/list.h
Detected Declarations
function hil_mlc_clear_di_mapfunction hil_mlc_clear_di_scratchfunction hil_mlc_copy_di_scratchfunction hil_mlc_match_di_scratchfunction hil_mlc_find_free_difunction hil_mlc_clean_serio_mapfunction hil_mlc_send_pollsfunction hilse_matchfunction hilse_init_lcvfunction hilse_inc_lcvfunction hilse_set_lcvfunction hilse_set_ddifunction hilse_dec_ddifunction hilse_inc_ddifunction hilse_take_iddfunction hilse_take_rscfunction hilse_take_exdfunction hilse_take_rnmfunction hilse_operatefunction hilse_setup_inputfunction hilse_donodefunction hil_mlcs_processfunction hil_mlcs_timerfunction hil_mlc_serio_writefunction hil_mlc_serio_openfunction hil_mlc_serio_closefunction hil_mlc_registerfunction hil_mlc_unregisterfunction hil_mlc_initfunction hil_mlc_exitmodule init hil_mlc_initexport hil_mlc_registerexport hil_mlc_unregister
Annotated Snippet
module_init(hil_mlc_init);
module_exit(hil_mlc_exit);
Annotation
- Immediate include surface: `linux/hil_mlc.h`, `linux/errno.h`, `linux/export.h`, `linux/kernel.h`, `linux/module.h`, `linux/init.h`, `linux/interrupt.h`, `linux/slab.h`.
- Detected declarations: `function hil_mlc_clear_di_map`, `function hil_mlc_clear_di_scratch`, `function hil_mlc_copy_di_scratch`, `function hil_mlc_match_di_scratch`, `function hil_mlc_find_free_di`, `function hil_mlc_clean_serio_map`, `function hil_mlc_send_polls`, `function hilse_match`, `function hilse_init_lcv`, `function hilse_inc_lcv`.
- Atlas domain: Driver Families / drivers/input.
- 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.