drivers/hwmon/nct6683.c
Source file repositories/reference/linux-study-clean/drivers/hwmon/nct6683.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/hwmon/nct6683.c- Extension
.c- Size
- 38685 bytes
- Lines
- 1535
- Domain
- Driver Families
- Bucket
- drivers/hwmon
- 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/acpi.hlinux/delay.hlinux/err.hlinux/init.hlinux/io.hlinux/jiffies.hlinux/hwmon.hlinux/hwmon-sysfs.hlinux/module.hlinux/mutex.hlinux/platform_device.hlinux/slab.h
Detected Declarations
struct nct6683_datastruct nct6683_sio_datastruct sensor_device_templatestruct sensor_device_attr_ustruct sensor_template_groupenum kindsfunction superio_outbfunction superio_inbfunction superio_selectfunction superio_enterfunction superio_exitfunction nct6683_create_attr_groupfunction in_from_regfunction nct6683_readfunction nct6683_read16function nct6683_writefunction get_in_regfunction get_temp_regfunction nct6683_update_pwmfunction show_in_labelfunction show_in_regfunction nct6683_in_is_visiblefunction show_fanfunction show_fan_minfunction show_fan_pulsesfunction nct6683_fan_is_visiblefunction show_temp_labelfunction show_temp8function show_temp_hystfunction show_temp16function unspecifiedfunction show_temp_typefunction nct6683_temp_is_visiblefunction show_pwmfunction store_pwmfunction nct6683_pwm_is_visiblefunction beep_enable_showfunction beep_enable_storefunction intrusion0_alarm_showfunction intrusion0_alarm_storefunction nct6683_init_devicefunction nct6683_setup_fansfunction NCT6683_REG_MON_CFGfunction nct6683_probefunction nct6683_suspendfunction nct6683_resumefunction nct6683_findfunction sensors_nct6683_init
Annotated Snippet
module_init(sensors_nct6683_init);
module_exit(sensors_nct6683_exit);
Annotation
- Immediate include surface: `linux/acpi.h`, `linux/delay.h`, `linux/err.h`, `linux/init.h`, `linux/io.h`, `linux/jiffies.h`, `linux/hwmon.h`, `linux/hwmon-sysfs.h`.
- Detected declarations: `struct nct6683_data`, `struct nct6683_sio_data`, `struct sensor_device_template`, `struct sensor_device_attr_u`, `struct sensor_template_group`, `enum kinds`, `function superio_outb`, `function superio_inb`, `function superio_select`, `function superio_enter`.
- Atlas domain: Driver Families / drivers/hwmon.
- 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.