2 * Copyright (C) 2017 Etnaviv Project
3 * Copyright (C) 2017 Zodiac Inflight Innovations
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef __ETNAVIV_PERFMON_H__
19 #define __ETNAVIV_PERFMON_H__
22 struct drm_etnaviv_pm_domain
;
23 struct drm_etnaviv_pm_signal
;
25 struct etnaviv_perfmon_request
32 /* bo to store a value */
37 int etnaviv_pm_query_dom(struct etnaviv_gpu
*gpu
,
38 struct drm_etnaviv_pm_domain
*domain
);
40 int etnaviv_pm_query_sig(struct etnaviv_gpu
*gpu
,
41 struct drm_etnaviv_pm_signal
*signal
);
43 int etnaviv_pm_req_validate(const struct drm_etnaviv_gem_submit_pmr
*r
,
46 void etnaviv_perfmon_process(struct etnaviv_gpu
*gpu
,
47 const struct etnaviv_perfmon_request
*pmr
, u32 exec_state
);
49 #endif /* __ETNAVIV_PERFMON_H__ */