2018-07-20 04:11:41 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2020-04-06 14:25:11 -04:00
|
|
|
import subprocess
|
2020-04-06 20:45:55 -04:00
|
|
|
import shutil
|
2020-05-20 03:04:13 -04:00
|
|
|
import hashlib
|
2021-10-26 08:37:08 -04:00
|
|
|
import argparse
|
2018-07-20 04:11:41 -04:00
|
|
|
|
2020-04-06 19:39:49 -04:00
|
|
|
import urllib.request
|
2018-07-20 04:11:41 -04:00
|
|
|
|
2020-02-23 17:58:45 -05:00
|
|
|
current_path = os.path.abspath(os.curdir)
|
|
|
|
|
2021-10-26 04:49:34 -04:00
|
|
|
# Git Repositories ---------------------------------------------------------------------------------
|
2020-04-07 05:05:14 -04:00
|
|
|
|
2021-10-19 09:47:24 -04:00
|
|
|
# Get SHA1: git rev-parse --short=7 HEAD
|
2021-10-07 13:03:29 -04:00
|
|
|
|
2021-10-26 04:49:34 -04:00
|
|
|
class GitRepo:
|
|
|
|
def __init__(self, url, clone="regular", develop=True, sha1=None):
|
|
|
|
assert clone in ["regular", "recursive"]
|
|
|
|
self.url = url
|
|
|
|
self.clone = clone
|
|
|
|
self.develop = develop
|
|
|
|
self.sha1 = sha1
|
|
|
|
|
|
|
|
git_repos = {
|
|
|
|
# HDL.
|
|
|
|
"migen": GitRepo(url="https://github.com/m-labs/", clone="recursive"),
|
|
|
|
"nmigen": GitRepo(url="https://github.com/nmigen/", clone="recursive"),
|
|
|
|
|
2021-10-26 05:58:09 -04:00
|
|
|
# LiteX SoC builder
|
|
|
|
"pythondata-software-picolibc": GitRepo(url="https://github.com/litex-hub/", clone="recursive"),
|
|
|
|
"pythondata-software-compiler_rt": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"litex": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
|
2021-10-26 04:49:34 -04:00
|
|
|
# LiteX Cores Ecosystem.
|
|
|
|
"liteeth": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"litedram": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"litepcie": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"litesata": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"litesdcard": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"liteiclink": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"litescope": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"litejesd204b": GitRepo(url="https://github.com/enjoy-digital/"),
|
|
|
|
"litespi": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"litehyperbus": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
|
|
|
|
# LiteX Boards.
|
|
|
|
"litex-boards": GitRepo(url="https://github.com/litex-hub/", clone="regular"),
|
|
|
|
|
|
|
|
# LiteX pythondata.
|
|
|
|
"pythondata-misc-tapcfg": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-misc-usb_ohci": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-lm32": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-mor1kx": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-picorv32": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-serv": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-vexriscv": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-vexriscv-smp": GitRepo(url="https://github.com/litex-hub/", clone="recursive"),
|
|
|
|
"pythondata-cpu-rocket": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-minerva": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-microwatt": GitRepo(url="https://github.com/litex-hub/", sha1=0xdad611c),
|
|
|
|
"pythondata-cpu-blackparrot": GitRepo(url="https://github.com/litex-hub/"),
|
|
|
|
"pythondata-cpu-cv32e40p": GitRepo(url="https://github.com/litex-hub/", clone="recursive"),
|
|
|
|
"pythondata-cpu-ibex": GitRepo(url="https://github.com/litex-hub/", clone="recursive"),
|
|
|
|
}
|
2018-07-20 04:11:41 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
# Script Location / Auto-Update --------------------------------------------------------------------
|
|
|
|
|
|
|
|
def litex_setup_location_check():
|
|
|
|
# Check if script is executed inside a cloned LiteX repository or alongside?
|
|
|
|
if os.path.exists(".gitignore"):
|
|
|
|
global current_path
|
|
|
|
current_path = os.path.join(current_path, "../")
|
|
|
|
|
|
|
|
def litex_setup_auto_update():
|
|
|
|
litex_setup_url = "https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py"
|
|
|
|
current_sha1 = hashlib.sha1(open(os.path.realpath(__file__)).read().encode("utf-8")).hexdigest()
|
|
|
|
print("[Checking litex_setup.py]...")
|
|
|
|
try:
|
|
|
|
import requests
|
|
|
|
r = requests.get(litex_setup_url)
|
|
|
|
if r.status_code != 404:
|
|
|
|
upstream_sha1 = hashlib.sha1(r.content).hexdigest()
|
|
|
|
if current_sha1 != upstream_sha1:
|
|
|
|
print("[Updating litex_setup.py]...")
|
|
|
|
with open(os.path.realpath(__file__), "wb") as f:
|
|
|
|
f.write(r.content)
|
|
|
|
os.execl(sys.executable, sys.executable, *sys.argv)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# Repositories Initialization ----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def litex_setup_init_repos():
|
|
|
|
for name, repo in git_repos.items():
|
|
|
|
os.chdir(os.path.join(current_path))
|
|
|
|
print(f"[Checking {name}]...")
|
|
|
|
if not os.path.exists(name):
|
|
|
|
# Clone Repo.
|
|
|
|
print(f"[Cloning {name}]...")
|
|
|
|
subprocess.check_call("git clone {url} {options}".format(
|
|
|
|
url = repo.url + name,
|
|
|
|
options = "--recursive" if repo.clone == "recursive" else ""
|
|
|
|
), shell=True)
|
|
|
|
# Use specific SHA1 (Optional).
|
|
|
|
if repo.sha1 is not None:
|
|
|
|
os.chdir(os.path.join(current_path, name))
|
|
|
|
os.system(f"git checkout {repo.sha1:07x}")
|
2020-04-06 19:39:49 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
# Repositories Update ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def litex_setup_update_repos():
|
|
|
|
for name, repo in git_repos.items():
|
|
|
|
os.chdir(os.path.join(current_path))
|
|
|
|
# Check if Repo is present.
|
|
|
|
if not os.path.exists(name):
|
|
|
|
raise Exception("{} not initialized, please (re)-run init and install first.".format(name))
|
|
|
|
# Update Repo.
|
|
|
|
print(f"[Updating {name}]...")
|
|
|
|
os.chdir(os.path.join(current_path, name))
|
|
|
|
subprocess.check_call("git checkout master", shell=True)
|
|
|
|
subprocess.check_call("git pull --ff-only", shell=True)
|
|
|
|
# Recursive Update (Optional).
|
|
|
|
if repo.clone == "recursive":
|
|
|
|
subprocess.check_call("git submodule update --init --recursive", shell=True)
|
|
|
|
# Use specific SHA1 (Optional).
|
|
|
|
if repo.sha1 is not None:
|
|
|
|
os.chdir(os.path.join(current_path, name))
|
|
|
|
os.system(f"git checkout {repo.sha1:07x}")
|
|
|
|
|
|
|
|
# Repositories Install -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def litex_setup_install_repos(user_mode=False):
|
|
|
|
for name, repo in git_repos.items():
|
|
|
|
os.chdir(os.path.join(current_path))
|
|
|
|
# Install Repo.
|
|
|
|
if repo.develop:
|
|
|
|
print(f"[Installing {name}]...")
|
|
|
|
os.chdir(os.path.join(current_path, name))
|
|
|
|
subprocess.check_call("python3 setup.py develop {options}".format(
|
|
|
|
options="--user" if user_mode else "",
|
|
|
|
), shell=True)
|
|
|
|
if user_mode:
|
|
|
|
if ".local/bin" not in os.environ.get("PATH", ""):
|
|
|
|
print("Make sure that ~/.local/bin is in your PATH")
|
|
|
|
print("export PATH=$PATH:~/.local/bin")
|
2021-10-19 08:41:42 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
# GCC Toolchains Download --------------------------------------------------------------------------
|
|
|
|
|
2021-10-26 06:35:55 -04:00
|
|
|
def gcc_toolchain_download(url, filename):
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
full_url = url + filename
|
2021-10-26 09:04:50 -04:00
|
|
|
print(f"[Downloading {full_url} to {filename}]...")
|
2021-10-26 06:35:55 -04:00
|
|
|
urllib.request.urlretrieve(full_url, filename)
|
|
|
|
else:
|
|
|
|
print("Using existing file {filename}.")
|
|
|
|
|
2021-10-26 09:04:50 -04:00
|
|
|
print(f"[Extracting {filename}]...")
|
2021-10-26 06:35:55 -04:00
|
|
|
shutil.unpack_archive(filename)
|
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
# RISC-V toolchain.
|
|
|
|
# -----------------
|
|
|
|
|
|
|
|
def riscv_gcc_toolchain_download():
|
2020-04-07 05:05:14 -04:00
|
|
|
base_url = "https://static.dev.sifive.com/dev-tools/"
|
2020-04-06 19:39:49 -04:00
|
|
|
base_file = "riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-"
|
|
|
|
|
2020-04-07 05:05:14 -04:00
|
|
|
# Windows
|
|
|
|
if (sys.platform.startswith("win") or sys.platform.startswith("cygwin")):
|
|
|
|
end_file = "w64-mingw32.zip"
|
|
|
|
# Linux
|
|
|
|
elif sys.platform.startswith("linux"):
|
|
|
|
end_file = "linux-ubuntu14.tar.gz"
|
|
|
|
# Mac OS
|
|
|
|
elif sys.platform.startswith("darwin"):
|
|
|
|
end_file = "apple-darwin.tar.gz"
|
2020-04-06 19:39:49 -04:00
|
|
|
else:
|
|
|
|
raise NotImplementedError(sys.platform)
|
|
|
|
|
2021-10-26 06:35:55 -04:00
|
|
|
# Download/Extract.
|
|
|
|
gcc_toolchain_download(url=base_url, filename=base_file + end_file)
|
2020-04-06 19:39:49 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
# PowerPC toolchain download.
|
|
|
|
# ---------------------------
|
|
|
|
|
|
|
|
def powerpc_gcc_toolchain_download():
|
|
|
|
base_url = "https://toolchains.bootlin.com/downloads/releases/toolchains/powerpc64le-power8/tarballs/"
|
|
|
|
base_file = "powerpc64le-power8--musl--stable-2020.08-1.tar.bz2"
|
|
|
|
|
2021-10-26 06:35:55 -04:00
|
|
|
# Download/Extract.
|
|
|
|
gcc_toolchain_download(url=base_url, filename=base_file)
|
2021-10-19 08:41:42 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
# OpenRISC toolchain download.
|
|
|
|
# ----------------------------
|
2021-10-19 08:41:42 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
def openrisc_gcc_toolchain_download():
|
|
|
|
base_url = "https://toolchains.bootlin.com/downloads/releases/toolchains/openrisc/tarballs/"
|
|
|
|
base_file = "openrisc--musl--stable-2020.08-1.tar.bz2"
|
2021-10-19 08:41:42 -04:00
|
|
|
|
2021-10-26 06:35:55 -04:00
|
|
|
# Download/Extract.
|
|
|
|
gcc_toolchain_download(url=base_url, filename=base_file)
|
2021-10-19 08:41:42 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
# LM32 toolchain download.
|
2021-10-19 08:41:42 -04:00
|
|
|
|
2021-10-26 05:36:38 -04:00
|
|
|
def lm32_gcc_toolchain_download():
|
|
|
|
base_url = ""
|
|
|
|
base_file = ""
|
2021-10-19 08:41:42 -04:00
|
|
|
|
2021-10-26 09:04:50 -04:00
|
|
|
raise NotImplementedError
|
2021-10-26 05:36:38 -04:00
|
|
|
|
|
|
|
# Run ----------------------------------------------------------------------------------------------
|
2020-04-07 05:05:14 -04:00
|
|
|
|
2021-10-26 08:37:08 -04:00
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX Setup utility.")
|
2021-10-26 09:04:50 -04:00
|
|
|
|
|
|
|
# Git Repositories.
|
2021-10-26 08:37:08 -04:00
|
|
|
parser.add_argument("--init", action="store_true", help="Initialize Git Repositories.")
|
|
|
|
parser.add_argument("--update", action="store_true", help="Update Git Repositories.")
|
|
|
|
parser.add_argument("--install", action="store_true", help="Install Git Repositories.")
|
|
|
|
parser.add_argument("--user", action="store_true", help="Install in User-Mode.")
|
2021-10-26 09:04:50 -04:00
|
|
|
|
|
|
|
# GCC toolchains.
|
|
|
|
parser.add_argument("--gcc", default=None, help="Download/Extract GCC Toolchain (riscv, powerpc, openrisc or lm32).")
|
|
|
|
|
|
|
|
# Development mode.
|
2021-10-26 09:16:43 -04:00
|
|
|
parser.add_argument("--dev", action="store_true", help="Development-Mode (no Auto-Update of litex_setup.py).")
|
2021-10-26 09:04:50 -04:00
|
|
|
|
|
|
|
# Retro-compatibility.
|
2021-10-26 09:16:43 -04:00
|
|
|
parser.add_argument("compat_args", nargs="*", help="Retro-Compatibility arguments (init, update, install or gcc).")
|
2021-10-26 08:37:08 -04:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
# Handle compat_args.
|
2021-10-26 09:16:43 -04:00
|
|
|
if args.compat_args is not None:
|
|
|
|
for arg in args.compat_args:
|
|
|
|
if arg in ["init", "update", "install"]:
|
|
|
|
setattr(args, arg, True)
|
|
|
|
if arg in ["gcc"]:
|
|
|
|
args.gcc = "riscv"
|
2021-10-26 08:37:08 -04:00
|
|
|
|
|
|
|
# Location/Auto-Update.
|
|
|
|
litex_setup_location_check()
|
2021-10-26 09:16:43 -04:00
|
|
|
if not args.dev:
|
2021-10-26 08:37:08 -04:00
|
|
|
litex_setup_auto_update()
|
|
|
|
|
|
|
|
# Init.
|
|
|
|
if args.init:
|
|
|
|
litex_setup_init_repos()
|
|
|
|
|
|
|
|
# Update.
|
|
|
|
if args.update:
|
|
|
|
litex_setup_update_repos()
|
|
|
|
|
|
|
|
# Install.
|
|
|
|
if args.install:
|
|
|
|
litex_setup_install_repos(user_mode=args.user)
|
|
|
|
|
|
|
|
# GCC.
|
2021-10-26 09:04:50 -04:00
|
|
|
os.chdir(os.path.join(current_path))
|
|
|
|
if args.gcc == "riscv":
|
2021-10-26 08:37:08 -04:00
|
|
|
riscv_gcc_toolchain_download()
|
2021-10-26 09:04:50 -04:00
|
|
|
if args.gcc == "powerpc":
|
|
|
|
powerpc_gcc_toolchain_download()
|
|
|
|
if args.gcc == "openrisc":
|
|
|
|
openrisc_gcc_toolchain_download()
|
|
|
|
if args.gcc == "lm32":
|
|
|
|
lm32_gcc_toolchain_download()
|
2021-10-26 08:37:08 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|