| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 1 | /* | 
 | 2 |  *  linux/arch/arm/mm/proc-mohawk.S: MMU functions for Marvell PJ1 core | 
 | 3 |  * | 
 | 4 |  *  PJ1 (codename Mohawk) is a hybrid of the xscale3 and Marvell's own core. | 
 | 5 |  * | 
 | 6 |  *  Heavily based on proc-arm926.S and proc-xsc3.S | 
 | 7 |  * | 
 | 8 |  * This program is free software; you can redistribute it and/or modify | 
 | 9 |  * it under the terms of the GNU General Public License as published by | 
 | 10 |  * the Free Software Foundation; either version 2 of the License, or | 
 | 11 |  * (at your option) any later version. | 
 | 12 |  * | 
 | 13 |  * This program is distributed in the hope that it will be useful, | 
 | 14 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 15 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 16 |  * GNU General Public License for more details. | 
 | 17 |  * | 
 | 18 |  * You should have received a copy of the GNU General Public License | 
 | 19 |  * along with this program; if not, write to the Free Software | 
 | 20 |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 21 |  */ | 
 | 22 |  | 
 | 23 | #include <linux/linkage.h> | 
 | 24 | #include <linux/init.h> | 
 | 25 | #include <asm/assembler.h> | 
 | 26 | #include <asm/hwcap.h> | 
 | 27 | #include <asm/pgtable-hwdef.h> | 
 | 28 | #include <asm/pgtable.h> | 
 | 29 | #include <asm/page.h> | 
 | 30 | #include <asm/ptrace.h> | 
 | 31 | #include "proc-macros.S" | 
 | 32 |  | 
 | 33 | /* | 
 | 34 |  * This is the maximum size of an area which will be flushed.  If the | 
 | 35 |  * area is larger than this, then we flush the whole cache. | 
 | 36 |  */ | 
 | 37 | #define CACHE_DLIMIT	32768 | 
 | 38 |  | 
 | 39 | /* | 
 | 40 |  * The cache line size of the L1 D cache. | 
 | 41 |  */ | 
 | 42 | #define CACHE_DLINESIZE	32 | 
 | 43 |  | 
 | 44 | /* | 
 | 45 |  * cpu_mohawk_proc_init() | 
 | 46 |  */ | 
 | 47 | ENTRY(cpu_mohawk_proc_init) | 
 | 48 | 	mov	pc, lr | 
 | 49 |  | 
 | 50 | /* | 
 | 51 |  * cpu_mohawk_proc_fin() | 
 | 52 |  */ | 
 | 53 | ENTRY(cpu_mohawk_proc_fin) | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 54 | 	mrc	p15, 0, r0, c1, c0, 0		@ ctrl register | 
 | 55 | 	bic	r0, r0, #0x1800			@ ...iz........... | 
 | 56 | 	bic	r0, r0, #0x0006			@ .............ca. | 
 | 57 | 	mcr	p15, 0, r0, c1, c0, 0		@ disable caches | 
| Russell King | 9ca03a2 | 2010-07-26 12:22:12 +0100 | [diff] [blame] | 58 | 	mov	pc, lr | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 59 |  | 
 | 60 | /* | 
 | 61 |  * cpu_mohawk_reset(loc) | 
 | 62 |  * | 
 | 63 |  * Perform a soft reset of the system.  Put the CPU into the | 
 | 64 |  * same state as it would be if it had been reset, and branch | 
 | 65 |  * to what would be the reset vector. | 
 | 66 |  * | 
 | 67 |  * loc: location to jump to for soft reset | 
 | 68 |  * | 
 | 69 |  * (same as arm926) | 
 | 70 |  */ | 
 | 71 | 	.align	5 | 
