- top-level Makefile: drop w11a/arty_bram - sys_w11a_s3: set BTOWIDTH 7 (was 6, must be > vmbox atowidth (6)) - RtclGet.ipp: use const& for oper() of string& and Rtime& - *.Doxyfile: bump version to 0.77 - comment and docu updates
6.6 KiB
Known issues
The issues of the w11 CPU are listed in a separate document w11a_known_issues.md.
This file descibes general issues.
The case id indicates the release when the issue was first recognized.
V0.77-1 {issue #19}
tcl commands like
cpu0 get type
cpu0rka get class
rlc get timeout
crash with a SIGSEGV. Apparently all getters which internally return a
const reference are affected. Observed with gcc 5.4.0. Unclear whether this
is a coding bug introduced when boost::bind was replaced by lambdas
(in commit 1620ee3) or a
compiler issue.
V0.76-3 {issue #18}
So far all Series-7 w11a systems ran with 80 MHz clock. The sys_w11_arty design (with DDR memory support via MIG) also achieves timing closure under Vivado 2017.2, but fails (with a small negative slack) under Vivado 2018.3.
The failing data path has
Source: SYS70/CACHE/CMEM_DAT1/sv_ram_reg_0/DOADO[1]
Destination: SYS70/CACHE/CMEM_DAT3/sv_ram_reg_0/DIADI[1]
via VMBOX->SEQ->OUNIT->SEQ->DPATH->SEQ->VMBOX
The connectivity of the multiplexers in pdp_dpath in principle allows such
a data flow, but pdp11_sequencer will never configure the multiplexers in
such a way. So technically this is a false path.
It seems that the placer strategy changed from Vivado 2017.2 to 2018.3 and that 2018.3 is less tolerant to the sub-optimal w11a design.
This will be fixed in a future release, either by setting up an appropriate false_path constraint, or by changing the data path structure.
V0.76-2 {issue #17}
The w11a design for Arty S7 (50 die size), see rtl/sys_gen/w11a/artys7, was provided to support also an up-to-date Spartan-7 based board. Turned out that speed is equivalent to Artix-7. It is so far only simulation tested.
Testing done with a real Arty S7, would be highly appreciated. Please double check the pin assignments (see mig_a.prj and artys7*.xdc) with the documentation of your board to avoid potential damage.
Looking forward to receive test reports.
V0.76-1 {issue #16}
The w11a design for Nexys4 DDR, see rtl/sys_gen/w11a/nexys4d, was provided to support also an up-to-date Nexys4 board. It is so far only simulation tested.
Testing done with a real Nexyx4 DDR, or a newer Nexys A7-100T, would be highly appreciated. Please double check the pin assignments (see mig_a.prj and nexys4d*.xdc) with the documentation of your board to avoid potential damage.
Looking forward to receive test reports.
V0.742-1 {issue #14}
The detach of a tcp type virtual terminal or a tap type virtual
ethernet device can lead to a SEGFAULT core dump, e.g. after a
cpu0ttb0 det command.
This is caused by a race condition between the detach run-down and the
implementation of ReventLoop::RemovePollHandler().
V0.73-2 {issue #10}
Many post-synthesis functional and especially post-routing timing simulations currently fail due to startup and initialization problems. Cause is MMCM/PLL startup, which is not properly reflected in the test bench. Will be resolved in an upcoming release.
V0.73-1 {issue #9}
as of vivado 2016.2 xelab shows sometimes extremely long build times,
especially for generated post-synthesis vhdl models. But also building a
behavioral simulation for a w11a design can take 25 min. Even though
post-synthesis or post-routing models are now generated in verilog working
with xsim is cumbersome and time consuming.
V0.66-1 {issue #8}
the TM11 controller transfers data byte wise (all disk do it 16bit word wise) and allows for odd byte length transfers. Odd length transfers are currently not supported and rejected as invalid command. Odd byte length records aren't used by OS, so in practice this limitation isn't relevant.
V0.65-2 {issue #7}
some exotic RH70/RP/RM features and conditions not implemented yet
- last block transfered flag (in DS)
CS2.BAIcurrently ignored and not handled- read or write 'with header' gives currently
ILF
All this isn't used by any OS, so in practice not relevant.
V0.65-1 {issue #6}
ti_rri sometimes crashes in normal rundown (exit or ^D) when
a cuff: type rlink is active. One gets
terminate called after throwing an instance of 'Retro::Rexception'
what(): RlinkPortCuff::Cleanup(): driver thread failed to stop
Doesn't affect normal operation, will be fixed in upcoming release.
V0.64-6 {issue #5}
IO delays still unconstraint in Vivado. All critical IOs use explicitly IOB flops, thus timing well defined.
V0.64-2 {issue #4}
rlink throughput on basys3/nexys4 limited by serial port stack round trip times. Will be overcome by libusb based custom driver.
V0.64-1 {issue #3}
The large default transfer size for disk accesses leads to bad throughput in the DL11 emulation for low speed links, like the 460kBaud the S3board is limited to. Will be overcome by a DL11 controller with more buffering.
V0.62-2 {issue #2}
rlink v4 error recovery not yet implemented, will crash on error.
V0.62-1 {issue #1}
rlink command lists aren't split to fit in retransmit buffer size.
{the last two issues are not relevant for w11 backend over USB usage because the backend produces proper command lists and the USB channel is usually error free}
Resolved Issues
V0.73-3 {issue #11}
Original Issue
The 'state number generator' code in pdp11_sequencer causes in vivado
2016.1 (and .2) that the main FSM isn't re-coded anymore, which has high
impact on achievable clock rate. The two optional debug units depending on
the state number, dmscnt and dmcmon, are therefore currently deactivated in
all Artix based systems (but are available on all Spartan based systems).
Fix
At least mitigated with d14626c
which allows to use dmcmon without the full state number generation logic
in pdp11_sequencer. Reintroduced dmcmon in sys_w11a_n4 again. dmscnt is
still deconfigured for vivado designs, but this has much less practical impact.