标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
android adb by wifi | 1022 | 0 | 0 | 2011-11-11 | |
property_get and property_set | 841 | 0 | 0 | 2011-09-16 | |
android makefile | 666 | 0 | 0 | 2011-04-02 | |
notification apk | 1505 | 0 | 0 | 2011-02-09 | |
Android hello world apk | 2283 | 0 | 0 | 2011-01-27 | |
linux setup android env | 1449 | 0 | 0 | 2011-01-21 | |
recovery mode | 1693 | 0 | 1 | 2011-01-10 | |
lunch | 2154 | 0 | 0 | 2011-01-05 | |
android:layout_weight | 658 | 0 | 0 | 2010-07-26 | |
Failure | 1572 | 0 | 0 | 2010-07-20 | |
emulator | 1275 | 0 | 0 | 2010-07-20 |
config20102009-11-19 20:15
外设fpga做的8k的memory,用arm9去读写它,在linux2.6系统下;这样做对吗?
实际地址映射到虚拟内存中,用得到的虚拟地址去读写。
地址总线:a1-a14 数据总线:d0-d15
#define FPGA_BASE_ADDR (0x18000000)//片选为nGCS3
#define BWSCON (0x48000000)
#define BANKCON3 (0x48000010)
#define IP_SIZE (0x1FFF)//13根地址线8K的物理空间
static void *bwscon,*bankcon3,*fpga_base_addr;
bwscon = ioremap_nocache(BWSCON,0x0000004);
bankcon3 = ioremap_nocache(BANKCON3,0x0000004);
fpga_base_addr = ioremap_nocache(FPGA_BASE_ADDR,IP_SIZE);
writel(readl(bwscon)|0xD000,bwscon);
writel(0x7FFC,bankcon3);
for(i=0;i