| Will Deacon | 1a4baaf | 2011-11-15 13:25:04 +0000 | [diff] [blame] | 72 | 	.pushsection	.idmap.text, "ax" | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 73 | ENTRY(cpu_mohawk_reset) | 
 | 74 | 	mov	ip, #0 | 
 | 75 | 	mcr	p15, 0, ip, c7, c7, 0		@ invalidate I,D caches | 
 | 76 | 	mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
 | 77 | 	mcr	p15, 0, ip, c8, c7, 0		@ invalidate I & D TLBs | 
 | 78 | 	mrc	p15, 0, ip, c1, c0, 0		@ ctrl register | 
 | 79 | 	bic	ip, ip, #0x0007			@ .............cam | 
 | 80 | 	bic	ip, ip, #0x1100			@ ...i...s........ | 
 | 81 | 	mcr	p15, 0, ip, c1, c0, 0		@ ctrl register | 
 | 82 | 	mov	pc, r0 | 
| Will Deacon | 1a4baaf | 2011-11-15 13:25:04 +0000 | [diff] [blame] | 83 | ENDPROC(cpu_mohawk_reset) | 
 | 84 | 	.popsection | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 85 |  | 
 | 86 | /* | 
 | 87 |  * cpu_mohawk_do_idle() | 
 | 88 |  * | 
 | 89 |  * Called with IRQs disabled | 
 | 90 |  */ | 
 | 91 | 	.align	5 | 
 | 92 | ENTRY(cpu_mohawk_do_idle) | 
 | 93 | 	mov	r0, #0 | 
 | 94 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer | 
 | 95 | 	mcr	p15, 0, r0, c7, c0, 4		@ wait for interrupt | 
 | 96 | 	mov	pc, lr | 
 | 97 |  | 
 | 98 | /* | 
| Dave Martin | a39a321 | 2011-06-23 17:22:29 +0100 | [diff] [blame] | 99 |  *	flush_icache_all() | 
 | 100 |  * | 
 | 101 |  *	Unconditionally clean and invalidate the entire icache. | 
 | 102 |  */ | 
 | 103 | ENTRY(mohawk_flush_icache_all) | 
 | 104 | 	mov	r0, #0 | 
 | 105 | 	mcr	p15, 0, r0, c7, c5, 0		@ invalidate I cache | 
 | 106 | 	mov	pc, lr | 
 | 107 | ENDPROC(mohawk_flush_icache_all) | 
 | 108 |  | 
 | 109 | /* | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 110 |  *	flush_user_cache_all() | 
 | 111 |  * | 
 | 112 |  *	Clean and invalidate all cache entries in a particular | 
 | 113 |  *	address space. | 
 | 114 |  */ | 
 | 115 | ENTRY(mohawk_flush_user_cache_all) | 
 | 116 | 	/* FALLTHROUGH */ | 
 | 117 |  | 
 | 118 | /* | 
 | 119 |  *	flush_kern_cache_all() | 
 | 120 |  * | 
 | 121 |  *	Clean and invalidate the entire cache. | 
 | 122 |  */ | 
 | 123 | ENTRY(mohawk_flush_kern_cache_all) | 
 | 124 | 	mov	r2, #VM_EXEC | 
 | 125 | 	mov	ip, #0 | 
 | 126 | __flush_whole_cache: | 
 | 127 | 	mcr	p15, 0, ip, c7, c14, 0		@ clean & invalidate all D cache | 
 | 128 | 	tst	r2, #VM_EXEC | 
 | 129 | 	mcrne	p15, 0, ip, c7, c5, 0		@ invalidate I cache | 
 | 130 | 	mcrne	p15, 0, ip, c7, c10, 0		@ drain write buffer | 
 | 131 | 	mov	pc, lr | 
 | 132 |  | 
 | 133 | /* | 
 | 134 |  *	flush_user_cache_range(start, end, flags) | 
 | 135 |  * | 
 | 136 |  *	Clean and invalidate a range of cache entries in the | 
 | 137 |  *	specified address range. | 
 | 138 |  * | 
 | 139 |  *	- start	- start address (inclusive) | 
 | 140 |  *	- end	- end address (exclusive) | 
 | 141 |  *	- flags	- vm_flags describing address space | 
 | 142 |  * | 
 | 143 |  * (same as arm926) | 
 | 144 |  */ | 
 | 145 | ENTRY(mohawk_flush_user_cache_range) | 
 | 146 | 	mov	ip, #0 | 
 | 147 | 	sub	r3, r1, r0			@ calculate total size | 
 | 148 | 	cmp	r3, #CACHE_DLIMIT | 
 | 149 | 	bgt	__flush_whole_cache | 
 | 150 | 1:	tst	r2, #VM_EXEC | 
 | 151 | 	mcr	p15, 0, r0, c7, c14, 1		@ clean and invalidate D entry | 
 | 152 | 	mcrne	p15, 0, r0, c7, c5, 1		@ invalidate I entry | 
 | 153 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 154 | 	mcr	p15, 0, r0, c7, c14, 1		@ clean and invalidate D entry | 
 | 155 | 	mcrne	p15, 0, r0, c7, c5, 1		@ invalidate I entry | 
 | 156 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 157 | 	cmp	r0, r1 | 
 | 158 | 	blo	1b | 
 | 159 | 	tst	r2, #VM_EXEC | 
 | 160 | 	mcrne	p15, 0, ip, c7, c10, 4		@ drain WB | 
 | 161 | 	mov	pc, lr | 
 | 162 |  | 
 | 163 | /* | 
 | 164 |  *	coherent_kern_range(start, end) | 
 | 165 |  * | 
 | 166 |  *	Ensure coherency between the Icache and the Dcache in the | 
 | 167 |  *	region described by start, end.  If you have non-snooping | 
 | 168 |  *	Harvard caches, you need to implement this function. | 
 | 169 |  * | 
 | 170 |  *	- start	- virtual start address | 
 | 171 |  *	- end	- virtual end address | 
 | 172 |  */ | 
 | 173 | ENTRY(mohawk_coherent_kern_range) | 
 | 174 | 	/* FALLTHROUGH */ | 
 | 175 |  | 
 | 176 | /* | 
 | 177 |  *	coherent_user_range(start, end) | 
 | 178 |  * | 
 | 179 |  *	Ensure coherency between the Icache and the Dcache in the | 
 | 180 |  *	region described by start, end.  If you have non-snooping | 
 | 181 |  *	Harvard caches, you need to implement this function. | 
 | 182 |  * | 
 | 183 |  *	- start	- virtual start address | 
 | 184 |  *	- end	- virtual end address | 
 | 185 |  * | 
 | 186 |  * (same as arm926) | 
 | 187 |  */ | 
 | 188 | ENTRY(mohawk_coherent_user_range) | 
 | 189 | 	bic	r0, r0, #CACHE_DLINESIZE - 1 | 
 | 190 | 1:	mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
 | 191 | 	mcr	p15, 0, r0, c7, c5, 1		@ invalidate I entry | 
 | 192 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 193 | 	cmp	r0, r1 | 
 | 194 | 	blo	1b | 
 | 195 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
