mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
00273125c3
Add a brief sanity test of S32C1I functionality. This instruction is needed by the kernel and userland as part of the base ABI (including GCC atomic builtins, certain threading packages, future atomic support in the C++ standard, etc). However, correct operation of this instruction requires some cooperation by hardware external to the processor (such as bus bridge, bus fabric, or memory controller). Minimally exercising this mechanism and reporting explicit status early in the boot process is helpful to chip vendors using the Linux kernel as a benchmark of correctness of hardware. As it turns out, S32C1I is not exercised by the kernel and by uClibc based userland as of early June 2008. This is expected to change soon as both incorporate more recent open source developments. Signed-off-by: Marc Gauthier <marc@tensilica.com> Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Chris Zankel <chris@zankel.net>
28 lines
917 B
Plaintext
28 lines
917 B
Plaintext
menu "Kernel hacking"
|
|
|
|
source "lib/Kconfig.debug"
|
|
|
|
config LD_NO_RELAX
|
|
bool "Disable linker relaxation"
|
|
default n
|
|
help
|
|
Enable this function to disable link-time optimizations.
|
|
The default linker behavior is to combine identical literal
|
|
values to reduce code size and remove unnecessary overhead from
|
|
assembler-generated 'longcall' sequences.
|
|
Enabling this option improves the link time but increases the
|
|
code size, and possibly execution time.
|
|
|
|
config S32C1I_SELFTEST
|
|
bool "Perform S32C1I instruction self-test at boot"
|
|
default y
|
|
help
|
|
Enable this option to test S32C1I instruction behavior at boot.
|
|
Correct operation of this instruction requires some cooperation from hardware
|
|
external to the processor (such as bus bridge, bus fabric, or memory controller).
|
|
It is easy to make wrong hardware configuration, this test should catch it early.
|
|
|
|
Say 'N' on stable hardware.
|
|
|
|
endmenu
|