diff options
Diffstat (limited to 'arch/m32r/include')
| -rw-r--r-- | arch/m32r/include/asm/io.h | 7 | ||||
| -rw-r--r-- | arch/m32r/include/asm/mmu_context.h | 4 | ||||
| -rw-r--r-- | arch/m32r/include/asm/page.h | 4 | ||||
| -rw-r--r-- | arch/m32r/include/asm/processor.h | 2 | ||||
| -rw-r--r-- | arch/m32r/include/asm/smp.h | 2 | ||||
| -rw-r--r-- | arch/m32r/include/asm/thread_info.h | 15 |
6 files changed, 15 insertions, 19 deletions
diff --git a/arch/m32r/include/asm/io.h b/arch/m32r/include/asm/io.h index d06933bd6318..4010f1fc5b65 100644 --- a/arch/m32r/include/asm/io.h +++ b/arch/m32r/include/asm/io.h | |||
| @@ -162,6 +162,13 @@ static inline void _writel(unsigned long l, unsigned long addr) | |||
| 162 | #define __raw_writew writew | 162 | #define __raw_writew writew |
| 163 | #define __raw_writel writel | 163 | #define __raw_writel writel |
| 164 | 164 | ||
| 165 | #define ioread8 read | ||
| 166 | #define ioread16 readw | ||
| 167 | #define ioread32 readl | ||
| 168 | #define iowrite8 writeb | ||
| 169 | #define iowrite16 writew | ||
| 170 | #define iowrite32 writel | ||
| 171 | |||
| 165 | #define mmiowb() | 172 | #define mmiowb() |
| 166 | 173 | ||
| 167 | #define flush_write_buffers() do { } while (0) /* M32R_FIXME */ | 174 | #define flush_write_buffers() do { } while (0) /* M32R_FIXME */ |
diff --git a/arch/m32r/include/asm/mmu_context.h b/arch/m32r/include/asm/mmu_context.h index 91909e5dd9d0..a70a3df33635 100644 --- a/arch/m32r/include/asm/mmu_context.h +++ b/arch/m32r/include/asm/mmu_context.h | |||
| @@ -127,7 +127,7 @@ static inline void switch_mm(struct mm_struct *prev, | |||
| 127 | 127 | ||
| 128 | if (prev != next) { | 128 | if (prev != next) { |
| 129 | #ifdef CONFIG_SMP | 129 | #ifdef CONFIG_SMP |
| 130 | cpu_set(cpu, next->cpu_vm_mask); | 130 | cpumask_set_cpu(cpu, mm_cpumask(next)); |
| 131 | #endif /* CONFIG_SMP */ | 131 | #endif /* CONFIG_SMP */ |
| 132 | /* Set MPTB = next->pgd */ | 132 | /* Set MPTB = next->pgd */ |
| 133 | *(volatile unsigned long *)MPTB = (unsigned long)next->pgd; | 133 | *(volatile unsigned long *)MPTB = (unsigned long)next->pgd; |
| @@ -135,7 +135,7 @@ static inline void switch_mm(struct mm_struct *prev, | |||
| 135 | } | 135 | } |
| 136 | #ifdef CONFIG_SMP | 136 | #ifdef CONFIG_SMP |
| 137 | else | 137 | else |
| 138 | if (!cpu_test_and_set(cpu, next->cpu_vm_mask)) | 138 | if (!cpumask_test_and_set_cpu(cpu, mm_cpumask(next))) |
| 139 | activate_context(next); | 139 | activate_context(next); |
| 140 | #endif /* CONFIG_SMP */ | 140 | #endif /* CONFIG_SMP */ |
| 141 | } | 141 | } |
diff --git a/arch/m32r/include/asm/page.h b/arch/m32r/include/asm/page.h index 11777f7a5628..725ede8f2889 100644 --- a/arch/m32r/include/asm/page.h +++ b/arch/m32r/include/asm/page.h | |||
| @@ -1,9 +1,11 @@ | |||
| 1 | #ifndef _ASM_M32R_PAGE_H | 1 | #ifndef _ASM_M32R_PAGE_H |
| 2 | #define _ASM_M32R_PAGE_H | 2 | #define _ASM_M32R_PAGE_H |
| 3 | 3 | ||
| 4 | #include <linux/const.h> | ||
| 5 | |||
| 4 | /* PAGE_SHIFT determines the page size */ | 6 | /* PAGE_SHIFT determines the page size */ |
| 5 | #define PAGE_SHIFT 12 | 7 | #define PAGE_SHIFT 12 |
| 6 | #define PAGE_SIZE (1UL << PAGE_SHIFT) | 8 | #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT) |
| 7 | #define PAGE_MASK (~(PAGE_SIZE-1)) | 9 | #define PAGE_MASK (~(PAGE_SIZE-1)) |
| 8 | 10 | ||
| 9 | #ifndef __ASSEMBLY__ | 11 | #ifndef __ASSEMBLY__ |
diff --git a/arch/m32r/include/asm/processor.h b/arch/m32r/include/asm/processor.h index 1a997fc148a2..8397c249989b 100644 --- a/arch/m32r/include/asm/processor.h +++ b/arch/m32r/include/asm/processor.h | |||
| @@ -140,8 +140,6 @@ unsigned long get_wchan(struct task_struct *p); | |||
| 140 | #define KSTK_EIP(tsk) ((tsk)->thread.lr) | 140 | #define KSTK_EIP(tsk) ((tsk)->thread.lr) |
| 141 | #define KSTK_ESP(tsk) ((tsk)->thread.sp) | 141 | #define KSTK_ESP(tsk) ((tsk)->thread.sp) |
| 142 | 142 | ||
| 143 | #define THREAD_SIZE (2*PAGE_SIZE) | ||
| 144 | |||
| 145 | #define cpu_relax() barrier() | 143 | #define cpu_relax() barrier() |
| 146 | 144 | ||
| 147 | #endif /* _ASM_M32R_PROCESSOR_H */ | 145 | #endif /* _ASM_M32R_PROCESSOR_H */ |
diff --git a/arch/m32r/include/asm/smp.h b/arch/m32r/include/asm/smp.h index b96a6d2ffbc3..e67ded1aab91 100644 --- a/arch/m32r/include/asm/smp.h +++ b/arch/m32r/include/asm/smp.h | |||
| @@ -88,7 +88,7 @@ extern void smp_send_timer(void); | |||
| 88 | extern unsigned long send_IPI_mask_phys(cpumask_t, int, int); | 88 | extern unsigned long send_IPI_mask_phys(cpumask_t, int, int); |
| 89 | 89 | ||
| 90 | extern void arch_send_call_function_single_ipi(int cpu); | 90 | extern void arch_send_call_function_single_ipi(int cpu); |
| 91 | extern void arch_send_call_function_ipi(cpumask_t mask); | 91 | extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); |
| 92 | 92 | ||
| 93 | #endif /* not __ASSEMBLY__ */ | 93 | #endif /* not __ASSEMBLY__ */ |
| 94 | 94 | ||
diff --git a/arch/m32r/include/asm/thread_info.h b/arch/m32r/include/asm/thread_info.h index 71578151a403..ed240b6e8e77 100644 --- a/arch/m32r/include/asm/thread_info.h +++ b/arch/m32r/include/asm/thread_info.h | |||
| @@ -55,6 +55,8 @@ struct thread_info { | |||
| 55 | 55 | ||
| 56 | #define PREEMPT_ACTIVE 0x10000000 | 56 | #define PREEMPT_ACTIVE 0x10000000 |
| 57 | 57 | ||
| 58 | #define THREAD_SIZE (PAGE_SIZE << 1) | ||
| 59 | |||
| 58 | /* | 60 | /* |
| 59 | * macros/functions for gaining access to the thread information structure | 61 | * macros/functions for gaining access to the thread information structure |
| 60 | */ | 62 | */ |
| @@ -76,8 +78,6 @@ struct thread_info { | |||
| 76 | #define init_thread_info (init_thread_union.thread_info) | 78 | #define init_thread_info (init_thread_union.thread_info) |
| 77 | #define init_stack (init_thread_union.stack) | 79 | #define init_stack (init_thread_union.stack) |
| 78 | 80 | ||
| 79 | #define THREAD_SIZE (2*PAGE_SIZE) | ||
| 80 | |||
| 81 | /* how to get the thread information struct from C */ | 81 | /* how to get the thread information struct from C */ |
| 82 | static inline struct thread_info *current_thread_info(void) | 82 | static inline struct thread_info *current_thread_info(void) |
| 83 | { | 83 | { |
| @@ -125,17 +125,6 @@ static inline unsigned int get_thread_fault_code(void) | |||
| 125 | return ti->flags >> TI_FLAG_FAULT_CODE_SHIFT; | 125 | return ti->flags >> TI_FLAG_FAULT_CODE_SHIFT; |
| 126 | } | 126 | } |
| 127 | 127 | ||
| 128 | #else /* !__ASSEMBLY__ */ | ||
| 129 | |||
| 130 | #define THREAD_SIZE 8192 | ||
| 131 | |||
| 132 | /* how to get the thread information struct from ASM */ | ||
| 133 | #define GET_THREAD_INFO(reg) GET_THREAD_INFO reg | ||
| 134 | .macro GET_THREAD_INFO reg | ||
| 135 | ldi \reg, #-THREAD_SIZE | ||
| 136 | and \reg, sp | ||
| 137 | .endm | ||
| 138 | |||
| 139 | #endif | 128 | #endif |
| 140 | 129 | ||
| 141 | /* | 130 | /* |
