Daniel Giftson
09/22/2023, 11:32 PMMitch Bailey
09/23/2023, 12:51 AM7198cf6
. I don’t see this pdk in volare ls-remote
. Did you custom build it?Daniel Giftson
09/23/2023, 1:03 AMDaniel Giftson
09/23/2023, 1:06 AMDaniel Giftson
09/23/2023, 1:10 AMMitch Bailey
09/23/2023, 1:20 AMvolare ls
return 7198cf6
as the highlighted commit? What is the date?Mitch Bailey
09/23/2023, 1:23 AMgrep OPEN_PDKS_COMMIT Makefile
Daniel Giftson
09/23/2023, 1:25 AMDaniel Giftson
09/23/2023, 1:32 AMDaniel Giftson
09/23/2023, 1:32 AMMitch Bailey
09/23/2023, 1:32 AMvolare ls
?Daniel Giftson
09/23/2023, 1:35 AMMitch Bailey
09/23/2023, 1:36 AMDaniel Giftson
09/23/2023, 1:39 AMDaniel Giftson
09/23/2023, 1:40 AMMitch Bailey
09/23/2023, 1:43 AMprecheck_results/22_SEP_2023___22_50_19/logs/precheck.log
and any other files in the same directory with similar mod times?Daniel Giftson
09/23/2023, 1:43 AMDaniel Giftson
09/23/2023, 1:50 AMDaniel Giftson
09/23/2023, 1:51 AMMitch Bailey
09/23/2023, 1:56 AMDaniel Giftson
09/23/2023, 1:57 AMDaniel Giftson
09/23/2023, 2:00 AMDaniel Giftson
09/23/2023, 2:08 AMMitch Bailey
09/23/2023, 6:51 PMMitch Bailey
09/23/2023, 7:09 PMlvs/user_project_wrapper/lvs_config.json
, change user_proj_example.v
to user_proj_mac.v
.
OEB might be a true error. All your gpio’s have a default configuration of GPIO_MODE_MGMT_STD_BIDIRECTIONAL
.
In this configuration, gpio[37:5]
are controlled by the mgmt_core by default.
Fortunately in this mode, the user area io_in[37:5]
will be a copy of the input to the mgmt_core.
On the other hand, the user area io_out[*]
, which are connected to non_fixed signals, will never be available on gpio[*]
.
In order to output the user area io_out[*]
, the io must be (re-)configured in one of the GPIO_MODE_USER_STD
output modes and the corresponding io_oeb[*]
must be low.
If io_oeb[*]
are low, user area output io_out[*]
will be driving io_in[*]
, so you might want to programmatically set each io_oeb
to high for input and low for output.
In the current design, it appears that io_oeb
is unconnected.Daniel Giftson
09/23/2023, 10:54 PM