drivers/crypto/intel/qat/qat_420xx/adf_drv.c

Source file repositories/reference/linux-study-clean/drivers/crypto/intel/qat/qat_420xx/adf_drv.c

File Facts

System
Linux kernel
Corpus path
drivers/crypto/intel/qat/qat_420xx/adf_drv.c
Extension
.c
Size
5463 bytes
Lines
213
Domain
Driver Families
Bucket
drivers/crypto
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.

Dependency Surface

Detected Declarations

Annotated Snippet

static struct pci_driver adf_driver = {
	.id_table = adf_pci_tbl,
	.name = ADF_420XX_DEVICE_NAME,
	.probe = adf_probe,
	.remove = adf_remove,
	.shutdown = adf_shutdown,
	.sriov_configure = adf_sriov_configure,
	.err_handler = &adf_err_handler,
};

module_pci_driver(adf_driver);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Intel");
MODULE_FIRMWARE(ADF_420XX_FW);
MODULE_FIRMWARE(ADF_420XX_MMP);
MODULE_DESCRIPTION("Intel(R) QuickAssist Technology");
MODULE_SOFTDEP("pre: crypto-intel_qat");
MODULE_IMPORT_NS("CRYPTO_QAT");

Annotation

Implementation Notes