drivers/cpufreq/cpufreq_ondemand.h
Source file repositories/reference/linux-study-clean/drivers/cpufreq/cpufreq_ondemand.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/cpufreq/cpufreq_ondemand.h- Extension
.h- Size
- 1365 bytes
- Lines
- 50
- Domain
- Driver Families
- Bucket
- drivers/cpufreq
- 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
cpufreq_governor.hasm/cpu_device_id.h
Detected Declarations
struct od_policy_dbs_infostruct od_dbs_tunersfunction od_should_io_be_busyfunction od_should_io_be_busy
Annotated Snippet
struct od_policy_dbs_info {
struct policy_dbs_info policy_dbs;
unsigned int freq_lo;
unsigned int freq_lo_delay_us;
unsigned int freq_hi_delay_us;
unsigned int sample_type:1;
};
static inline struct od_policy_dbs_info *to_dbs_info(struct policy_dbs_info *policy_dbs)
{
return container_of(policy_dbs, struct od_policy_dbs_info, policy_dbs);
}
struct od_dbs_tuners {
unsigned int powersave_bias;
};
#ifdef CONFIG_X86
#include <asm/cpu_device_id.h>
/*
* Not all CPUs want IO time to be accounted as busy; this depends on
* how efficient idling at a higher frequency/voltage is.
*
* Pavel Machek says this is not so for various generations of AMD and
* old Intel systems. Mike Chan (android.com) claims this is also not
* true for ARM.
*
* Because of this, select a known series of Intel CPUs (Family 6 and
* later) by default, and leave all others up to the user.
*/
static inline bool od_should_io_be_busy(void)
{
return (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
boot_cpu_data.x86_vfm >= INTEL_PENTIUM_PRO);
}
#else
static inline bool od_should_io_be_busy(void) { return false; }
#endif
Annotation
- Immediate include surface: `cpufreq_governor.h`, `asm/cpu_device_id.h`.
- Detected declarations: `struct od_policy_dbs_info`, `struct od_dbs_tuners`, `function od_should_io_be_busy`, `function od_should_io_be_busy`.
- Atlas domain: Driver Families / drivers/cpufreq.
- 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.