Skip to content
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

Arm64 debug support #13764

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions arch/arm64/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ config ARCH_CORTEX_A53
select ARCH_HAVE_FPU
select ARCH_HAVE_TESTSET
select ARM64_HAVE_NEON
select ARCH_HAVE_DEBUG

config ARCH_CORTEX_A55
bool
Expand All @@ -232,6 +233,7 @@ config ARCH_CORTEX_A57
select ARCH_HAVE_FPU
select ARCH_HAVE_TESTSET
select ARM64_HAVE_NEON
select ARCH_HAVE_DEBUG

config ARCH_CORTEX_A72
bool
Expand All @@ -244,6 +246,7 @@ config ARCH_CORTEX_A72
select ARCH_HAVE_FPU
select ARCH_HAVE_TESTSET
select ARM64_HAVE_NEON
select ARCH_HAVE_DEBUG

config ARCH_CORTEX_R82
bool
Expand All @@ -255,6 +258,7 @@ config ARCH_CORTEX_R82
select ARCH_HAVE_FPU
select ARCH_HAVE_TESTSET
select ARM64_HAVE_NEON
select ARCH_HAVE_DEBUG

config ARCH_FAMILY
string
Expand Down
4 changes: 4 additions & 0 deletions arch/arm64/src/common/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,7 @@ endif
ifeq ($(CONFIG_ARM64_SEMIHOSTING_HOSTFS),y)
CMN_CSRCS += arm64_hostfs.c
endif

ifeq ($(CONFIG_ARCH_HAVE_DEBUG),y)
CMN_CSRCS += arm64_hwdebug.c
endif
Loading
Loading