fpga-load

Linux Drivers

Release Date
2023-07-22
  • int dfx_cfg_load ( struct dfx_package_Id *package_Id)

/* This API is Responsible for the following things. *      -->Load  into the PL *      -->Probe the Drivers which are relevant to the Bitstream as per DT overlay mentioned in dfx_package folder) * *  package_id: Unique package_id value which was returned by dfx_cfg_init. * * Return: returns zero on success or Error code on failure. */ Usage example: #include "libfpga.h" /* More code */ ret = dfx_cfg_load (package_id); if (ret) return -1 /* More code */