mirror of
https://github.com/qemu/qemu.git
synced 2024-12-13 22:43:32 +08:00
1f93a6e4f3
Cluster Power Controller (CPC) is responsible for power management in multiprocessing system. It provides registers to control the power and the clock frequency of the individual elements in the system. This patch implements only three registers that are used to control the power state of each VP on a single core: * VP Run is a write-only register used to set each VP to the run state * VP Stop is a write-only register used to set each VP to the suspend state * VP Running is a read-only register indicating the run state of each VP Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
52 lines
1.6 KiB
Makefile
52 lines
1.6 KiB
Makefile
common-obj-$(CONFIG_APPLESMC) += applesmc.o
|
|
common-obj-$(CONFIG_MAX111X) += max111x.o
|
|
common-obj-$(CONFIG_TMP105) += tmp105.o
|
|
common-obj-$(CONFIG_ISA_DEBUG) += debugexit.o
|
|
common-obj-$(CONFIG_SGA) += sga.o
|
|
common-obj-$(CONFIG_ISA_TESTDEV) += pc-testdev.o
|
|
common-obj-$(CONFIG_PCI_TESTDEV) += pci-testdev.o
|
|
|
|
obj-$(CONFIG_VMPORT) += vmport.o
|
|
|
|
# ARM devices
|
|
common-obj-$(CONFIG_PL310) += arm_l2x0.o
|
|
common-obj-$(CONFIG_INTEGRATOR_DEBUG) += arm_integrator_debug.o
|
|
common-obj-$(CONFIG_A9SCU) += a9scu.o
|
|
common-obj-$(CONFIG_ARM11SCU) += arm11scu.o
|
|
|
|
# PKUnity SoC devices
|
|
common-obj-$(CONFIG_PUV3) += puv3_pm.o
|
|
|
|
common-obj-$(CONFIG_MACIO) += macio/
|
|
|
|
obj-$(CONFIG_IVSHMEM) += ivshmem.o
|
|
|
|
obj-$(CONFIG_REALVIEW) += arm_sysctl.o
|
|
obj-$(CONFIG_NSERIES) += cbus.o
|
|
obj-$(CONFIG_ECCMEMCTL) += eccmemctl.o
|
|
obj-$(CONFIG_EXYNOS4) += exynos4210_pmu.o
|
|
obj-$(CONFIG_IMX) += imx_ccm.o
|
|
obj-$(CONFIG_IMX) += imx31_ccm.o
|
|
obj-$(CONFIG_IMX) += imx25_ccm.o
|
|
obj-$(CONFIG_IMX) += imx6_ccm.o
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-hpdmc.o
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-pfpu.o
|
|
obj-$(CONFIG_MAINSTONE) += mst_fpga.o
|
|
obj-$(CONFIG_OMAP) += omap_clk.o
|
|
obj-$(CONFIG_OMAP) += omap_gpmc.o
|
|
obj-$(CONFIG_OMAP) += omap_l4.o
|
|
obj-$(CONFIG_OMAP) += omap_sdrc.o
|
|
obj-$(CONFIG_OMAP) += omap_tap.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_mbox.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_property.o
|
|
obj-$(CONFIG_SLAVIO) += slavio_misc.o
|
|
obj-$(CONFIG_ZYNQ) += zynq_slcr.o
|
|
obj-$(CONFIG_ZYNQ) += zynq-xadc.o
|
|
obj-$(CONFIG_STM32F2XX_SYSCFG) += stm32f2xx_syscfg.o
|
|
obj-$(CONFIG_MIPS_CPS) += mips_cmgcr.o
|
|
obj-$(CONFIG_MIPS_CPS) += mips_cpc.o
|
|
|
|
obj-$(CONFIG_PVPANIC) += pvpanic.o
|
|
obj-$(CONFIG_EDU) += edu.o
|
|
obj-$(CONFIG_HYPERV_TESTDEV) += hyperv_testdev.o
|