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

Accessing the AXI-Lite via the fpga_pci_attach call... #640

Open
wpiman opened this issue Apr 26, 2024 · 2 comments
Open

Accessing the AXI-Lite via the fpga_pci_attach call... #640

wpiman opened this issue Apr 26, 2024 · 2 comments

Comments

@wpiman
Copy link

wpiman commented Apr 26, 2024

I am able to use the fpga_pci.h and fpga_mgmt.h libraries in my code just fine when I run the code as "sudo".
When I run it as a user, I get an error...

It is a simple AXI-LITE peek/poke command. Here is the C code that offends...

 rc = fpga_pci_attach(slot_id, FPGA_APP_PF, APP_PF_BAR0, 0, &pci_bar_handle);
 fail_on(rc, out, "Unable to attach to the AFI on slot id %d", slot_id);

And the error when run as a non-root user....

"2024-04-26T21:33:40.200320Z, undefined, ERROR, peekPoke.c +128: main(): Unable to attach to the AFI on slot id 0"

I followed these instructions to run as a non-root user...

[(https://github.com/aws/aws-fpga/blob/master/sdk/README.md#using-fpga-as-non-root-user)]

[ec2-user@ip-10-20-7-111 peekPoke]$ env|grep AWS_FPGA
AWS_FPGA_SDK_GROUP=fpgauser
AWS_FPGA_ALLOW_NON_ROOT=y
AWS_FPGA_REPO_DIR=/home/ec2-user/aws-fpga
BASH_FUNC_allow_non_root()=() { [ ! -z ${AWS_FPGA_ALLOW_NON_ROOT} ]
BASH_FUNC_allow_others()=() { [ ! -z ${AWS_FPGA_SDK_OTHERS} ]

These allow me to run the "fpga-load-local-image" as a user, as well as the "fpga-set-virtual-dip-switch" command just fine. However, the code that I wrote still throw that error.

@czfpga
Copy link
Contributor

czfpga commented May 6, 2024

Hi,

Thank you for reaching out. I want to let you know that we're currently investigating this issue. We will keep you updated.

@s03311251
Copy link

I am also having an almost identical problem, where I can't run peek/poke command without sudo. Here is what I have commanded:

newgrp fpgauser
sudo usermod -a -G fpgauser $(whoami)
export AWS_FPGA_ALLOW_NON_ROOT=y
export AWS_FPGA_SDK_OTHERS=y
cd $AWS_FPGA_REPO_DIR && source sdk_setup.sh
cd ~/my_project_folder && make all
./my_project_executable

and below is the error message when I set CONFIG_LOGLEVEL to 4:

2024-06-28T13:44:50.935611Z, undefined, INFO, fpga_pci.c +281: fpga_pci_init(): FPGA_PCI_BARS_MAX=64
2024-06-28T13:44:50.935825Z, undefined, DEBUG, fpga_pci_sysfs.c +62: fpga_pci_get_id(): Error opening /sys/bus/pci/devices/./vendor: error_number=2
2024-06-28T13:44:50.935832Z, undefined, DEBUG, fpga_pci_sysfs.c +285: fpga_pci_get_resource_map_ids(): Error retrieving vendor_id
2024-06-28T13:44:50.935841Z, undefined, DEBUG, fpga_pci_sysfs.c +62: fpga_pci_get_id(): Error opening /sys/bus/pci/devices/../vendor: error_number=2
2024-06-28T13:44:50.935846Z, undefined, DEBUG, fpga_pci_sysfs.c +285: fpga_pci_get_resource_map_ids(): Error retrieving vendor_id
2024-06-28T13:44:50.936590Z, undefined, DEBUG, fpga_pci_sysfs.c +188: fpga_pci_get_pci_resource_info(): stat failed, path=/sys/bus/pci/devices/0000:00:1e.0/resource1: error_number=2
2024-06-28T13:44:50.936598Z, undefined, DEBUG, fpga_pci_sysfs.c +239: fpga_pci_get_resources(): Unable to read resource information for 1
2024-06-28T13:44:50.936821Z, undefined, DEBUG, fpga_pci.c +171: fpga_pci_bar_attach(): enter
2024-06-28T13:44:50.936827Z, undefined, INFO, fpga_pci.c +186: fpga_pci_bar_attach(): vendor_id=0x1d0f, device_id=0x1041, DBDF:0000:00:1e.0, resource_num=0, size=16384, burstable=1
2024-06-28T13:44:50.936833Z, undefined, DEBUG, fpga_pci.c +141: fpga_pci_check_file_id(): path=/sys/bus/pci/devices/0000:00:1e.0/vendor
2024-06-28T13:44:50.936857Z, undefined, DEBUG, fpga_pci.c +141: fpga_pci_check_file_id(): path=/sys/bus/pci/devices/0000:00:1e.0/device
2024-06-28T13:44:50.936903Z, undefined, DEBUG, fpga_pci.c +240: fpga_pci_bar_attach(): Opening sysfs_name=/sys/bus/pci/devices/0000:00:1e.0/resource0
2024-06-28T13:44:50.936932Z, undefined, DEBUG, fpga_pci.c +95: fpga_pci_bar_alloc(): enter
2024-06-28T13:44:50.936937Z, undefined, DEBUG, fpga_pci.c +104: fpga_pci_bar_alloc(): allocated handle=0
2024-06-28T13:44:50.936941Z, undefined, DEBUG, fpga_pci.c +59: fpga_pci_bar_set_mem_base_size(): handle=0
2024-06-28T13:44:50.936945Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.936952Z, undefined, DEBUG, fpga_hal_mbox.c +55: fpga_hal_mbox_init(): enter
2024-06-28T13:44:50.936955Z, undefined, DEBUG, fpga_hal_mbox.c +43: fpga_hal_mbox_print_reg_offsets(): FMB_BASE=0x00000000, status=0x0000000c
2024-06-28T13:44:50.936959Z, undefined, DEBUG, fpga_hal_mbox.c +46: fpga_hal_mbox_print_reg_offsets(): Reg Offsets: mb_wr_index=0x00000020, mb_wr_data=0x00000024, mb_wr_len=0x00000028
2024-06-28T13:44:50.936964Z, undefined, DEBUG, fpga_hal_mbox.c +49: fpga_hal_mbox_print_reg_offsets(): Reg Offsets: mb_rd_index=0x00000030, mb_rd_data=0x00000034, mb_rd_len=0x00000038
2024-06-28T13:44:50.936969Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.936973Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.936977Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.936982Z, undefined, DEBUG, fpga_hal_mbox.c +301: fpga_hal_mbox_write(): enter
2024-06-28T13:44:50.936986Z, undefined, DEBUG, fpga_hal_mbox.c +230: fpga_hal_mbox_write_async(): enter
2024-06-28T13:44:50.936990Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.936994Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.936998Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.937002Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x20, value=0x00000000
2024-06-28T13:44:50.937006Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937009Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937012Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x24, value=0x00010002
2024-06-28T13:44:50.937016Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937019Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937022Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x24, value=0x00000002
2024-06-28T13:44:50.937026Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937030Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937033Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x24, value=0x00000004
2024-06-28T13:44:50.937037Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937042Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937046Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x24, value=0x6b8b4567
2024-06-28T13:44:50.937050Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937053Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937057Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x24, value=0x00000040
2024-06-28T13:44:50.937060Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937064Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937067Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x28, value=0x00000005
2024-06-28T13:44:50.937071Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937074Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937077Z, undefined, DEBUG, fpga_hal_mbox.c +260: fpga_hal_mbox_write_async(): Wrote len=20
2024-06-28T13:44:50.937081Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.937110Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.937115Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.939190Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.939199Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.939203Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.941276Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.941283Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.941287Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.943359Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.943366Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.943370Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.945446Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.945458Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.945462Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000002
2024-06-28T13:44:50.945466Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0xc, value=0x00000002
2024-06-28T13:44:50.945469Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.945472Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.945477Z, undefined, DEBUG, fpga_hal_mbox.c +269: fpga_hal_mbox_read(): enter
2024-06-28T13:44:50.945480Z, undefined, DEBUG, fpga_hal_mbox.c +144: fpga_hal_mbox_read_async(): enter
2024-06-28T13:44:50.945483Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.945487Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.945491Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.945494Z, undefined, DEBUG, fpga_hal_mbox.c +155: fpga_hal_mbox_read_async(): RX msg not available
2024-06-28T13:44:50.947571Z, undefined, DEBUG, fpga_hal_mbox.c +144: fpga_hal_mbox_read_async(): enter
2024-06-28T13:44:50.947578Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.947582Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.947586Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.947589Z, undefined, DEBUG, fpga_hal_mbox.c +155: fpga_hal_mbox_read_async(): RX msg not available
2024-06-28T13:44:50.949666Z, undefined, DEBUG, fpga_hal_mbox.c +144: fpga_hal_mbox_read_async(): enter
2024-06-28T13:44:50.949673Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.949676Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.949680Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.949683Z, undefined, DEBUG, fpga_hal_mbox.c +155: fpga_hal_mbox_read_async(): RX msg not available
2024-06-28T13:44:50.951760Z, undefined, DEBUG, fpga_hal_mbox.c +144: fpga_hal_mbox_read_async(): enter
2024-06-28T13:44:50.951767Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.951771Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.951775Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.951778Z, undefined, DEBUG, fpga_hal_mbox.c +155: fpga_hal_mbox_read_async(): RX msg not available
2024-06-28T13:44:50.953854Z, undefined, DEBUG, fpga_hal_mbox.c +144: fpga_hal_mbox_read_async(): enter
2024-06-28T13:44:50.953861Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.953864Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.953868Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.953872Z, undefined, DEBUG, fpga_hal_mbox.c +155: fpga_hal_mbox_read_async(): RX msg not available
2024-06-28T13:44:50.955948Z, undefined, DEBUG, fpga_hal_mbox.c +144: fpga_hal_mbox_read_async(): enter
2024-06-28T13:44:50.955959Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.955962Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.955966Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000001
2024-06-28T13:44:50.955969Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.955973Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.955976Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x38, value=0x00000096
2024-06-28T13:44:50.955980Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0x30, value=0x00000000
2024-06-28T13:44:50.955983Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.955987Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.955990Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.955993Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.955997Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000002
2024-06-28T13:44:50.956001Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956004Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956008Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000002
2024-06-28T13:44:50.956011Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956014Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956018Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x01000258
2024-06-28T13:44:50.956022Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956025Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956029Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x6b8b4567
2024-06-28T13:44:50.956032Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956035Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956039Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x69666761
2024-06-28T13:44:50.956043Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956046Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956050Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x3639302d
2024-06-28T13:44:50.956053Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956056Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956060Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x62306464
2024-06-28T13:44:50.956063Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956067Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956071Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x66653866
2024-06-28T13:44:50.956074Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956077Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956081Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x62346538
2024-06-28T13:44:50.956085Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956088Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956092Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00003261
2024-06-28T13:44:50.956095Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956098Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956102Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956106Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956109Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956113Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956116Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956119Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956123Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956126Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956129Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956133Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956137Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956140Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956144Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956147Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956150Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956154Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956157Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956160Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956164Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956184Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956188Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956192Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956196Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956199Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956203Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956206Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956209Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956213Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956216Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956220Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956223Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0xf0001d0f
2024-06-28T13:44:50.956227Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956230Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956234Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x1d51fedd
2024-06-28T13:44:50.956237Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956240Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956244Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956247Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956251Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956254Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956258Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956261Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956265Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956268Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956271Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956275Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956279Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956282Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956285Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956289Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956292Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956296Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956299Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956302Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956306Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956309Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956313Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956317Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956320Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956474Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956483Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956489Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956494Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956500Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956506Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956512Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956517Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956523Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956529Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956535Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956541Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956546Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956552Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956555Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956558Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956562Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956566Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956569Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956573Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956576Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956579Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956583Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956587Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956590Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956594Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956597Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956600Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956604Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956607Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956611Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956615Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956618Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956621Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956625Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956628Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956631Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956635Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956639Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956642Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956646Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956649Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956653Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956657Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956660Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956663Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956667Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956671Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956674Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956678Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956682Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956685Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956689Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956692Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956695Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956699Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956703Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956706Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956710Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956713Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956717Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956720Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956724Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956727Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956731Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956734Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956737Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956741Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956745Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956748Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956765Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956769Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956772Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956777Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956780Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956783Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956793Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956797Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956800Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956804Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956807Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956810Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956814Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956818Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956821Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956825Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956828Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956831Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956835Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956839Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956842Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956846Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956849Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956852Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956856Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956859Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956862Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956866Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956891Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956894Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956898Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956902Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956905Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956909Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956912Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956915Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956919Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956922Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956926Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956929Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956933Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.956936Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.956940Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.956943Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957072Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957077Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x07735940
2024-06-28T13:44:50.957081Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957084Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957088Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957092Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957095Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957101Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x03b9aca0
2024-06-28T13:44:50.957104Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957107Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957112Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957117Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957120Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957124Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0b2d05e0
2024-06-28T13:44:50.957127Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957131Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957135Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957138Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957141Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957145Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0ee6b280
2024-06-28T13:44:50.957149Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957152Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957156Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957159Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957163Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957166Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x07735940
2024-06-28T13:44:50.957170Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957173Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957177Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957180Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957184Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957188Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x07735940
2024-06-28T13:44:50.957191Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957194Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957198Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957202Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957205Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957209Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x07735940
2024-06-28T13:44:50.957212Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957215Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957219Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957223Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957226Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957230Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0ee6b280
2024-06-28T13:44:50.957233Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957236Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957240Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957244Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957247Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957251Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x07735940
2024-06-28T13:44:50.957254Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957258Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957261Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957265Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957268Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957272Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0ee6b280
2024-06-28T13:44:50.957275Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957279Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957283Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957286Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957289Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957293Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0ee6b280
2024-06-28T13:44:50.957296Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957300Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957303Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957307Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957310Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957314Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0ee6b280
2024-06-28T13:44:50.957317Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957320Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957324Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957328Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957342Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957346Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0ee6b280
2024-06-28T13:44:50.957350Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957353Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957363Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957367Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957370Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957374Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x0ee6b280
2024-06-28T13:44:50.957377Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957380Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957384Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957388Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957391Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957395Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x11e1a300
2024-06-28T13:44:50.957398Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957401Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957405Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957408Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957412Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957415Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x17d78400
2024-06-28T13:44:50.957419Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957422Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957426Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957429Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957432Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957436Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x11e1a300
2024-06-28T13:44:50.957440Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957443Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957447Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957450Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957453Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957457Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x11e1a300
2024-06-28T13:44:50.957460Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957464Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957468Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957471Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957474Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957478Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x11e1a300
2024-06-28T13:44:50.957481Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957484Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957488Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957492Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957613Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957621Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x11e1a300
2024-06-28T13:44:50.957628Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957633Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957639Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957645Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957650Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957656Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x11e1a300
2024-06-28T13:44:50.957661Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957667Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957673Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957680Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957684Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957688Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000007
2024-06-28T13:44:50.957692Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957695Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957699Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957702Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957705Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957709Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000007
2024-06-28T13:44:50.957713Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957716Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957720Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957723Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957726Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957730Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000007
2024-06-28T13:44:50.957734Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957737Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957741Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957744Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957747Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957751Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0xef8e4ba2
2024-06-28T13:44:50.957754Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957758Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957762Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x96dd0bf8
2024-06-28T13:44:50.957765Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957768Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957772Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957776Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957779Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957783Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957786Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957789Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957793Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957797Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957800Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957804Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957807Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957811Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957815Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957818Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957821Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957825Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957828Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957832Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957836Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957839Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957842Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957846Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957850Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957853Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957857Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957860Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957863Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957880Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957885Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957888Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957892Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957896Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957899Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957915Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957919Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957922Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957926Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957929Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957933Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957943Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957946Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957949Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957953Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957957Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957960Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957964Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957967Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957970Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957974Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957978Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957981Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957985Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957988Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.957991Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.957995Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.957998Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958001Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958005Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958009Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958012Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958016Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958019Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958022Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958026Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958029Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958033Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958037Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958040Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958043Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958047Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958050Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958053Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958057Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958061Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958064Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958068Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958071Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958185Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958190Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958194Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958197Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958201Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958206Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958209Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958213Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958218Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958222Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958226Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958230Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958233Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958237Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000001
2024-06-28T13:44:50.958240Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958244Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958248Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x34, value=0x00000000
2024-06-28T13:44:50.958251Z, undefined, DEBUG, fpga_pci.c +339: fpga_pci_poke(): handle=0, offset=0xc, value=0x00000001
2024-06-28T13:44:50.958254Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958258Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958261Z, undefined, DEBUG, fpga_hal_mbox.c +189: fpga_hal_mbox_read_async(): Read len=600
2024-06-28T13:44:50.958274Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958277Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958281Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0xc, value=0x00000000
2024-06-28T13:44:50.958285Z, undefined, DEBUG, fpga_hal_mbox.c +116: fpga_hal_mbox_get_versions(): enter
2024-06-28T13:44:50.958289Z, undefined, DEBUG, fpga_pci.c +77: fpga_pci_bar_get_mem_at_offset(): handle=0
2024-06-28T13:44:50.958292Z, undefined, DEBUG, fpga_pci.c +46: fpga_pci_bar_get(): handle=0
2024-06-28T13:44:50.958296Z, undefined, DEBUG, fpga_pci.c +395: fpga_pci_peek(): handle=0, offset=0x0, value=0x04261818
2024-06-28T13:44:50.958299Z, undefined, DEBUG, fpga_hal_mbox.c +121: fpga_hal_mbox_get_versions(): returning sh_version=0x04261818
2024-06-28T13:44:50.958321Z, undefined, DEBUG, fpga_pci_sysfs.c +62: fpga_pci_get_id(): Error opening /sys/bus/pci/devices/./vendor: error_number=2
2024-06-28T13:44:50.958325Z, undefined, DEBUG, fpga_pci_sysfs.c +285: fpga_pci_get_resource_map_ids(): Error retrieving vendor_id
2024-06-28T13:44:50.958333Z, undefined, DEBUG, fpga_pci_sysfs.c +62: fpga_pci_get_id(): Error opening /sys/bus/pci/devices/../vendor: error_number=2
2024-06-28T13:44:50.958337Z, undefined, DEBUG, fpga_pci_sysfs.c +285: fpga_pci_get_resource_map_ids(): Error retrieving vendor_id
2024-06-28T13:44:50.959139Z, undefined, DEBUG, fpga_pci_sysfs.c +188: fpga_pci_get_pci_resource_info(): stat failed, path=/sys/bus/pci/devices/0000:00:1e.0/resource1: error_number=2
2024-06-28T13:44:50.959150Z, undefined, DEBUG, fpga_pci_sysfs.c +239: fpga_pci_get_resources(): Unable to read resource information for 1
AFI PCI  Vendor ID: 0x1d0f, Device ID 0xf000
2024-06-28T13:44:50.959373Z, undefined, DEBUG, fpga_pci_sysfs.c +62: fpga_pci_get_id(): Error opening /sys/bus/pci/devices/./vendor: error_number=2
2024-06-28T13:44:50.959378Z, undefined, DEBUG, fpga_pci_sysfs.c +285: fpga_pci_get_resource_map_ids(): Error retrieving vendor_id
2024-06-28T13:44:50.959385Z, undefined, DEBUG, fpga_pci_sysfs.c +62: fpga_pci_get_id(): Error opening /sys/bus/pci/devices/../vendor: error_number=2
2024-06-28T13:44:50.959390Z, undefined, DEBUG, fpga_pci_sysfs.c +285: fpga_pci_get_resource_map_ids(): Error retrieving vendor_id
2024-06-28T13:44:50.960071Z, undefined, DEBUG, fpga_pci_sysfs.c +188: fpga_pci_get_pci_resource_info(): stat failed, path=/sys/bus/pci/devices/0000:00:1e.0/resource1: error_number=2
2024-06-28T13:44:50.960079Z, undefined, DEBUG, fpga_pci_sysfs.c +239: fpga_pci_get_resources(): Unable to read resource information for 1
2024-06-28T13:44:50.960280Z, undefined, DEBUG, fpga_pci.c +171: fpga_pci_bar_attach(): enter
2024-06-28T13:44:50.960286Z, undefined, INFO, fpga_pci.c +186: fpga_pci_bar_attach(): vendor_id=0x1d0f, device_id=0xf000, DBDF:0000:00:1d.0, resource_num=1, size=2097152, burstable=0
2024-06-28T13:44:50.960292Z, undefined, DEBUG, fpga_pci.c +141: fpga_pci_check_file_id(): path=/sys/bus/pci/devices/0000:00:1d.0/vendor
2024-06-28T13:44:50.960315Z, undefined, DEBUG, fpga_pci.c +141: fpga_pci_check_file_id(): path=/sys/bus/pci/devices/0000:00:1d.0/device
2024-06-28T13:44:50.960340Z, undefined, DEBUG, fpga_pci.c +240: fpga_pci_bar_attach(): Opening sysfs_name=/sys/bus/pci/devices/0000:00:1d.0/resource1
2024-06-28T13:44:50.960352Z, undefined, ERROR, fpga_pci.c +243: fpga_pci_bar_attach(): open failed: error_number=13
2024-06-28T13:44:50.960357Z, undefined, ERROR, src/main.c +181: peek_poke_example(): Unable to attach to the AFI on slot id 0
2024-06-28T13:44:50.960360Z, undefined, ERROR, src/main.c +332: main(): peek-poke example failed

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

3 participants