You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
451 B

  1. #
  2. # board configuration for Tocoding Poplar
  3. #
  4. # board does not feature anything but JTAG
  5. transport select jtag
  6. adapter speed 10000
  7. # SRST-only reset configuration
  8. reset_config srst_only srst_push_pull
  9. source [find target/hi3798.cfg]
  10. # make sure the default target is the boot core
  11. targets ${_TARGETNAME}0
  12. proc core_up { args } {
  13. global _TARGETNAME
  14. # examine remaining cores
  15. foreach _core [set args] {
  16. ${_TARGETNAME}$_core arp_examine
  17. }
  18. }