Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Jul 5, 2024
1 parent 344940c commit 6b06805
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: serv.gds
path: /home/runner/work/serv/serv/build/serv_1.2.1/sky130-openlane/gds/serv_synth_wrapper.gds
path: /home/runner/work/serv/serv/build/serv_1.3.0/sky130-openlane/gds/serv_synth_wrapper.gds
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
1.3.0 2024-06-16 Olof Kindgren
======================================================

* Zephyr BSP: Port to Zephyr 3.5.0 + support tickless timer
* Make RF RAM IF work with single-port RAM
* Add PC tracing
* Make most modules width-independent
* Avoid releasing trap signal too early
* Improve timer wraparound behavior
* Overhaul documentation
* Add Servile convenience wrapper component
* Base Serving and Serving on Servile
* Add simulation cycle counter to testbench
* Add Hello world ASM example for Servant
* New Servant ports: Arty S7-50, PolarFire Splash Kit, Machdyne Kolibri, GMM-7550, Alchistry AU, ECP5 Evaluation board, Terasic DE1 SoC

1.2.1 2022-12-25 Olof Kindgren
======================================================

Expand Down
2 changes: 1 addition & 1 deletion serv.core
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CAPI=2:

name : ::serv:1.2.1
name : ::serv:1.3.0

filesets:
core:
Expand Down
2 changes: 1 addition & 1 deletion servant.core
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CAPI=2:

name : ::servant:1.2.1
name : ::servant:1.3.0
description: Simple reference system for SERV

filesets:
Expand Down
2 changes: 1 addition & 1 deletion serving.core
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CAPI=2:

name : ::serving:1.2.1
name : ::serving:1.3.0
description: SERV-based subsystem for FPGAs

filesets:
Expand Down
4 changes: 2 additions & 2 deletions verif/plugin-serv/riscof_serv.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class serv(pluginTemplate):
__model__ = "serv"
__version__ = "1.2.1"
__version__ = "1.3.0"

def __init__(self, *args, **kwargs):
sclass = super().__init__(*args, **kwargs)
Expand Down Expand Up @@ -78,7 +78,7 @@ def runTests(self, testList):
#to the old one
exe = 'servant_test/verilator_tb/Vservant_sim'
if not os.path.exists(exe):
exe = 'servant_test/servant_1.2.1/verilator_tb/Vservant_sim'
exe = 'servant_test/servant_1.3.0/verilator_tb/Vservant_sim'

sigdump_run = [exe,
"+timeout=1000000000",
Expand Down

0 comments on commit 6b06805

Please sign in to comment.