drivers/nvmem/qoriq-efuse.c
Source file repositories/reference/linux-study-clean/drivers/nvmem/qoriq-efuse.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/nvmem/qoriq-efuse.c- Extension
.c- Size
- 1929 bytes
- Lines
- 79
- Domain
- Driver Families
- Bucket
- drivers/nvmem
- Inferred role
- Driver Families: implementation source
- Status
- source 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.
- 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/device.hlinux/io.hlinux/module.hlinux/mod_devicetable.hlinux/nvmem-provider.hlinux/platform_device.h
Detected Declarations
struct qoriq_efuse_privfunction qoriq_efuse_readfunction qoriq_efuse_probe
Annotated Snippet
struct qoriq_efuse_priv {
void __iomem *base;
};
static int qoriq_efuse_read(void *context, unsigned int offset, void *val,
size_t bytes)
{
struct qoriq_efuse_priv *priv = context;
/* .stride = 4 so offset is guaranteed to be aligned */
__ioread32_copy(val, priv->base + offset, bytes / 4);
/* Ignore trailing bytes (there shouldn't be any) */
return 0;
}
static int qoriq_efuse_probe(struct platform_device *pdev)
{
struct nvmem_config config = {
.dev = &pdev->dev,
.read_only = true,
.reg_read = qoriq_efuse_read,
.stride = sizeof(u32),
.word_size = sizeof(u32),
.name = "qoriq_efuse_read",
.id = NVMEM_DEVID_AUTO,
.root_only = true,
};
struct qoriq_efuse_priv *priv;
struct nvmem_device *nvmem;
struct resource *res;
priv = devm_kzalloc(config.dev, sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;
priv->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
if (IS_ERR(priv->base))
return PTR_ERR(priv->base);
config.size = resource_size(res);
config.priv = priv;
nvmem = devm_nvmem_register(config.dev, &config);
return PTR_ERR_OR_ZERO(nvmem);
}
static const struct of_device_id qoriq_efuse_of_match[] = {
{ .compatible = "fsl,t1023-sfp", },
{/* sentinel */},
};
MODULE_DEVICE_TABLE(of, qoriq_efuse_of_match);
static struct platform_driver qoriq_efuse_driver = {
.probe = qoriq_efuse_probe,
.driver = {
.name = "qoriq-efuse",
.of_match_table = qoriq_efuse_of_match,
},
};
module_platform_driver(qoriq_efuse_driver);
MODULE_AUTHOR("Richard Alpe <richard.alpe@bit42.se>");
MODULE_DESCRIPTION("NXP QorIQ Security Fuse Processor (SFP) Reader");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/device.h`, `linux/io.h`, `linux/module.h`, `linux/mod_devicetable.h`, `linux/nvmem-provider.h`, `linux/platform_device.h`.
- Detected declarations: `struct qoriq_efuse_priv`, `function qoriq_efuse_read`, `function qoriq_efuse_probe`.
- Atlas domain: Driver Families / drivers/nvmem.
- Implementation status: source 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.