51 lines
1.8 KiB
Python
51 lines
1.8 KiB
Python
# SPDX-FileCopyrightText: 2023 Efabless Corporation
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
import click
|
|
import yaml
|
|
|
|
|
|
@click.command()
|
|
@click.argument('caravel_root', type=click.Path(exists=True))
|
|
@click.argument('mcw_root', type=click.Path(exists=True))
|
|
@click.argument('pdk_root', type=click.Path(exists=True))
|
|
@click.argument('pdk')
|
|
@click.argument('user_project_root', type=click.Path(exists=True))
|
|
def update_design_info(caravel_root, mcw_root, pdk_root, pdk, user_project_root):
|
|
data = {
|
|
'CARAVEL_ROOT': caravel_root,
|
|
'MCW_ROOT': mcw_root,
|
|
'USER_PROJECT_ROOT': user_project_root,
|
|
'PDK_ROOT': pdk_root,
|
|
'PDK': pdk,
|
|
'clk': 25,
|
|
'caravan': False,
|
|
'emailto': [None]
|
|
}
|
|
|
|
with open(f'{user_project_root}/verilog/dv/cocotb/design_info.yaml', 'w') as file:
|
|
yaml.dump(data, file)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
update_design_info()
|
|
|
|
# paths = EnvironmentPaths("/home/rady/caravel/caravel_orginal/caravel/",
|
|
# "/home/rady/caravel/caravel_orginal/caravel_mgmt_soc_litex/",
|
|
# "/home/rady/caravel/files4vcs/pdk","sky130A",
|
|
# "/home/rady/caravel/swift/caravel_user_project/")
|
|
|
|
# WriteDesignInfo("/home/Marwan/caravel/swift/caravel-dynamic-sims/cocotb/",paths,Emailto=["mostafa.rady@efabless.com"])
|