aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew Richardson <drew.richardson@arm.com>2014-01-23 12:00:00 -0800
committerDrew Richardson <drew.richardson@arm.com>2014-12-19 15:50:10 -0800
commitf1f81bcde6ec1647ad617d68b4626951e3c1d019 (patch)
tree27e271f7f0eb93345081d970d726b03d29497e44
parent9b0375410d73fb0de515ee33e0dd7f054cd45a6f (diff)
gator: Version 5.17.15.17.1
Signed-off-by: Drew Richardson <drew.richardson@arm.com>
-rw-r--r--driver/Kconfig39
1 files changed, 39 insertions, 0 deletions
diff --git a/driver/Kconfig b/driver/Kconfig
new file mode 100644
index 0000000..e46ccb9
--- /dev/null
+++ b/driver/Kconfig
@@ -0,0 +1,39 @@
+config GATOR
+ tristate "Gator module for ARM's Streamline Performance Analyzer"
+ default m if (ARM || ARM64)
+ depends on PROFILING
+ depends on HIGH_RES_TIMERS
+ depends on LOCAL_TIMERS || !(ARM && SMP)
+ depends on PERF_EVENTS
+ depends on HW_PERF_EVENTS || !(ARM || ARM64)
+ select TRACING
+ help
+ Gator module for ARM's Streamline Performance Analyzer
+
+config GATOR_WITH_MALI_SUPPORT
+ bool
+
+choice
+ prompt "Enable Mali GPU support in Gator"
+ depends on GATOR
+ optional
+ help
+ Enable Mali GPU support in Gator
+
+config GATOR_MALI_4XXMP
+ bool "Mali-400MP or Mali-450MP"
+ select GATOR_WITH_MALI_SUPPORT
+
+config GATOR_MALI_T6XX
+ bool "Mali-T604 or Mali-T658"
+ select GATOR_WITH_MALI_SUPPORT
+
+endchoice
+
+config GATOR_MALI_PATH
+ string "Path to Mali driver"
+ depends on GATOR_WITH_MALI_SUPPORT
+ default "drivers/gpu/arm/mali400mp"
+ help
+ The gator code adds this to its include path so it can get the Mali
+ trace headers with: #include "linux/mali_linux_trace.h"