mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
hw/mips: add initial Cluster Power Controller support
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>
This commit is contained in:
parent
a9bd9b5a86
commit
1f93a6e4f3
3 changed files with 225 additions and 0 deletions
|
@ -44,6 +44,7 @@ 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue