标题 | 阅读 | 评论 | 转发 | 发布日期 | |
---|---|---|---|---|---|
简单休眠 | 2749 | 0 | 0 | 2012-02-21 | |
zImage解压(arch/arm/boot/compressed/head.S) | 4055 | 0 | 0 | 2011-07-17 | |
arm swi 软中断测试 | 6198 | 0 | 0 | 2011-04-09 | |
64位arm-linux-gcc使用 | 11835 | 0 | 0 | 2011-03-27 | |
barebox | 2611 | 0 | 0 | 2011-03-20 | |
2011-01-22 | 1726 | 0 | 0 | 2011-01-22 | |
这两天 | 1674 | 0 | 0 | 2010-09-14 | |
回头看看从前写的代码 | 1762 | 1 | 0 | 2010-09-06 | |
Linux arm 中断处理-1 | 2622 | 1 | 1 | 2010-08-22 | |
fc11下fcitx安装小记 | 2785 | 0 | 0 | 2010-03-31 | |
教你写Linux设备驱动程序:一个简短的教程 | 19553 | 0 | 4 | 2010-02-25 | |
hello wrold 模块试验 | 1835 | 0 | 0 | 2010-02-24 | |
Linux kernel 2.6.xx README | 2197 | 0 | 1 | 2010-02-09 | |
Linux 线程学习 - 线程同步.互斥量 | 3411 | 0 | 0 | 2010-02-09 | |
Linux 线程学习笔记-线程简介、线程创建 | 5524 | 1 | 0 | 2010-02-05 | |
make uImage(uImage生成过程) | 11637 | 0 | 1 | 2010-01-15 | |
vivi分析-顶层Makefile | 3148 | 0 | 2 | 2009-12-30 | |
uboot移植到an2410全记录 | 3145 | 0 | 0 | 2009-12-21 | |
7. bootm命令 | 13149 | 0 | 2 | 2009-12-19 | |
6. main_loop() | 2492 | 0 | 0 | 2009-12-19 |
config20102009-11-19 19:42
外设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