Skip to content

Commit 109acd0

Browse files
committed
Prepare for release
1 parent 5fa5c5c commit 109acd0

File tree

7 files changed

+19
-10
lines changed

7 files changed

+19
-10
lines changed

NEWS

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.2.1 2022-12-25 Olof Kindgren
2+
======================================================
3+
4+
* Guarantee at least 2 cycles of o_rst after ice40 PLL is locked
5+
* New Servant ports: ICE-V Wireless
6+
* Add reset input for Arty A7
7+
* Add Servant documentation
8+
* Updated RISC-V Compliance support from 2.7.4 to 3.x
9+
110
1.2.0 2022-07-25 Olof Kindgren
211
======================================================
312

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ We are now ready to do our first exercises with SERV. If everything above is don
4747

4848
If everything worked, the output should look like
4949

50-
INFO: Preparing ::serv:1.2.0
50+
INFO: Preparing ::serv:1.2.1
5151
INFO: Setting up project
5252

5353
INFO: Building simulation model

doc/servant.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ iCEstick
9898
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.
9999

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

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

117117
fusesoc run --target=icev_wireless servant
118118

119-
iceprog build/servant_1.2.0/icestick-icestorm/servant_1.2.0.bin
119+
iceprog build/servant_1.2.1/icestick-icestorm/servant_1.2.1.bin
120120

121121
Nandland Go Board
122122
^^^^^^^^^^^^^^^^^
123123

124124
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.
125125

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

129129
Nexys 2
130130
^^^^^^^
@@ -141,7 +141,7 @@ OrangeCrab R0.2
141141
Pin D1 is used for UART output with 115200 baud rate.
142142

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

146146
Saanlima Pipistrello (Spartan6 LX45)
147147
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

serv.core

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CAPI=2:
22

3-
name : ::serv:1.2.0
3+
name : ::serv:1.2.1
44

55
filesets:
66
core:

servant.core

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CAPI=2:
22

3-
name : ::servant:1.2.0
3+
name : ::servant:1.2.1
44

55
filesets:
66
# Common filesets

serving.core

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CAPI=2:
22

3-
name : ::serving:1.2.0
3+
name : ::serving:1.2.1
44

55
filesets:
66
rtl:

verif/plugin-serv/riscof_serv.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class serv(pluginTemplate):
1010
__model__ = "serv"
11-
__version__ = "1.2.0"
11+
__version__ = "1.2.1"
1212

1313
def __init__(self, *args, **kwargs):
1414
sclass = super().__init__(*args, **kwargs)
@@ -89,4 +89,4 @@ def runTests(self, testList):
8989
sigdump_run = self.sigdump_cmd.format(test_dir,file_name)
9090
utils.shellCommand(sigdump_run).run()
9191
if not self.target_run:
92-
raise SystemExit
92+
raise SystemExit

0 commit comments

Comments
 (0)