Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1 | #ifndef _ASM_SMTC_MT_H |
| 2 | #define _ASM_SMTC_MT_H |
| 3 | |
| 4 | /* |
| 5 | * Definitions for SMTC multitasking on MIPS MT cores |
| 6 | */ |
| 7 | |
| 8 | #include <asm/mips_mt.h> |
Kevin D. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 9 | #include <asm/smtc_ipi.h> |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 10 | |
| 11 | /* |
| 12 | * System-wide SMTC status information |
| 13 | */ |
| 14 | |
| 15 | extern unsigned int smtc_status; |
| 16 | |
| 17 | #define SMTC_TLB_SHARED 0x00000001 |
| 18 | #define SMTC_MTC_ACTIVE 0x00000002 |
| 19 | |
| 20 | /* |
| 21 | * TLB/ASID Management information |
| 22 | */ |
| 23 | |
| 24 | #define MAX_SMTC_TLBS 2 |
| 25 | #define MAX_SMTC_ASIDS 256 |
| 26 | #if NR_CPUS <= 8 |
| 27 | typedef char asiduse; |
| 28 | #else |
| 29 | #if NR_CPUS <= 16 |
| 30 | typedef short asiduse; |
| 31 | #else |
| 32 | typedef long asiduse; |
| 33 | #endif |
| 34 | #endif |
| 35 | |
| 36 | extern asiduse smtc_live_asid[MAX_SMTC_TLBS][MAX_SMTC_ASIDS]; |
| 37 | |
Ralf Baechle | b392059 | 2007-03-04 18:25:51 +0000 | [diff] [blame] | 38 | struct mm_struct; |
| 39 | struct task_struct; |
| 40 | |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 41 | void smtc_get_new_mmu_context(struct mm_struct *mm, unsigned long cpu); |
Kevin D. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 42 | void self_ipi(struct smtc_ipi *); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 43 | void smtc_flush_tlb_asid(unsigned long asid); |
Kevin D. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 44 | extern int smtc_build_cpu_map(int startslot); |
| 45 | extern void smtc_prepare_cpus(int cpus); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 46 | extern void smtc_smp_finish(void); |
| 47 | extern void smtc_boot_secondary(int cpu, struct task_struct *t); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 48 | extern void smtc_cpus_done(void); |
Ralf Baechle | 731f90fa | 2011-05-28 01:09:02 +0100 | [diff] [blame] | 49 | extern void smtc_init_secondary(void); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 50 | |
Kevin D. Kissell | 8531a35 | 2008-09-09 21:48:52 +0200 | [diff] [blame] | 51 | |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 52 | /* |
| 53 | * Sharing the TLB between multiple VPEs means that the |
| 54 | * "random" index selection function is not allowed to |
| 55 | * select the current value of the Index register. To |
| 56 | * avoid additional TLB pressure, the Index registers |
| 57 | * are "parked" with an non-Valid value. |
| 58 | */ |
| 59 | |
| 60 | #define PARKED_INDEX ((unsigned int)0x80000000) |
| 61 | |
Ralf Baechle | fe56b95 | 2007-08-06 16:35:23 +0100 | [diff] [blame] | 62 | /* |
| 63 | * Define low-level interrupt mask for IPIs, if necessary. |
| 64 | * By default, use SW interrupt 1, which requires no external |
| 65 | * hardware support, but which works only for single-core |
| 66 | * MIPS MT systems. |
| 67 | */ |
| 68 | #ifndef MIPS_CPU_IPI_IRQ |
| 69 | #define MIPS_CPU_IPI_IRQ 1 |
| 70 | #endif |
| 71 | |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 72 | #endif /* _ASM_SMTC_MT_H */ |