Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Dec 25, 2022
1 parent 5fa5c5c commit 109acd0
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.2.1 2022-12-25 Olof Kindgren
======================================================

* Guarantee at least 2 cycles of o_rst after ice40 PLL is locked
* New Servant ports: ICE-V Wireless
* Add reset input for Arty A7
* Add Servant documentation
* Updated RISC-V Compliance support from 2.7.4 to 3.x

1.2.0 2022-07-25 Olof Kindgren
======================================================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ We are now ready to do our first exercises with SERV. If everything above is don

If everything worked, the output should look like

INFO: Preparing ::serv:1.2.0
INFO: Preparing ::serv:1.2.1
INFO: Setting up project

INFO: Building simulation model
Expand Down
8 changes: 4 additions & 4 deletions doc/servant.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ iCEstick
Pin 95 is used as the GPIO output which is connected to the board's green LED. Due to this board's limited Embedded BRAM, programs with a maximum of 7168 bytes can be loaded. The default program for this board is blinky.hex.

fusesoc run --target=icestick servant
iceprog build/servant_1.2.0/icestick-icestorm/servant_1.2.0.bin
iceprog build/servant_1.2.1/icestick-icestorm/servant_1.2.1.bin

iCESugar
^^^^^^^^
Expand All @@ -116,15 +116,15 @@ Pin 9 is used for UART output with 57600 baud rate.

fusesoc run --target=icev_wireless servant

iceprog build/servant_1.2.0/icestick-icestorm/servant_1.2.0.bin
iceprog build/servant_1.2.1/icestick-icestorm/servant_1.2.1.bin

Nandland Go Board
^^^^^^^^^^^^^^^^^

Pin 56 is used as the GPIO output which is connected to the board's LED1. Due to this board's limited Embedded BRAM, programs with a maximum of 7168 bytes can be loaded. The default program for this board is blinky.hex.

fusesoc run --target=go_board servant
iceprog build/servant_1.2.0/go_board-icestorm/servant_1.2.0.bin
iceprog build/servant_1.2.1/go_board-icestorm/servant_1.2.1.bin

Nexys 2
^^^^^^^
Expand All @@ -141,7 +141,7 @@ OrangeCrab R0.2
Pin D1 is used for UART output with 115200 baud rate.

fusesoc run --target=orangecrab_r0.2 servant
dfu-util -d 1209:5af0 -D build/servant_1.2.0/orangecrab_r0.2-trellis/servant_1.2.0.bit
dfu-util -d 1209:5af0 -D build/servant_1.2.1/orangecrab_r0.2-trellis/servant_1.2.1.bit

Saanlima Pipistrello (Spartan6 LX45)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
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.0
name : ::serv:1.2.1

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.0
name : ::servant:1.2.1

filesets:
# Common 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.0
name : ::serving:1.2.1

filesets:
rtl:
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.0"
__version__ = "1.2.1"

def __init__(self, *args, **kwargs):
sclass = super().__init__(*args, **kwargs)
Expand Down Expand Up @@ -89,4 +89,4 @@ def runTests(self, testList):
sigdump_run = self.sigdump_cmd.format(test_dir,file_name)
utils.shellCommand(sigdump_run).run()
if not self.target_run:
raise SystemExit
raise SystemExit

0 comments on commit 109acd0

Please sign in to comment.