drivers/mfd/db8500-prcmu.c
Source file repositories/reference/linux-study-clean/drivers/mfd/db8500-prcmu.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/mfd/db8500-prcmu.c- Extension
.c- Size
- 80274 bytes
- Lines
- 3093
- Domain
- Driver Families
- Bucket
- drivers/mfd
- 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.
- Touches IRQ or DMA behavior; this matters for the representative real-device path.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/init.hlinux/export.hlinux/kernel.hlinux/delay.hlinux/errno.hlinux/err.hlinux/spinlock.hlinux/io.hlinux/slab.hlinux/mutex.hlinux/completion.hlinux/irq.hlinux/jiffies.hlinux/bitops.hlinux/fs.hlinux/of.hlinux/of_address.hlinux/of_irq.hlinux/platform_device.hlinux/uaccess.hlinux/mfd/core.hlinux/mfd/dbx500-prcmu.hlinux/mfd/abx500/ab8500.hlinux/regulator/db8500-prcmu.hlinux/regulator/machine.hdb8500-prcmu-regs.h
Detected Declarations
struct clk_mgtstruct dsiclkstruct dsiescclkfunction db8500_prcmu_readfunction db8500_prcmu_writefunction db8500_prcmu_write_maskedfunction prcmu_is_ulppll_disabledfunction prcmu_has_arm_maxoppfunction prcmu_set_rc_a2pfunction prcmu_get_rc_p2afunction prcmu_get_xp70_current_statefunction outputsfunction db8500_prcmu_set_power_statefunction db8500_prcmu_get_power_state_resultfunction config_wakeupsfunction db8500_prcmu_enable_wakeupsfunction db8500_prcmu_config_abb_event_readoutfunction db8500_prcmu_get_abb_event_bufferfunction db8500_prcmu_set_arm_oppfunction db8500_prcmu_get_arm_oppfunction db8500_prcmu_get_ddr_oppfunction request_even_slower_clocksfunction db8500_prcmu_set_ape_oppfunction db8500_prcmu_get_ape_oppfunction db8500_prcmu_request_ape_opp_100_voltagefunction prcmu_release_usb_wakeup_statefunction request_pllfunction EPODfunction msecs_to_jiffiesfunction prcmu_configure_auto_pmfunction prcmu_is_auto_pm_enabledfunction request_sysclkfunction msecs_to_jiffiesfunction request_timclkfunction request_clockfunction request_sga_clockfunction plldsi_lockedfunction request_plldsifunction request_dsiclkfunction request_dsiescclkfunction db8500_prcmu_request_clockfunction pll_ratefunction clock_ratefunction armss_ratefunction dsiclk_ratefunction dsiescclk_ratefunction prcmu_clock_ratefunction clock_source_rate
Annotated Snippet
core_initcall(db8500_prcmu_init);
Annotation
- Immediate include surface: `linux/init.h`, `linux/export.h`, `linux/kernel.h`, `linux/delay.h`, `linux/errno.h`, `linux/err.h`, `linux/spinlock.h`, `linux/io.h`.
- Detected declarations: `struct clk_mgt`, `struct dsiclk`, `struct dsiescclk`, `function db8500_prcmu_read`, `function db8500_prcmu_write`, `function db8500_prcmu_write_masked`, `function prcmu_is_ulppll_disabled`, `function prcmu_has_arm_maxopp`, `function prcmu_set_rc_a2p`, `function prcmu_get_rc_p2a`.
- Atlas domain: Driver Families / drivers/mfd.
- Implementation status: integration implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
- IRQ or DMA behavior appears here, which is relevant to the selected PCIe/NVMe device path.
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.