Linux Audio

Check our new training course

Loading...
v4.17
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _ASM_CMP_H
 3#define _ASM_CMP_H
 4
 5/*
 6 * Definitions for CMP multitasking on MIPS cores
 7 */
 8struct task_struct;
 9
10extern void cmp_smp_setup(void);
11extern void cmp_smp_finish(void);
12extern void cmp_boot_secondary(int cpu, struct task_struct *t);
13extern void cmp_init_secondary(void);
 
14extern void cmp_prepare_cpus(unsigned int max_cpus);
15
16/* This is platform specific */
17extern void cmp_send_ipi(int cpu, unsigned int action);
18#endif /*  _ASM_CMP_H */
v3.15
 
 1#ifndef _ASM_CMP_H
 2#define _ASM_CMP_H
 3
 4/*
 5 * Definitions for CMP multitasking on MIPS cores
 6 */
 7struct task_struct;
 8
 9extern void cmp_smp_setup(void);
10extern void cmp_smp_finish(void);
11extern void cmp_boot_secondary(int cpu, struct task_struct *t);
12extern void cmp_init_secondary(void);
13extern void cmp_cpus_done(void);
14extern void cmp_prepare_cpus(unsigned int max_cpus);
15
16/* This is platform specific */
17extern void cmp_send_ipi(int cpu, unsigned int action);
18#endif /*  _ASM_CMP_H */