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

📄 mips32.c

📁 上传linux-jx2410的源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
	entry = get_wired();	/* Blast 'em all away. */	while(entry < mips_cpu.tlbsize) {	        /* Make sure all entries differ. */  	        set_entryhi(KSEG0+entry*0x2000);		set_index(entry);		BARRIER;		tlb_write_indexed();		BARRIER;		entry++;	}	BARRIER;	set_entryhi(old_ctx);	__restore_flags(flags);}void flush_tlb_mm(struct mm_struct *mm){	if (mm->context != 0) {		unsigned long flags;#ifdef DEBUG_TLB		printk("[tlbmm<%d>]", mm->context);#endif		__save_and_cli(flags);		get_new_mmu_context(mm, asid_cache);		if (mm == current->active_mm)			set_entryhi(mm->context & 0xff);		__restore_flags(flags);	}}void flush_tlb_range(struct mm_struct *mm, unsigned long start,				unsigned long end){	if(mm->context != 0) {		unsigned long flags;		int size;#ifdef DEBUG_TLB		printk("[tlbrange<%02x,%08lx,%08lx>]", (mm->context & 0xff),		       start, end);#endif		__save_and_cli(flags);		size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;		size = (size + 1) >> 1;		if(size <= mips_cpu.tlbsize/2) {			int oldpid = (get_entryhi() & 0xff);			int newpid = (mm->context & 0xff);			start &= (PAGE_MASK << 1);			end += ((PAGE_SIZE << 1) - 1);			end &= (PAGE_MASK << 1);			while(start < end) {				int idx;				set_entryhi(start | newpid);				start += (PAGE_SIZE << 1);				BARRIER;				tlb_probe();				BARRIER;				idx = get_index();				set_entrylo0(0);				set_entrylo1(0);				if(idx < 0)					continue;				/* Make sure all entries differ. */				set_entryhi(KSEG0+idx*0x2000);				BARRIER;				tlb_write_indexed();				BARRIER;			}			set_entryhi(oldpid);		} else {			get_new_mmu_context(mm, asid_cache);			if (mm == current->active_mm)				set_entryhi(mm->context & 0xff);		}		__restore_flags(flags);	}}void flush_tlb_page(struct vm_area_struct *vma, unsigned long page){	if (vma->vm_mm->context != 0) {		unsigned long flags;		int oldpid, newpid, idx;#ifdef DEBUG_TLB		printk("[tlbpage<%d,%08lx>]", vma->vm_mm->context, page);#endif		newpid = (vma->vm_mm->context & 0xff);		page &= (PAGE_MASK << 1);		__save_and_cli(flags);		oldpid = (get_entryhi() & 0xff);		set_entryhi(page | newpid);		BARRIER;		tlb_probe();		BARRIER;		idx = get_index();		set_entrylo0(0);		set_entrylo1(0);		if(idx < 0)			goto finish;		/* Make sure all entries differ. */  		set_entryhi(KSEG0+idx*0x2000);		BARRIER;		tlb_write_indexed();	finish:		BARRIER;		set_entryhi(oldpid);		__restore_flags(flags);	}}void pgd_init(unsigned long page){	unsigned long *p = (unsigned long *) page;	int i;	for(i = 0; i < USER_PTRS_PER_PGD; i+=8) {		p[i + 0] = (unsigned long) invalid_pte_table;		p[i + 1] = (unsigned long) invalid_pte_table;		p[i + 2] = (unsigned long) invalid_pte_table;		p[i + 3] = (unsigned long) invalid_pte_table;		p[i + 4] = (unsigned long) invalid_pte_table;		p[i + 5] = (unsigned long) invalid_pte_table;		p[i + 6] = (unsigned long) invalid_pte_table;		p[i + 7] = (unsigned long) invalid_pte_table;	}}/*  * Updates the TLB with the new pte(s). */void update_mmu_cache(struct vm_area_struct * vma,		      unsigned long address, pte_t pte){	unsigned long flags;	pgd_t *pgdp;	pmd_t *pmdp;	pte_t *ptep;	int idx, pid;	/*	 * Handle debugger faulting in for debugee.	 */	if (current->active_mm != vma->vm_mm)		return;	pid = get_entryhi() & 0xff;#ifdef DEBUG_TLB	if((pid != (vma->vm_mm->context & 0xff)) || (vma->vm_mm->context == 0)) {		printk("update_mmu_cache: Wheee, bogus tlbpid mmpid=%d tlbpid=%d\n",		       (int) (vma->vm_mm->context & 0xff), pid);	}#endif	__save_and_cli(flags);	address &= (PAGE_MASK << 1);	set_entryhi(address | (pid));	pgdp = pgd_offset(vma->vm_mm, address);	BARRIER;	tlb_probe();	BARRIER;	pmdp = pmd_offset(pgdp, address);	idx = get_index();	ptep = pte_offset(pmdp, address);	BARRIER;	set_entrylo0(pte_val(*ptep++) >> 6);	set_entrylo1(pte_val(*ptep) >> 6);	set_entryhi(address | (pid));	BARRIER;	if(idx < 0) {		tlb_write_random();	} else {		tlb_write_indexed();	}	BARRIER;	set_entryhi(pid);	BARRIER;	__restore_flags(flags);}void show_regs(struct pt_regs * regs){	/* Saved main processor registers. */	printk("$0 : %08lx %08lx %08lx %08lx\n",	       0UL, regs->regs[1], regs->regs[2], regs->regs[3]);	printk("$4 : %08lx %08lx %08lx %08lx\n",               regs->regs[4], regs->regs[5], regs->regs[6], regs->regs[7]);	printk("$8 : %08lx %08lx %08lx %08lx\n",	       regs->regs[8], regs->regs[9], regs->regs[10], regs->regs[11]);	printk("$12: %08lx %08lx %08lx %08lx\n",               regs->regs[12], regs->regs[13], regs->regs[14], regs->regs[15]);	printk("$16: %08lx %08lx %08lx %08lx\n",	       regs->regs[16], regs->regs[17], regs->regs[18], regs->regs[19]);	printk("$20: %08lx %08lx %08lx %08lx\n",               regs->regs[20], regs->regs[21], regs->regs[22], regs->regs[23]);	printk("$24: %08lx %08lx\n",	       regs->regs[24], regs->regs[25]);	printk("$28: %08lx %08lx %08lx %08lx\n",	       regs->regs[28], regs->regs[29], regs->regs[30], regs->regs[31]);	/* Saved cp0 registers. */	printk("epc   : %08lx    %s\nStatus: %08lx\nCause : %08lx\n",	       regs->cp0_epc, print_tainted(), regs->cp0_status, regs->cp0_cause);}			void add_wired_entry(unsigned long entrylo0, unsigned long entrylo1,				      unsigned long entryhi, unsigned long pagemask){        unsigned long flags;        unsigned long wired;        unsigned long old_pagemask;        unsigned long old_ctx;        __save_and_cli(flags);        /* Save old context and create impossible VPN2 value */        old_ctx = (get_entryhi() & 0xff);        old_pagemask = get_pagemask();        wired = get_wired();        set_wired (wired + 1);        set_index (wired);        BARRIER;            set_pagemask (pagemask);        set_entryhi(entryhi);        set_entrylo0(entrylo0);        set_entrylo1(entrylo1);        BARRIER;            tlb_write_indexed();        BARRIER;                set_entryhi(old_ctx);        BARRIER;            set_pagemask (old_pagemask);        flush_tlb_all();            __restore_flags(flags);}/* Detect and size the various caches. */static void __init probe_icache(unsigned long config){        unsigned long config1;	unsigned int lsize;        if (!(config & (1 << 31))) {	        /* 		 * Not a MIPS32 complainant CPU. 		 * Config 1 register not supported, we assume R4k style.		 */	        icache_size = 1 << (12 + ((config >> 9) & 7));		ic_lsize = 16 << ((config >> 5) & 1);		mips_cpu.icache.linesz = ic_lsize;				/* 		 * We cannot infer associativity - assume direct map		 * unless probe template indicates otherwise		 */		if(!mips_cpu.icache.ways) mips_cpu.icache.ways = 1;		mips_cpu.icache.sets = 			(icache_size / ic_lsize) / mips_cpu.icache.ways;	} else {	       config1 = read_mips32_cp0_config1(); 	       if ((lsize = ((config1 >> 19) & 7)))		       mips_cpu.icache.linesz = 2 << lsize;	       else 		       mips_cpu.icache.linesz = lsize;	       mips_cpu.icache.sets = 64 << ((config1 >> 22) & 7);	       mips_cpu.icache.ways = 1 + ((config1 >> 16) & 7);	       ic_lsize = mips_cpu.icache.linesz;	       icache_size = mips_cpu.icache.sets * mips_cpu.icache.ways * 		             ic_lsize;	}	printk("Primary instruction cache %dkb, linesize %d bytes (%d ways)\n",	       icache_size >> 10, ic_lsize, mips_cpu.icache.ways);}static void __init probe_dcache(unsigned long config){        unsigned long config1;	unsigned int lsize;        if (!(config & (1 << 31))) {	        /* 		 * Not a MIPS32 complainant CPU. 		 * Config 1 register not supported, we assume R4k style.		 */  		dcache_size = 1 << (12 + ((config >> 6) & 7));		dc_lsize = 16 << ((config >> 4) & 1);		mips_cpu.dcache.linesz = dc_lsize;		/* 		 * We cannot infer associativity - assume direct map		 * unless probe template indicates otherwise		 */		if(!mips_cpu.dcache.ways) mips_cpu.dcache.ways = 1;		mips_cpu.dcache.sets = 			(dcache_size / dc_lsize) / mips_cpu.dcache.ways;	} else {	        config1 = read_mips32_cp0_config1();		if ((lsize = ((config1 >> 10) & 7)))		        mips_cpu.dcache.linesz = 2 << lsize;		else 		        mips_cpu.dcache.linesz= lsize;		mips_cpu.dcache.sets = 64 << ((config1 >> 13) & 7);		mips_cpu.dcache.ways = 1 + ((config1 >> 7) & 7);		dc_lsize = mips_cpu.dcache.linesz;		dcache_size = 			mips_cpu.dcache.sets * mips_cpu.dcache.ways			* dc_lsize;	}	printk("Primary data cache %dkb, linesize %d bytes (%d ways)\n",	       dcache_size >> 10, dc_lsize, mips_cpu.dcache.ways);}/* If you even _breathe_ on this function, look at the gcc output * and make sure it does not pop things on and off the stack for * the cache sizing loop that executes in KSEG1 space or else * you will crash and burn badly.  You have been warned. */static int __init probe_scache(unsigned long config){	extern unsigned long stext;	unsigned long flags, addr, begin, end, pow2;	int tmp;	if (mips_cpu.scache.flags == MIPS_CACHE_NOT_PRESENT)		return 0;	tmp = ((config >> 17) & 1);	if(tmp)		return 0;	tmp = ((config >> 22) & 3);	switch(tmp) {	case 0:		sc_lsize = 16;		break;	case 1:		sc_lsize = 32;		break;	case 2:		sc_lsize = 64;		break;	case 3:		sc_lsize = 128;		break;	}	begin = (unsigned long) &stext;	begin &= ~((4 * 1024 * 1024) - 1);	end = begin + (4 * 1024 * 1024);	/* This is such a bitch, you'd think they would make it	 * easy to do this.  Away you daemons of stupidity!	 */	__save_and_cli(flags);	/* Fill each size-multiple cache line with a valid tag. */	pow2 = (64 * 1024);	for(addr = begin; addr < end; addr = (begin + pow2)) {		unsigned long *p = (unsigned long *) addr;		__asm__ __volatile__("nop" : : "r" (*p)); /* whee... */		pow2 <<= 1;	}	/* Load first line with zero (therefore invalid) tag. */	set_taglo(0);	set_taghi(0);	__asm__ __volatile__("nop; nop; nop; nop;"); /* avoid the hazard */	__asm__ __volatile__("\n\t.set noreorder\n\t"			     ".set mips3\n\t"			     "cache 8, (%0)\n\t"			     ".set mips0\n\t"			     ".set reorder\n\t" : : "r" (begin));	__asm__ __volatile__("\n\t.set noreorder\n\t"			     ".set mips3\n\t"			     "cache 9, (%0)\n\t"			     ".set mips0\n\t"			     ".set reorder\n\t" : : "r" (begin));	__asm__ __volatile__("\n\t.set noreorder\n\t"			     ".set mips3\n\t"			     "cache 11, (%0)\n\t"			     ".set mips0\n\t"			     ".set reorder\n\t" : : "r" (begin));	/* Now search for the wrap around point. */	pow2 = (128 * 1024);	tmp = 0;	for(addr = (begin + (128 * 1024)); addr < (end); addr = (begin + pow2)) {		__asm__ __volatile__("\n\t.set noreorder\n\t"				     ".set mips3\n\t"				     "cache 7, (%0)\n\t"				     ".set mips0\n\t"				     ".set reorder\n\t" : : "r" (addr));		__asm__ __volatile__("nop; nop; nop; nop;"); /* hazard... */		if(!get_taglo())			break;		pow2 <<= 1;	}	__restore_flags(flags);	addr -= begin;	printk("Secondary cache sized at %dK linesize %d bytes.\n",	       (int) (addr >> 10), sc_lsize);	scache_size = addr;	return 1;}static void __init setup_noscache_funcs(void){	_clear_page = (void *)mips32_clear_page_dc;	_copy_page = (void *)mips32_copy_page_dc;	_flush_cache_all = mips32_flush_cache_all_pc;	___flush_cache_all = mips32_flush_cache_all_pc;	_flush_cache_mm = mips32_flush_cache_mm_pc;	_flush_cache_range = mips32_flush_cache_range_pc;	_flush_cache_page = mips32_flush_cache_page_pc;	_flush_page_to_ram = mips32_flush_page_to_ram_pc;	_flush_icache_page = mips32_flush_icache_page;	_dma_cache_wback_inv = mips32_dma_cache_wback_inv_pc;	_dma_cache_wback = mips32_dma_cache_wback;	_dma_cache_inv = mips32_dma_cache_inv_pc;}static void __init setup_scache_funcs(void){        _flush_cache_all = mips32_flush_cache_all_sc;        ___flush_cache_all = mips32_flush_cache_all_sc;	_flush_cache_mm = mips32_flush_cache_mm_sc;	_flush_cache_range = mips32_flush_cache_range_sc;	_flush_cache_page = mips32_flush_cache_page_sc;	_flush_page_to_ram = mips32_flush_page_to_ram_sc;	_clear_page = (void *)mips32_clear_page_sc;	_copy_page = (void *)mips32_copy_page_sc;	_flush_icache_page = mips32_flush_icache_page_s;	_dma_cache_wback_inv = mips32_dma_cache_wback_inv_sc;	_dma_cache_wback = mips32_dma_cache_wback;	_dma_cache_inv = mips32_dma_cache_inv_sc;}typedef int (*probe_func_t)(unsigned long);static inline void __init setup_scache(unsigned int config){	probe_func_t probe_scache_kseg1;	int sc_present = 0;	/* Maybe the cpu knows about a l2 cache? */	probe_scache_kseg1 = (probe_func_t) (KSEG1ADDR(&probe_scache));	sc_present = probe_scache_kseg1(config);	if (sc_present) {	  	mips_cpu.scache.linesz = sc_lsize;		/* 		 * We cannot infer associativity - assume direct map		 * unless probe template indicates otherwise		 */		if(!mips_cpu.scache.ways) mips_cpu.scache.ways = 1;		mips_cpu.scache.sets = 		  (scache_size / sc_lsize) / mips_cpu.scache.ways;		setup_scache_funcs();		return;	}	setup_noscache_funcs();}static void __init probe_tlb(unsigned long config){        unsigned long config1;        if (!(config & (1 << 31))) {	        /* 		 * Not a MIPS32 complainant CPU. 		 * Config 1 register not supported, we assume R4k style.		 */  	        mips_cpu.tlbsize = 48;	} else {	        config1 = read_mips32_cp0_config1();		if (!((config >> 7) & 3))		        panic("No MMU present");		else		        mips_cpu.tlbsize = ((config1 >> 25) & 0x3f) + 1;	}		printk("Number of TLB entries %d.\n", mips_cpu.tlbsize);}void __init ld_mmu_mips32(void){	unsigned long config = read_32bit_cp0_register(CP0_CONFIG);	printk("CPU revision is: %08x\n", read_32bit_cp0_register(CP0_PRID));#ifdef CONFIG_MIPS_UNCACHED	change_cp0_config(CONF_CM_CMASK, CONF_CM_UNCACHED);#else	change_cp0_config(CONF_CM_CMASK, CONF_CM_CACHABLE_NONCOHERENT);#endif	probe_icache(config);	probe_dcache(config);	setup_scache(config);	probe_tlb(config);	_flush_cache_sigtramp = mips32_flush_cache_sigtramp;	_flush_icache_range = mips32_flush_icache_range;	/* Ouch */	__flush_cache_all();	write_32bit_cp0_register(CP0_WIRED, 0);	/*	 * You should never change this register:	 *   - The entire mm handling assumes the c0_pagemask register to	 *     be set for 4kb pages.	 */	write_32bit_cp0_register(CP0_PAGEMASK, PM_4K);	flush_tlb_all();}

⌨️ 快捷键说明

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