gallium/hud: set filedescriptor for fps graph
[mesa.git] / src / gallium / auxiliary / hud / hud_private.h
1 /**************************************************************************
2 *
3 * Copyright 2013 Marek Olšák <maraeo@gmail.com>
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL THE AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef HUD_PRIVATE_H
29 #define HUD_PRIVATE_H
30
31 #include "pipe/p_context.h"
32 #include "util/list.h"
33
34 struct hud_graph {
35 /* initialized by common code */
36 struct list_head head;
37 struct hud_pane *pane;
38 float color[3];
39 float *vertices; /* ring buffer of vertices */
40
41 /* name and query */
42 char name[128];
43 void *query_data;
44 void (*query_new_value)(struct hud_graph *gr);
45 void (*free_query_data)(void *ptr); /**< do not use ordinary free() */
46
47 /* mutable variables */
48 unsigned num_vertices;
49 unsigned index; /* vertex index being updated */
50 uint64_t current_value;
51 FILE *fd;
52 };
53
54 struct hud_pane {
55 struct list_head head;
56 unsigned x1, y1, x2, y2;
57 unsigned inner_x1;
58 unsigned inner_y1;
59 unsigned inner_x2;
60 unsigned inner_y2;
61 unsigned inner_width;
62 unsigned inner_height;
63 float yscale;
64 unsigned max_num_vertices;
65 unsigned last_line; /* index of the last describing line in the graph */
66 uint64_t max_value;
67 uint64_t initial_max_value;
68 uint64_t ceiling;
69 unsigned dyn_ceil_last_ran;
70 boolean dyn_ceiling;
71 enum pipe_driver_query_type type;
72 uint64_t period; /* in microseconds */
73
74 struct list_head graph_list;
75 unsigned num_graphs;
76 };
77
78
79 /* core */
80 void hud_pane_add_graph(struct hud_pane *pane, struct hud_graph *gr);
81 void hud_pane_set_max_value(struct hud_pane *pane, uint64_t value);
82 void hud_graph_add_value(struct hud_graph *gr, uint64_t value);
83
84 /* graphs/queries */
85 struct hud_batch_query_context;
86
87 #define ALL_CPUS ~0 /* optionally set as cpu_index */
88
89 int hud_get_num_cpus(void);
90
91 void hud_fps_graph_install(struct hud_pane *pane);
92 void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index);
93 void hud_pipe_query_install(struct hud_batch_query_context **pbq,
94 struct hud_pane *pane, struct pipe_context *pipe,
95 const char *name, unsigned query_type,
96 unsigned result_index,
97 uint64_t max_value,
98 enum pipe_driver_query_type type,
99 enum pipe_driver_query_result_type result_type,
100 unsigned flags);
101 boolean hud_driver_query_install(struct hud_batch_query_context **pbq,
102 struct hud_pane *pane,
103 struct pipe_context *pipe, const char *name);
104 void hud_batch_query_update(struct hud_batch_query_context *bq);
105 void hud_batch_query_cleanup(struct hud_batch_query_context **pbq);
106
107 void hud_graph_set_dump_file(struct hud_graph *gr);
108
109 #if HAVE_GALLIUM_EXTRA_HUD
110 int hud_get_num_nics(bool displayhelp);
111 #define NIC_DIRECTION_RX 1
112 #define NIC_DIRECTION_TX 2
113 #define NIC_RSSI_DBM 3
114 void hud_nic_graph_install(struct hud_pane *pane, const char *nic_index,
115 unsigned int mode);
116
117 int hud_get_num_disks(bool displayhelp);
118 #define DISKSTAT_RD 1
119 #define DISKSTAT_WR 2
120 void hud_diskstat_graph_install(struct hud_pane *pane, const char *dev_name,
121 unsigned int mode);
122
123 int hud_get_num_cpufreq(bool displayhelp);
124 #define CPUFREQ_MINIMUM 1
125 #define CPUFREQ_CURRENT 2
126 #define CPUFREQ_MAXIMUM 3
127 void hud_cpufreq_graph_install(struct hud_pane *pane, int cpu_index, unsigned int mode);
128 #endif
129
130 #if HAVE_LIBSENSORS
131 int hud_get_num_sensors(bool displayhelp);
132 #define SENSORS_TEMP_CURRENT 1
133 #define SENSORS_TEMP_CRITICAL 2
134 #define SENSORS_VOLTAGE_CURRENT 3
135 #define SENSORS_CURRENT_CURRENT 4
136 #define SENSORS_POWER_CURRENT 5
137 void hud_sensors_temp_graph_install(struct hud_pane *pane, const char *dev_name,
138 unsigned int mode);
139 #endif
140
141 #endif