-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #237 from facchinm/debugger_support
Debugger support
- Loading branch information
Showing
9 changed files
with
187,085 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# | ||
# Renesas RA4M1 w/ ARM Cortex-M4 @ 48 MHz | ||
# | ||
|
||
if { [info exists CHIPNAME] } { | ||
set _CHIPNAME $CHIPNAME | ||
} else { | ||
set _CHIPNAME ra4m1 | ||
} | ||
|
||
if { [info exists CPU_JTAG_TAPID] } { | ||
set _CPU_JTAG_TAPID $CPU_JTAG_TAPID | ||
} else { | ||
set _CPU_JTAG_TAPID 0x5ba00477 | ||
} | ||
|
||
if { [info exists CPU_SWD_TAPID] } { | ||
set _CPU_SWD_TAPID $CPU_SWD_TAPID | ||
} else { | ||
set _CPU_SWD_TAPID 0x5ba02477 | ||
} | ||
|
||
source [find target/swj-dp.tcl] | ||
|
||
if { [using_jtag] } { | ||
set _CPU_TAPID $_CPU_JTAG_TAPID | ||
} else { | ||
set _CPU_TAPID $_CPU_SWD_TAPID | ||
} | ||
|
||
swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPU_TAPID | ||
dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu | ||
|
||
set _TARGETNAME $_CHIPNAME.cpu | ||
target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap | ||
|
||
if { [info exists WORKAREASIZE] } { | ||
set _WORKAREASIZE $WORKAREASIZE | ||
} else { | ||
# 32 KB On-Chip SRAM | ||
set _WORKAREASIZE 0x8000 | ||
} | ||
|
||
$_TARGETNAME configure -work-area-phys 0x20000000 \ | ||
-work-area-size $_WORKAREASIZE -work-area-backup 0 | ||
|
||
if { ![using_hla] } { | ||
cortex_m reset_config sysresetreq | ||
} | ||
|
||
adapter speed 1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# | ||
# Renesas RA6M5 w/ ARM Cortex-M33 @ 200 MHz | ||
# | ||
|
||
if { [info exists CHIPNAME] } { | ||
set _CHIPNAME $CHIPNAME | ||
} else { | ||
set _CHIPNAME ra6m5 | ||
} | ||
|
||
if { [info exists CPU_JTAG_TAPID] } { | ||
set _CPU_JTAG_TAPID $CPU_JTAG_TAPID | ||
} else { | ||
set _CPU_JTAG_TAPID 0x5ba00477 | ||
} | ||
|
||
if { [info exists CPU_SWD_TAPID] } { | ||
set _CPU_SWD_TAPID $CPU_SWD_TAPID | ||
} else { | ||
set _CPU_SWD_TAPID 0x5ba02477 | ||
} | ||
|
||
source [find target/swj-dp.tcl] | ||
|
||
if { [using_jtag] } { | ||
set _CPU_TAPID $_CPU_JTAG_TAPID | ||
} else { | ||
set _CPU_TAPID $_CPU_SWD_TAPID | ||
} | ||
|
||
swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPU_TAPID | ||
dap create $_CHIPNAME.dap -chain-position $_CHIPNAME.cpu | ||
|
||
set _TARGETNAME $_CHIPNAME.cpu | ||
target create $_TARGETNAME cortex_m -dap $_CHIPNAME.dap | ||
|
||
if { [info exists WORKAREASIZE] } { | ||
set _WORKAREASIZE $WORKAREASIZE | ||
} else { | ||
# 512 KB On-Chip SRAM | ||
set _WORKAREASIZE 0x80000 | ||
} | ||
|
||
$_TARGETNAME configure -work-area-phys 0x20000000 \ | ||
-work-area-size $_WORKAREASIZE -work-area-backup 0 | ||
|
||
if { ![using_hla] } { | ||
cortex_m reset_config sysresetreq | ||
} | ||
|
||
adapter speed 1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
transport select hla_swd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
transport select swd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.