Merge remote-tracking branch 'lsk/v3.10/topic/arm64-fvp' into linux-linaro-lsk
[firefly-linux-kernel-4.4.55.git] / drivers / gator / gator_events_mali_common.h
1 /**
2  * Copyright (C) ARM Limited 2012-2013. All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  */
9
10 #if !defined(GATOR_EVENTS_MALI_COMMON_H)
11 #define GATOR_EVENTS_MALI_COMMON_H
12
13 #include "gator.h"
14
15 #include <linux/module.h>
16 #include <linux/time.h>
17 #include <linux/math64.h>
18 #include <linux/slab.h>
19 #include <asm/io.h>
20
21 /* Device codes for each known GPU */
22 #define MALI_4xx     (0x0b07)
23 #define MALI_T6xx    (0x0056)
24
25 /* Ensure that MALI_SUPPORT has been defined to something. */
26 #ifndef MALI_SUPPORT
27 #error MALI_SUPPORT not defined!
28 #endif
29
30 /* Values for the supported activity event types */
31 #define ACTIVITY_START  (1)
32 #define ACTIVITY_STOP   (2)
33
34 /*
35  * Runtime state information for a counter.
36  */
37 typedef struct {
38         unsigned long key;      /* 'key' (a unique id set by gatord and returned by gator.ko) */
39         unsigned long enabled;  /* counter enable state */
40 } mali_counter;
41
42 /*
43  * Mali-4xx
44  */
45 typedef int mali_profiling_set_event_type(unsigned int, int);
46 typedef void mali_osk_fb_control_set_type(unsigned int, unsigned int);
47 typedef void mali_profiling_control_type(unsigned int, unsigned int);
48 typedef void mali_profiling_get_counters_type(unsigned int *, unsigned int *, unsigned int *, unsigned int *);
49
50 /*
51  * Driver entry points for functions called directly by gator.
52  */
53 extern int _mali_profiling_set_event(unsigned int, int);
54 extern void _mali_osk_fb_control_set(unsigned int, unsigned int);
55 extern void _mali_profiling_control(unsigned int, unsigned int);
56 extern void _mali_profiling_get_counters(unsigned int *, unsigned int *, unsigned int *, unsigned int *);
57
58 /**
59  * Returns a name which identifies the GPU type (eg Mali-4xx, Mali-T6xx).
60  *
61  * @return The name as a constant string.
62  */
63 extern const char *gator_mali_get_mali_name(void);
64
65 /**
66  * Creates a filesystem entry under /dev/gator relating to the specified event name and key, and
67  * associate the key/enable values with this entry point.
68  *
69  * @param mali_name A name related to the type of GPU, obtained from a call to gator_mali_get_mali_name()
70  * @param event_name The name of the event.
71  * @param sb Linux super block
72  * @param root Directory under which the entry will be created.
73  * @param counter_key Ptr to location which will be associated with the counter key.
74  * @param counter_enabled Ptr to location which will be associated with the counter enable state.
75  *
76  * @return 0 if entry point was created, non-zero if not.
77  */
78 extern int gator_mali_create_file_system(const char *mali_name, const char *event_name, struct super_block *sb, struct dentry *root, mali_counter *counter);
79
80 /**
81  * Initializes the counter array.
82  *
83  * @param keys The array of counters
84  * @param n_counters The number of entries in each of the arrays.
85  */
86 extern void gator_mali_initialise_counters(mali_counter counters[], unsigned int n_counters);
87
88 #endif /* GATOR_EVENTS_MALI_COMMON_H  */