https://open-source-silicon.dev logo
c

Connie Duong

11/30/2021, 7:48 AM
How does openlane and open-MPW precheck relate to each other? So after doing the layout in magic, I convert it to the GSDII files using openlane, and then run the precheck? I am trying to use the analog_wrapper for my design and did not see OpenLane used in the caravel analog documentation.
👍 2
h

Hieu Bui

11/30/2021, 12:14 PM
Openlane is used for the digital flow. If you are doing a pure analog design, you don't need Openlane. The precheck scripts will check your design with the rules for merging with caravel/caraven test hardness and the rules for fabrication. It also check the DRC rules. You can run precheck with your analog wrapper and fix all the violations before submitting it for the tapeout job.
👍 1
c

Connie Duong

12/02/2021, 5:10 AM
@UserIf i do not need to install Openlane, would I still be able to use the docker for full chip simulation, or do I need to install the simulation environment locally? Thanks!
h

Hieu Bui

12/02/2021, 7:46 AM
As far as I remember, the simulator is iverilog. You just need to install the GCC compiler for RISC-V and iverilog to run the simulation. Docker image is just a simple way to do this.
c

Connie Duong

12/02/2021, 6:27 PM
Thanks for the help!