Merge pull request #366 from robindust-ce/master

Add missing parameter jtagHeaderIgnoreWidth
This commit is contained in:
Dolu1990 2023-09-26 17:39:49 +02:00 committed by GitHub
commit 4e051ed2a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ as given could move with future changes to the file:
``` ```
[254] val jtagCtrl = JtagTapInstructionCtrl() [254] val jtagCtrl = JtagTapInstructionCtrl()
[255] val tap = jtagCtrl.fromXilinxBscane2(userId = 2) [255] val tap = jtagCtrl.fromXilinxBscane2(userId = 2)
[256] jtagCtrl <> plugin.io.bus.fromJtagInstructionCtrl(ClockDomain(tap.TCK)) [256] jtagCtrl <> plugin.io.bus.fromJtagInstructionCtrl(ClockDomain(tap.TCK),0)
``` ```
Changing the above lines, removes the Murax SoCs JTAG ports as pins of the FPGA and inserts the BSCANE2 Xilinx Changing the above lines, removes the Murax SoCs JTAG ports as pins of the FPGA and inserts the BSCANE2 Xilinx
Debug IP to which the JTAG signals are now connected. Debug IP to which the JTAG signals are now connected.
@ -84,7 +84,7 @@ in e.g. the path: `project_name.srcs\sources_1\imports\Downloads`
[44] wire tesic_tdo; [44] wire tesic_tdo;
[45] reg soc_tck,soc_tms,soc_tdi; [45] reg soc_tck,soc_tms,soc_tdi;
[46] wire soc_tdo; [46] wire soc_tdo;
[47] [47]
[48] always @(*) begin [48] always @(*) begin
[49] {soc_tck, soc_tms, soc_tdi } = {tck,tms,tdi}; [49] {soc_tck, soc_tms, soc_tdi } = {tck,tms,tdi};
[50] tdo = soc_tdo; [50] tdo = soc_tdo;

View File

@ -168,7 +168,7 @@ object VexRiscvAhbLite3{
// // On Artix FPGA jtag : // // On Artix FPGA jtag :
// val jtagCtrl = JtagTapInstructionCtrl() // val jtagCtrl = JtagTapInstructionCtrl()
// val tap = jtagCtrl.fromXilinxBscane2(userId = 1) // val tap = jtagCtrl.fromXilinxBscane2(userId = 1)
// jtagCtrl <> plugin.io.bus.fromJtagInstructionCtrl(ClockDomain(tap.TCK)) // jtagCtrl <> plugin.io.bus.fromJtagInstructionCtrl(ClockDomain(tap.TCK),0)
} }
case _ => case _ =>
} }