-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
contrib: gunyah-hypervisor major update
This change contains significant updates to the Gunyah Hypervisor. Signed-off-by: Carl van Schaik <[email protected]>
- Loading branch information
1 parent
4a4f0af
commit d2e92c5
Showing
626 changed files
with
45,285 additions
and
8,385 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,16 @@ | ||
root = True | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
tab_width = 8 | ||
|
||
[*.{c,h,tc,ev,S,hvc}] | ||
indent_style = tab | ||
indent_size = 8 | ||
|
||
[*.{py,md}] | ||
indent_style = space | ||
indent_size = 4 |
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
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
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,28 @@ | ||
# © 2021 Qualcomm Innovation Center, Inc. All rights reserved. | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
base_arch armv8-64 | ||
|
||
configs ARCH_AARCH64_32BIT_EL0=1 | ||
configs ARCH_AARCH64_32BIT_EL0_ALL_CORES=1 | ||
# FIXME | ||
configs ARCH_AARCH64_32BIT_EL1=0 | ||
|
||
# Mandatory architecture extensions in v8.0 | ||
configs ARCH_ARM_PMU_VER=3 | ||
|
||
# The number of implemented ICH_LR<n>_EL2 registers. | ||
configs CPU_GICH_LR_COUNT=4U | ||
|
||
# The number of implemented ICH_APR[01]R<n>_EL2 registers. | ||
configs CPU_GICH_APR_COUNT=1U | ||
|
||
# The number of implemented DBGB[CV]R_EL1 (HW breakpoint) registers. | ||
configs CPU_DEBUG_BP_COUNT=6U | ||
|
||
# The number of implemented DBGW[CV]R_EL1 (HW watchpoint) registers. | ||
configs CPU_DEBUG_WP_COUNT=4U | ||
|
||
# These CPUs always have an ETM. | ||
configs PLATFORM_HAS_NO_ETM_BASE=0 |
Oops, something went wrong.