⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smp.c

📁 ARM 嵌入式 系统 设计与实例开发 实验教材 二源码
💻 C
📖 第 1 页 / 共 2 页
字号:
	return 0;out_timeout:	spin_unlock_bh(&call_lock);	printk("XCALL: Remote cpus not responding, ncpus=%d finished=%d\n",	       smp_num_cpus - 1, atomic_read(&data.finished));	return 0;}void smp_call_function_client(void){	void (*func) (void *info) = call_data->func;	void *info = call_data->info;	if (call_data->wait) {		/* let initiator proceed only after completion */		func(info);		atomic_inc(&call_data->finished);	} else {		/* let initiator proceed after getting data */		atomic_inc(&call_data->finished);		func(info);	}}extern unsigned long xcall_flush_tlb_page;extern unsigned long xcall_flush_tlb_mm;extern unsigned long xcall_flush_tlb_range;extern unsigned long xcall_flush_tlb_all;extern unsigned long xcall_tlbcachesync;extern unsigned long xcall_flush_cache_all;extern unsigned long xcall_report_regs;extern unsigned long xcall_receive_signal;extern unsigned long xcall_flush_dcache_page_cheetah;extern unsigned long xcall_flush_dcache_page_spitfire;#ifdef CONFIG_DEBUG_DCFLUSHextern atomic_t dcpage_flushes;extern atomic_t dcpage_flushes_xcall;#endifstatic __inline__ void __local_flush_dcache_page(struct page *page){#if (L1DCACHE_SIZE > PAGE_SIZE)	__flush_dcache_page(page->virtual,			    ((tlb_type == spitfire) &&			     page->mapping != NULL));#else	if (page->mapping != NULL &&	    tlb_type == spitfire)		__flush_icache_page(__pa(page->virtual));#endif}void smp_flush_dcache_page_impl(struct page *page, int cpu){	if (smp_processors_ready) {		unsigned long mask = 1UL << cpu;#ifdef CONFIG_DEBUG_DCFLUSH		atomic_inc(&dcpage_flushes);#endif		if (cpu == smp_processor_id()) {			__local_flush_dcache_page(page);		} else if ((cpu_present_map & mask) != 0) {			u64 data0;			if (tlb_type == spitfire) {				data0 = ((u64)&xcall_flush_dcache_page_spitfire);				if (page->mapping != NULL)					data0 |= ((u64)1 << 32);				spitfire_xcall_deliver(data0,						       __pa(page->virtual),						       (u64) page->virtual,						       mask);			} else {				data0 = ((u64)&xcall_flush_dcache_page_cheetah);				cheetah_xcall_deliver(data0,						      __pa(page->virtual),						      0, mask);			}#ifdef CONFIG_DEBUG_DCFLUSH			atomic_inc(&dcpage_flushes_xcall);#endif		}	}}void flush_dcache_page_all(struct mm_struct *mm, struct page *page){	if (smp_processors_ready) {		unsigned long mask = cpu_present_map & ~(1UL << smp_processor_id());		u64 data0;#ifdef CONFIG_DEBUG_DCFLUSH		atomic_inc(&dcpage_flushes);#endif		if (mask == 0UL)			goto flush_self;		if (tlb_type == spitfire) {			data0 = ((u64)&xcall_flush_dcache_page_spitfire);			if (page->mapping != NULL)				data0 |= ((u64)1 << 32);			spitfire_xcall_deliver(data0,					       __pa(page->virtual),					       (u64) page->virtual,					       mask);		} else {			data0 = ((u64)&xcall_flush_dcache_page_cheetah);			cheetah_xcall_deliver(data0,					      __pa(page->virtual),					      0, mask);		}#ifdef CONFIG_DEBUG_DCFLUSH		atomic_inc(&dcpage_flushes_xcall);#endif	flush_self:		__local_flush_dcache_page(page);	}}void smp_receive_signal(int cpu){	if (smp_processors_ready) {		unsigned long mask = 1UL << cpu;		if ((cpu_present_map & mask) != 0) {			u64 data0 = (((u64)&xcall_receive_signal) & 0xffffffff);			if (tlb_type == spitfire)				spitfire_xcall_deliver(data0, 0, 0, mask);			else				cheetah_xcall_deliver(data0, 0, 0, mask);		}	}}void smp_report_regs(void){	smp_cross_call(&xcall_report_regs, 0, 0, 0);}void smp_flush_cache_all(void){	smp_cross_call(&xcall_flush_cache_all, 0, 0, 0);	__flush_cache_all();}void smp_flush_tlb_all(void){	smp_cross_call(&xcall_flush_tlb_all, 0, 0, 0);	__flush_tlb_all();}/* We know that the window frames of the user have been flushed * to the stack before we get here because all callers of us * are flush_tlb_*() routines, and these run after flush_cache_*() * which performs the flushw. * * The SMP TLB coherency scheme we use works as follows: * * 1) mm->cpu_vm_mask is a bit mask of which cpus an address *    space has (potentially) executed on, this is the heuristic *    we use to avoid doing cross calls. * *    Also, for flushing from kswapd and also for clones, we *    use cpu_vm_mask as the list of cpus to make run the TLB. * * 2) TLB context numbers are shared globally across all processors *    in the system, this allows us to play several games to avoid *    cross calls. * *    One invariant is that when a cpu switches to a process, and *    that processes tsk->active_mm->cpu_vm_mask does not have the *    current cpu's bit set, that tlb context is flushed locally. * *    If the address space is non-shared (ie. mm->count == 1) we avoid *    cross calls when we want to flush the currently running process's *    tlb state.  This is done by clearing all cpu bits except the current *    processor's in current->active_mm->cpu_vm_mask and performing the *    flush locally only.  This will force any subsequent cpus which run *    this task to flush the context from the local tlb if the process *    migrates to another cpu (again). * * 3) For shared address spaces (threads) and swapping we bite the *    bullet for most cases and perform the cross call (but only to *    the cpus listed in cpu_vm_mask). * *    The performance gain from "optimizing" away the cross call for threads is *    questionable (in theory the big win for threads is the massive sharing of *    address space state across processors). */void smp_flush_tlb_mm(struct mm_struct *mm){        /*         * This code is called from two places, dup_mmap and exit_mmap. In the         * former case, we really need a flush. In the later case, the callers         * are single threaded exec_mmap (really need a flush), multithreaded         * exec_mmap case (do not need to flush, since the caller gets a new         * context via activate_mm), and all other callers of mmput() whence         * the flush can be optimized since the associated threads are dead and         * the mm is being torn down (__exit_mm and other mmput callers) or the         * owning thread is dissociating itself from the mm. The         * (atomic_read(&mm->mm_users) == 0) check ensures real work is done         * for single thread exec and dup_mmap cases. An alternate check might         * have been (current->mm != mm).         *                                              Kanoj Sarcar         */        if (atomic_read(&mm->mm_users) == 0)                return;	{		u32 ctx = CTX_HWBITS(mm->context);		int cpu = smp_processor_id();		if (atomic_read(&mm->mm_users) == 1) {			/* See smp_flush_tlb_page for info about this. */			mm->cpu_vm_mask = (1UL << cpu);			goto local_flush_and_out;		}		smp_cross_call_masked(&xcall_flush_tlb_mm,				      ctx, 0, 0,				      mm->cpu_vm_mask);	local_flush_and_out:		__flush_tlb_mm(ctx, SECONDARY_CONTEXT);	}}void smp_flush_tlb_range(struct mm_struct *mm, unsigned long start,			 unsigned long end){	{		u32 ctx = CTX_HWBITS(mm->context);		int cpu = smp_processor_id();		start &= PAGE_MASK;		end    = PAGE_ALIGN(end);		if (mm == current->active_mm && atomic_read(&mm->mm_users) == 1) {			mm->cpu_vm_mask = (1UL << cpu);			goto local_flush_and_out;		}		smp_cross_call_masked(&xcall_flush_tlb_range,				      ctx, start, end,				      mm->cpu_vm_mask);	local_flush_and_out:		__flush_tlb_range(ctx, start, SECONDARY_CONTEXT, end, PAGE_SIZE, (end-start));	}}void smp_flush_tlb_page(struct mm_struct *mm, unsigned long page){	{		u32 ctx = CTX_HWBITS(mm->context);		int cpu = smp_processor_id();		page &= PAGE_MASK;		if (mm == current->active_mm && atomic_read(&mm->mm_users) == 1) {			/* By virtue of being the current address space, and			 * having the only reference to it, the following operation			 * is safe.			 *			 * It would not be a win to perform the xcall tlb flush in			 * this case, because even if we switch back to one of the			 * other processors in cpu_vm_mask it is almost certain that			 * all TLB entries for this context will be replaced by the			 * time that happens.			 */			mm->cpu_vm_mask = (1UL << cpu);			goto local_flush_and_out;		} else {			/* By virtue of running under the mm->page_table_lock,			 * and mmu_context.h:switch_mm doing the same, the following			 * operation is safe.			 */			if (mm->cpu_vm_mask == (1UL << cpu))				goto local_flush_and_out;		}		/* OK, we have to actually perform the cross call.  Most likely		 * this is a cloned mm or kswapd is kicking out pages for a task		 * which has run recently on another cpu.		 */		smp_cross_call_masked(&xcall_flush_tlb_page,				      ctx, page, 0,				      mm->cpu_vm_mask);		if (!(mm->cpu_vm_mask & (1UL << cpu)))			return;	local_flush_and_out:		__flush_tlb_page(ctx, page, SECONDARY_CONTEXT);	}}/* CPU capture. *//* #define CAPTURE_DEBUG */extern unsigned long xcall_capture;static atomic_t smp_capture_depth = ATOMIC_INIT(0);static atomic_t smp_capture_registry = ATOMIC_INIT(0);static unsigned long penguins_are_doing_time = 0;void smp_capture(void){	if (smp_processors_ready) {		int result = __atomic_add(1, &smp_capture_depth);		membar("#StoreStore | #LoadStore");		if (result == 1) {			int ncpus = smp_num_cpus;#ifdef CAPTURE_DEBUG			printk("CPU[%d]: Sending penguins to jail...",			       smp_processor_id());#endif			penguins_are_doing_time = 1;			membar("#StoreStore | #LoadStore");			atomic_inc(&smp_capture_registry);			smp_cross_call(&xcall_capture, 0, 0, 0);			while (atomic_read(&smp_capture_registry) != ncpus)				membar("#LoadLoad");#ifdef CAPTURE_DEBUG			printk("done\n");#endif		}	}}void smp_release(void){	if (smp_processors_ready) {		if (atomic_dec_and_test(&smp_capture_depth)) {#ifdef CAPTURE_DEBUG			printk("CPU[%d]: Giving pardon to imprisoned penguins\n",			       smp_processor_id());#endif			penguins_are_doing_time = 0;			membar("#StoreStore | #StoreLoad");			atomic_dec(&smp_capture_registry);		}	}}/* Imprisoned penguins run with %pil == 15, but PSTATE_IE set, so they * can service tlb flush xcalls... */extern void prom_world(int);extern void save_alternate_globals(unsigned long *);extern void restore_alternate_globals(unsigned long *);void smp_penguin_jailcell(void){	unsigned long global_save[24];	__asm__ __volatile__("flushw");	save_alternate_globals(global_save);	prom_world(1);	atomic_inc(&smp_capture_registry);	membar("#StoreLoad | #StoreStore");	while (penguins_are_doing_time)		membar("#LoadLoad");	restore_alternate_globals(global_save);	atomic_dec(&smp_capture_registry);	prom_world(0);}extern unsigned long xcall_promstop;void smp_promstop_others(void){	if (smp_processors_ready)		smp_cross_call(&xcall_promstop, 0, 0, 0);}extern void sparc64_do_profile(unsigned long pc, unsigned long o7);static unsigned long current_tick_offset;#define prof_multiplier(__cpu)		cpu_data[(__cpu)].multiplier#define prof_counter(__cpu)		cpu_data[(__cpu)].countervoid smp_percpu_timer_interrupt(struct pt_regs *regs){	unsigned long compare, tick, pstate;	int cpu = smp_processor_id();	int user = user_mode(regs);	/*	 * Check for level 14 softint.	 */	{		unsigned long tick_mask;		if (SPARC64_USE_STICK)			tick_mask = (1UL << 16);		else			tick_mask = (1UL << 0);		if (!(get_softint() & tick_mask)) {			extern void handler_irq(int, struct pt_regs *);			handler_irq(14, regs);			return;		}		clear_softint(tick_mask);	}	do {		if (!user)			sparc64_do_profile(regs->tpc, regs->u_regs[UREG_RETPC]);		if (!--prof_counter(cpu)) {			if (cpu == boot_cpu_id) {				irq_enter(cpu, 0);				kstat.irqs[cpu][0]++;				timer_tick_interrupt(regs);				irq_exit(cpu, 0);			}			update_process_times(user);			prof_counter(cpu) = prof_multiplier(cpu);		}		/* Guarentee that the following sequences execute		 * uninterrupted.		 */		__asm__ __volatile__("rdpr	%%pstate, %0\n\t"				     "wrpr	%0, %1, %%pstate"				     : "=r" (pstate)				     : "i" (PSTATE_IE));		/* Workaround for Spitfire Errata (#54 I think??), I discovered		 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch		 * number 103640.		 *		 * On Blackbird writes to %tick_cmpr can fail, the		 * workaround seems to be to execute the wr instruction		 * at the start of an I-cache line, and perform a dummy		 * read back from %tick_cmpr right after writing to it. -DaveM		 *		 * Just to be anal we add a workaround for Spitfire		 * Errata 50 by preventing pipeline bypasses on the		 * final read of the %tick register into a compare		 * instruction.  The Errata 50 description states		 * that %tick is not prone to this bug, but I am not		 * taking any chances.		 */		if (!SPARC64_USE_STICK) {		__asm__ __volatile__("rd	%%tick_cmpr, %0\n\t"				     "ba,pt	%%xcc, 1f\n\t"				     " add	%0, %2, %0\n\t"				     ".align	64\n"				  "1: wr	%0, 0x0, %%tick_cmpr\n\t"				     "rd	%%tick_cmpr, %%g0\n\t"				     "rd	%%tick, %1\n\t"				     "mov	%1, %1"				     : "=&r" (compare), "=r" (tick)				     : "r" (current_tick_offset));		} else {		__asm__ __volatile__("rd	%%asr25, %0\n\t"				     "add	%0, %2, %0\n\t"				     "wr	%0, 0x0, %%asr25\n\t"				     "rd	%%asr24, %1\n\t"				     : "=&r" (compare), "=r" (tick)				     : "r" (current_tick_offset));		}		/* Restore PSTATE_IE. */		__asm__ __volatile__("wrpr	%0, 0x0, %%pstate"				     : /* no outputs */				     : "r" (pstate));	} while (tick >= compare);}static void __init smp_setup_percpu_timer(void){	int cpu = smp_processor_id();	unsigned long pstate;	prof_counter(cpu) = prof_multiplier(cpu) = 1;	/* Guarentee that the following sequences execute	 * uninterrupted.	 */	__asm__ __volatile__("rdpr	%%pstate, %0\n\t"			     "wrpr	%0, %1, %%pstate"			     : "=r" (pstate)			     : "i" (PSTATE_IE));	/* Workaround for Spitfire Errata (#54 I think??), I discovered	 * this via Sun BugID 4008234, mentioned in Solaris-2.5.1 patch	 * number 103640.	 *	 * On Blackbird writes to %tick_cmpr can fail, the	 * workaround seems to be to execute the wr instruction	 * at the start of an I-cache line, and perform a dummy	 * read back from %tick_cmpr right after writing to it. -DaveM	 */	if (!SPARC64_USE_STICK) {	__asm__ __volatile__("		rd	%%tick, %%g1		ba,pt	%%xcc, 1f		 add	%%g1, %0, %%g1		.align	64	1:	wr	%%g1, 0x0, %%tick_cmpr		rd	%%tick_cmpr, %%g0"	: /* no outputs */	: "r" (current_tick_offset)	: "g1");	} else {	__asm__ __volatile__("		rd	%%asr24, %%g1		add	%%g1, %0, %%g1		wr	%%g1, 0x0, %%asr25"	: /* no outputs */	: "r" (current_tick_offset)	: "g1");	}	/* Restore PSTATE_IE. */	__asm__ __volatile__("wrpr	%0, 0x0, %%pstate"			     : /* no outputs */			     : "r" (pstate));}void __init smp_tick_init(void){	int i;		boot_cpu_id = hard_smp_processor_id();	current_tick_offset = timer_tick_offset;	cpu_present_map = 0;	for (i = 0; i < linux_num_cpus; i++)		cpu_present_map |= (1UL << linux_cpus[i].mid);	for (i = 0; i < NR_CPUS; i++) {		__cpu_number_map[i] = -1;		__cpu_logical_map[i] = -1;	}	__cpu_number_map[boot_cpu_id] = 0;	prom_cpu_nodes[boot_cpu_id] = linux_cpus[0].prom_node;	__cpu_logical_map[0] = boot_cpu_id;	current->processor = boot_cpu_id;	prof_counter(boot_cpu_id) = prof_multiplier(boot_cpu_id) = 1;}static inline unsigned long find_flush_base(unsigned long size){	struct page *p = mem_map;	unsigned long found, base;	size = PAGE_ALIGN(size);	found = size;	base = (unsigned long) page_address(p);	while (found != 0) {		/* Failure. */		if (p >= (mem_map + max_mapnr))			return 0UL;		if (PageReserved(p)) {			found = size;			base = (unsigned long) page_address(p);		} else {			found -= PAGE_SIZE;		}		p++;	}	return base;}/* /proc/profile writes can call this, don't __init it please. */int setup_profiling_timer(unsigned int multiplier){	unsigned long flags;	int i;	if ((!multiplier) || (timer_tick_offset / multiplier) < 1000)		return -EINVAL;	save_and_cli(flags);	for (i = 0; i < NR_CPUS; i++) {		if (cpu_present_map & (1UL << i))			prof_multiplier(i) = multiplier;	}	current_tick_offset = (timer_tick_offset / multiplier);	restore_flags(flags);	return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -