-
Notifications
You must be signed in to change notification settings - Fork 148
PYNQ example
In this example we implement f(x) = 2x
as an IP on PYNQ.
In this section, you will write your code in C/C++, test it, and convert it to RTL using Vivad_HLS.
Open Vivado_HLS, create a new project, and name it pynq_mul.
Set top function name to mul_test
Do not add any files to your project and proceed to part selection and select xcz020clg400-1.
In Explorer section, right click on Source, select New file and create mul_test.cpp. Complete the body of mul.cpp as following:
void mul_test(int* out, int in){
*out = 2*in;
}
Create a test bench file by right clicking on Test Bench in Explorer section and create a new file named mul_tb.cpp. Complete the body of this file as following:
#include <iostream>
using namespace std;
void mul_test(int* out, int in);
int main(int argc, char *argv[]){
int x=5;
int y;
mul_test(&y, x);
if(y!=2*x){
cout << "Test Failed: output(" << y << ") is not equal to 2x" << x << endl;
}else{
cout << "Test Passed" << endl;
}
return 0;
}
Run C simulation and make sure your code passes your test bench.
Make sure that mul_test.cpp is open. Open Directive on right side and set all the ports to s_axilite by right clicking on available options in Directive window.
Run C Synthesis and after finished, click on export RTL and export your design.
At this point, you can exit and close Vivado_HLS.
In this section, you will import your RTL code to Vivado and generate a bitstream.
Open Vivado and create a new project and Name your project as mul_test.
Select RTL Project and check Do not specify sources at this time.
Set default part to xcz020clg400-1.
Under Project Manager, click on Create Block Design
Under Project Manager, click on IP Catalog. Right click on the open window and select Add Repository. In the open window navigate to your Vivado_HLS project folder and select pass_to_vivado_hls_folder\solution1\impl\ip
In IP Catalog search for mul_test and add it to your block design.
Go back to IP Catalog and add ZYNQ7 Processing System to your block design.
Your diagram should look like the following:
On top of Diagram window, first click and complete Run Block Automation and then Run Connection Automation with default settings. Your diagram should change and show connections and a couple of extra IPs:
In Sources, right click on design_1 and select Create HDL Wrapper.
Under Project Manager, click on Generate Bitstream to build .bit and .tcl files.
Before closing Vivado, we need to note our IP and its ports addresses:
Under Sources, open mul_test_mul_io_s_axi.v. Scroll down and note addresses for in and out ports. We need these addresses for our host program.
Under Address Editor note IP's address
Using SMB or SCP, copy design_1_wrapper.bit and design_1_wrapper.tcl from vivado_project_path\mul_test.runs\impl1 to your PYNQ board at /home/xilinx/jupyter_notebooks/mul_test.
Open a new Notebook and run the following code to test your IP
from pynq import Overlay
from pynq import MMIO
ol = Overlay("/home/xilinx/jupyter_notebooks/mul_test/design_1_wrapper.bit")
ol.download()
mul_ip=MMIO(0x43C00000, 0x10000)
mul_ip.write(0x18, 5)
print("add a:", add_ip.read(0x18))
mul_ip.write(0x00, 1)
print("add y:", add_ip.read(0x10))