免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1355 | 回复: 1
打印 上一主题 下一主题

一段U-BOOT里面的汇编代码该如何理解 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-21 09:54 |只看该作者 |倒序浏览
u-boot-2009.03/board/gth2/lowlevel_init.S

    /*  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 ***/


cache 0x14对应的是OP 5(FILL) on I-CACHE?但不明白这段代码的意图是什么?

论坛徽章:
0
2 [报告]
发表于 2009-07-21 21:01 |只看该作者

大概明白是什么意思了

又看了下,大概明白是什么意思了。要结合注释和后面的代码看。
        /*  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参数了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP