-
Notifications
You must be signed in to change notification settings - Fork 8k
boards: nordic: nrf54h20dk: Reconfigure Trace #94440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
karstenkoenig
wants to merge
1
commit into
zephyrproject-rtos:main
Choose a base branch
from
karstenkoenig:configure_tdd_on_reset
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I click "Reset & Break At Symbol" in Ozone I no longer see Instruction Trace. Based on the commit message I was expected this to help. What does this fix exactly? Is it supposed to fix missing Instruction Trace after "Reset & Break At Symbol"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are trying the thing it should improve yes.
Can you try pause and resume a few times after the initial break? The debugger connection gets reset on the reset so Ozone must recover and hence needs a few branches to actually see where the instruction trace is at, even if it knows the current instruction from the program counter. The instruction trace is mostly just branching information if a branch was actually taken, so it needs to capture quite a bit to get an actual address and derive the current instruction from that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait a minute, you didn't see it continue before did you? So you were checking if this made it better and it didn't live up to expectations or does this actually break instruction tracing on reset for you?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While last week I was getting trace somewhat working if I didn't hit reset, now I am unable to get trace working at all. I just get "No trace clock present, trace may not work correctly."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is very strange, this should at worst case cause the coresight subsystem to be configured more often but to the same configuration. Are you sure you are setting
CONFIG_SOC_NRF54H20_TDD_ENABLE=y
?I am reworking this part to be more like a proper zephyr driver here, so it'll be a devicetree entry that gets enabled #95124
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where do I get
CONFIG_SOC_NRF54H20_TDD_ENABLE=y
from? I do enableNRF_IRONSIDE_TDD_SERVICE
andNRF_TRACE_PORT
inwest build -t menuconfig
but I don't seeCONFIG_SOC_NRF54H20_TDD_ENABLE
anywhere.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was a feature I added to unlock using ETM. https://github.com/zephyrproject-rtos/zephyr/blob/main/soc/nordic/nrf54h/Kconfig#L69-L78
But in hindsight it was a poor design, I should have gone with the referenced coresight PR #95124 from the start, so tpiu has proper pinctrl, tdd proper power management via a device driver etc. NRF_TRACE_PORT I had not realized existed, I could have probably hidden the TPIU config behind that but think the future pinctrl configuration style is a lot cleaner overall