| Will Deacon | c5102f5 | 2012-04-27 13:08:53 +0100 | [diff] [blame] | 196 | 	mov	r0, #0 | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 197 | 	mov	pc, lr | 
 | 198 |  | 
 | 199 | /* | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 200 |  *	flush_kern_dcache_area(void *addr, size_t size) | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 201 |  * | 
 | 202 |  *	Ensure no D cache aliasing occurs, either with itself or | 
 | 203 |  *	the I cache | 
 | 204 |  * | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 205 |  *	- addr	- kernel address | 
 | 206 |  *	- size	- region size | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 207 |  */ | 
| Russell King | 2c9b9c8 | 2009-11-26 12:56:21 +0000 | [diff] [blame] | 208 | ENTRY(mohawk_flush_kern_dcache_area) | 
 | 209 | 	add	r1, r0, r1 | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 210 | 1:	mcr	p15, 0, r0, c7, c14, 1		@ clean+invalidate D entry | 
 | 211 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 212 | 	cmp	r0, r1 | 
 | 213 | 	blo	1b | 
 | 214 | 	mov	r0, #0 | 
 | 215 | 	mcr	p15, 0, r0, c7, c5, 0		@ invalidate I cache | 
 | 216 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
 | 217 | 	mov	pc, lr | 
 | 218 |  | 
 | 219 | /* | 
 | 220 |  *	dma_inv_range(start, end) | 
 | 221 |  * | 
 | 222 |  *	Invalidate (discard) the specified virtual address range. | 
 | 223 |  *	May not write back any entries.  If 'start' or 'end' | 
 | 224 |  *	are not cache line aligned, those lines must be written | 
 | 225 |  *	back. | 
 | 226 |  * | 
 | 227 |  *	- start	- virtual start address | 
 | 228 |  *	- end	- virtual end address | 
 | 229 |  * | 
 | 230 |  * (same as v4wb) | 
 | 231 |  */ | 
