Lines Matching full:info
18 * program the FPGA using info passed in :c:expr:`fpga_region->info`.
37 struct fpga_image_info *info;
44 info = fpga_image_info_alloc(dev);
45 if (!info)
49 info->flags = FPGA_MGR_PARTIAL_RECONFIG;
57 info->sgt = [your scatter gather table]
61 info->buf = [your image buffer]
62 info->count = [image buffer size]
66 info->firmware_name = devm_kstrdup(dev, firmware_name,
71 /* Add info to region and do the programming */
72 region->info = info;
75 /* Deallocate the image info if you're done with it */
76 region->info = NULL;
77 fpga_image_info_free(info);
89 * fpga_image_info_alloc() — Allocate an FPGA image info struct
90 * fpga_image_info_free() — Free an FPGA image info struct