rk3308.cfg 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. # Rockchip RK3308 Target
  3. # https://rockchip.fr/RK3308%20datasheet%20V1.5.pdf
  4. # https://dl.radxa.com/rockpis/docs/hw/datasheets/Rockchip%20RK3308TRM%20V1.1%20Part1-20180810.pdf
  5. if { [info exists CHIPNAME] } {
  6. set _CHIPNAME $CHIPNAME
  7. } else {
  8. set _CHIPNAME rk3308
  9. }
  10. #
  11. # Main DAP
  12. #
  13. if { [info exists DAP_TAPID] } {
  14. set _DAP_TAPID $DAP_TAPID
  15. } else {
  16. set _DAP_TAPID 0x2ba01477
  17. }
  18. adapter speed 12000
  19. transport select swd
  20. # declare the one SWD tap to access the DAP
  21. swd newdap $_CHIPNAME cpu -expected-id $_DAP_TAPID -ignore-version
  22. # create the DAP
  23. dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
  24. target create $_CHIPNAME.ahb mem_ap -dap $_CHIPNAME.dap -ap-num 0
  25. # declare the 4 main application cores
  26. set _TARGETNAME $_CHIPNAME.core
  27. set _smp_command ""
  28. set $_TARGETNAME.base(0) 0x81010000
  29. set $_TARGETNAME.base(1) 0x81012000
  30. set $_TARGETNAME.base(2) 0x81014000
  31. set $_TARGETNAME.base(3) 0x81016000
  32. set $_TARGETNAME.cti(0) 0x81018000
  33. set $_TARGETNAME.cti(1) 0x81019000
  34. set $_TARGETNAME.cti(2) 0x8101a000
  35. set $_TARGETNAME.cti(3) 0x8101b000
  36. set _cores 4
  37. for { set _core 0 } { $_core < $_cores } { incr _core 1 } {
  38. cti create cti$_core -dap $_CHIPNAME.dap -baseaddr [set $_TARGETNAME.cti($_core)] -ap-num 0
  39. set _command "target create ${_TARGETNAME}$_core aarch64 \
  40. -dap $_CHIPNAME.dap -coreid $_core -cti cti$_core \
  41. -dbgbase [set $_TARGETNAME.base($_core)]"
  42. if { $_core != 0 } {
  43. set _smp_command "$_smp_command ${_TARGETNAME}$_core"
  44. set _command "$_command -defer-examine"
  45. } else {
  46. # uncomment to use hardware threads pseudo rtos
  47. # set _command "$_command -rtos hwthread"
  48. set _command "$_command -work-area-size 0x40000 -work-area-phys 0xfff80000 \
  49. -work-area-backup 0"
  50. set _smp_command "target smp ${_TARGETNAME}$_core"
  51. }
  52. eval $_command
  53. }
  54. eval $_smp_command
  55. targets ${_TARGETNAME}0