drivers/media/common/siano/smsdvb-main.c
Source file repositories/reference/linux-study-clean/drivers/media/common/siano/smsdvb-main.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/media/common/siano/smsdvb-main.c- Extension
.c- Size
- 33905 bytes
- Lines
- 1274
- 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.
- 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
smscoreapi.hlinux/module.hlinux/slab.hlinux/init.hasm/div64.hmedia/dmxdev.hmedia/dvbdev.hmedia/dvb_demux.hmedia/dvb_frontend.hsms-cards.hsmsdvb.h
Detected Declarations
function sms_board_dvb3_eventfunction smsdvb_stats_not_readyfunction sms_to_modefunction sms_to_isdbt_modefunction sms_to_isdbt_guard_intervalfunction sms_to_statusfunction sms_to_bwfunction smsdvb_update_tx_paramsfunction smsdvb_update_per_slicesfunction smsdvb_update_dvb_statsfunction smsdvb_update_isdbt_statsfunction smsdvb_update_isdbt_stats_exfunction smsdvb_onresponsefunction smsdvb_media_device_unregisterfunction smsdvb_unregister_clientfunction smsdvb_onremovefunction smsdvb_start_feedfunction smsdvb_stop_feedfunction smsdvb_sendrequest_and_waitfunction smsdvb_send_statistics_requestfunction led_feedbackfunction smsdvb_read_statusfunction smsdvb_read_berfunction smsdvb_read_signal_strengthfunction smsdvb_read_snrfunction smsdvb_read_ucblocksfunction smsdvb_get_tune_settingsfunction smsdvb_dvbt_set_frontendfunction smsdvb_isdbt_set_frontendfunction smsdvb_set_frontendfunction smsdvb_initfunction smsdvb_sleepfunction smsdvb_releasefunction smsdvb_hotplugfunction smsdvb_module_initfunction smsdvb_module_exitmodule init smsdvb_module_init
Annotated Snippet
module_init(smsdvb_module_init);
module_exit(smsdvb_module_exit);
MODULE_DESCRIPTION("SMS DVB subsystem adaptation module");
MODULE_AUTHOR("Siano Mobile Silicon, Inc. <uris@siano-ms.com>");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `smscoreapi.h`, `linux/module.h`, `linux/slab.h`, `linux/init.h`, `asm/div64.h`, `media/dmxdev.h`, `media/dvbdev.h`, `media/dvb_demux.h`.
- Detected declarations: `function sms_board_dvb3_event`, `function smsdvb_stats_not_ready`, `function sms_to_mode`, `function sms_to_isdbt_mode`, `function sms_to_isdbt_guard_interval`, `function sms_to_status`, `function sms_to_bw`, `function smsdvb_update_tx_params`, `function smsdvb_update_per_slices`, `function smsdvb_update_dvb_stats`.
- 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.
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.