commit | dc8f55c9a60fbab3f72c518e63afc6fbe6faa2fa | [log] [tgz] |
---|---|---|
author | Sukru Uzun <sukru.uzun@procenne.com> | Thu Mar 24 16:41:40 2022 +0300 |
committer | Sukru Uzun <sukru.uzun@procenne.com> | Thu Mar 24 16:41:40 2022 +0300 |
tree | a6cdc63f525125a6391b376e6e1fb4e87b5b3689 | |
parent | 78b720d5002fe396b99ad96fcb894c31dfdd85d3 [diff] |
adding layout image
Keeping your data secure. This project aims to secure data from adversaries. It has inherent SRAM to keep the data safe and they are kept as not plaintext but ciphered. We got 5 macros inherently in order to accomplish our goal. Below section will be described those macros briefly.
TRNG
- True random number generator. Ring oscillator macro which is one of the inner macros of caravel core, is used. In this macro, delay buffers are used instead of not gates. It can be also used as key generator for AES.SPI
- SPI pins are connected to GPIO pins which is spared for user project. User can read/write data from/to SRAM via SPI.UART
- UART pins are connected to GPIO pins which is spared for user project. User can read/write data from/to SRAM via UART.AES
- Cipher plaintext to keep data safe in SRAM.SRAM
- Our precious. Its 1KB.All these macros are in located in the verilog/rtl/
directory.
sudo apt update sudo apt-get install apt-transport-https curl rtificates -agent software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" sudo apt update apt-cache policy docker-ce sudo apt install docker-ce #Add User Name to docker sudo usermod -aG docker <your user name> # Reboot the system to enable the docker setup
git clone -b mpw-5c https://github.com/efabless/caravel_user_project
export CARAVEL_ROOT=<Caravel Installed Path> export PDK_ROOT=<PDK Installed PATH> export UPRJ_ROOT=<Caravel User Project Installed Path> export OPENLANE_ROOT=<OpenLane Installed Path> export OPENLANE_IMAGE_NAME=efabless/openlane:2022.02.23_02.50.41
source ~/.bashrc cd $UPRJ_ROOT make install # install pdk. pdk with sram, openlane. caravel and mgmt core
A subdirectory for each macro in your project under openlane/ directory, each subdirectory should include openlane configuration files for the macro
make <module_name> make user_project_wrapper
Examples:
# you can then run RTL simulations using make verify-<testbench-name>-rtl # or GL simulation using make verify-<testbench-name>-gl # for example make verify-wb_port-rtl
make precheck make run-precheck
Mbist Controller flow uses Openlane tool sets.
yosys
- Performs RTL synthesisabc
- Performs technology mappingOpenSTA
- Pefroms static timing analysis on the resulting netlist to generate timing reportsinit_fp
- Defines the core area for the macro as well as the rows (used for placement) and the tracks (used for routing)ioplacer
- Places the macro input and output portspdn
- Generates the power distribution networktapcell
- Inserts welltap and decap cells in the floorplanRePLace
- Performs global placementResizer
- Performs optional optimizations on the designOpenPhySyn
- Performs timing optimizations on the designOpenDP
- Perfroms detailed placement to legalize the globally placed componentsTritonCTS
- Synthesizes the clock distribution network (the clock tree)FastRoute
- Performs global routing to generate a guide file for the detailed routerCU-GR
- Another option for performing global routing.TritonRoute
- Performs detailed routingSPEF-Extractor
- Performs SPEF extractionMagic
- Streams out the final GDSII layout file from the routed defKlayout
- Streams out the final GDSII layout file from the routed def as a back-upMagic
- Performs DRC Checks & Antenna ChecksKlayout
- Performs DRC ChecksNetgen
- Performs LVS ChecksCVC
- Performs Circuit Validity Checks