2006-04-05 15:45:45 +07:00
|
|
|
/*
|
2016-05-21 19:00:33 +07:00
|
|
|
* Definitions and declarations for MIPS MT support that are common between
|
2014-05-23 21:29:44 +07:00
|
|
|
* the VSMP, and AP/SP kernel models.
|
2006-04-05 15:45:45 +07:00
|
|
|
*/
|
|
|
|
#ifndef __ASM_MIPS_MT_H
|
|
|
|
#define __ASM_MIPS_MT_H
|
|
|
|
|
2007-03-05 01:23:48 +07:00
|
|
|
#include <linux/cpumask.h>
|
|
|
|
|
2007-07-28 01:31:10 +07:00
|
|
|
/*
|
|
|
|
* How many VPEs and TCs is Linux allowed to use? 0 means no limit.
|
|
|
|
*/
|
|
|
|
extern int tclimit;
|
|
|
|
extern int vpelimit;
|
|
|
|
|
2006-04-05 15:45:45 +07:00
|
|
|
extern cpumask_t mt_fpu_cpumask;
|
|
|
|
extern unsigned long mt_fpemul_threshold;
|
|
|
|
|
|
|
|
extern void mips_mt_regdump(unsigned long previous_mvpcontrol_value);
|
2014-03-24 17:19:25 +07:00
|
|
|
|
|
|
|
#ifdef CONFIG_MIPS_MT
|
2006-04-05 15:45:45 +07:00
|
|
|
extern void mips_mt_set_cpuoptions(void);
|
2014-03-24 17:19:25 +07:00
|
|
|
#else
|
|
|
|
static inline void mips_mt_set_cpuoptions(void) { }
|
|
|
|
#endif
|
2006-04-05 15:45:45 +07:00
|
|
|
|
2007-02-07 20:48:59 +07:00
|
|
|
struct class;
|
|
|
|
extern struct class *mt_class;
|
|
|
|
|
2006-04-05 15:45:45 +07:00
|
|
|
#endif /* __ASM_MIPS_MT_H */
|