389ee0c2ff
Since some new Hisilicon SoCs are not named as hi3xxx, rename mach-hi3xxx to mach-hisi instead. And the pronounciation of "hisi" is similar to the chinese pronounciation of Hisilicon. So Hisilicon guys like this name. ARCH_HI3xxx will be renamed later since other drivers are using it and they are still in linux-next git tree. So rename ARCH_HI3xxx later. Signed-off-by: Haojian Zhuang <haojian.zhuang@gmail.com> Signed-off-by: Kevin Hilman <khilman@linaro.org>
16 lines
415 B
C
16 lines
415 B
C
#ifndef __HISILICON_CORE_H
|
|
#define __HISILICON_CORE_H
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
extern void hi3xxx_set_cpu_jump(int cpu, void *jump_addr);
|
|
extern int hi3xxx_get_cpu_jump(int cpu);
|
|
extern void secondary_startup(void);
|
|
extern struct smp_operations hi3xxx_smp_ops;
|
|
|
|
extern void hi3xxx_cpu_die(unsigned int cpu);
|
|
extern int hi3xxx_cpu_kill(unsigned int cpu);
|
|
extern void hi3xxx_set_cpu(int cpu, bool enable);
|
|
|
|
#endif
|