smp.h (9bd7de51ee8537094656149eaf45338cadb7d7d4) | smp.h (e03cdade0ca945a04e982525e50fef275190b77b) |
---|---|
1/* 2 * arch/arm/include/asm/smp.h 3 * 4 * Copyright (C) 2004-2005 ARM Ltd. 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 27 unchanged lines hidden (view full) --- 36extern void show_ipi_list(struct seq_file *p); 37 38/* 39 * Called from assembly code, this handles an IPI. 40 */ 41asmlinkage void do_IPI(struct pt_regs *regs); 42 43/* | 1/* 2 * arch/arm/include/asm/smp.h 3 * 4 * Copyright (C) 2004-2005 ARM Ltd. 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 27 unchanged lines hidden (view full) --- 36extern void show_ipi_list(struct seq_file *p); 37 38/* 39 * Called from assembly code, this handles an IPI. 40 */ 41asmlinkage void do_IPI(struct pt_regs *regs); 42 43/* |
44 * Setup the SMP cpu_possible_map | 44 * Setup the set of possible CPUs (via set_cpu_possible) |
45 */ 46extern void smp_init_cpus(void); 47 48/* 49 * Move global data into per-processor storage. 50 */ 51extern void smp_store_cpu_info(unsigned int cpuid); 52 53/* 54 * Raise an IPI cross call on CPUs in callmap. 55 */ 56extern void smp_cross_call(const struct cpumask *mask); 57 58/* | 45 */ 46extern void smp_init_cpus(void); 47 48/* 49 * Move global data into per-processor storage. 50 */ 51extern void smp_store_cpu_info(unsigned int cpuid); 52 53/* 54 * Raise an IPI cross call on CPUs in callmap. 55 */ 56extern void smp_cross_call(const struct cpumask *mask); 57 58/* |
59 * Broadcast a clock event to other CPUs. 60 */ 61extern void smp_timer_broadcast(const struct cpumask *mask); 62 63/* | |
64 * Boot a secondary CPU, and assign it the specified idle task. 65 * This also gives us the initial stack to use for this CPU. 66 */ 67extern int boot_secondary(unsigned int cpu, struct task_struct *); 68 69/* 70 * Called from platform specific assembly code, this is the 71 * secondary CPU entry point. --- 24 unchanged lines hidden (view full) --- 96extern int platform_cpu_kill(unsigned int cpu); 97extern void platform_cpu_enable(unsigned int cpu); 98 99extern void arch_send_call_function_single_ipi(int cpu); 100extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); 101#define arch_send_call_function_ipi_mask arch_send_call_function_ipi_mask 102 103/* | 59 * Boot a secondary CPU, and assign it the specified idle task. 60 * This also gives us the initial stack to use for this CPU. 61 */ 62extern int boot_secondary(unsigned int cpu, struct task_struct *); 63 64/* 65 * Called from platform specific assembly code, this is the 66 * secondary CPU entry point. --- 24 unchanged lines hidden (view full) --- 91extern int platform_cpu_kill(unsigned int cpu); 92extern void platform_cpu_enable(unsigned int cpu); 93 94extern void arch_send_call_function_single_ipi(int cpu); 95extern void arch_send_call_function_ipi_mask(const struct cpumask *mask); 96#define arch_send_call_function_ipi_mask arch_send_call_function_ipi_mask 97 98/* |
104 * Local timer interrupt handling function (can be IPI'ed). 105 */ 106extern void local_timer_interrupt(void); 107 108#ifdef CONFIG_LOCAL_TIMERS 109 110/* 111 * Stop a local timer interrupt. 112 */ 113extern void local_timer_stop(void); 114 115/* 116 * Platform provides this to acknowledge a local timer IRQ 117 */ 118extern int local_timer_ack(void); 119 120#else 121 122static inline void local_timer_stop(void) 123{ 124} 125 126#endif 127 128/* 129 * Setup a local timer interrupt for a CPU. 130 */ 131extern void local_timer_setup(void); 132 133/* | |
134 * show local interrupt info 135 */ 136extern void show_local_irqs(struct seq_file *); 137 | 99 * show local interrupt info 100 */ 101extern void show_local_irqs(struct seq_file *); 102 |
138/* 139 * Called from assembly, this is the local timer IRQ handler 140 */ 141asmlinkage void do_local_timer(struct pt_regs *); 142 | |
143#endif /* ifndef __ASM_ARM_SMP_H */ | 103#endif /* ifndef __ASM_ARM_SMP_H */ |