- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am trying to prove the lw_axi bus is operating properly with a simple test as follows:
1) using Terasic DE10 with the provided DE10_Standard_GHRD.sof program the board
2) attach to the HPS using the ARM Development Studio IDE
3) Using the memory option attempt to read 0xff021000 which is the base address of the SysID component in this GHRD.
It seems like I get a bus error when I attempt to do this. I have also attempted to do the same with code.
e.g.
actual=*(unsigned int *)0xff201000;
printf("actual = %08x\n",actual);
Note also that many other things work.
e.g. //reads from clock manager
for (i=0;i<6;i++)
{
actual=*(unsigned int *)(0xffd04000 + i*4);
printf("0x%02x, actual = %08x\n",i,actual);
}
Thanks in advance.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Did you add the address of the sysid to the h2f bridge? Can you try h2f bridge.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can try to read from 0xff20_0000.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page