vdebug.cfg 703 B

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. # Cadence virtual debug interface
  3. if { [info exists VDEBUGHOST] } {
  4. set _VDEBUGHOST $VDEBUGHOST
  5. } else {
  6. set _VDEBUGHOST localhost
  7. }
  8. if { [info exists VDEBUGPORT] } {
  9. set _VDEBUGPORT $VDEBUGPORT
  10. } else {
  11. set _VDEBUGPORT 8192
  12. }
  13. adapter driver vdebug
  14. # vdebug server:port
  15. vdebug server $_VDEBUGHOST:$_VDEBUGPORT
  16. # example config debug level and log
  17. #debug_level 3
  18. #log_output vd_ocd.log
  19. # example config listen on all interfaces, disable tcl/telnet server
  20. bindto 0.0.0.0
  21. #gdb_port 3333
  22. #telnet_port disabled
  23. tcl_port disabled
  24. # transaction batching: 0 - no batching, 1 - (default) wr, 2 - rw
  25. vdebug batching 1
  26. # Polling values
  27. vdebug polling 100 1000