博流RISC-V芯片JTAG debug配置与运行

文章目录

1、Windows下安装与配置

  1. CKLink 驱动安装

Windows版驱动下载地址: https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource//1666331581133/T-Head-DebugServer-windows-V5.16.5-20221021-1018.zip

解压后按照默认配置安装,安装成功后插上 cklink-lite 后,可以在设备管理器中找到 cklink-lite 已经找到

  1. 运行
    双击桌面上的 T-HeadDebugServer 即可运行

正确连接 cklink-lite 与目标芯片,然后点击 T-HeadDebugServer 上的 Run debug server,如硬件连接正确,图标会由三角形编程圆形,并在软件窗口上显示芯片内核信息

shell 复制代码
Running Debug Server, auto to check the target at first...
T-HEAD: CKLink_Lite_V2, App_ver unknown, Bit_ver null, Clock 2526.316KHz,
       5-wire, With DDC, Cache Flush On, SN CKLink_Lite_Vendor-rog 2C115D.
+--  Debug Arch is RVDM.  --+
+--  CPU 0  --+
RISCV CPU Info:
	WORD[0]: 0x0814050d
	WORD[1]: 0x11080000
	WORD[2]: 0x202bf97b
	MISA   : 0x40909125
Target Chip Info:
	CPU Type is E907FP, Endian=Little, Version is R1S2P0.
	DCache size is 16K.
	ICache size is 32K.
	MGU zone num is 8.
	MGU zone size is 4B.
	HWBKPT number is 3, HWWP number is 3.
	MISA: (RV32IMAFCXP, Imp M-mode, U-mode)

GDB connection command for CPUs(CPU0):
	target remote 192.168.135.1:1025
	target remote 192.168.22.1:1025
	target remote 192.168.188.23:1025

默认端口:1025

2、Linux下安装与配置

  1. CKLink 驱动安装

    Linux x86_64版驱动下载地址:https://occ-oss-prod.oss-cn-hangzhou.aliyuncs.com/resource//1666331533949/T-Head-DebugServer-linux-x86_64-V5.16.5-20221021.sh.tar.gz

  2. 在 linux 命令行下执行

shell 复制代码
$ tar zxvf T-Head-DebugServer-linux-x86_64-V5.16.5-20221021.sh.tar.gz
$ sudo ./T-Head-DebugServer-linux-x86_64-V5.16.5-20221021.sh -i

其中参数含义为:

-i:安装

-u:卸载

然后按照提示输入 yes 就可以。

注意:必须要 ubuntu 22 以上才可以,ubuntu 20.04 不行。。

  1. 完成安装后,插上 CKlink-Lite,通过 lsusb 可以看到已经检测到了CKlink-Lite
shell 复制代码
$ lsusb
Bus 002 Device 004: ID 42bf:b210 Bouffalo C-Sky CKLink-Lite
Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  1. 运行
  • 确认安装完成,查看参数
shell 复制代码
$ DebugServerConsole -h
  • server 端口号,默认 1025,可以通过 -p 修改
shell 复制代码
$ DebugServerConsole -p 3333

注意:在运行 jtag 功能器件,T-HeadDebugServer 要一直运行。

3、芯片默认 JTAG PIN 列表

CHIP/Pin BL602/BL604 BL702/BL704/BL706 BL616/BL618 BL808
TMS GPIO12 GPIO0 GPIO0 GPIO6
TCK GPIO14 GPIO2 GPIO1 GPIO12
TDO GPIO11 GPIO9 GPIO2 GPIO7
TDI GPIO17 GPIO1 GPIO3 GPIO13

4、命令行运行JTAG

  1. 运行 gdb
shell 复制代码
$ riscv64-unknown-elf-gdb helloworld_bl616.elf
GNU gdb (Xuantie-900 elf newlib gcc Toolchain V2.6.1 B-20220906) 10.0.50.20200724-git
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "--host=i686-w64-mingw32 --target=riscv64-unknown-elf".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from .\helloworld_bl616.elf...
(gdb) 

也可以先只运行 riscv64-unknown-elf-gdb 命令,然后在连接 gdb server 完成后,使用 file helloworld_bl616.elf 命令加载 elf 文件。

  1. 设置等待远程目标响应240秒的超时限制,默认为2秒。
shell 复制代码
(gdb) set remotetimeout 240
  1. 连接 gdb server
shell 复制代码
(gdb) target remote :1025
  1. 加载
shell 复制代码
(gdb) load
  1. 运行
shell 复制代码
(gdb) c

更多指令可查询 gdb 手册

5、Eclipse下使用JTAG

  1. 选择 Debug Configurations ...
  1. 选择当前需要调试的目标项目的 elf 文件

注:使用 JTAG 调试前,需先下载完成对应目标项目的 bin 文件。

相关推荐
OpenAnolis小助手2 天前
RISC-V基金会Datacenter SIG月会圆满举办,探讨RAS、PMU性能分析实践和经验
开源·龙蜥社区·risc-v·datacenter sig·龙蜥社区risc-v sig
月光技术杂谈4 天前
《RISC-V 导论:设计与实践》开源课件(附下载链接)
开源·risc-v·课件
月光技术杂谈4 天前
上海RISC-V峰会-香山开源RISC-V CPU随想随记
verilog·risc-v·chisel·vhdl·香山·开源cpu·xiangshan
随风ada9 天前
Windows、macOS、liunx下使用qemu搭建riscv64/linux
linux·windows·ubuntu·macos·golang·qemu·risc-v
openKylin11 天前
填补空白!openKylin率先完成RISC-V商业打印驱动全适配
risc-v
wa的一声哭了13 天前
python基础知识pip配置pip.conf文件
java·服务器·开发语言·python·pip·risc-v·os
GateWorld16 天前
RISC-V:开源芯浪潮下的技术突围与职业新赛道 (二) RISC-V架构深度解剖(上)
架构·risc-v·指令集精简·寄存器设计·特权架构·模块化扩展
inquisiter18 天前
在RISC-V开发板上更换SBI
risc-v
GateWorld18 天前
RISC-V:开源芯浪潮下的技术突围与职业新赛道 (一)为什么RISC-V是颠覆性创新?
开源·risc-v
OpenAnolis小助手18 天前
Anolis OS 23 架构支持家族新成员:Anolis OS 23.3 版本及 RISC-V 预览版发布
开源·操作系统·龙蜥社区·risc-v·anolis os·龙蜥操作系统