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.
 
 
 
 
 
 

107 lines
2.6 KiB

  1. # OMAP4430
  2. if { [info exists CHIPNAME] } {
  3. set _CHIPNAME $CHIPNAME
  4. } else {
  5. set _CHIPNAME omap4430
  6. }
  7. # Although the OMAP4430 supposedly has an ICEpick-D, only the
  8. # ICEpick-C router commands seem to work.
  9. # See http://processors.wiki.ti.com/index.php/ICEPICK
  10. source [find target/icepick.cfg]
  11. #
  12. # A9 DAP
  13. #
  14. if { [info exists DAP_TAPID ] } {
  15. set _DAP_TAPID $DAP_TAPID
  16. } else {
  17. set _DAP_TAPID 0x3BA00477
  18. }
  19. jtag newtap $_CHIPNAME dap -irlen 4 -ircapture 0x1 -irmask 0xf \
  20. -expected-id $_DAP_TAPID -disable
  21. jtag configure $_CHIPNAME.dap -event tap-enable \
  22. "icepick_c_tapenable $_CHIPNAME.jrc 9"
  23. #
  24. # M3 DAPs, one per core
  25. #
  26. if { [info exists M3_DAP_TAPID ] } {
  27. set _M3_DAP_TAPID $M3_DAP_TAPID
  28. } else {
  29. set _M3_DAP_TAPID 0x4BA00477
  30. }
  31. jtag newtap $_CHIPNAME m31_dap -irlen 4 -ircapture 0x1 -irmask 0xf \
  32. -expected-id $_M3_DAP_TAPID -disable
  33. jtag configure $_CHIPNAME.m31_dap -event tap-enable \
  34. "icepick_c_tapenable $_CHIPNAME.jrc 5"
  35. jtag newtap $_CHIPNAME m30_dap -irlen 4 -ircapture 0x1 -irmask 0xf \
  36. -expected-id $_M3_DAP_TAPID -disable
  37. jtag configure $_CHIPNAME.m30_dap -event tap-enable \
  38. "icepick_c_tapenable $_CHIPNAME.jrc 4"
  39. #
  40. # ICEpick-D JRC (JTAG route controller)
  41. #
  42. if { [info exists JRC_TAPID ] } {
  43. set _JRC_TAPID $JRC_TAPID
  44. } else {
  45. set _JRC_TAPID 0x3b95c02f
  46. }
  47. jtag newtap $_CHIPNAME jrc -irlen 6 -ircapture 0x1 -irmask 0x3f \
  48. -expected-id $_JRC_TAPID
  49. # Required by ICEpick to power-up the debug domain
  50. jtag configure $_CHIPNAME.jrc -event post-reset "runtest 200"
  51. #
  52. # GDB target: Cortex-A9, using DAP
  53. #
  54. # The debugger can connect to either core of the A9, but currently
  55. # not both simultaneously. Change -coreid to 1 to connect to the
  56. # second core.
  57. #
  58. set _TARGETNAME $_CHIPNAME.cpu
  59. target create $_TARGETNAME cortex_a9 -chain-position $_CHIPNAME.dap -coreid 0
  60. # SRAM: 56KiB at 0x4030.0000
  61. $_TARGETNAME configure -work-area-phys 0x40300000 -work-area-size 0x1000
  62. #
  63. # M3 targets, separate TAP/DAP for each core
  64. #
  65. target create $_CHIPNAME.m30 cortex_m3 -chain-position $_CHIPNAME.m30_dap
  66. target create $_CHIPNAME.m31 cortex_m3 -chain-position $_CHIPNAME.m31_dap
  67. # Once the JRC is up, enable our TAPs
  68. jtag configure $_CHIPNAME.jrc -event setup "
  69. jtag tapenable $_CHIPNAME.dap
  70. jtag tapenable $_CHIPNAME.m30_dap
  71. jtag tapenable $_CHIPNAME.m31_dap
  72. "
  73. proc omap4_dbginit {target} {
  74. # General Cortex A9 debug initialisation
  75. cortex_a9 dbginit
  76. }
  77. $_TARGETNAME configure -event reset-assert-post "omap4_dbginit $_TARGETNAME"
  78. # Assume SRST is unavailable (e.g. TI-14 JTAG), so we must assert reset
  79. # ourselves using PRM_RSTCTRL. 1 is a warm reset, 2 a cold reset.
  80. set PRM_RSTCTRL 0x4A307B00
  81. $_TARGETNAME configure -event reset-assert "$_TARGETNAME mww $PRM_RSTCTRL 0x1"