From: openocd-gerrit <ope...@us...> - 2025-03-15 10:16:24
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via da7e369266b7b5e1fea4e2baa072dac8ce15217b (commit) from c00228468cc039437bae5e41df3df4aa793e6a52 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit da7e369266b7b5e1fea4e2baa072dac8ce15217b Author: Shivasharan Nagalikar <shi...@ti...> Date: Wed Feb 19 13:58:43 2025 +0530 tcl/target/ti_k3: Add support for AM261 AM261[1] is a optimized cutdown of AM263P SoC. The key difference is the reduced number of R5F cores which is now dropped down to 2, and the DIE ID is different from AM263p, but all other definitions are compatible, so reuse the definition. [1] https://www.ti.com/product/AM2612 Change-Id: Ib6ca0b59d0b8991df6e4ab349d371187438cb393 Signed-off-by: Shivasharan Nagalikar <shi...@ti...> Reviewed-on: https://review.openocd.org/c/openocd/+/8792 Reviewed-by: Antonio Borneo <bor...@gm...> Reviewed-by: Nishanth Menon <nm...@ti...> Tested-by: jenkins diff --git a/tcl/target/ti_k3.cfg b/tcl/target/ti_k3.cfg index 2feffb92e..0dee74e5e 100644 --- a/tcl/target/ti_k3.cfg +++ b/tcl/target/ti_k3.cfg @@ -4,6 +4,8 @@ # Texas Instruments K3 devices: # * AM243: https://www.ti.com/lit/pdf/spruim2 # Has 4 R5 Cores, M4F and an M3 +# * AM261: https://www.ti.com/lit/pdf/sprujb6 +# Has 2 R5 Cores and an M4F # * AM263: https://www.ti.com/lit/pdf/spruj17 # Has 4 R5 Cores and an M3 # * AM263P: https://www.ti.com/lit/pdf/spruj55 @@ -89,6 +91,7 @@ set _powerap_sprec_reset 0xf0 # Set configuration overrides for each SOC switch $_soc { + am261 - am263p - am263 { set _K3_DAP_TAPID 0x2bb7d02f @@ -111,6 +114,10 @@ switch $_soc { if { "$_soc" == "am263p" } { set _K3_DAP_TAPID 0x1bb9502f } + if { "$_soc" == "am261" } { + set _K3_DAP_TAPID 0x1bba602f + set _r5_cores 2 + } } am273 { set _K3_DAP_TAPID 0x1bb6a02f ----------------------------------------------------------------------- Summary of changes: tcl/target/ti_k3.cfg | 7 +++++++ 1 file changed, 7 insertions(+) hooks/post-receive -- Main OpenOCD repository |