7b1921895e24431acaef70cdd0c67d8750b35b5c
[fw/openocd] / tcl / target / hi3798.cfg
1 # Hisilicon Hi3798 Target
2
3 if { [info exists CHIPNAME] } {
4   set _CHIPNAME $CHIPNAME
5 } else {
6   set _CHIPNAME hi3798
7 }
8
9 #
10 # Main DAP
11 #
12 if { [info exists DAP_TAPID] } {
13    set _DAP_TAPID $DAP_TAPID
14 } else {
15    set _DAP_TAPID 0x5ba00477
16 }
17
18 # declare the one JTAG tap to access the DAP
19 jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_DAP_TAPID -ignore-version -enable
20 dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu
21 # declare the 4 main application cores
22 set _TARGETNAME $_CHIPNAME.cpu
23 set _smp_command ""
24
25 set $_TARGETNAME.cti(0) 0x80020000
26 set $_TARGETNAME.cti(1) 0x80120000
27 set $_TARGETNAME.cti(2) 0x80220000
28 set $_TARGETNAME.cti(3) 0x80320000
29
30 set _cores 4
31 for { set _core 0 } { $_core < $_cores } { incr _core 1 } {
32
33     cti create cti$_core -dap $_CHIPNAME.dap -baseaddr [set $_TARGETNAME.cti($_core)] -ap-num 0
34
35     set _command "target create ${_TARGETNAME}$_core aarch64 \
36                          -dap $_CHIPNAME.dap -coreid $_core -cti cti$_core"
37
38     if { $_core != 0 } {
39         # non-boot core examination may fail
40         #set _command "$_command -defer-examine"
41         set _smp_command "$_smp_command ${_TARGETNAME}$_core"
42     } else {
43         # uncomment when "hawt" rtos is merged
44         # set _command "$_command -rtos hawt"
45         set _smp_command "target smp ${_TARGETNAME}$_core"
46     }
47
48     eval $_command
49 }
50
51 eval $_smp_command