drivers/usb/host/ohci-s3c2410.c
Source file repositories/reference/linux-study-clean/drivers/usb/host/ohci-s3c2410.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/usb/host/ohci-s3c2410.c- Extension
.c- Size
- 11347 bytes
- Lines
- 493
- Domain
- Driver Families
- Bucket
- drivers/usb
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/clk.hlinux/io.hlinux/kernel.hlinux/module.hlinux/platform_device.hlinux/platform_data/usb-ohci-s3c2410.hlinux/usb.hlinux/usb/hcd.hohci.h
Detected Declarations
function s3c2410_start_hcfunction s3c2410_stop_hcfunction ohci_s3c2410_hub_status_datafunction s3c2410_usb_set_powerfunction ohci_s3c2410_hub_controlfunction s3c2410_hcd_ocfunction ohci_hcd_3c2410_probefunction startfunction ohci_hcd_s3c2410_drv_suspendfunction ohci_hcd_s3c2410_drv_resumefunction ohci_s3c2410_initfunction ohci_s3c2410_cleanupmodule init ohci_s3c2410_init
Annotated Snippet
module_init(ohci_s3c2410_init);
static void __exit ohci_s3c2410_cleanup(void)
{
platform_driver_unregister(&ohci_hcd_s3c2410_driver);
}
module_exit(ohci_s3c2410_cleanup);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:s3c2410-ohci");
Annotation
- Immediate include surface: `linux/clk.h`, `linux/io.h`, `linux/kernel.h`, `linux/module.h`, `linux/platform_device.h`, `linux/platform_data/usb-ohci-s3c2410.h`, `linux/usb.h`, `linux/usb/hcd.h`.
- Detected declarations: `function s3c2410_start_hc`, `function s3c2410_stop_hc`, `function ohci_s3c2410_hub_status_data`, `function s3c2410_usb_set_power`, `function ohci_s3c2410_hub_control`, `function s3c2410_hcd_oc`, `function ohci_hcd_3c2410_probe`, `function start`, `function ohci_hcd_s3c2410_drv_suspend`, `function ohci_hcd_s3c2410_drv_resume`.
- Atlas domain: Driver Families / drivers/usb.
- 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.