drivers/soc/fsl/qe/qe_common.c
Source file repositories/reference/linux-study-clean/drivers/soc/fsl/qe/qe_common.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/soc/fsl/qe/qe_common.c- Extension
.c- Size
- 8477 bytes
- Lines
- 331
- Domain
- Driver Families
- Bucket
- drivers/soc
- 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.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- 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/genalloc.hlinux/init.hlinux/list.hlinux/spinlock.hlinux/export.hlinux/of.hlinux/of_address.hlinux/slab.hlinux/io.hsoc/fsl/qe/qe.h
Detected Declarations
struct muram_blockfunction cpm_muram_initfunction cpm_muram_alloc_commonfunction cpm_muram_addrfunction cpm_muram_freefunction devm_cpm_muram_releasefunction cpm_muram_allocfunction cpm_muram_addrfunction cpm_muram_alloc_fixedfunction cpm_muram_offsetfunction cpm_muram_dmafunction cpm_muram_free_addrexport cpm_muram_allocexport cpm_muram_freeexport devm_cpm_muram_allocexport cpm_muram_alloc_fixedexport devm_cpm_muram_alloc_fixedexport cpm_muram_addrexport cpm_muram_offsetexport cpm_muram_dmaexport cpm_muram_free_addr
Annotated Snippet
struct muram_block {
struct list_head head;
s32 start;
int size;
};
static LIST_HEAD(muram_block_list);
/* max address size we deal with */
#define OF_MAX_ADDR_CELLS 4
#define GENPOOL_OFFSET (4096 * 8)
int cpm_muram_init(void)
{
struct device_node *np;
struct resource r;
__be32 zero[OF_MAX_ADDR_CELLS] = {};
resource_size_t max = 0;
int i = 0;
int ret = 0;
if (muram_pbase)
return 0;
np = of_find_compatible_node(NULL, NULL, "fsl,cpm-muram-data");
if (!np) {
/* try legacy bindings */
np = of_find_node_by_name(NULL, "data-only");
if (!np) {
pr_err("Cannot find CPM muram data node");
ret = -ENODEV;
goto out_muram;
}
}
muram_pool = gen_pool_create(0, -1);
if (!muram_pool) {
pr_err("Cannot allocate memory pool for CPM/QE muram");
ret = -ENOMEM;
goto out_muram;
}
muram_pbase = of_translate_address(np, zero);
if (muram_pbase == (phys_addr_t)OF_BAD_ADDR) {
pr_err("Cannot translate zero through CPM muram node");
ret = -ENODEV;
goto out_pool;
}
while (of_address_to_resource(np, i++, &r) == 0) {
if (r.end > max)
max = r.end;
ret = gen_pool_add(muram_pool, r.start - muram_pbase +
GENPOOL_OFFSET, resource_size(&r), -1);
if (ret) {
pr_err("QE: couldn't add muram to pool!\n");
goto out_pool;
}
}
muram_vbase = ioremap(muram_pbase, max - muram_pbase + 1);
if (!muram_vbase) {
pr_err("Cannot map QE muram");
ret = -ENOMEM;
goto out_pool;
}
goto out_muram;
out_pool:
gen_pool_destroy(muram_pool);
out_muram:
of_node_put(np);
return ret;
}
/*
* cpm_muram_alloc_common - cpm_muram_alloc common code
* @size: number of bytes to allocate
* @algo: algorithm for alloc.
* @data: data for genalloc's algorithm.
*
* This function returns a non-negative offset into the muram area, or
* a negative errno on failure.
*/
static s32 cpm_muram_alloc_common(unsigned long size,
genpool_algo_t algo, void *data)
{
struct muram_block *entry;
s32 start;
entry = kmalloc_obj(*entry, GFP_ATOMIC);
if (!entry)
Annotation
- Immediate include surface: `linux/device.h`, `linux/genalloc.h`, `linux/init.h`, `linux/list.h`, `linux/spinlock.h`, `linux/export.h`, `linux/of.h`, `linux/of_address.h`.
- Detected declarations: `struct muram_block`, `function cpm_muram_init`, `function cpm_muram_alloc_common`, `function cpm_muram_addr`, `function cpm_muram_free`, `function devm_cpm_muram_release`, `function cpm_muram_alloc`, `function cpm_muram_addr`, `function cpm_muram_alloc_fixed`, `function cpm_muram_offset`.
- Atlas domain: Driver Families / drivers/soc.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.