drivers/i3c/master/mipi-i3c-hci/mipi-i3c-hci-pci.c
Source file repositories/reference/linux-study-clean/drivers/i3c/master/mipi-i3c-hci/mipi-i3c-hci-pci.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/i3c/master/mipi-i3c-hci/mipi-i3c-hci-pci.c- Extension
.c- Size
- 12457 bytes
- Lines
- 497
- Domain
- Driver Families
- Bucket
- drivers/i3c
- Inferred role
- Driver Families: operation-table or driver-model contract
- Status
- pattern 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.
- Defines an operation table; this is where Linux turns generic core objects into subsystem-specific behavior.
- 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/bitfield.hlinux/debugfs.hlinux/i3c/master.hlinux/idr.hlinux/iopoll.hlinux/kernel.hlinux/mfd/core.hlinux/module.hlinux/pci.hlinux/platform_data/mipi-i3c-hci.hlinux/platform_device.hlinux/pm_qos.hlinux/pm_runtime.hhci.h
Detected Declarations
struct mipi_i3c_hci_pci_instancestruct mipi_i3c_hci_pcistruct mipi_i3c_hci_pci_infostruct intel_hoststruct mipi_i3c_hci_pci_pm_datastruct mipi_i3c_hci_pci_cell_datafunction intel_cache_ltrfunction intel_ltr_setfunction intel_ltr_exposefunction intel_ltr_hidefunction intel_add_debugfsfunction intel_remove_debugfsfunction intel_resetfunction intel_i3c_initfunction intel_i3c_exitfunction mipi_i3c_hci_pci_find_instancefunction __mipi_i3c_hci_pci_is_operationalfunction mipi_i3c_hci_pci_is_operationalfunction mipi_i3c_hci_pci_is_mfdfunction mipi_i3c_hci_pci_suspend_instancefunction mipi_i3c_hci_pci_resume_instancefunction mipi_i3c_hci_pci_suspendfunction mipi_i3c_hci_pci_resumefunction mipi_i3c_hci_pci_rpm_allowfunction mipi_i3c_hci_pci_rpm_forbidfunction mipi_i3c_hci_pci_setup_cellfunction mipi_i3c_hci_pci_add_instancesfunction mipi_i3c_hci_pci_probefunction mipi_i3c_hci_pci_remove
Annotated Snippet
static struct pci_driver mipi_i3c_hci_pci_driver = {
.name = "mipi_i3c_hci_pci",
.id_table = mipi_i3c_hci_pci_devices,
.probe = mipi_i3c_hci_pci_probe,
.remove = mipi_i3c_hci_pci_remove,
.driver = {
.pm = pm_ptr(&mipi_i3c_hci_pci_pm_ops)
},
};
module_pci_driver(mipi_i3c_hci_pci_driver);
MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@intel.com>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("MIPI I3C HCI driver on PCI bus");
Annotation
- Immediate include surface: `linux/acpi.h`, `linux/bitfield.h`, `linux/debugfs.h`, `linux/i3c/master.h`, `linux/idr.h`, `linux/iopoll.h`, `linux/kernel.h`, `linux/mfd/core.h`.
- Detected declarations: `struct mipi_i3c_hci_pci_instance`, `struct mipi_i3c_hci_pci`, `struct mipi_i3c_hci_pci_info`, `struct intel_host`, `struct mipi_i3c_hci_pci_pm_data`, `struct mipi_i3c_hci_pci_cell_data`, `function intel_cache_ltr`, `function intel_ltr_set`, `function intel_ltr_expose`, `function intel_ltr_hide`.
- Atlas domain: Driver Families / drivers/i3c.
- Implementation status: pattern 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.