bcm47xx.cfg 890 B

1234567891011121314151617181920212223
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. echo "Forcing reset_config to none to prevent OpenOCD from pulling SRST after the switch from LV is already performed"
  3. reset_config none
  4. jtag newtap $_CHIPNAME-lv tap -irlen 32 -ircapture 0x1 -irmask 0x1f -expected-id $_LVTAPID -expected-id $_CPUID
  5. jtag configure $_CHIPNAME-lv.tap -event setup "jtag tapenable $_CHIPNAME.cpu"
  6. jtag configure $_CHIPNAME-lv.tap -event tap-disable {}
  7. jtag newtap $_CHIPNAME cpu -irlen 5 -ircapture 0x1 -irmask 0x1f -expected-id $_CPUID -disable
  8. jtag configure $_CHIPNAME.cpu -event tap-enable "switch_lv_to_ejtag"
  9. set _TARGETNAME $_CHIPNAME.cpu
  10. target create $_TARGETNAME mips_m4k -endian little -chain-position $_TARGETNAME
  11. proc switch_lv_to_ejtag {} {
  12. global _CHIPNAME
  13. poll 0
  14. irscan $_CHIPNAME-lv.tap 0x143ff3a
  15. drscan $_CHIPNAME-lv.tap 32 1
  16. jtag tapdisable $_CHIPNAME-lv.tap
  17. poll 1
  18. }