drivers/cpufreq/highbank-cpufreq.c

Source file repositories/reference/linux-study-clean/drivers/cpufreq/highbank-cpufreq.c

File Facts

System
Linux kernel
Corpus path
drivers/cpufreq/highbank-cpufreq.c
Extension
.c
Size
2939 bytes
Lines
114
Domain
Driver Families
Bucket
drivers/cpufreq
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.

Dependency Surface

Detected Declarations

Annotated Snippet

module_init(hb_cpufreq_driver_init);

static const struct of_device_id __maybe_unused hb_cpufreq_of_match[] = {
	{ .compatible = "calxeda,highbank" },
	{ .compatible = "calxeda,ecx-2000" },
	{ },
};
MODULE_DEVICE_TABLE(of, hb_cpufreq_of_match);

MODULE_AUTHOR("Mark Langsdorf <mark.langsdorf@calxeda.com>");
MODULE_DESCRIPTION("Calxeda Highbank cpufreq driver");
MODULE_LICENSE("GPL");

Annotation

Implementation Notes