mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-16 22:51:32 +00:00
7056d423f1
Implement cpufreq support for the Tegra SOC. DVFS is handled by the core virtual cpu clock. The frequencies of the two cores are tied together, the highest frequency requested by either core determines the actual frequency. Signed-off-by: Colin Cross <ccross@android.com>
19 lines
918 B
Makefile
19 lines
918 B
Makefile
obj-y += common.o
|
|
obj-y += io.o
|
|
obj-y += irq.o legacy_irq.o
|
|
obj-y += clock.o
|
|
obj-y += timer.o
|
|
obj-y += gpio.o
|
|
obj-y += pinmux.o
|
|
obj-y += fuse.o
|
|
obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += clock.o
|
|
obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o
|
|
obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_dvfs.o
|
|
obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += pinmux-t2-tables.o
|
|
obj-$(CONFIG_SMP) += platsmp.o localtimer.o headsmp.o
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|
|
obj-$(CONFIG_CPU_FREQ) += cpu-tegra.o
|
|
|
|
obj-${CONFIG_MACH_HARMONY} += board-harmony.o
|
|
obj-${CONFIG_MACH_HARMONY} += board-harmony-pinmux.o
|