ContributionsMost RecentMost LikesSolutionsRe: Recently a machine that was used for synthesis in Quartus Prime Pro gone and we switched to another machine. However, the license file stopped working: Error(119013): Current license file does not support the 10AS066H3F34I2SG device. Hi Joseph, Please, what is the status of this issue? Thanks! Re: Recently a machine that was used for synthesis in Quartus Prime Pro gone and we switched to another machine. However, the license file stopped working: Error(119013): Current license file does not support the 10AS066H3F34I2SG device. Transferring a License File to Another Computer implies the same user on Intel site, right? If so, then the procedure does not work for us, since the person the license was registered on and the computer are gone. We only have license file left. Please, help to resolve. Thanks! Re: Recently a machine that was used for synthesis in Quartus Prime Pro gone and we switched to another machine. However, the license file stopped working: Error(119013): Current license file does not support the 10AS066H3F34I2SG device. Is there a way to run Quartus "locally" without establishing the licensing daemon? Thanks! Recently a machine that was used for synthesis in Quartus Prime Pro gone and we switched to another machine. However, the license file stopped working: Error(119013): Current license file does not support the 10AS066H3F34I2SG device. Manually changing MAC address to one of the new machine does not work. Re: Alternate driver for Avalon-MM DMA for PCIe I am not quite sure what is your question, but here is some explanation (I updated my previous message as well): avalon-dma - DMA engine driver that provides generic interface to the Avalon DMA engine; avalon-drv - sample driver that uses avalon-dma engine interface; avalon-drv-tool - sample user-level utility that uses avalon-drv interface to execute DMAs; The Linux version used is upstream v5.3-rc8. It is not big deal to backport it to any earlier version. HTH Thanks! Re: Alternate driver for Avalon-MM DMA for PCIe Hello! I remember downloading the reference design from wiki, but the link does not appear available anymore. This one looks the same: https://www.intel.com/content/www/us/en/programmable/support/support-resources/software/download/refdesigns/ip/interface/dnl-pciexpress-hp-avalonmm.html You could find the recent version of "avalon-dma" and "avalon-drv" drivers here: git@github.com:a-gordeev/linux.git avalon-dma-engine git@github.com:a-gordeev/avalon-drv-tool.git master Here is some explanation: avalon-dma - DMA engine driver that provides generic interface to the Avalon DMA engine; avalon-drv - sample driver on top of a custom A10 design (see Alaric board link below) that uses avalon-dma engine; avalon-drv-tool - user-level sample utility that uses avalon-drv interface to execute DMAs; I used Arria® 10 SoC FMC IDK for development: https://www.reflexces.com/intel-fpga/arria-10-intel-fpga/alaric-instant-devkit-arria-10-soc-fmc-idk It would be interesting if you give it a go. Thanks! Alternate driver for Avalon-MM DMA for PCIe Hi All, If anyone is interested in a Linux device driver for Avalon-MM DMA for PCIe? The existing reference design code is quite difficult to maintain, while the alternate solution basically boils down to these APIs: typedef void (*avalon_dma_xfer_callback)(void *dma_async_param); int avalon_dma_submit_xfer( struct avalon_dma *avalon_dma, enum dma_data_direction direction, dma_addr_t dev_addr, dma_addr_t host_addr, unsigned int size, avalon_dma_xfer_callback callback, void *callback_param); int avalon_dma_submit_xfer_sg(struct avalon_dma *avalon_dma, enum dma_data_direction direction, dma_addr_t dev_addr, struct sg_table *sg_table, avalon_dma_xfer_callback callback, void *callback_param); int avalon_dma_issue_pending(struct avalon_dma *avalon_dma); The callbacks are called from the tasklet context - much like standard Linux dmaengine framework does. If the idea gathers enough interest I can think of posting it upstream or coming up with implementation that conforms to the Kernel dmaengine model. Please, let me know if the use of suggested API is not clear and needs clarification. Thanks!