├── .gitignore ├── LICENSE ├── README.md ├── custom └── README.md ├── drc └── README.md ├── lvs └── README.md ├── placeroute ├── 01_setup.tcl ├── 02_netlist.tcl ├── 03_constrain.tcl ├── 04_floorplan.tcl ├── 05_place.tcl ├── 06_clock.tcl ├── 07_route.tcl ├── 08_cleanup.tcl ├── 09_signoff.tcl ├── README.md ├── arachne │ └── README.md ├── defaults.tcl ├── example.tcl └── run.tcl ├── scripts ├── aif2netlist ├── bgaquad ├── drc ├── drcsum ├── eda_subroutines.pl ├── gds2lib ├── gdscompare ├── lef2lib ├── lib2db ├── lvs ├── mapcompare ├── netlist2orcad ├── tf2map ├── tf2ss ├── vlog2cdl ├── vlog2lib ├── vlog2spice └── vlog2tcl ├── spice └── README.md ├── sta └── README.md ├── synthesis ├── 01_setup.tcl ├── 02_hdl.tcl ├── 03_constrain.tcl ├── 04_floorplan.tcl ├── 05_compile.tcl ├── 06_dft.tcl ├── 07_optimize.tcl ├── 08_signoff.tcl ├── README.md ├── defaults.tcl ├── example.tcl ├── run.tcl └── yosys │ ├── 01_setup.tcl │ ├── 02_hdl.tcl │ ├── 03_constrain.tcl │ ├── 04_floorplan.tcl │ ├── 05_compile.tcl │ ├── 06_dft.tcl │ ├── 07_optimize.tcl │ ├── 08_signoff.tcl │ └── README.md └── verilog └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/README.md -------------------------------------------------------------------------------- /custom/README.md: -------------------------------------------------------------------------------- 1 | ## Sad.... 2 | -------------------------------------------------------------------------------- /drc/README.md: -------------------------------------------------------------------------------- 1 | ## Sad... 2 | -------------------------------------------------------------------------------- /lvs/README.md: -------------------------------------------------------------------------------- 1 | ## Sad... 2 | -------------------------------------------------------------------------------- /placeroute/01_setup.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/01_setup.tcl -------------------------------------------------------------------------------- /placeroute/02_netlist.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/02_netlist.tcl -------------------------------------------------------------------------------- /placeroute/03_constrain.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/03_constrain.tcl -------------------------------------------------------------------------------- /placeroute/04_floorplan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/04_floorplan.tcl -------------------------------------------------------------------------------- /placeroute/05_place.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/05_place.tcl -------------------------------------------------------------------------------- /placeroute/06_clock.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/06_clock.tcl -------------------------------------------------------------------------------- /placeroute/07_route.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/07_route.tcl -------------------------------------------------------------------------------- /placeroute/08_cleanup.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/08_cleanup.tcl -------------------------------------------------------------------------------- /placeroute/09_signoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/09_signoff.tcl -------------------------------------------------------------------------------- /placeroute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/README.md -------------------------------------------------------------------------------- /placeroute/arachne/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/arachne/README.md -------------------------------------------------------------------------------- /placeroute/defaults.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/defaults.tcl -------------------------------------------------------------------------------- /placeroute/example.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/example.tcl -------------------------------------------------------------------------------- /placeroute/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/placeroute/run.tcl -------------------------------------------------------------------------------- /scripts/aif2netlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/aif2netlist -------------------------------------------------------------------------------- /scripts/bgaquad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/bgaquad -------------------------------------------------------------------------------- /scripts/drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/drc -------------------------------------------------------------------------------- /scripts/drcsum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/drcsum -------------------------------------------------------------------------------- /scripts/eda_subroutines.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/eda_subroutines.pl -------------------------------------------------------------------------------- /scripts/gds2lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/gds2lib -------------------------------------------------------------------------------- /scripts/gdscompare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/gdscompare -------------------------------------------------------------------------------- /scripts/lef2lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/lef2lib -------------------------------------------------------------------------------- /scripts/lib2db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/lib2db -------------------------------------------------------------------------------- /scripts/lvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/lvs -------------------------------------------------------------------------------- /scripts/mapcompare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/mapcompare -------------------------------------------------------------------------------- /scripts/netlist2orcad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/netlist2orcad -------------------------------------------------------------------------------- /scripts/tf2map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/tf2map -------------------------------------------------------------------------------- /scripts/tf2ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/tf2ss -------------------------------------------------------------------------------- /scripts/vlog2cdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/vlog2cdl -------------------------------------------------------------------------------- /scripts/vlog2lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/vlog2lib -------------------------------------------------------------------------------- /scripts/vlog2spice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/vlog2spice -------------------------------------------------------------------------------- /scripts/vlog2tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/scripts/vlog2tcl -------------------------------------------------------------------------------- /spice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/spice/README.md -------------------------------------------------------------------------------- /sta/README.md: -------------------------------------------------------------------------------- 1 | ## Sad... 2 | -------------------------------------------------------------------------------- /synthesis/01_setup.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/01_setup.tcl -------------------------------------------------------------------------------- /synthesis/02_hdl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/02_hdl.tcl -------------------------------------------------------------------------------- /synthesis/03_constrain.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/03_constrain.tcl -------------------------------------------------------------------------------- /synthesis/04_floorplan.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/04_floorplan.tcl -------------------------------------------------------------------------------- /synthesis/05_compile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/05_compile.tcl -------------------------------------------------------------------------------- /synthesis/06_dft.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/06_dft.tcl -------------------------------------------------------------------------------- /synthesis/07_optimize.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/07_optimize.tcl -------------------------------------------------------------------------------- /synthesis/08_signoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/08_signoff.tcl -------------------------------------------------------------------------------- /synthesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/README.md -------------------------------------------------------------------------------- /synthesis/defaults.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/defaults.tcl -------------------------------------------------------------------------------- /synthesis/example.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/example.tcl -------------------------------------------------------------------------------- /synthesis/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/run.tcl -------------------------------------------------------------------------------- /synthesis/yosys/01_setup.tcl: -------------------------------------------------------------------------------- 1 | ##TBD 2 | -------------------------------------------------------------------------------- /synthesis/yosys/02_hdl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/yosys/02_hdl.tcl -------------------------------------------------------------------------------- /synthesis/yosys/03_constrain.tcl: -------------------------------------------------------------------------------- 1 | #TBD? 2 | -------------------------------------------------------------------------------- /synthesis/yosys/04_floorplan.tcl: -------------------------------------------------------------------------------- 1 | ##TBD 2 | -------------------------------------------------------------------------------- /synthesis/yosys/05_compile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/yosys/05_compile.tcl -------------------------------------------------------------------------------- /synthesis/yosys/06_dft.tcl: -------------------------------------------------------------------------------- 1 | ## TBD 2 | -------------------------------------------------------------------------------- /synthesis/yosys/07_optimize.tcl: -------------------------------------------------------------------------------- 1 | # TBD 2 | -------------------------------------------------------------------------------- /synthesis/yosys/08_signoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/yosys/08_signoff.tcl -------------------------------------------------------------------------------- /synthesis/yosys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/synthesis/yosys/README.md -------------------------------------------------------------------------------- /verilog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/openeda/HEAD/verilog/README.md --------------------------------------------------------------------------------