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.
 
 
 
 
 
 

25 lines
555 B

  1. #
  2. # Samsung Exynos 5250 - dual-core ARM Cortex-A15
  3. #
  4. if { [info exists CHIPNAME] } {
  5. set _CHIPNAME $CHIPNAME
  6. } else {
  7. set _CHIPNAME exynos5250
  8. }
  9. if { [info exists CPUTAPID] } {
  10. set _CPUTAPID $CPUTAPID
  11. } else {
  12. set _CPUTAPID 0x4ba00477
  13. }
  14. jtag newtap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
  15. set _TARGETNAME $_CHIPNAME.cpu
  16. dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
  17. target create ${_TARGETNAME}0 cortex_a -dap $_CHIPNAME.dap
  18. target create ${_TARGETNAME}1 cortex_a -dap $_CHIPNAME.dap
  19. target smp ${_TARGETNAME}0 ${_TARGETNAME}1