M7350/kernel/arch/mips/include/asm/mips_mt.h

31 lines
668 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
2024-09-09 08:57:42 +00:00
* Definitions and decalrations for MIPS MT support that are common between
* the VSMP, and AP/SP kernel models.
2024-09-09 08:52:07 +00:00
*/
#ifndef __ASM_MIPS_MT_H
#define __ASM_MIPS_MT_H
#include <linux/cpumask.h>
/*
* How many VPEs and TCs is Linux allowed to use? 0 means no limit.
*/
extern int tclimit;
extern int vpelimit;
extern cpumask_t mt_fpu_cpumask;
extern unsigned long mt_fpemul_threshold;
extern void mips_mt_regdump(unsigned long previous_mvpcontrol_value);
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_MIPS_MT
2024-09-09 08:52:07 +00:00
extern void mips_mt_set_cpuoptions(void);
2024-09-09 08:57:42 +00:00
#else
static inline void mips_mt_set_cpuoptions(void) { }
#endif
2024-09-09 08:52:07 +00:00
struct class;
extern struct class *mt_class;
#endif /* __ASM_MIPS_MT_H */