blob: 48224fd82b7a06e03c47fb0799f87933ddaf709a [file] [log] [blame]
manarabdelaty6af74082021-04-26 14:56:35 +02001# SPDX-FileCopyrightText: 2020 Efabless Corporation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15# SPDX-License-Identifier: Apache-2.0
16
17CARAVEL_ROOT?=$(PWD)/caravel
18PRECHECK_ROOT?=${HOME}/precheck
19SIM ?= RTL
20
21# Install lite version of caravel, (1): caravel-lite, (0): caravel
22CARAVEL_LITE?=1
23
24ifeq ($(CARAVEL_LITE),1)
25 CARAVEL_NAME := caravel-lite
26 CARAVEL_REPO := https://github.com/efabless/caravel-lite
27 CARAVEL_COMMIT := main
28else
29 CARAVEL_NAME := caravel
30 CARAVEL_REPO := https://github.com/efabless/caravel
31 CARAVEL_COMMIT := master
32endif
33
34# Install caravel as submodule, (1): submodule, (0): clone
35SUBMODULE?=1
36
37# Include Caravel Makefile Targets
38.PHONY: %
39%:
40 $(MAKE) -f $(CARAVEL_ROOT)/Makefile $@
41
42# Verify Target for running simulations
43.PHONY: verify
44verify:
45 cd ./verilog/dv/ && \
46 export SIM=${SIM} && \
47 $(MAKE) -j$(THREADS)
48
49# Install DV setup
50.PHONY: simenv
51simenv:
52 docker pull efabless/dv_setup:latest
53
54PATTERNS=$(shell cd verilog/dv && find * -maxdepth 0 -type d)
55DV_PATTERNS = $(foreach dv, $(PATTERNS), verify-$(dv))
56TARGET_PATH=$(shell pwd)
57PDK_PATH=${PDK_ROOT}/sky130A
58VERIFY_COMMAND="cd ${TARGET_PATH}/verilog/dv/$* && export SIM=${SIM} && make"
59$(DV_PATTERNS): verify-% :
60 docker run -v ${TARGET_PATH}:${TARGET_PATH} -v ${PDK_PATH}:${PDK_PATH} \
61 -v ${CARAVEL_ROOT}:${CARAVEL_ROOT} \
62 -e TARGET_PATH=${TARGET_PATH} -e PDK_PATH=${PDK_PATH} \
63 -e CARAVEL_ROOT=${CARAVEL_ROOT} \
64 -u $(id -u $$USER):$(id -g $$USER) efabless/dv_setup:latest \
65 sh -c $(VERIFY_COMMAND)
66
67# Openlane Makefile Targets
68BLOCKS = $(shell cd openlane && find * -maxdepth 0 -type d)
69.PHONY: $(BLOCKS)
70$(BLOCKS): %:
71 cd openlane && $(MAKE) $*
72
73# Install caravel
74.PHONY: install
75install:
76ifeq ($(SUBMODULE),1)
77 @echo "Installing $(CARAVEL_NAME) as a submodule.."
78# Convert CARAVEL_ROOT to relative path because .gitmodules doesn't accept '/'
79 $(eval CARAVEL_PATH := $(shell realpath --relative-to=$(shell pwd) $(CARAVEL_ROOT)))
80 @if [ ! -d $(CARAVEL_ROOT) ]; then git submodule add --name $(CARAVEL_NAME) $(CARAVEL_REPO) $(CARAVEL_PATH); fi
81 @git submodule update --init
82 @cd $(CARAVEL_ROOT); git checkout $(CARAVEL_COMMIT)
83 $(MAKE) simlink
84else
85 @echo "Installing $(CARAVEL_NAME).."
86 @git clone $(CARAVEL_REPO) $(CARAVEL_ROOT)
87 @cd $(CARAVEL_ROOT); git checkout $(CARAVEL_COMMIT)
88endif
89
90# Create symbolic links to caravel's main files
91.PHONY: simlink
92simlink: check-caravel
93### Symbolic links relative path to $CARAVEL_ROOT
94 $(eval MAKEFILE_PATH := $(shell realpath --relative-to=openlane $(CARAVEL_ROOT)/openlane/Makefile))
95 $(eval PIN_CFG_PATH := $(shell realpath --relative-to=openlane/user_analog_project_wrapper $(CARAVEL_ROOT)/openlane/user_analog_project_wrapper_empty/pin_order.cfg))
96 mkdir -p openlane
97 mkdir -p openlane/user_project_wrapper
98 cd openlane &&\
99 ln -sf $(MAKEFILE_PATH) Makefile
100 cd openlane/user_project_wrapper &&\
101 ln -sf $(PIN_CFG_PATH) pin_order.cfg
102
103# Update Caravel
104.PHONY: update_caravel
105update_caravel: check-caravel
106ifeq ($(SUBMODULE),1)
107 @git submodule update --init --recursive
108 cd $(CARAVEL_ROOT) && \
109 git checkout $(CARAVEL_BRANCH) && \
110 git pull
111else
112 cd $(CARAVEL_ROOT)/ && \
113 git checkout $(CARAVEL_BRANCH) && \
114 git pull
115endif
116
117# Uninstall Caravel
118.PHONY: uninstall
119uninstall:
120ifeq ($(SUBMODULE),1)
121 git config -f .gitmodules --remove-section "submodule.$(CARAVEL_NAME)"
122 git add .gitmodules
123 git submodule deinit -f $(CARAVEL_ROOT)
124 git rm --cached $(CARAVEL_ROOT)
125 rm -rf .git/modules/$(CARAVEL_NAME)
126 rm -rf $(CARAVEL_ROOT)
127else
128 rm -rf $(CARAVEL_ROOT)
129endif
130
131# Install Openlane
132.PHONY: openlane
133openlane:
134 cd openlane && $(MAKE) openlane
135
136# Install Pre-check
137# Default installs to the user home directory, override by "export PRECHECK_ROOT=<precheck-installation-path>"
138.PHONY: precheck
139precheck:
140 @git clone https://github.com/efabless/open_mpw_precheck.git --depth=1 $(PRECHECK_ROOT)
141 @docker pull efabless/open_mpw_precheck:latest
142
143.PHONY: run-precheck
144run-precheck: check-precheck check-pdk check-caravel
145 $(eval TARGET_PATH := $(shell pwd))
146 cd $(PRECHECK_ROOT) && \
147 docker run -v $(PRECHECK_ROOT):/usr/local/bin -v $(TARGET_PATH):$(TARGET_PATH) -v $(PDK_ROOT):$(PDK_ROOT) -v $(CARAVEL_ROOT):$(CARAVEL_ROOT) \
148 -u $(shell id -u $(USER)):$(shell id -g $(USER)) efabless/open_mpw_precheck:latest bash -c "python3 open_mpw_prechecker.py --pdk_root $(PDK_ROOT) --target_path $(TARGET_PATH) -c $(CARAVEL_ROOT)"
149
150# Clean
151.PHONY: clean
152clean:
153 cd ./verilog/dv/ && \
154 $(MAKE) -j$(THREADS) clean
155
156check-caravel:
157 @if [ ! -d "$(CARAVEL_ROOT)" ]; then \
158 echo "Caravel Root: "$(CARAVEL_ROOT)" doesn't exists, please export the correct path before running make. "; \
159 exit 1; \
160 fi
161
162check-precheck:
163 @if [ ! -d "$(PRECHECK_ROOT)" ]; then \
164 echo "Pre-check Root: "$(PRECHECK_ROOT)" doesn't exists, please export the correct path before running make. "; \
165 exit 1; \
166 fi
167
168check-pdk:
169 @if [ ! -d "$(PDK_ROOT)" ]; then \
170 echo "PDK Root: "$(PDK_ROOT)" doesn't exists, please export the correct path before running make. "; \
171 exit 1; \
172 fi