我想在Cyclone-V中在HPS和FPGA之间共享内存。我用avalon master和所有实例化了Qsys(Platform Designer)中的“ sdram_slave”接口。我想将SDRAM中内存的base_address从HPS发送到FPGA,以便FPGA可以读取相同的数据。我面临的问题是,HPS具有1GB SDRAM(即2 ^ 30-1073741824地址位置),但是我获得的内存地址远大于该地址(类似于-3196356160-2 ^ 32)。这怎么可能?如何发送要与FPGA共享的,介于0到2 ^ 30之间的内存的正确base_address?
这是我的代码,
#define soc_cv_av
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include "hwlib.h"
#include "socal/socal.h"
#include "socal/hps.h"
#include "socal/alt_gpio.h"
#include "hps_0.h"
#define HW_REGS_BASE 0xFF200000
#define HW_REGS_SPAN 0x00200000
int fd;
void* axi_lw_virtual_base;
int main (){
if( (fd=open("/dev/mem",(O_RDWR|O_SYNC)) ) == -1 ){
printf("Error Could not open file /dev/mem\n");
return 1;
}
axi_lw_virtual_base=mmap(NULL,HW_REGS_SPAN,(PROT_READ|PROT_WRITE),MAP_SHARED,fd,HW_REGS_BASE);
if(axi_lw_virtual_base == MAP_FAILED){
printf("AXI_LW Error Memory-Mapping Failed\n");
close(fd);
return 1;
}
//-------------------------------------------
volatile char arr[8192];
int i=0;
for(i=0; i<8192; i++){
arr[i] = (char)(65+i%25);
}
void *arr_base = &arr;
printf("%u\n", arr_base); // outputs something in range of 3196356160 <--
return 0;
}
答案 0 :(得分:1)
您应将L3配置寄存器中的第4位设置为0xFF800000。
此位启用主用户空间中的轻量级HPS到FPGA AXI桥接器。 设置该位后,您可以通过总线访问FPGA存储器空间。
请注意,轻型总线已映射到HPS存储空间中的0xFF200000。 这意味着从HPS访问时,您的FPGA地址应在该地址的顶部重新映射。
请参阅Cyclone V Hard Processor System Technical Reference Manual的“ HPS地址空间”一章中的Cyclone V HPS地址空间信息。