码迷,mamicode.com
首页 > 其他好文 > 详细

uboot mmc read/write命令用法

时间:2014-09-09 21:24:19      阅读:477      评论:0      收藏:0      [点我收藏+]

标签:io   使用   ar   数据   art   on   c   ad   r   

mmc read用来读取mmc内容到内存,

mmc write用来写入内存内容到mmc中

具体用法,

mmc read <device num> addr blk# cnt [partition]

mmc write <device num> addr blk# cnt [partition]

mmc list

device num是mmc的设备号,可以通过mmc list查询

addr是内存地址

blk# 是mmc内的块号

cnt 块数目

使用范例:

mmc write 2 0x90000000 0x600 0x10

把内存0x90000000开始,长度为16x512大小的数据,写入到第2个mmc设备块偏移位置为0x600处

mmc read 2 0x90000000 0x600 0x10

把第二个mmc设备块偏移为0x600处开始,长度为16x512大小的数据,读出到内存0x90000000处

uboot mmc read/write命令用法

标签:io   使用   ar   数据   art   on   c   ad   r   

原文地址:http://www.cnblogs.com/xmphoenix/p/3963312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!