| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | /* | 
					
						
							|  |  |  |  * This file contains miscellaneous low-level functions. | 
					
						
							|  |  |  |  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Largely rewritten by Cort Dougan (cort@cs.nmt.edu)
 | 
					
						
							|  |  |  |  * and Paul Mackerras. | 
					
						
							|  |  |  |  * Adapted for iSeries by Mike Corrigan (mikejc@us.ibm.com)
 | 
					
						
							| 
									
										
										
										
											2006-06-28 11:55:49 +10:00
										 |  |  |  * PPC64 updates by Dave Engebretsen (engebret@us.ibm.com)
 | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  |  * This program is free software; you can redistribute it and/or
 | 
					
						
							|  |  |  |  * modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  |  * as published by the Free Software Foundation; either version
 | 
					
						
							|  |  |  |  * 2 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/sys.h> | 
					
						
							|  |  |  | #include <asm/unistd.h> | 
					
						
							|  |  |  | #include <asm/errno.h> | 
					
						
							|  |  |  | #include <asm/processor.h> | 
					
						
							|  |  |  | #include <asm/page.h> | 
					
						
							|  |  |  | #include <asm/cache.h> | 
					
						
							|  |  |  | #include <asm/ppc_asm.h> | 
					
						
							|  |  |  | #include <asm/asm-offsets.h> | 
					
						
							|  |  |  | #include <asm/cputable.h> | 
					
						
							| 
									
										
											  
											
												[PATCH] powerpc: Merge thread_info.h
Merge ppc32 and ppc64 versions of thread_info.h.  They were pretty
similar already, the chief changes are:
	- Instead of inline asm to implement current_thread_info(),
which needs to be different for ppc32 and ppc64, we use C with an
asm("r1") register variable.  gcc turns it into the same asm as we
used to have for both platforms.
	- We replace ppc32's 'local_flags' with the ppc64
'syscall_noerror' field.  The noerror flag was in fact the only thing
in the local_flags field anyway, so the ppc64 approach is simpler, and
means we only need a load-immediate/store instead of load/mask/store
when clearing the flag.
	- In readiness for 64k pages, when THREAD_SIZE will be less
than a page, ppc64 used kmalloc() rather than get_free_pages() to
allocate the kernel stack.  With this patch we do the same for ppc32,
since there's no strong reason not to.
	- For ppc64, we no longer export THREAD_SHIFT and THREAD_SIZE
via asm-offsets, thread_info.h can now be safely included in asm, as
on ppc32.
Built and booted on G4 Powerbook (ARCH=ppc and ARCH=powerpc) and
Power5 (ARCH=ppc64 and ARCH=powerpc).
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
											
										 
											2005-10-21 15:45:50 +10:00
										 |  |  | #include <asm/thread_info.h> | 
					
						
							| 
									
										
										
										
											2010-05-13 19:40:11 +00:00
										 |  |  | #include <asm/kexec.h> | 
					
						
							| 
									
										
										
										
											2010-11-18 15:06:17 +00:00
										 |  |  | #include <asm/ptrace.h> | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	.text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GLOBAL(call_do_softirq) | 
					
						
							|  |  |  | 	mflr	r0 | 
					
						
							|  |  |  | 	std	r0,16(r1) | 
					
						
							| 
									
										
										
										
											2008-04-24 13:20:16 +10:00
										 |  |  | 	stdu	r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r3) | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 	mr	r1,r3 | 
					
						
							| 
									
										
										
										
											2014-02-04 16:04:35 +11:00
										 |  |  | 	bl	__do_softirq | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 	ld	r1,0(r1) | 
					
						
							|  |  |  | 	ld	r0,16(r1) | 
					
						
							|  |  |  | 	mtlr	r0 | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-23 14:29:11 +10:00
										 |  |  | _GLOBAL(call_do_irq) | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 	mflr	r0 | 
					
						
							|  |  |  | 	std	r0,16(r1) | 
					
						
							| 
									
										
										
										
											2013-09-23 14:29:11 +10:00
										 |  |  | 	stdu	r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r4) | 
					
						
							|  |  |  | 	mr	r1,r4 | 
					
						
							| 
									
										
										
										
											2014-02-04 16:04:35 +11:00
										 |  |  | 	bl	__do_irq | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 	ld	r1,0(r1) | 
					
						
							|  |  |  | 	ld	r0,16(r1) | 
					
						
							|  |  |  | 	mtlr	r0 | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.section	".toc","aw" | 
					
						
							|  |  |  | PPC64_CACHES: | 
					
						
							|  |  |  | 	.tc		ppc64_caches[TC],ppc64_caches | 
					
						
							|  |  |  | 	.section	".text" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Write any modified data cache blocks out to memory | 
					
						
							|  |  |  |  * and invalidate the corresponding instruction cache blocks. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * flush_icache_range(unsigned long start, unsigned long stop) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   flush all bytes from start through stop-1 inclusive | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-06 18:23:31 +08:00
										 |  |  | _KPROBE(flush_icache_range) | 
					
						
							| 
									
										
										
										
											2013-08-06 18:23:30 +08:00
										 |  |  | BEGIN_FTR_SECTION | 
					
						
							| 
									
										
										
										
											2013-08-22 09:30:35 +08:00
										 |  |  | 	PURGE_PREFETCHED_INS | 
					
						
							| 
									
										
										
										
											2013-08-06 18:23:30 +08:00
										 |  |  | 	blr | 
					
						
							|  |  |  | END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE) | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Flush the data cache to memory  | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Different systems have different cache line sizes | 
					
						
							|  |  |  |  * and in some cases i-cache and d-cache line sizes differ from | 
					
						
							|  |  |  |  * each other. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  |  	ld	r10,PPC64_CACHES@toc(r2)
 | 
					
						
							|  |  |  | 	lwz	r7,DCACHEL1LINESIZE(r10)/* Get cache line size */ | 
					
						
							|  |  |  | 	addi	r5,r7,-1 | 
					
						
							|  |  |  | 	andc	r6,r3,r5		/* round low to line bdy */ | 
					
						
							|  |  |  | 	subf	r8,r6,r4		/* compute length */ | 
					
						
							|  |  |  | 	add	r8,r8,r5		/* ensure we get enough */ | 
					
						
							|  |  |  | 	lwz	r9,DCACHEL1LOGLINESIZE(r10)	/* Get log-2 of cache line size */ | 
					
						
							|  |  |  | 	srw.	r8,r8,r9		/* compute line count */ | 
					
						
							|  |  |  | 	beqlr				/* nothing to do? */ | 
					
						
							|  |  |  | 	mtctr	r8 | 
					
						
							|  |  |  | 1:	dcbst	0,r6 | 
					
						
							|  |  |  | 	add	r6,r6,r7 | 
					
						
							|  |  |  | 	bdnz	1b | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Now invalidate the instruction cache */ | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	lwz	r7,ICACHEL1LINESIZE(r10)	/* Get Icache line size */ | 
					
						
							|  |  |  | 	addi	r5,r7,-1 | 
					
						
							|  |  |  | 	andc	r6,r3,r5		/* round low to line bdy */ | 
					
						
							|  |  |  | 	subf	r8,r6,r4		/* compute length */ | 
					
						
							|  |  |  | 	add	r8,r8,r5 | 
					
						
							|  |  |  | 	lwz	r9,ICACHEL1LOGLINESIZE(r10)	/* Get log-2 of Icache line size */ | 
					
						
							|  |  |  | 	srw.	r8,r8,r9		/* compute line count */ | 
					
						
							|  |  |  | 	beqlr				/* nothing to do? */ | 
					
						
							|  |  |  | 	mtctr	r8 | 
					
						
							|  |  |  | 2:	icbi	0,r6 | 
					
						
							|  |  |  | 	add	r6,r6,r7 | 
					
						
							|  |  |  | 	bdnz	2b | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 	.previous .text | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Like above, but only do the D-cache. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * flush_dcache_range(unsigned long start, unsigned long stop) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *    flush all bytes from start to stop-1 inclusive | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(flush_dcache_range) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Flush the data cache to memory  | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Different systems have different cache line sizes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  |  	ld	r10,PPC64_CACHES@toc(r2)
 | 
					
						
							|  |  |  | 	lwz	r7,DCACHEL1LINESIZE(r10)	/* Get dcache line size */ | 
					
						
							|  |  |  | 	addi	r5,r7,-1 | 
					
						
							|  |  |  | 	andc	r6,r3,r5		/* round low to line bdy */ | 
					
						
							|  |  |  | 	subf	r8,r6,r4		/* compute length */ | 
					
						
							|  |  |  | 	add	r8,r8,r5		/* ensure we get enough */ | 
					
						
							|  |  |  | 	lwz	r9,DCACHEL1LOGLINESIZE(r10)	/* Get log-2 of dcache line size */ | 
					
						
							|  |  |  | 	srw.	r8,r8,r9		/* compute line count */ | 
					
						
							|  |  |  | 	beqlr				/* nothing to do? */ | 
					
						
							|  |  |  | 	mtctr	r8 | 
					
						
							|  |  |  | 0:	dcbst	0,r6 | 
					
						
							|  |  |  | 	add	r6,r6,r7 | 
					
						
							|  |  |  | 	bdnz	0b | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Like above, but works on non-mapped physical addresses. | 
					
						
							|  |  |  |  * Use only for non-LPAR setups ! It also assumes real mode | 
					
						
							|  |  |  |  * is cacheable. Used for flushing out the DART before using | 
					
						
							|  |  |  |  * it as uncacheable memory  | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * flush_dcache_phys_range(unsigned long start, unsigned long stop) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *    flush all bytes from start to stop-1 inclusive | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(flush_dcache_phys_range) | 
					
						
							|  |  |  |  	ld	r10,PPC64_CACHES@toc(r2)
 | 
					
						
							|  |  |  | 	lwz	r7,DCACHEL1LINESIZE(r10)	/* Get dcache line size */ | 
					
						
							|  |  |  | 	addi	r5,r7,-1 | 
					
						
							|  |  |  | 	andc	r6,r3,r5		/* round low to line bdy */ | 
					
						
							|  |  |  | 	subf	r8,r6,r4		/* compute length */ | 
					
						
							|  |  |  | 	add	r8,r8,r5		/* ensure we get enough */ | 
					
						
							|  |  |  | 	lwz	r9,DCACHEL1LOGLINESIZE(r10)	/* Get log-2 of dcache line size */ | 
					
						
							|  |  |  | 	srw.	r8,r8,r9		/* compute line count */ | 
					
						
							|  |  |  | 	beqlr				/* nothing to do? */ | 
					
						
							|  |  |  | 	mfmsr	r5			/* Disable MMU Data Relocation */ | 
					
						
							|  |  |  | 	ori	r0,r5,MSR_DR | 
					
						
							|  |  |  | 	xori	r0,r0,MSR_DR | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtmsr	r0 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mtctr	r8 | 
					
						
							|  |  |  | 0:	dcbst	0,r6 | 
					
						
							|  |  |  | 	add	r6,r6,r7 | 
					
						
							|  |  |  | 	bdnz	0b | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mtmsr	r5			/* Re-enable MMU Data Relocation */ | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GLOBAL(flush_inval_dcache_range) | 
					
						
							|  |  |  |  	ld	r10,PPC64_CACHES@toc(r2)
 | 
					
						
							|  |  |  | 	lwz	r7,DCACHEL1LINESIZE(r10)	/* Get dcache line size */ | 
					
						
							|  |  |  | 	addi	r5,r7,-1 | 
					
						
							|  |  |  | 	andc	r6,r3,r5		/* round low to line bdy */ | 
					
						
							|  |  |  | 	subf	r8,r6,r4		/* compute length */ | 
					
						
							|  |  |  | 	add	r8,r8,r5		/* ensure we get enough */ | 
					
						
							|  |  |  | 	lwz	r9,DCACHEL1LOGLINESIZE(r10)/* Get log-2 of dcache line size */ | 
					
						
							|  |  |  | 	srw.	r8,r8,r9		/* compute line count */ | 
					
						
							|  |  |  | 	beqlr				/* nothing to do? */ | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mtctr	r8 | 
					
						
							|  |  |  | 0:	dcbf	0,r6 | 
					
						
							|  |  |  | 	add	r6,r6,r7 | 
					
						
							|  |  |  | 	bdnz	0b | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Flush a particular page from the data cache to RAM. | 
					
						
							|  |  |  |  * Note: this is necessary because the instruction cache does *not* | 
					
						
							|  |  |  |  * snoop from the data cache. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	void __flush_dcache_icache(void *page) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(__flush_dcache_icache) | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * Flush the data cache to memory  | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Different systems have different cache line sizes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-22 09:30:35 +08:00
										 |  |  | BEGIN_FTR_SECTION | 
					
						
							|  |  |  | 	PURGE_PREFETCHED_INS | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | END_FTR_SECTION_IFSET(CPU_FTR_COHERENT_ICACHE) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | /* Flush the dcache */ | 
					
						
							|  |  |  |  	ld	r7,PPC64_CACHES@toc(r2)
 | 
					
						
							|  |  |  | 	clrrdi	r3,r3,PAGE_SHIFT           	    /* Page align */ | 
					
						
							|  |  |  | 	lwz	r4,DCACHEL1LINESPERPAGE(r7)	/* Get # dcache lines per page */ | 
					
						
							|  |  |  | 	lwz	r5,DCACHEL1LINESIZE(r7)		/* Get dcache line size */ | 
					
						
							|  |  |  | 	mr	r6,r3 | 
					
						
							|  |  |  | 	mtctr	r4 | 
					
						
							|  |  |  | 0:	dcbst	0,r6 | 
					
						
							|  |  |  | 	add	r6,r6,r5 | 
					
						
							|  |  |  | 	bdnz	0b | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Now invalidate the icache */	 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lwz	r4,ICACHEL1LINESPERPAGE(r7)	/* Get # icache lines per page */ | 
					
						
							|  |  |  | 	lwz	r5,ICACHEL1LINESIZE(r7)		/* Get icache line size */ | 
					
						
							|  |  |  | 	mtctr	r4 | 
					
						
							|  |  |  | 1:	icbi	0,r3 | 
					
						
							|  |  |  | 	add	r3,r3,r5 | 
					
						
							|  |  |  | 	bdnz	1b | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-13 00:23:38 +00:00
										 |  |  | _GLOBAL(__bswapdi2) | 
					
						
							|  |  |  | 	srdi	r8,r3,32 | 
					
						
							|  |  |  | 	rlwinm	r7,r3,8,0xffffffff | 
					
						
							|  |  |  | 	rlwimi	r7,r3,24,0,7 | 
					
						
							|  |  |  | 	rlwinm	r9,r8,8,0xffffffff | 
					
						
							|  |  |  | 	rlwimi	r7,r3,24,16,23 | 
					
						
							|  |  |  | 	rlwimi	r9,r8,24,0,7 | 
					
						
							|  |  |  | 	rlwimi	r9,r8,24,16,23 | 
					
						
							|  |  |  | 	sldi	r7,r7,32 | 
					
						
							|  |  |  | 	or	r3,r7,r9 | 
					
						
							|  |  |  | 	blr | 
					
						
							| 
									
										
										
										
											2006-09-25 18:19:00 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-25 12:12:32 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-29 14:55:22 +11:00
										 |  |  | #ifdef CONFIG_PPC_EARLY_DEBUG_BOOTX | 
					
						
							| 
									
										
										
										
											2013-07-25 12:12:32 +10:00
										 |  |  | _GLOBAL(rmci_on) | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	li	r3,0x100 | 
					
						
							|  |  |  | 	rldicl	r3,r3,32,0 | 
					
						
							|  |  |  | 	mfspr	r5,SPRN_HID4 | 
					
						
							|  |  |  | 	or	r5,r5,r3 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_HID4,r5 | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	slbia | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GLOBAL(rmci_off) | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	li	r3,0x100 | 
					
						
							|  |  |  | 	rldicl	r3,r3,32,0 | 
					
						
							|  |  |  | 	mfspr	r5,SPRN_HID4 | 
					
						
							|  |  |  | 	andc	r5,r5,r3 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_HID4,r5 | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	slbia | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	blr | 
					
						
							| 
									
										
										
										
											2013-11-29 14:55:22 +11:00
										 |  |  | #endif /* CONFIG_PPC_EARLY_DEBUG_BOOTX */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE) | 
					
						
							| 
									
										
										
										
											2013-07-25 12:12:32 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Do an IO access in real mode | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(real_readb) | 
					
						
							|  |  |  | 	mfmsr	r7 | 
					
						
							|  |  |  | 	ori	r0,r7,MSR_DR | 
					
						
							|  |  |  | 	xori	r0,r0,MSR_DR | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtmsrd	r0 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mfspr	r6,SPRN_HID4 | 
					
						
							|  |  |  | 	rldicl	r5,r6,32,0 | 
					
						
							|  |  |  | 	ori	r5,r5,0x100 | 
					
						
							|  |  |  | 	rldicl	r5,r5,32,0 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_HID4,r5 | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	slbia | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	lbz	r3,0(r3) | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_HID4,r6 | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	slbia | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mtmsrd	r7 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  |  * Do an IO access in real mode | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(real_writeb) | 
					
						
							|  |  |  | 	mfmsr	r7 | 
					
						
							|  |  |  | 	ori	r0,r7,MSR_DR | 
					
						
							|  |  |  | 	xori	r0,r0,MSR_DR | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtmsrd	r0 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mfspr	r6,SPRN_HID4 | 
					
						
							|  |  |  | 	rldicl	r5,r6,32,0 | 
					
						
							|  |  |  | 	ori	r5,r5,0x100 | 
					
						
							|  |  |  | 	rldicl	r5,r5,32,0 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_HID4,r5 | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	slbia | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	stb	r3,0(r4) | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_HID4,r6 | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	slbia | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mtmsrd	r7 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | #endif /* defined(CONFIG_PPC_PMAC) || defined(CONFIG_PPC_MAPLE) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-04 16:36:49 -06:00
										 |  |  | #ifdef CONFIG_PPC_PASEMI | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GLOBAL(real_205_readb) | 
					
						
							|  |  |  | 	mfmsr	r7 | 
					
						
							|  |  |  | 	ori	r0,r7,MSR_DR | 
					
						
							|  |  |  | 	xori	r0,r0,MSR_DR | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtmsrd	r0 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							| 
									
										
										
										
											2012-06-25 13:33:18 +00:00
										 |  |  | 	LBZCIX(R3,R0,R3) | 
					
						
							| 
									
										
										
										
											2007-02-04 16:36:49 -06:00
										 |  |  | 	isync | 
					
						
							|  |  |  | 	mtmsrd	r7 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GLOBAL(real_205_writeb) | 
					
						
							|  |  |  | 	mfmsr	r7 | 
					
						
							|  |  |  | 	ori	r0,r7,MSR_DR | 
					
						
							|  |  |  | 	xori	r0,r0,MSR_DR | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtmsrd	r0 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							| 
									
										
										
										
											2012-06-25 13:33:18 +00:00
										 |  |  | 	STBCIX(R3,R0,R4) | 
					
						
							| 
									
										
										
										
											2007-02-04 16:36:49 -06:00
										 |  |  | 	isync | 
					
						
							|  |  |  | 	mtmsrd	r7 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* CONFIG_PPC_PASEMI */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-17 03:10:06 +00:00
										 |  |  | #if defined(CONFIG_CPU_FREQ_PMAC64) || defined(CONFIG_CPU_FREQ_MAPLE) | 
					
						
							| 
									
										
										
										
											2005-11-07 14:27:33 +11:00
										 |  |  | /* | 
					
						
							|  |  |  |  * SCOM access functions for 970 (FX only for now) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * unsigned long scom970_read(unsigned int address);
 | 
					
						
							|  |  |  |  * void scom970_write(unsigned int address, unsigned long value);
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The address passed in is the 24 bits register address. This code | 
					
						
							|  |  |  |  * is 970 specific and will not check the status bits, so you should | 
					
						
							|  |  |  |  * know what you are doing. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(scom970_read) | 
					
						
							|  |  |  | 	/* interrupts off */ | 
					
						
							|  |  |  | 	mfmsr	r4 | 
					
						
							|  |  |  | 	ori	r0,r4,MSR_EE | 
					
						
							|  |  |  | 	xori	r0,r0,MSR_EE | 
					
						
							|  |  |  | 	mtmsrd	r0,1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* rotate 24 bits SCOM address 8 bits left and mask out it's low 8 bits | 
					
						
							|  |  |  | 	 * (including parity). On current CPUs they must be 0'd, | 
					
						
							|  |  |  | 	 * and finally or in RW bit | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	rlwinm	r3,r3,8,0,15 | 
					
						
							|  |  |  | 	ori	r3,r3,0x8000 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* do the actual scom read */ | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_SCOMC,r3 | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mfspr	r3,SPRN_SCOMD | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mfspr	r0,SPRN_SCOMC | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* XXX:	fixup result on some buggy 970's (ouch ! we lost a bit, bah | 
					
						
							|  |  |  | 	 * that's the best we can do). Not implemented yet as we don't use | 
					
						
							|  |  |  | 	 * the scom on any of the bogus CPUs yet, but may have to be done | 
					
						
							|  |  |  | 	 * ultimately | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* restore interrupts */ | 
					
						
							|  |  |  | 	mtmsrd	r4,1 | 
					
						
							|  |  |  | 	blr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GLOBAL(scom970_write) | 
					
						
							|  |  |  | 	/* interrupts off */ | 
					
						
							|  |  |  | 	mfmsr	r5 | 
					
						
							|  |  |  | 	ori	r0,r5,MSR_EE | 
					
						
							|  |  |  | 	xori	r0,r0,MSR_EE | 
					
						
							|  |  |  | 	mtmsrd	r0,1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* rotate 24 bits SCOM address 8 bits left and mask out it's low 8 bits | 
					
						
							|  |  |  | 	 * (including parity). On current CPUs they must be 0'd. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	rlwinm	r3,r3,8,0,15 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sync | 
					
						
							|  |  |  | 	mtspr	SPRN_SCOMD,r4      /* write data */ | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mtspr	SPRN_SCOMC,r3      /* write command */ | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 	mfspr	3,SPRN_SCOMC | 
					
						
							|  |  |  | 	isync | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* restore interrupts */ | 
					
						
							|  |  |  | 	mtmsrd	r5,1 | 
					
						
							|  |  |  | 	blr | 
					
						
							| 
									
										
										
										
											2011-06-17 03:10:06 +00:00
										 |  |  | #endif /* CONFIG_CPU_FREQ_PMAC64 || CONFIG_CPU_FREQ_MAPLE */ | 
					
						
							| 
									
										
										
										
											2005-11-07 14:27:33 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | /* kexec_wait(phys_cpu) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * wait for the flag to change, indicating this kernel is going away but | 
					
						
							|  |  |  |  * the slave code for the next one is at addresses 0 to 100. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-05-10 19:28:33 +00:00
										 |  |  |  * This is used by all slaves, even those that did not find a matching | 
					
						
							|  |  |  |  * paca in the secondary startup code. | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Physical (hardware) cpu id should be in r3. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(kexec_wait) | 
					
						
							|  |  |  | 	bl	1f | 
					
						
							|  |  |  | 1:	mflr	r5 | 
					
						
							|  |  |  | 	addi	r5,r5,kexec_flag-1b | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 99:	HMT_LOW | 
					
						
							|  |  |  | #ifdef CONFIG_KEXEC		/* use no memory without kexec */ | 
					
						
							|  |  |  | 	lwz	r4,0(r5) | 
					
						
							|  |  |  | 	cmpwi	0,r4,0 | 
					
						
							|  |  |  | 	bnea	0x60 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 	b	99b | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* this can be in text because we won't change it until we are | 
					
						
							|  |  |  |  * running in real anyways | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | kexec_flag: | 
					
						
							|  |  |  | 	.long	0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_KEXEC | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* kexec_smp_wait(void) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * call with interrupts off | 
					
						
							|  |  |  |  * note: this is a terminal routine, it does not save lr | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * get phys id from paca | 
					
						
							|  |  |  |  * switch to real mode | 
					
						
							| 
									
										
										
										
											2011-05-10 19:28:33 +00:00
										 |  |  |  * mark the paca as no longer used | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  |  * join other cpus in kexec_wait(phys_id) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | _GLOBAL(kexec_smp_wait) | 
					
						
							|  |  |  | 	lhz	r3,PACAHWCPUID(r13) | 
					
						
							|  |  |  | 	bl	real_mode | 
					
						
							| 
									
										
										
										
											2011-05-10 19:28:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	li	r4,KEXEC_STATE_REAL_MODE | 
					
						
							|  |  |  | 	stb	r4,PACAKEXECSTATE(r13) | 
					
						
							|  |  |  | 	SYNC | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-04 16:04:35 +11:00
										 |  |  | 	b	kexec_wait | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * switch to real mode (turn mmu off) | 
					
						
							|  |  |  |  * we use the early kernel trick that the hardware ignores bits | 
					
						
							|  |  |  |  * 0 and 1 (big endian) of the effective address in real mode | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * don't overwrite r3 here, it is live for kexec_wait above. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | real_mode:	/* assume normal blr return */ | 
					
						
							|  |  |  | 1:	li	r9,MSR_RI | 
					
						
							|  |  |  | 	li	r10,MSR_DR|MSR_IR | 
					
						
							|  |  |  | 	mflr	r11		/* return address to SRR0 */ | 
					
						
							|  |  |  | 	mfmsr	r12 | 
					
						
							|  |  |  | 	andc	r9,r12,r9 | 
					
						
							|  |  |  | 	andc	r10,r12,r10 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	mtmsrd	r9,1 | 
					
						
							|  |  |  | 	mtspr	SPRN_SRR1,r10 | 
					
						
							|  |  |  | 	mtspr	SPRN_SRR0,r11 | 
					
						
							|  |  |  | 	rfid | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							| 
									
										
										
										
											2008-10-22 10:39:18 +00:00
										 |  |  |  * kexec_sequence(newstack, start, image, control, clear_all()) | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  |  * | 
					
						
							|  |  |  |  * does the grungy work with stack switching and real mode switches | 
					
						
							|  |  |  |  * also does simple calls to other code | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | _GLOBAL(kexec_sequence) | 
					
						
							|  |  |  | 	mflr	r0 | 
					
						
							|  |  |  | 	std	r0,16(r1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* switch stacks to newstack -- &kexec_stack.stack */ | 
					
						
							| 
									
										
										
										
											2008-04-24 13:20:16 +10:00
										 |  |  | 	stdu	r1,THREAD_SIZE-STACK_FRAME_OVERHEAD(r3) | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 	mr	r1,r3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	li	r0,0 | 
					
						
							|  |  |  | 	std	r0,16(r1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* save regs for local vars on new stack. | 
					
						
							|  |  |  | 	 * yes, we won't go back, but ... | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	std	r31,-8(r1) | 
					
						
							|  |  |  | 	std	r30,-16(r1) | 
					
						
							|  |  |  | 	std	r29,-24(r1) | 
					
						
							|  |  |  | 	std	r28,-32(r1) | 
					
						
							|  |  |  | 	std	r27,-40(r1) | 
					
						
							|  |  |  | 	std	r26,-48(r1) | 
					
						
							|  |  |  | 	std	r25,-56(r1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-24 13:20:16 +10:00
										 |  |  | 	stdu	r1,-STACK_FRAME_OVERHEAD-64(r1) | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* save args into preserved regs */ | 
					
						
							|  |  |  | 	mr	r31,r3			/* newstack (both) */ | 
					
						
							|  |  |  | 	mr	r30,r4			/* start (real) */ | 
					
						
							|  |  |  | 	mr	r29,r5			/* image (virt) */ | 
					
						
							|  |  |  | 	mr	r28,r6			/* control, unused */ | 
					
						
							|  |  |  | 	mr	r27,r7			/* clear_all() fn desc */ | 
					
						
							| 
									
										
										
										
											2008-10-22 10:39:18 +00:00
										 |  |  | 	mr	r26,r8			/* spare */ | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 	lhz	r25,PACAHWCPUID(r13)	/* get our phys cpu from paca */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* disable interrupts, we are overwriting kernel data next */ | 
					
						
							|  |  |  | 	mfmsr	r3 | 
					
						
							|  |  |  | 	rlwinm	r3,r3,0,17,15 | 
					
						
							|  |  |  | 	mtmsrd	r3,1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* copy dest pages, flush whole dest image */ | 
					
						
							|  |  |  | 	mr	r3,r29 | 
					
						
							| 
									
										
										
										
											2014-02-04 16:04:35 +11:00
										 |  |  | 	bl	kexec_copy_flush	/* (image) */ | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* turn off mmu */ | 
					
						
							|  |  |  | 	bl	real_mode | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-11 18:32:17 +10:00
										 |  |  | 	/* copy  0x100 bytes starting at start to 0 */ | 
					
						
							|  |  |  | 	li	r3,0 | 
					
						
							|  |  |  | 	mr	r4,r30		/* start, aka phys mem offset */ | 
					
						
							|  |  |  | 	li	r5,0x100 | 
					
						
							|  |  |  | 	li	r6,0 | 
					
						
							| 
									
										
										
										
											2014-02-04 16:04:35 +11:00
										 |  |  | 	bl	copy_and_flush	/* (dest, src, copy limit, start offset) */ | 
					
						
							| 
									
										
										
										
											2007-04-11 18:32:17 +10:00
										 |  |  | 1:	/* assume normal blr return */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* release other cpus to the new kernel secondary start at 0x60 */ | 
					
						
							|  |  |  | 	mflr	r5 | 
					
						
							|  |  |  | 	li	r6,1 | 
					
						
							|  |  |  | 	stw	r6,kexec_flag-1b(5) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 	/* clear out hardware hash page table and tlb */ | 
					
						
							| 
									
										
										
										
											2014-02-04 16:07:47 +11:00
										 |  |  | #if !defined(_CALL_ELF) || _CALL_ELF != 2 | 
					
						
							|  |  |  | 	ld	r12,0(r27)		/* deref function descriptor */ | 
					
						
							|  |  |  | #else | 
					
						
							|  |  |  | 	mr	r12,r27 | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 	mtctr	r12 | 
					
						
							| 
									
										
										
										
											2006-07-25 14:05:01 -07:00
										 |  |  | 	bctrl				/* ppc_md.hpte_clear_all(void); */
 | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  *   kexec image calling is: | 
					
						
							|  |  |  |  *      the first 0x100 bytes of the entry point are copied to 0 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *      all slaves branch to slave = 0x60 (absolute) | 
					
						
							|  |  |  |  *              slave(phys_cpu_id);
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *      master goes to start = entry point | 
					
						
							|  |  |  |  *              start(phys_cpu_id, start, 0);
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   a wrapper is needed to call existing kernels, here is an approximate | 
					
						
							|  |  |  |  *   description of one method: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * v2: (2.6.10) | 
					
						
							|  |  |  |  *   start will be near the boot_block (maybe 0x100 bytes before it?) | 
					
						
							|  |  |  |  *   it will have a 0x60, which will b to boot_block, where it will wait | 
					
						
							|  |  |  |  *   and 0 will store phys into struct boot-block and load r3 from there, | 
					
						
							|  |  |  |  *   copy kernel 0-0x100 and tell slaves to back down to 0x60 again | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * v1: (2.6.9) | 
					
						
							|  |  |  |  *    boot block will have all cpus scanning device tree to see if they | 
					
						
							|  |  |  |  *    are the boot cpu ????? | 
					
						
							|  |  |  |  *    other device tree differences (prop sizes, va vs pa, etc)... | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 	mr	r3,r25	# my phys cpu | 
					
						
							|  |  |  | 	mr	r4,r30	# start, aka phys mem offset | 
					
						
							|  |  |  | 	mtlr	4 | 
					
						
							|  |  |  | 	li	r5,0 | 
					
						
							| 
									
										
										
										
											2008-10-22 10:39:18 +00:00
										 |  |  | 	blr	/* image->start(physid, image->start, 0); */
 | 
					
						
							| 
									
										
										
										
											2005-10-10 22:36:14 +10:00
										 |  |  | #endif /* CONFIG_KEXEC */ | 
					
						
							| 
									
										
										
										
											2014-03-18 17:37:28 +10:30
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_MODULES | 
					
						
							|  |  |  | #if defined(_CALL_ELF) && _CALL_ELF == 2 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:59:11 +10:30
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_MODVERSIONS | 
					
						
							|  |  |  | .weak __crc_TOC. | 
					
						
							|  |  |  | .section "___kcrctab+TOC.","a" | 
					
						
							|  |  |  | .globl __kcrctab_TOC. | 
					
						
							|  |  |  | __kcrctab_TOC.: | 
					
						
							|  |  |  | 	.llong	__crc_TOC. | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:37:28 +10:30
										 |  |  | /* | 
					
						
							|  |  |  |  * Export a fake .TOC. since both modpost and depmod will complain otherwise. | 
					
						
							|  |  |  |  * Both modpost and depmod strip the leading . so we do the same here. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | .section "__ksymtab_strings","a" | 
					
						
							|  |  |  | __kstrtab_TOC.: | 
					
						
							|  |  |  | 	.asciz "TOC." | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .section "___ksymtab+TOC.","a" | 
					
						
							|  |  |  | /* This symbol name is important: it's used by modpost to find exported syms */ | 
					
						
							|  |  |  | .globl __ksymtab_TOC. | 
					
						
							|  |  |  | __ksymtab_TOC.: | 
					
						
							|  |  |  | 	.llong 0 /* .value */ | 
					
						
							|  |  |  | 	.llong __kstrtab_TOC. | 
					
						
							|  |  |  | #endif /* ELFv2 */ | 
					
						
							|  |  |  | #endif /* MODULES */ |