| Russell King | 702b94b | 2009-11-26 16:24:19 +0000 | [diff] [blame] | 232 | mohawk_dma_inv_range: | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 233 | 	tst	r0, #CACHE_DLINESIZE - 1 | 
 | 234 | 	mcrne	p15, 0, r0, c7, c10, 1		@ clean D entry | 
 | 235 | 	tst	r1, #CACHE_DLINESIZE - 1 | 
 | 236 | 	mcrne	p15, 0, r1, c7, c10, 1		@ clean D entry | 
 | 237 | 	bic	r0, r0, #CACHE_DLINESIZE - 1 | 
 | 238 | 1:	mcr	p15, 0, r0, c7, c6, 1		@ invalidate D entry | 
 | 239 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 240 | 	cmp	r0, r1 | 
 | 241 | 	blo	1b | 
 | 242 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
 | 243 | 	mov	pc, lr | 
 | 244 |  | 
 | 245 | /* | 
 | 246 |  *	dma_clean_range(start, end) | 
 | 247 |  * | 
 | 248 |  *	Clean the specified virtual address range. | 
 | 249 |  * | 
 | 250 |  *	- start	- virtual start address | 
 | 251 |  *	- end	- virtual end address | 
 | 252 |  * | 
 | 253 |  * (same as v4wb) | 
 | 254 |  */ | 
| Russell King | 702b94b | 2009-11-26 16:24:19 +0000 | [diff] [blame] | 255 | mohawk_dma_clean_range: | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 256 | 	bic	r0, r0, #CACHE_DLINESIZE - 1 | 
 | 257 | 1:	mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
 | 258 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 259 | 	cmp	r0, r1 | 
 | 260 | 	blo	1b | 
 | 261 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
 | 262 | 	mov	pc, lr | 
 | 263 |  | 
 | 264 | /* | 
 | 265 |  *	dma_flush_range(start, end) | 
 | 266 |  * | 
 | 267 |  *	Clean and invalidate the specified virtual address range. | 
 | 268 |  * | 
 | 269 |  *	- start	- virtual start address | 
 | 270 |  *	- end	- virtual end address | 
 | 271 |  */ | 
 | 272 | ENTRY(mohawk_dma_flush_range) | 
 | 273 | 	bic	r0, r0, #CACHE_DLINESIZE - 1 | 
 | 274 | 1: | 
 | 275 | 	mcr	p15, 0, r0, c7, c14, 1		@ clean+invalidate D entry | 
 | 276 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 277 | 	cmp	r0, r1 | 
 | 278 | 	blo	1b | 
 | 279 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
 | 280 | 	mov	pc, lr | 
 | 281 |  | 
