Skip to content

Commit

Permalink
Make initial public release
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Töpel authored and quite committed Sep 19, 2022
1 parent 814a050 commit dcd8319
Show file tree
Hide file tree
Showing 12 changed files with 684 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ GTAGS
*.depend_raw
*.swp
*.patch
.cache
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -337,3 +337,8 @@ endif

print-%:
@echo '$*=$($*)'


.PHONY: update-mem-include
update-mem-include:
cp -af ../tillitis-key1/hw/application_fpga/fw/mta1_mkdf_mem.h include/hw/riscv/mta1_mkdf_mem.h
1 change: 1 addition & 0 deletions configs/devices/riscv32-softmmu/default.mak
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ CONFIG_SIFIVE_E=y
CONFIG_SIFIVE_U=y
CONFIG_RISCV_VIRT=y
CONFIG_OPENTITAN=y
CONFIG_MTA1_MKDF=y
4 changes: 4 additions & 0 deletions hw/riscv/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ config MICROCHIP_PFSOC
select SIFIVE_PLIC
select UNIMP

config MTA1_MKDF
bool
select UNIMP

config OPENTITAN
bool
select IBEX
Expand Down
1 change: 1 addition & 0 deletions hw/riscv/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ riscv_ss = ss.source_set()
riscv_ss.add(files('boot.c'), fdt)
riscv_ss.add(when: 'CONFIG_RISCV_NUMA', if_true: files('numa.c'))
riscv_ss.add(files('riscv_hart.c'))
riscv_ss.add(when: 'CONFIG_MTA1_MKDF', if_true: files('mta1_mkdf.c'))
riscv_ss.add(when: 'CONFIG_OPENTITAN', if_true: files('opentitan.c'))
riscv_ss.add(when: 'CONFIG_RISCV_VIRT', if_true: files('virt.c'))
riscv_ss.add(when: 'CONFIG_SHAKTI_C', if_true: files('shakti_c.c'))
Expand Down

0 comments on commit dcd8319

Please sign in to comment.