标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
打开emacs | 613 | 1 | 0 | 2010-09-13 | |
emacs shortcut | 1028 | 1 | 0 | 2010-09-02 | |
Makefile 生成动态库和静态库 | 3266 | 0 | 1 | 2010-08-17 | |
linux cmd--vbindiff | 1089 | 0 | 0 | 2010-08-11 | |
进程地址空间 | 1053 | 0 | 0 | 2010-07-30 | |
vmalloc kmalloc malloc | 1661 | 0 | 0 | 2010-07-30 | |
物理内存的管理 | 993 | 0 | 0 | 2010-07-29 | |
启动过程期间内存管理 | 1798 | 0 | 0 | 2010-07-29 | |
查看内存大小 | 1445 | 0 | 0 | 2010-07-28 | |
System.map | 634 | 0 | 0 | 2010-07-28 | |
内存管理 | 1004 | 0 | 0 | 2010-07-27 | |
内核简介 | 795 | 0 | 1 | 2010-07-26 | |
android:layout_weight | 664 | 0 | 0 | 2010-07-26 | |
Failure | 1579 | 0 | 0 | 2010-07-20 | |
emulator | 1280 | 0 | 0 | 2010-07-20 | |
循环遍历位置参数 | 1247 | 0 | 0 | 2010-07-20 | |
嵌入 汇编 | 1180 | 0 | 0 | 2010-07-12 | |
得到进程返回值 | 1138 | 0 | 1 | 2010-07-08 | |
链接脚本 | 699 | 0 | 1 | 2010-07-05 | |
ftok | 1078 | 0 | 1 | 2010-07-05 |
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