- 论坛徽章:
- 0
|
大概明白是什么意思了
又看了下,大概明白是什么意思了。要结合注释和后面的代码看。 /* Static memory controller */
/* RCE0 - can not change while fetching, do so from icache */
move t2, ra /* Store return address */
bal getAddr
nop
getAddr:
move t1, ra
move ra, t2 /* Move return addess back */
cache 0x14,0(t1)
cache 0x14,32(t1)
/*** /From YAMON ***/
noCacheJump:
/* Static memory controller */
/* RCE0 AMD 29LV800 Flash */
li t0, MEM_STCFG0
li t1, 0x00000243
sw t1, 0(t0)
li t0, MEM_STTIME0
li t1, 0x040181D7 /* FIXME */
sw t1, 0(t0)
li t0, MEM_STADDR0
li t1, 0x11E03F80
sw t1, 0(t0)
|
后面要改memory controller的一些参数, can not change while fetching, do so from icache。所以先通过cache指令把他们取到icache里面。直接从icache里面执行后面的代码,就可以修改memory controller参数了。 |
|