https://open-source-silicon.dev logo
#openlane
Title
# openlane
i

Ivan Rodriguez

07/04/2021, 11:06 AM
Hi, I want to use basic PDK Sky130 cells for part of my design. I manage to make it work with RTL simulations. But when I try to use the same code to be process by openlane I get and error in that part because it does not recognize the cells. How I need to configure openlane to allow to use basic cells ? thanks
a

Arman Avetisyan

07/05/2021, 12:05 PM
You need to set specific configuration in config.tcl. See openlane's documentation
t

Tayyeb Mahmood

07/05/2021, 12:48 PM
Add set ::env(SYNTH_READ_BLACKBOX_LIB) 1, if you have std cells hard coded in your RTL.
i

Ivan Rodriguez

07/05/2021, 12:50 PM
perfect thanks
👍 2