drivers/gpib/eastwood/fluke_gpib.c
Source file repositories/reference/linux-study-clean/drivers/gpib/eastwood/fluke_gpib.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/gpib/eastwood/fluke_gpib.c- Extension
.c- Size
- 34849 bytes
- Lines
- 1180
- Domain
- Driver Families
- Bucket
- drivers/gpib
- 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
fluke_gpib.hgpibP.hlinux/dma-mapping.hlinux/ioport.hlinux/module.hlinux/mod_devicetable.hlinux/platform_device.hlinux/slab.h
Detected Declarations
function fluke_locking_read_bytefunction fluke_locking_write_bytefunction fluke_readfunction fluke_writefunction fluke_commandfunction fluke_take_controlfunction fluke_go_to_standbyfunction fluke_request_system_controlfunction fluke_interface_clearfunction fluke_remote_enablefunction fluke_enable_eosfunction fluke_disable_eosfunction fluke_update_statusfunction fluke_primary_addressfunction fluke_secondary_addressfunction fluke_parallel_pollfunction fluke_parallel_poll_configurefunction fluke_parallel_poll_responsefunction fluke_serial_poll_responsefunction fluke_serial_poll_statusfunction fluke_return_to_localfunction fluke_line_statusfunction fluke_t1_delayfunction lacs_or_read_readyfunction wait_for_readfunction chipfunction source_handshake_is_sids_or_sgnsfunction wait_for_data_out_readyfunction wait_for_sids_or_sgnsfunction fluke_dma_callbackfunction fluke_dma_writefunction test_bitfunction fluke_accel_writefunction fluke_get_dma_residuefunction fluke_dma_readfunction test_bitfunction fluke_accel_readfunction fluke_gpib_internal_interruptfunction fluke_gpib_interruptfunction fluke_allocate_privatefunction fluke_generic_detachfunction fluke_generic_attachfunction fluke_config_dmafunction fluke_initfunction dma_request_channelfunction fluke_attach_implfunction resource_sizefunction fluke_attach_holdoff_all
Annotated Snippet
module_init(fluke_init_module);
module_exit(fluke_exit_module);
Annotation
- Immediate include surface: `fluke_gpib.h`, `gpibP.h`, `linux/dma-mapping.h`, `linux/ioport.h`, `linux/module.h`, `linux/mod_devicetable.h`, `linux/platform_device.h`, `linux/slab.h`.
- Detected declarations: `function fluke_locking_read_byte`, `function fluke_locking_write_byte`, `function fluke_read`, `function fluke_write`, `function fluke_command`, `function fluke_take_control`, `function fluke_go_to_standby`, `function fluke_request_system_control`, `function fluke_interface_clear`, `function fluke_remote_enable`.
- Atlas domain: Driver Families / drivers/gpib.
- 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.