]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/arm-ds5-gator.git/blob - driver/gator_events_mali_common.h
gator: Version 5.18
[android-sdk/arm-ds5-gator.git] / driver / gator_events_mali_common.h
1 /**
2  * Copyright (C) ARM Limited 2012-2014. 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  */
10 #if !defined(GATOR_EVENTS_MALI_COMMON_H)
11 #define GATOR_EVENTS_MALI_COMMON_H
13 #include "gator.h"
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>
21 /* Device codes for each known GPU */
22 #define MALI_4xx     (0x0b07)
23 #define MALI_T6xx    (0x0056)
25 /* Ensure that MALI_SUPPORT has been defined to something. */
26 #ifndef MALI_SUPPORT
27 #error MALI_SUPPORT not defined!
28 #endif
30 /* Values for the supported activity event types */
31 #define ACTIVITY_START  (1)
32 #define ACTIVITY_STOP   (2)
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;
42 /*
43  * Mali-4xx
44  */
45 typedef int mali_profiling_set_event_type(unsigned int, int);
46 typedef void mali_profiling_control_type(unsigned int, unsigned int);
47 typedef void mali_profiling_get_counters_type(unsigned int *, unsigned int *, unsigned int *, unsigned int *);
49 /*
50  * Driver entry points for functions called directly by gator.
51  */
52 extern int _mali_profiling_set_event(unsigned int, int);
53 extern void _mali_profiling_control(unsigned int, unsigned int);
54 extern void _mali_profiling_get_counters(unsigned int *, unsigned int *, unsigned int *, unsigned int *);
56 /**
57  * Returns a name which identifies the GPU type (eg Mali-4xx, Mali-T6xx).
58  *
59  * @return The name as a constant string.
60  */
61 extern const char *gator_mali_get_mali_name(void);
63 /**
64  * Creates a filesystem entry under /dev/gator relating to the specified event name and key, and
65  * associate the key/enable values with this entry point.
66  *
67  * @param mali_name A name related to the type of GPU, obtained from a call to gator_mali_get_mali_name()
68  * @param event_name The name of the event.
69  * @param sb Linux super block
70  * @param root Directory under which the entry will be created.
71  * @param counter_key Ptr to location which will be associated with the counter key.
72  * @param counter_enabled Ptr to location which will be associated with the counter enable state.
73  *
74  * @return 0 if entry point was created, non-zero if not.
75  */
76 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, unsigned long *event);
78 /**
79  * Initializes the counter array.
80  *
81  * @param keys The array of counters
82  * @param n_counters The number of entries in each of the arrays.
83  */
84 extern void gator_mali_initialise_counters(mali_counter counters[], unsigned int n_counters);
86 #endif /* GATOR_EVENTS_MALI_COMMON_H  */