| Russell King | a9c9147 | 2009-11-26 16:19:58 +0000 | [diff] [blame] | 282 | /* | 
 | 283 |  *	dma_map_area(start, size, dir) | 
 | 284 |  *	- start	- kernel virtual start address | 
 | 285 |  *	- size	- size of region | 
 | 286 |  *	- dir	- DMA direction | 
 | 287 |  */ | 
 | 288 | ENTRY(mohawk_dma_map_area) | 
 | 289 | 	add	r1, r1, r0 | 
 | 290 | 	cmp	r2, #DMA_TO_DEVICE | 
 | 291 | 	beq	mohawk_dma_clean_range | 
 | 292 | 	bcs	mohawk_dma_inv_range | 
 | 293 | 	b	mohawk_dma_flush_range | 
 | 294 | ENDPROC(mohawk_dma_map_area) | 
 | 295 |  | 
 | 296 | /* | 
 | 297 |  *	dma_unmap_area(start, size, dir) | 
 | 298 |  *	- start	- kernel virtual start address | 
 | 299 |  *	- size	- size of region | 
 | 300 |  *	- dir	- DMA direction | 
 | 301 |  */ | 
 | 302 | ENTRY(mohawk_dma_unmap_area) | 
 | 303 | 	mov	pc, lr | 
 | 304 | ENDPROC(mohawk_dma_unmap_area) | 
 | 305 |  | 
| Lorenzo Pieralisi | 031bd87 | 2012-09-06 18:35:13 +0530 | [diff] [blame] | 306 | 	.globl	mohawk_flush_kern_cache_louis | 
 | 307 | 	.equ	mohawk_flush_kern_cache_louis, mohawk_flush_kern_cache_all | 
 | 308 |  | 
| Dave Martin | a39a321 | 2011-06-23 17:22:29 +0100 | [diff] [blame] | 309 | 	@ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S) | 
 | 310 | 	define_cache_functions mohawk | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 311 |  | 
 | 312 | ENTRY(cpu_mohawk_dcache_clean_area) | 
 | 313 | 1:	mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
 | 314 | 	add	r0, r0, #CACHE_DLINESIZE | 
 | 315 | 	subs	r1, r1, #CACHE_DLINESIZE | 
 | 316 | 	bhi	1b | 
 | 317 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
 | 318 | 	mov	pc, lr | 
 | 319 |  | 
 | 320 | /* | 
 | 321 |  * cpu_mohawk_switch_mm(pgd) | 
 | 322 |  * | 
 | 323 |  * Set the translation base pointer to be as described by pgd. | 
 | 324 |  * | 
 | 325 |  * pgd: new page tables | 
 | 326 |  */ | 
 | 327 | 	.align	5 | 
 | 328 | ENTRY(cpu_mohawk_switch_mm) | 
 | 329 | 	mov	ip, #0 | 
 | 330 | 	mcr	p15, 0, ip, c7, c14, 0		@ clean & invalidate all D cache | 
 | 331 | 	mcr	p15, 0, ip, c7, c5, 0		@ invalidate I cache | 
 | 332 | 	mcr	p15, 0, ip, c7, c10, 4		@ drain WB | 
 | 333 | 	orr	r0, r0, #0x18			@ cache the page table in L2 | 
 | 334 | 	mcr	p15, 0, r0, c2, c0, 0		@ load page table pointer | 
 | 335 | 	mcr	p15, 0, ip, c8, c7, 0		@ invalidate I & D TLBs | 
 | 336 | 	mov	pc, lr | 
 | 337 |  | 
 | 338 | /* | 
 | 339 |  * cpu_mohawk_set_pte_ext(ptep, pte, ext) | 
 | 340 |  * | 
 | 341 |  * Set a PTE and flush it out | 
 | 342 |  */ | 
 | 343 | 	.align	5 | 
 | 344 | ENTRY(cpu_mohawk_set_pte_ext) | 
 | 345 | 	armv3_set_pte_ext | 
 | 346 | 	mov	r0, r0 | 
 | 347 | 	mcr	p15, 0, r0, c7, c10, 1		@ clean D entry | 
 | 348 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain WB | 
 | 349 | 	mov	pc, lr | 
 | 350 |  | 
