misc.s

来自「根据添加了fs2410平台的arch目录」· S 代码 · 共 54 行

S
54
字号
/* * BK Id: SCCS/s.misc.S 1.6 05/18/01 15:16:59 cort *//* * Copyright (C) Paul Mackerras 1997. * * 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. */	.text/* * Use the BAT0 registers to map the 1st 8MB of RAM to 0x90000000. */	.globl	setup_batssetup_bats:	mfpvr	3	rlwinm	3,3,16,16,31		/* r3 = 1 for 601, 4 for 604 */	cmpi	0,3,1	lis	4,0x9000	bne	4f	ori	4,4,4			/* set up BAT registers for 601 */	li	5,0x7f	b	5f4:	ori	4,4,0xff		/* set up BAT registers for 604 */	li	5,2	mtdbatu	3,4	mtdbatl	3,55:	mtibatu	3,4	mtibatl	3,5	isync	blr/* * Flush the dcache and invalidate the icache for a range of addresses. * * flush_cache(addr, len) */	.global	flush_cacheflush_cache:	addi	4,4,0x1f	/* len = (len + 0x1f) / 0x20 */	rlwinm.	4,4,27,5,31	mtctr	4	beqlr1:	dcbf	0,3	icbi	0,3	addi	3,3,0x20	bdnz	1b	sync	isync	blr

⌨️ 快捷键说明

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