final gds oasis
65 files changed
tree: f77280ae4e7c833c1e3506045c6ec33e8bbe4088
  1. def/
  2. deps/
  3. docs/
  4. gds/
  5. lef/
  6. lib/
  7. mag/
  8. maglef/
  9. mpw_precheck/
  10. openlane/
  11. sdc/
  12. sdf/
  13. signoff/
  14. spef/
  15. spi/
  16. tapeout/
  17. verilog/
  18. .gitignore
  19. LICENSE
  20. Makefile
  21. README.md
README.md

Caravel User Project

License UPRJ_CI Caravel Build

:exclamation: GF180mcuC shuttle MPW0

FiveGuys

This is a simple design with five 4-bit up-counters. The ports of each counter are clock, reset, io_out.

The FiveGuys design (gdsii file) is located at here and the wrappered counter (gdsii file) is located at here.

Step 1: Create the Design with Five Counters

Before running the design flow, please make sure the gf180 PDK was installed correctly. For the information about switching PDK from sky130 to gf180mcuC, you may refer to this video. (Great thanks to Matt)

Once you have done with PDK setups, you can simply follow the commands below after you changed the corresponding cntr_example.v, config.tcl file, all files in the includes directory, and the uprj_netlist.v of the counter:

git clone https://github.com/AyaseErii/gf180-FiveGuys.git
cd gf180-FiveGuys
make cntr_example

The command above will generate the digital counter design (gdsii) and all necessary files for the next step---wrapper the design in to user_project_wrapper.

Step 2: Harden the Five Counters in the Wrapper

Before running the flow of user_project_wrapper, please make sure you changed the user_project_wrapper.v, config.tcl for the user_project_wrapper design, and macro.cfg for macro placement.

Once you have done with the above commands, you need to go to gf180-FiveGuys directory again, and use the command below:

make user_project_wrapper

After the flow compeleted, you can repeat the Step 2 iteratively until you get a satisfied design.

Sample result of the FiveGuys wrapper: image

Step 3: Run the precheck

Before running the precheck, you need to modify the user_defines.v to define GPIOs. Then you need to install the local precheck module which will just take a few seconds to finish the installation.

cd {YOUR_PROJECT_DIR}
make precheck

After that you can start precheck process:

make run-precheck

This will take a few minutes to a few hours, depending on the size of the entire design.

If the precheck finished with {{SUCCESS}} All Checks Passed !!!, you are done with the design and ready for tape-out, and congradulations!

Contributors

Jun (Jerry) Yin, Ceylan M. Morgul, Rahul Sreekumar, Xuanjia (Eric) Bi, and Mircea R. Stan.

ECE department of University of Virginia

Additional Information about Caravel

Refer to README for a quickstart of how to use caravel_user_project

Refer to README for this sample project documentation.