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

📄 head.s

📁 上传linux-jx2410的源代码
💻 S
📖 第 1 页 / 共 2 页
字号:
/* * Here is where the ball gets rolling as far as the kernel is concerned. * When control is transferred to _start, the bootload has already * loaded us to the correct address.  All that's left to do here is * to set up the kernel's global pointer and jump to the kernel * entry point. * * Copyright (C) 1998-2001 Hewlett-Packard Co *	David Mosberger-Tang <davidm@hpl.hp.com> *	Stephane Eranian <eranian@hpl.hp.com> * Copyright (C) 1999 VA Linux Systems * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> * Copyright (C) 1999 Intel Corp. * Copyright (C) 1999 Asit Mallick <Asit.K.Mallick@intel.com> * Copyright (C) 1999 Don Dugger <Don.Dugger@intel.com> */#include <linux/config.h>#include <asm/asmmacro.h>#include <asm/fpu.h>#include <asm/kregs.h>#include <asm/mmu_context.h>#include <asm/offsets.h>#include <asm/pal.h>#include <asm/pgtable.h>#include <asm/processor.h>#include <asm/ptrace.h>#include <asm/system.h>	.section __special_page_section,"ax"	.global empty_zero_pageempty_zero_page:	.skip PAGE_SIZE	.global swapper_pg_dirswapper_pg_dir:	.skip PAGE_SIZE	.rodatahalt_msg:	stringz "Halting kernel\n"	.text	.global start_ap	/*	 * Start the kernel.  When the bootloader passes control to _start(), r28	 * points to the address of the boot parameter area.  Execution reaches	 * here in physical mode.	 */GLOBAL_ENTRY(_start)start_ap:	.prologue	.save rp, r4		// terminate unwind chain with a NULL rp	mov r4=r0	.body	/*	 * Initialize the region register for region 7 and install a translation register	 * that maps the kernel's text and data:	 */	rsm psr.i | psr.ic	mov r16=((ia64_rid(IA64_REGION_ID_KERNEL, PAGE_OFFSET) << 8) | (IA64_GRANULE_SHIFT << 2))	;;	srlz.i	mov r18=KERNEL_TR_PAGE_SHIFT<<2	movl r17=KERNEL_START	;;	mov rr[r17]=r16	mov cr.itir=r18	mov cr.ifa=r17	mov r16=IA64_TR_KERNEL	movl r18=((1 << KERNEL_TR_PAGE_SHIFT) | PAGE_KERNEL)	;;	srlz.i	;;	itr.i itr[r16]=r18	;;	itr.d dtr[r16]=r18	;;	srlz.i	/*	 * Switch into virtual mode:	 */	movl r16=(IA64_PSR_IT|IA64_PSR_IC|IA64_PSR_DT|IA64_PSR_RT|IA64_PSR_DFH|IA64_PSR_BN \		  |IA64_PSR_DI)	;;	mov cr.ipsr=r16	movl r17=1f	;;	mov cr.iip=r17	mov cr.ifs=r0	;;	rfi	;;1:	// now we are in virtual mode	// set IVT entry point---can't access I/O ports without it	movl r3=ia64_ivt	;;	mov cr.iva=r3	movl r2=FPSR_DEFAULT	;;	srlz.i	movl gp=__gp	mov ar.fpsr=r2	;;#ifdef CONFIG_IA64_EARLY_PRINTK	mov r3=(6<<8) | (IA64_GRANULE_SHIFT<<2)	movl r2=6<<61	;;	mov rr[r2]=r3	;;	srlz.i	;;#endif#define isAP	p2	// are we an Application Processor?#define isBP	p3	// are we the Bootstrap Processor?#ifdef CONFIG_SMP	/*	 * Find the init_task for the currently booting CPU.  At poweron, and in	 * UP mode, cpucount is 0.	 */	movl r3=cpucount 	;;	ld4 r3=[r3]		// r3 <- smp_processor_id()	movl r2=init_tasks	;;	shladd r2=r3,3,r2	;;	ld8 r2=[r2]#else	mov r3=0	movl r2=init_task_union	;;#endif	cmp4.ne isAP,isBP=r3,r0	;;			// RAW on r2	extr r3=r2,0,61		// r3 == phys addr of task struct	mov r16=KERNEL_TR_PAGE_NUM	;;	// load the "current" pointer (r13) and ar.k6 with the current task	mov r13=r2	mov IA64_KR(CURRENT)=r3		// Physical address	// initialize k4 to a safe value (64-128MB is mapped by TR_KERNEL)	mov IA64_KR(CURRENT_STACK)=r16	/*	 * Reserve space at the top of the stack for "struct pt_regs".  Kernel threads	 * don't store interesting values in that structure, but the space still needs	 * to be there because time-critical stuff such as the context switching can	 * be implemented more efficiently (for example, __switch_to()	 * always sets the psr.dfh bit of the task it is switching to).	 */	addl r12=IA64_STK_OFFSET-IA64_PT_REGS_SIZE-16,r2	addl r2=IA64_RBS_OFFSET,r2	// initialize the RSE	mov ar.rsc=0		// place RSE in enforced lazy mode	;;	loadrs			// clear the dirty partition	;;	mov ar.bspstore=r2	// establish the new RSE stack	;;	mov ar.rsc=0x3		// place RSE in eager mode(isBP)	dep r28=-1,r28,61,3	// make address virtual(isBP)	movl r2=ia64_boot_param	;;(isBP)	st8 [r2]=r28		// save the address of the boot param area passed by the bootloader#ifdef CONFIG_IA64_EARLY_PRINTK	.rodataalive_msg:	stringz "I'm alive and well\n"	.previous	alloc r2=ar.pfs,0,0,2,0	movl out0=alive_msg	;;	br.call.sptk.many rp=early_printk1:	// force new bundle#endif /* CONFIG_IA64_EARLY_PRINTK */#ifdef CONFIG_SMP(isAP)	br.call.sptk.many rp=start_secondary.ret0:(isAP)	br.cond.sptk self#endif	// This is executed by the bootstrap processor (bsp) only:#ifdef CONFIG_IA64_FW_EMU	// initialize PAL & SAL emulator:	br.call.sptk.many rp=sys_fw_init.ret1:#endif	br.call.sptk.many rp=start_kernel.ret2:	addl r3=@ltoff(halt_msg),gp	;;	alloc r2=ar.pfs,8,0,2,0	;;	ld8 out0=[r3]	br.call.sptk.many b0=console_printself:	br.sptk.many self		// endless loopEND(_start)GLOBAL_ENTRY(ia64_save_debug_regs)	alloc r16=ar.pfs,1,0,0,0	mov r20=ar.lc			// preserve ar.lc	mov ar.lc=IA64_NUM_DBG_REGS-1	mov r18=0	add r19=IA64_NUM_DBG_REGS*8,in0	;;1:	mov r16=dbr[r18]#ifdef CONFIG_ITANIUM	;;	srlz.d#endif	mov r17=ibr[r18]	add r18=1,r18	;;	st8.nta [in0]=r16,8	st8.nta [r19]=r17,8	br.cloop.sptk.many 1b	;;	mov ar.lc=r20			// restore ar.lc	br.ret.sptk.many rpEND(ia64_save_debug_regs)GLOBAL_ENTRY(ia64_load_debug_regs)	alloc r16=ar.pfs,1,0,0,0	lfetch.nta [in0]	mov r20=ar.lc			// preserve ar.lc	add r19=IA64_NUM_DBG_REGS*8,in0	mov ar.lc=IA64_NUM_DBG_REGS-1	mov r18=-1	;;1:	ld8.nta r16=[in0],8	ld8.nta r17=[r19],8	add r18=1,r18	;;	mov dbr[r18]=r16#ifdef CONFIG_ITANIUM	;;	srlz.d				// Errata 132 (NoFix status)#endif	mov ibr[r18]=r17	br.cloop.sptk.many 1b	;;	mov ar.lc=r20			// restore ar.lc	br.ret.sptk.many rpEND(ia64_load_debug_regs)GLOBAL_ENTRY(__ia64_save_fpu)	alloc r2=ar.pfs,1,0,0,0	adds r3=16,in0	;;	stf.spill.nta [in0]=f32,32	stf.spill.nta [ r3]=f33,32	;;	stf.spill.nta [in0]=f34,32	stf.spill.nta [ r3]=f35,32	;;	stf.spill.nta [in0]=f36,32	stf.spill.nta [ r3]=f37,32	;;	stf.spill.nta [in0]=f38,32	stf.spill.nta [ r3]=f39,32	;;	stf.spill.nta [in0]=f40,32	stf.spill.nta [ r3]=f41,32	;;	stf.spill.nta [in0]=f42,32	stf.spill.nta [ r3]=f43,32	;;	stf.spill.nta [in0]=f44,32	stf.spill.nta [ r3]=f45,32	;;	stf.spill.nta [in0]=f46,32	stf.spill.nta [ r3]=f47,32	;;	stf.spill.nta [in0]=f48,32	stf.spill.nta [ r3]=f49,32	;;	stf.spill.nta [in0]=f50,32	stf.spill.nta [ r3]=f51,32	;;	stf.spill.nta [in0]=f52,32	stf.spill.nta [ r3]=f53,32	;;	stf.spill.nta [in0]=f54,32	stf.spill.nta [ r3]=f55,32	;;	stf.spill.nta [in0]=f56,32	stf.spill.nta [ r3]=f57,32	;;	stf.spill.nta [in0]=f58,32	stf.spill.nta [ r3]=f59,32	;;	stf.spill.nta [in0]=f60,32	stf.spill.nta [ r3]=f61,32	;;	stf.spill.nta [in0]=f62,32	stf.spill.nta [ r3]=f63,32	;;	stf.spill.nta [in0]=f64,32	stf.spill.nta [ r3]=f65,32	;;	stf.spill.nta [in0]=f66,32	stf.spill.nta [ r3]=f67,32	;;	stf.spill.nta [in0]=f68,32	stf.spill.nta [ r3]=f69,32	;;	stf.spill.nta [in0]=f70,32	stf.spill.nta [ r3]=f71,32	;;	stf.spill.nta [in0]=f72,32	stf.spill.nta [ r3]=f73,32	;;	stf.spill.nta [in0]=f74,32	stf.spill.nta [ r3]=f75,32	;;	stf.spill.nta [in0]=f76,32	stf.spill.nta [ r3]=f77,32	;;	stf.spill.nta [in0]=f78,32	stf.spill.nta [ r3]=f79,32	;;	stf.spill.nta [in0]=f80,32	stf.spill.nta [ r3]=f81,32	;;	stf.spill.nta [in0]=f82,32	stf.spill.nta [ r3]=f83,32	;;	stf.spill.nta [in0]=f84,32	stf.spill.nta [ r3]=f85,32	;;	stf.spill.nta [in0]=f86,32	stf.spill.nta [ r3]=f87,32	;;	stf.spill.nta [in0]=f88,32	stf.spill.nta [ r3]=f89,32	;;	stf.spill.nta [in0]=f90,32	stf.spill.nta [ r3]=f91,32	;;	stf.spill.nta [in0]=f92,32	stf.spill.nta [ r3]=f93,32	;;	stf.spill.nta [in0]=f94,32	stf.spill.nta [ r3]=f95,32	;;	stf.spill.nta [in0]=f96,32	stf.spill.nta [ r3]=f97,32	;;	stf.spill.nta [in0]=f98,32	stf.spill.nta [ r3]=f99,32	;;	stf.spill.nta [in0]=f100,32	stf.spill.nta [ r3]=f101,32	;;	stf.spill.nta [in0]=f102,32	stf.spill.nta [ r3]=f103,32	;;	stf.spill.nta [in0]=f104,32	stf.spill.nta [ r3]=f105,32	;;	stf.spill.nta [in0]=f106,32	stf.spill.nta [ r3]=f107,32	;;	stf.spill.nta [in0]=f108,32	stf.spill.nta [ r3]=f109,32	;;	stf.spill.nta [in0]=f110,32	stf.spill.nta [ r3]=f111,32	;;	stf.spill.nta [in0]=f112,32	stf.spill.nta [ r3]=f113,32	;;	stf.spill.nta [in0]=f114,32	stf.spill.nta [ r3]=f115,32	;;	stf.spill.nta [in0]=f116,32	stf.spill.nta [ r3]=f117,32	;;	stf.spill.nta [in0]=f118,32	stf.spill.nta [ r3]=f119,32	;;	stf.spill.nta [in0]=f120,32	stf.spill.nta [ r3]=f121,32	;;	stf.spill.nta [in0]=f122,32	stf.spill.nta [ r3]=f123,32	;;	stf.spill.nta [in0]=f124,32	stf.spill.nta [ r3]=f125,32	;;	stf.spill.nta [in0]=f126,32	stf.spill.nta [ r3]=f127,32	br.ret.sptk.many rpEND(__ia64_save_fpu)GLOBAL_ENTRY(__ia64_load_fpu)	alloc r2=ar.pfs,1,0,0,0	adds r3=16,in0	;;	ldf.fill.nta f32=[in0],32	ldf.fill.nta f33=[ r3],32	;;

⌨️ 快捷键说明

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