2006-04-05 08:45:45 +00:00
|
|
|
/*
|
|
|
|
* Definitions and decalrations for MIPS MT support
|
|
|
|
* that are common between SMTC, VSMP, and/or AP/SP
|
|
|
|
* kernel models.
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_MIPS_MT_H
|
|
|
|
#define __ASM_MIPS_MT_H
|
|
|
|
|
2007-03-04 18:23:48 +00:00
|
|
|
#include <linux/cpumask.h>
|
|
|
|
|
2007-07-27 18:31:10 +00:00
|
|
|
/*
|
|
|
|
* How many VPEs and TCs is Linux allowed to use? 0 means no limit.
|
|
|
|
*/
|
|
|
|
extern int tclimit;
|
|
|
|
extern int vpelimit;
|
|
|
|
|
2006-04-05 08:45:45 +00:00
|
|
|
extern cpumask_t mt_fpu_cpumask;
|
|
|
|
extern unsigned long mt_fpemul_threshold;
|
|
|
|
|
|
|
|
extern void mips_mt_regdump(unsigned long previous_mvpcontrol_value);
|
|
|
|
extern void mips_mt_set_cpuoptions(void);
|
|
|
|
|
2007-02-07 13:48:59 +00:00
|
|
|
struct class;
|
|
|
|
extern struct class *mt_class;
|
|
|
|
|
2006-04-05 08:45:45 +00:00
|
|
|
#endif /* __ASM_MIPS_MT_H */
|