Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't read "io_pin_sites": no such variable, when working with 030-iob18 fuzzer of Artix7 #2232

Open
dg-deus opened this issue Sep 12, 2023 · 1 comment

Comments

@dg-deus
Copy link

dg-deus commented Sep 12, 2023

I keep having the error message,can't read "io_pin_sites": no such variable, while executing 030-iob18 fuzzer.

So, I looked into generate.tcl in 030-iob18 directory.
And I opened my Vivado 2017.2 and tested make_io_pin_sites proc after "link_design -part xc7a15t" command.
As a result, it seems like there are no site and pad with IOB18* site type, skipping dict append io_pin_sites $site $pad.
That's why I constantly have the error.
Does this 030-iob18 fuzzer depend on target FPGA part?

proc make_io_pin_sites {} {
    # get all possible IOB pins
    foreach pad [get_package_pins -filter "IS_GENERAL_PURPOSE == 1"] {
        set site [get_sites -of_objects $pad]
        if {[llength $site] == 0} {
            continue
        }
        if [string match IOB18* [get_property SITE_TYPE $site]] {
            dict append io_pin_sites $site $pad
        }
    }
    return $io_pin_sites
}
@mkurc-ant
Copy link
Contributor

Hi,

Yes, you're right. The 030-iob18 fuzzer is only meant for parts that have IOB18 sites. It is enabled conditionally:
https://github.com/f4pga/prjxray/blob/master/fuzzers/Makefile#L121-L123

As you can see it is currently enabled only for 7-series Kintex devices:
https://github.com/f4pga/prjxray/blob/master/fuzzers/Makefile#L87-L91

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants