drivers/net/ethernet/mellanox/mlx5/core/dpll.c
Source file repositories/reference/linux-study-clean/drivers/net/ethernet/mellanox/mlx5/core/dpll.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/ethernet/mellanox/mlx5/core/dpll.c- Extension
.c- Size
- 16281 bytes
- Lines
- 559
- Domain
- Driver Families
- Bucket
- drivers/net
- 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/dpll.hlinux/mlx5/driver.h
Detected Declarations
struct mlx5_dpllstruct mlx5_dpll_synce_statusfunction mlx5_dpll_clock_id_getfunction mlx5_dpll_synce_status_getfunction mlx5_dpll_synce_status_setfunction mlx5_dpll_lock_status_getfunction mlx5_dpll_lock_status_error_getfunction mlx5_dpll_pin_state_getfunction mlx5_dpll_pin_ffo_getfunction mlx5_dpll_device_lock_status_getfunction mlx5_dpll_device_mode_getfunction mlx5_dpll_clock_quality_level_getfunction mlx5_dpll_pin_direction_getfunction mlx5_dpll_state_on_dpll_getfunction mlx5_dpll_state_on_dpll_setfunction mlx5_dpll_ffo_getfunction mlx5_dpll_periodic_work_queuefunction mlx5_dpll_periodic_workfunction mlx5_dpll_netdev_dpll_pin_setfunction mlx5_dpll_netdev_dpll_pin_clearfunction mlx5_dpll_mdev_notifier_eventfunction mlx5_dpll_mdev_netdev_trackfunction mlx5_dpll_mdev_netdev_untrackfunction mlx5_dpll_probefunction mlx5_dpll_removefunction mlx5_dpll_suspendfunction mlx5_dpll_resumefunction mlx5_dpll_initfunction mlx5_dpll_exitmodule init mlx5_dpll_init
Annotated Snippet
module_init(mlx5_dpll_init);
module_exit(mlx5_dpll_exit);
MODULE_AUTHOR("Jiri Pirko <jiri@nvidia.com>");
MODULE_DESCRIPTION("Mellanox 5th generation network adapters (ConnectX series) DPLL driver");
MODULE_LICENSE("Dual BSD/GPL");
Annotation
- Immediate include surface: `linux/dpll.h`, `linux/mlx5/driver.h`.
- Detected declarations: `struct mlx5_dpll`, `struct mlx5_dpll_synce_status`, `function mlx5_dpll_clock_id_get`, `function mlx5_dpll_synce_status_get`, `function mlx5_dpll_synce_status_set`, `function mlx5_dpll_lock_status_get`, `function mlx5_dpll_lock_status_error_get`, `function mlx5_dpll_pin_state_get`, `function mlx5_dpll_pin_ffo_get`, `function mlx5_dpll_device_lock_status_get`.
- Atlas domain: Driver Families / drivers/net.
- 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.