| Chao Xie | 3f5d081 | 2012-05-07 11:23:58 +0800 | [diff] [blame] | 351 | .globl	cpu_mohawk_suspend_size | 
 | 352 | .equ	cpu_mohawk_suspend_size, 4 * 6 | 
| Russell King | b6c7aab | 2013-04-08 11:44:57 +0100 | [diff] [blame] | 353 | #ifdef CONFIG_ARM_CPU_SUSPEND | 
| Chao Xie | 3f5d081 | 2012-05-07 11:23:58 +0800 | [diff] [blame] | 354 | ENTRY(cpu_mohawk_do_suspend) | 
 | 355 | 	stmfd	sp!, {r4 - r9, lr} | 
 | 356 | 	mrc	p14, 0, r4, c6, c0, 0	@ clock configuration, for turbo mode | 
 | 357 | 	mrc	p15, 0, r5, c15, c1, 0	@ CP access reg | 
 | 358 | 	mrc	p15, 0, r6, c13, c0, 0	@ PID | 
 | 359 | 	mrc 	p15, 0, r7, c3, c0, 0	@ domain ID | 
 | 360 | 	mrc	p15, 0, r8, c1, c0, 1	@ auxiliary control reg | 
 | 361 | 	mrc 	p15, 0, r9, c1, c0, 0	@ control reg | 
 | 362 | 	bic	r4, r4, #2		@ clear frequency change bit | 
 | 363 | 	stmia	r0, {r4 - r9}		@ store cp regs | 
 | 364 | 	ldmia	sp!, {r4 - r9, pc} | 
 | 365 | ENDPROC(cpu_mohawk_do_suspend) | 
 | 366 |  | 
 | 367 | ENTRY(cpu_mohawk_do_resume) | 
 | 368 | 	ldmia	r0, {r4 - r9}		@ load cp regs | 
 | 369 | 	mov	ip, #0 | 
 | 370 | 	mcr	p15, 0, ip, c7, c7, 0	@ invalidate I & D caches, BTB | 
 | 371 | 	mcr	p15, 0, ip, c7, c10, 4	@ drain write (&fill) buffer | 
 | 372 | 	mcr	p15, 0, ip, c7, c5, 4	@ flush prefetch buffer | 
 | 373 | 	mcr	p15, 0, ip, c8, c7, 0	@ invalidate I & D TLBs | 
 | 374 | 	mcr	p14, 0, r4, c6, c0, 0	@ clock configuration, turbo mode. | 
 | 375 | 	mcr	p15, 0, r5, c15, c1, 0	@ CP access reg | 
 | 376 | 	mcr	p15, 0, r6, c13, c0, 0	@ PID | 
 | 377 | 	mcr	p15, 0, r7, c3, c0, 0	@ domain ID | 
 | 378 | 	orr	r1, r1, #0x18		@ cache the page table in L2 | 
 | 379 | 	mcr	p15, 0, r1, c2, c0, 0	@ translation table base addr | 
 | 380 | 	mcr	p15, 0, r8, c1, c0, 1	@ auxiliary control reg | 
 | 381 | 	mov	r0, r9			@ control register | 
 | 382 | 	b	cpu_resume_mmu | 
 | 383 | ENDPROC(cpu_mohawk_do_resume) | 
 | 384 | #endif | 
 | 385 |  | 
