You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
14 lines
302 B
#ifndef __ASMARM_ARCH_SCU_H
|
|
#define __ASMARM_ARCH_SCU_H
|
|
|
|
#define SCU_PM_NORMAL 0
|
|
#define SCU_PM_DORMANT 2
|
|
#define SCU_PM_POWEROFF 3
|
|
|
|
#ifndef __ASSEMBLER__
|
|
unsigned int scu_get_core_count(void __iomem *);
|
|
void scu_enable(void __iomem *);
|
|
int scu_power_mode(void __iomem *, unsigned int);
|
|
#endif
|
|
|
|
#endif
|
|
|