-
Notifications
You must be signed in to change notification settings - Fork 4
Environment Setup
The following is the list of Linux command sequence to install and setup the Environment , the line starting with "$" are linux commands and the line starting with "//" are description
$ mkdir projects
$ which git
// If you are not getting the git install path , you have to install git using the following commands
$ sudo apt update
$ sudo apt install git
// Once git is installed , clone the repo
$ git clone https://github.com/ISL-ECE-CEG-AU/GPS_Baseband.git
$ cd GPS_Baseband
// Install the caravel-lite repo
$ make install
// Change to root to install sky130nm pdk and OpenLANE Tool
$ sudo -i
// cd to GPS_Baseband Folder
$ cd /home/babu/projects/GPS_Baseband
$ export SKYWATER_COMMIT=c094b6e83a4f9298e47f696ec5a7fd53535ec5eb
$ export PDK_ROOT=/home/babu/projects/GPS_Baseband/sk130pdk
$ make pdk
// Set OPENLANE_ROOT
$ export OPENLANE_ROOT=/home/babu/projects/GPS_Baseband/eda_tool
// Before installing OpenLane tool , check whether docker command is installed
$ which docker
// If docker is not installed , install it using the steps mentioned in the link https://docs.docker.com/engine/install/ubuntu/ or https://www.simplilearn.com/tutorials/docker-tutorial/how-to-install-docker-on-ubuntu
// install Openlane EDA Tools
$ make openlane
// Run the ASIC Flow with the default user_proj_example , make sure that the flow completes without error
$ cd openlane
$ make user_proj_example
$ make user_project_wrapper