| Russell King | 5085f3f | 2010-10-01 15:37:05 +0100 | [diff] [blame] | 386 | 	__CPUINIT | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 387 |  | 
 | 388 | 	.type	__mohawk_setup, #function | 
 | 389 | __mohawk_setup: | 
 | 390 | 	mov	r0, #0 | 
 | 391 | 	mcr	p15, 0, r0, c7, c7		@ invalidate I,D caches | 
 | 392 | 	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer | 
 | 393 | 	mcr	p15, 0, r0, c8, c7		@ invalidate I,D TLBs | 
 | 394 | 	orr	r4, r4, #0x18			@ cache the page table in L2 | 
 | 395 | 	mcr	p15, 0, r4, c2, c0, 0		@ load page table pointer | 
 | 396 |  | 
 | 397 | 	mov	r0, #0				@ don't allow CP access | 
 | 398 | 	mcr	p15, 0, r0, c15, c1, 0		@ write CP access register | 
 | 399 |  | 
 | 400 | 	adr	r5, mohawk_crval | 
 | 401 | 	ldmia	r5, {r5, r6} | 
 | 402 | 	mrc	p15, 0, r0, c1, c0		@ get control register | 
 | 403 | 	bic	r0, r0, r5 | 
 | 404 | 	orr	r0, r0, r6 | 
 | 405 | 	mov	pc, lr | 
 | 406 |  | 
 | 407 | 	.size	__mohawk_setup, . - __mohawk_setup | 
 | 408 |  | 
 | 409 | 	/* | 
 | 410 | 	 *  R | 
 | 411 | 	 * .RVI ZFRS BLDP WCAM | 
 | 412 | 	 * .011 1001 ..00 0101 | 
 | 413 | 	 * | 
 | 414 | 	 */ | 
 | 415 | 	.type	mohawk_crval, #object | 
 | 416 | mohawk_crval: | 
 | 417 | 	crval	clear=0x00007f3f, mmuset=0x00003905, ucset=0x00001134 | 
 | 418 |  | 
 | 419 | 	__INITDATA | 
 | 420 |  | 
| Dave Martin | a39a321 | 2011-06-23 17:22:29 +0100 | [diff] [blame] | 421 | 	@ define struct processor (see <asm/proc-fns.h> and proc-macros.S) | 
 | 422 | 	define_processor_functions mohawk, dabort=v5t_early_abort, pabort=legacy_pabort | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 423 |  | 
 | 424 | 	.section ".rodata" | 
 | 425 |  | 
| Dave Martin | a39a321 | 2011-06-23 17:22:29 +0100 | [diff] [blame] | 426 | 	string	cpu_arch_name, "armv5te" | 
 | 427 | 	string	cpu_elf_name, "v5" | 
 | 428 | 	string	cpu_mohawk_name, "Marvell 88SV331x" | 
| Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 429 |  | 
 | 430 | 	.align | 
 | 431 |  | 
 | 432 | 	.section ".proc.info.init", #alloc, #execinstr | 
 | 433 |  | 
 | 434 | 	.type	__88sv331x_proc_info,#object | 
 | 435 | __88sv331x_proc_info: | 
 | 436 | 	.long	0x56158000			@ Marvell 88SV331x (MOHAWK) | 
 | 437 | 	.long	0xfffff000 | 
 | 438 | 	.long   PMD_TYPE_SECT | \ | 
 | 439 | 		PMD_SECT_BUFFERABLE | \ | 
 | 440 | 		PMD_SECT_CACHEABLE | \ | 
 | 441 | 		PMD_BIT4 | \ | 
 | 442 | 		PMD_SECT_AP_WRITE | \ | 
 | 443 | 		PMD_SECT_AP_READ | 
 | 444 | 	.long   PMD_TYPE_SECT | \ | 
 | 445 | 		PMD_BIT4 | \ | 
 | 446 | 		PMD_SECT_AP_WRITE | \ | 
 | 447 | 		PMD_SECT_AP_READ | 
 | 448 | 	b	__mohawk_setup | 
 | 449 | 	.long	cpu_arch_name | 
 | 450 | 	.long	cpu_elf_name | 
 | 451 | 	.long	HWCAP_SWP|HWCAP_HALF|HWCAP_THUMB|HWCAP_FAST_MULT|HWCAP_EDSP | 
 | 452 | 	.long	cpu_mohawk_name | 
 | 453 | 	.long	mohawk_processor_functions | 
 | 454 | 	.long	v4wbi_tlb_fns | 
 | 455 | 	.long	v4wb_user_fns | 
 | 456 | 	.long	mohawk_cache_fns | 
 | 457 | 	.size	__88sv331x_proc_info, . - __88sv331x_proc_info |