diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2011-06-30 14:33:48 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2020-04-14 10:48:46 +0200 |
commit | 01a19e1b9a0521c42bcb85fbeeb557a2285758f0 (patch) | |
tree | bb6a324824b3e7580c60484fa8a3c5dc6f74ec7a /arch/arm/test/Kconfig | |
parent | 8f3d9f354286745c751374f5f1fcafee6b3f3136 (diff) | |
download | linux-stericsson-tcm.tar.gz |
ARM TCM sample codetcm
This is a simple sample snippet of ARM TCM code use, we create
arm/test to host the code.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/test/Kconfig')
-rw-r--r-- | arch/arm/test/Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/test/Kconfig b/arch/arm/test/Kconfig new file mode 100644 index 000000000000..13c38e11ab6d --- /dev/null +++ b/arch/arm/test/Kconfig @@ -0,0 +1,20 @@ +config ARM_TEST + bool "Enable ARM kernel tests" + +if ARM_TEST + +menu "ARM Kernel tests" + +comment "test code to exercise the ARM kernel" + +config ARM_TCM_TEST + bool "ARM TCM test" + depends on HAVE_TCM + help + Enables some test code snippets to exercise the TCM memory + on platforms that have it. The code will not be executed + if no TCM memory is found. + +endmenu + +endif |