mirror of
https://github.com/linux-msm/openocd.git
synced 2026-02-25 13:15:07 -08:00
tcl/target/ti_k3: Add support for AM263P
AM263P[1] adds additional features to AM263 SoC. [2] provides a detailed list of differences, however, the key difference from processor usage perspective is the increased SRAM and Remote L2(RL2) Cache for improved performance of R5F. To differentiate the DIE ID is different, however rest of the processor description remain compatible to AM263, hence reuse the definition. [1] https://www.ti.com/product/AM263P4 [2] https://www.ti.com/lit/pdf/spradb3 Change-Id: If47935caf1f995d7e606547e0d6545c39544678a Signed-off-by: Shivasharan Nagalikar <shivasharan.nagalikar@ti.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8770 Reviewed-by: Nishanth Menon <nm@ti.com> Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
committed by
Antonio Borneo
parent
a2c3c791ad
commit
9e5ffed7d6
@@ -6,6 +6,8 @@
|
||||
# Has 4 R5 Cores, M4F and an M3
|
||||
# * AM263: https://www.ti.com/lit/pdf/spruj17
|
||||
# Has 4 R5 Cores and an M3
|
||||
# * AM263P: https://www.ti.com/lit/pdf/spruj55
|
||||
# Has 4 R5 Cores and an M4F
|
||||
# * AM273: https://www.ti.com/lit/pdf/spruiu0
|
||||
# Has 2 R5 Cores and an M3
|
||||
# * AM625: https://www.ti.com/lit/pdf/spruiv7a
|
||||
@@ -87,6 +89,7 @@ set _powerap_sprec_reset 0xf0
|
||||
|
||||
# Set configuration overrides for each SOC
|
||||
switch $_soc {
|
||||
am263p -
|
||||
am263 {
|
||||
set _K3_DAP_TAPID 0x2bb7d02f
|
||||
|
||||
@@ -104,6 +107,10 @@ switch $_soc {
|
||||
set _r5_ap_num 5
|
||||
|
||||
set _power_ap_num 7
|
||||
|
||||
if { "$_soc" == "am263p" } {
|
||||
set _K3_DAP_TAPID 0x1bb9502f
|
||||
}
|
||||
}
|
||||
am273 {
|
||||
set _K3_DAP_TAPID 0x1bb6a02f
|
||||
|
||||
Reference in New Issue
Block a user