Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ SRC = \
platform.c \
remote.c \
rp.c \
riscv.c \
sam3x.c \
sam4l.c \
samd.c \
Expand Down
8 changes: 8 additions & 0 deletions src/platforms/hosted/ftdi_bmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,14 @@ cable_desc_t cable_desc[] = {
.name = "ftdiswd",
.description = "FTDISWD"
},
{
.vendor = 0x0403,
.product = 0x6010,
.interface = INTERFACE_A,
.init.data_low = PIN3,
.init.ddr_low = PIN4 | PIN3 | PIN1 | PIN0,
.name = "hifive1"
},
{
.vendor = 0x15b1,
.product = 0x0003,
Expand Down
7 changes: 7 additions & 0 deletions src/target/jtag_devs.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,18 @@
#include "jtag_scan.h"
#include "adiv5.h"
#include "jtag_devs.h"
#include "riscv.h"

jtag_dev_descr_t dev_descr[] = {
{.idcode = 0x0BA00477, .idmask = 0x0FFF0FFF,
.descr = "ARM Limited: ADIv5 JTAG-DP port.",
.handler = adiv5_jtag_dp_handler},
{.idcode = 0x10e31913, .idmask = 0xFFFFFFFF,
.descr = "SiFive: E310-G000.",
.handler = riscv_jtag_handler},
{.idcode = 0x1000563d, .idmask = 0xFFFFFFFF,
.descr = "Sipeed RV32.",
.handler = riscv_jtag_handler},
{.idcode = 0x06410041, .idmask = 0x0FFFFFFF,
.descr = "ST Microelectronics: STM32, Medium density."},
{.idcode = 0x06412041, .idmask = 0x0FFFFFFF,
Expand Down
Loading