-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: arch/arm/Kconfig arch/arm/common/Makefile arch/arm/kernel/Makefile arch/arm/kernel/smp.c
- Loading branch information
Showing
147 changed files
with
1,674 additions
and
1,316 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,27 @@ | ||
Software emulation of deprecated SWP instruction (CONFIG_SWP_EMULATE) | ||
--------------------------------------------------------------------- | ||
|
||
ARMv6 architecture deprecates use of the SWP/SWPB instructions, and recommeds | ||
moving to the load-locked/store-conditional instructions LDREX and STREX. | ||
|
||
ARMv7 multiprocessing extensions introduce the ability to disable these | ||
instructions, triggering an undefined instruction exception when executed. | ||
Trapped instructions are emulated using an LDREX/STREX or LDREXB/STREXB | ||
sequence. If a memory access fault (an abort) occurs, a segmentation fault is | ||
signalled to the triggering process. | ||
|
||
/proc/cpu/swp_emulation holds some statistics/information, including the PID of | ||
the last process to trigger the emulation to be invocated. For example: | ||
--- | ||
Emulated SWP: 12 | ||
Emulated SWPB: 0 | ||
Aborted SWP{B}: 1 | ||
Last process: 314 | ||
--- | ||
|
||
NOTE: when accessing uncached shared regions, LDREX/STREX rely on an external | ||
transaction monitoring block called a global monitor to maintain update | ||
atomicity. If your system does not implement a global monitor, this option can | ||
cause programs that perform SWP operations to uncached memory to deadlock, as | ||
the STREX operation will always fail. | ||
|
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 |
---|---|---|
|
@@ -37,7 +37,3 @@ config SHARP_PARAM | |
|
||
config SHARP_SCOOP | ||
bool | ||
|
||
config COMMON_CLKDEV | ||
bool | ||
select HAVE_CLK |
Oops, something went wrong.