lin
2025-02-18 59b6413ea46963124667e54dd4348d204bcf94d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 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_MIDGARD
   bool "Mali-T60x, Mali-T62x, Mali-T72x or Mali-T76x"
   select GATOR_WITH_MALI_SUPPORT
 
endchoice
 
config GATOR_MALI_4XXMP_PATH
   string "Path to Mali driver"
   depends on GATOR_MALI_4XXMP
   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"
 
config GATOR_MALI_MIDGARD_PATH
   string "Path to Mali driver"
   depends on GATOR_MALI_MIDGARD
   default "drivers/gpu/arm/midgard"
   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"