Not sure how to build Wally for ArtyA7 board #1207
-
I bought a ArtyA7 board to install Wally but I'm having problems. I copied the board_files to /tools/Xilinx/Vivado/2024.2/data/boards and
When I try to let the fpga/generator Makefile handle it there is a different error: (cvw) piet@piet-Precision-7920-Tower:~/riscv/cvw/fpga/generator$ make ****** Vivado v2024.2 (64-bit) source wally.tcl set partNumber $::env(XILINX_PART)set boardName $::env(XILINX_BOARD)set boardSubName [lindex [split ${boardName} :] 1]set board $::env(board)set ipName WallyFPGAcreate_project $ipName . -force -part $partNumberif {$boardName!="ArtyA7"} {set_property board_part $boardName [current_project]}add_files ../src/CopiedFiles_do_not_add_to_repo/cvw.svif {$board=="ArtyA7"} {add_files {../src/fpgaTopArtyA7.sv}} else {add_files {../src/fpgaTop.sv}}import_ip IP/sysrst.srcs/sources_1/ip/sysrst/sysrst.xciERROR: [Coretcl 2-1074] Could not find import file 'IP/sysrst.srcs/sources_1/ip/sysrst/sysrst.xci' Any tips? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
It looks like the Xilinx IP is not generated correctly. If you had a bad build which does not produce all the output Xilinx files files (xci, xpr, etc) for each IP the makefile will not always rebuild them. Check that the IP/sysrst.srcs/sources_1/ip/sysrst/sysrst.xci file exists. If not do |
Beta Was this translation helpful? Give feedback.
-
Thanks Rose: Wtih you suggested make cleanAll and rebuilding , the sysrst.xci is being build fine:
|
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
You can do whatever you want, but the Wally team can only support the standard flow.
… On Jan 24, 2025, at 2:04 AM, Sriguru840 ***@***.***> wrote:
Hi,
I want to know if I can use only the core part of core v wally as top module and verify using this testbench. Not sure it can be done or not.
What are all changes should be made?
Thanks.
—
Reply to this email directly, view it on GitHub <#1207 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AR4AA33ITYU2FRD3PCYYP2L2MIF2FAVCNFSM6AAAAABUGZTRNGVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCOJUGE2DQMQ>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
Thanks Rose:
Wtih you suggested make cleanAll and rebuilding , the sysrst.xci is being build fine: