Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-hisi/core.h
26292 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef __HISILICON_CORE_H
3
#define __HISILICON_CORE_H
4
5
#include <linux/reboot.h>
6
7
extern void hi3xxx_set_cpu_jump(int cpu, void *jump_addr);
8
extern int hi3xxx_get_cpu_jump(int cpu);
9
extern void secondary_startup(void);
10
11
extern void hi3xxx_cpu_die(unsigned int cpu);
12
extern int hi3xxx_cpu_kill(unsigned int cpu);
13
extern void hi3xxx_set_cpu(int cpu, bool enable);
14
15
extern void hix5hd2_set_cpu(int cpu, bool enable);
16
extern void hix5hd2_cpu_die(unsigned int cpu);
17
18
extern void hip01_set_cpu(int cpu, bool enable);
19
#endif
20
21