| 
									
										
										
										
											2011-09-06 14:59:40 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Copyright 2011 Freescale Semiconductor, Inc. | 
					
						
							|  |  |  |  * Copyright 2011 Linaro Ltd. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The code contained herein is licensed under the GNU General Public | 
					
						
							|  |  |  |  * License. You may obtain a copy of the GNU General Public License | 
					
						
							|  |  |  |  * Version 2 or later at the following locations: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.opensource.org/licenses/gpl-license.html | 
					
						
							|  |  |  |  * http://www.gnu.org/copyleft/gpl.html | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/linkage.h> | 
					
						
							|  |  |  | #include <linux/init.h> | 
					
						
							| 
									
										
										
										
											2011-09-06 15:08:40 +08:00
										 |  |  | #include <asm/asm-offsets.h> | 
					
						
							| 
									
										
										
										
											2011-09-06 14:59:40 +08:00
										 |  |  | #include <asm/hardware/cache-l2x0.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.section ".text.head", "ax" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SMP | 
					
						
							| 
									
										
										
										
											2013-04-16 22:11:19 +08:00
										 |  |  | diag_reg_offset: | 
					
						
							|  |  |  | 	.word	g_diag_reg - . | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	.macro	set_diag_reg
 | 
					
						
							|  |  |  | 	adr	r0, diag_reg_offset | 
					
						
							|  |  |  | 	ldr	r1, [r0] | 
					
						
							|  |  |  | 	add	r1, r1, r0		@ r1 = physical &g_diag_reg
 | 
					
						
							|  |  |  | 	ldr	r0, [r1] | 
					
						
							|  |  |  | 	mcr	p15, 0, r0, c15, c0, 1	@ write diagnostic register
 | 
					
						
							|  |  |  | 	.endm | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 14:59:40 +08:00
										 |  |  | ENTRY(v7_secondary_startup) | 
					
						
							|  |  |  | 	bl	v7_invalidate_l1 | 
					
						
							| 
									
										
										
										
											2013-04-16 22:11:19 +08:00
										 |  |  | 	set_diag_reg | 
					
						
							| 
									
										
										
										
											2011-09-06 14:59:40 +08:00
										 |  |  | 	b	secondary_startup | 
					
						
							|  |  |  | ENDPROC(v7_secondary_startup) | 
					
						
							|  |  |  | #endif | 
					
						
							| 
									
										
										
										
											2011-09-06 15:08:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-30 17:57:00 +02:00
										 |  |  | #ifdef CONFIG_ARM_CPU_SUSPEND | 
					
						
							| 
									
										
										
										
											2011-09-06 15:08:40 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2013-02-18 23:11:30 -05:00
										 |  |  |  * The following code must assume it is running from physical address | 
					
						
							|  |  |  |  * where absolute virtual addresses to the data section have to be | 
					
						
							|  |  |  |  * turned into relative ones. | 
					
						
							| 
									
										
										
										
											2011-09-06 15:08:40 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-22 11:55:01 +08:00
										 |  |  | #ifdef CONFIG_CACHE_L2X0 | 
					
						
							| 
									
										
										
										
											2011-09-06 15:08:40 +08:00
										 |  |  | 	.macro	pl310_resume
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:11:30 -05:00
										 |  |  | 	adr	r0, l2x0_saved_regs_offset | 
					
						
							|  |  |  | 	ldr	r2, [r0] | 
					
						
							|  |  |  | 	add	r2, r2, r0 | 
					
						
							| 
									
										
										
										
											2011-09-06 15:08:40 +08:00
										 |  |  | 	ldr	r0, [r2, #L2X0_R_PHY_BASE]	@ get physical base of l2x0
 | 
					
						
							|  |  |  | 	ldr	r1, [r2, #L2X0_R_AUX_CTRL]	@ get aux_ctrl value
 | 
					
						
							|  |  |  | 	str	r1, [r0, #L2X0_AUX_CTRL]	@ restore aux_ctrl
 | 
					
						
							|  |  |  | 	mov	r1, #0x1 | 
					
						
							|  |  |  | 	str	r1, [r0, #L2X0_CTRL]		@ re-enable L2
 | 
					
						
							|  |  |  | 	.endm | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-18 23:11:30 -05:00
										 |  |  | l2x0_saved_regs_offset: | 
					
						
							|  |  |  | 	.word	l2x0_saved_regs - . | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-22 11:55:01 +08:00
										 |  |  | #else | 
					
						
							|  |  |  | 	.macro	pl310_resume
 | 
					
						
							|  |  |  | 	.endm | 
					
						
							|  |  |  | #endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 15:08:40 +08:00
										 |  |  | ENTRY(v7_cpu_resume) | 
					
						
							|  |  |  | 	bl	v7_invalidate_l1 | 
					
						
							|  |  |  | 	pl310_resume | 
					
						
							|  |  |  | 	b	cpu_resume | 
					
						
							|  |  |  | ENDPROC(v7_cpu_resume) | 
					
						
							| 
									
										
										
										
											2011-12-21 22:38:23 +08:00
										 |  |  | #endif |