drivers/scsi/arm/eesox.c
Source file repositories/reference/linux-study-clean/drivers/scsi/arm/eesox.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/scsi/arm/eesox.c- Extension
.c- Size
- 16152 bytes
- Lines
- 647
- Domain
- Driver Families
- Bucket
- drivers/scsi
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/module.hlinux/blkdev.hlinux/kernel.hlinux/string.hlinux/ioport.hlinux/proc_fs.hlinux/delay.hlinux/interrupt.hlinux/init.hlinux/dma-mapping.hlinux/pgtable.hasm/io.hasm/dma.hasm/ecard.hscsi/scsi.hscsi/scsi_cmnd.hscsi/scsi_device.hscsi/scsi_eh.hscsi/scsi_host.hscsi/scsi_tcq.hfas216.harm_scsi.hscsi/scsicam.h
Detected Declarations
struct eesoxscsi_infofunction eesoxscsi_irqenablefunction eesoxscsi_irqdisablefunction eesoxscsi_terminator_ctlfunction eesoxscsi_intrfunction eesoxscsi_dma_setupfunction eesoxscsi_buffer_infunction eesoxscsi_buffer_outfunction eesoxscsi_dma_pseudofunction eesoxscsi_dma_stopfunction eesoxscsi_set_proc_infofunction eesoxscsi_show_infofunction eesoxscsi_show_termfunction eesoxscsi_store_termfunction eesoxscsi_probefunction eesoxscsi_removefunction eesox_initfunction eesox_exitmodule init eesox_init
Annotated Snippet
module_init(eesox_init);
module_exit(eesox_exit);
MODULE_AUTHOR("Russell King");
MODULE_DESCRIPTION("EESOX 'Fast' SCSI driver for Acorn machines");
module_param_array(term, int, NULL, 0);
MODULE_PARM_DESC(term, "SCSI bus termination");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/module.h`, `linux/blkdev.h`, `linux/kernel.h`, `linux/string.h`, `linux/ioport.h`, `linux/proc_fs.h`, `linux/delay.h`, `linux/interrupt.h`.
- Detected declarations: `struct eesoxscsi_info`, `function eesoxscsi_irqenable`, `function eesoxscsi_irqdisable`, `function eesoxscsi_terminator_ctl`, `function eesoxscsi_intr`, `function eesoxscsi_dma_setup`, `function eesoxscsi_buffer_in`, `function eesoxscsi_buffer_out`, `function eesoxscsi_dma_pseudo`, `function eesoxscsi_dma_stop`.
- Atlas domain: Driver Families / drivers/scsi.
- 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.