drivers/usb/host/ohci-nxp.c
Source file repositories/reference/linux-study-clean/drivers/usb/host/ohci-nxp.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/usb/host/ohci-nxp.c- Extension
.c- Size
- 7406 bytes
- Lines
- 280
- 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/dma-mapping.hlinux/io.hlinux/i2c.hlinux/module.hlinux/of.hlinux/platform_device.hlinux/usb/isp1301.hlinux/usb.hlinux/usb/hcd.hohci.h
Detected Declarations
function isp1301_configure_lpc32xxfunction isp1301_configurefunction isp1301_vbus_onfunction isp1301_vbus_offfunction ohci_nxp_start_hcfunction ohci_nxp_stop_hcfunction ohci_hcd_nxp_probefunction ohci_hcd_nxp_removefunction ohci_nxp_initfunction ohci_nxp_cleanupmodule init ohci_nxp_init
Annotated Snippet
module_init(ohci_nxp_init);
static void __exit ohci_nxp_cleanup(void)
{
platform_driver_unregister(&ohci_hcd_nxp_driver);
}
module_exit(ohci_nxp_cleanup);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL v2");
Annotation
- Immediate include surface: `linux/clk.h`, `linux/dma-mapping.h`, `linux/io.h`, `linux/i2c.h`, `linux/module.h`, `linux/of.h`, `linux/platform_device.h`, `linux/usb/isp1301.h`.
- Detected declarations: `function isp1301_configure_lpc32xx`, `function isp1301_configure`, `function isp1301_vbus_on`, `function isp1301_vbus_off`, `function ohci_nxp_start_hc`, `function ohci_nxp_stop_hc`, `function ohci_hcd_nxp_probe`, `function ohci_hcd_nxp_remove`, `function ohci_nxp_init`, `function ohci_nxp_cleanup`.
- 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.