mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 12:34:41 +08:00
drm/etnaviv: add performance monitor request processing
Changes v4 -> v5 - make use of doms_meta array Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
This commit is contained in:
parent
c8e4a7fdea
commit
249300c740
@ -16,6 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "etnaviv_gpu.h"
|
#include "etnaviv_gpu.h"
|
||||||
|
#include "etnaviv_perfmon.h"
|
||||||
|
|
||||||
struct etnaviv_pm_domain;
|
struct etnaviv_pm_domain;
|
||||||
|
|
||||||
@ -128,3 +129,19 @@ int etnaviv_pm_req_validate(const struct drm_etnaviv_gem_submit_pmr *r,
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void etnaviv_perfmon_process(struct etnaviv_gpu *gpu,
|
||||||
|
const struct etnaviv_perfmon_request *pmr)
|
||||||
|
{
|
||||||
|
const struct etnaviv_pm_domain_meta *meta = &doms_meta[gpu->exec_state];
|
||||||
|
const struct etnaviv_pm_domain *dom;
|
||||||
|
const struct etnaviv_pm_signal *sig;
|
||||||
|
u32 *bo = pmr->bo_vma;
|
||||||
|
u32 val;
|
||||||
|
|
||||||
|
dom = meta->domains + pmr->domain;
|
||||||
|
sig = &dom->signal[pmr->signal];
|
||||||
|
val = sig->sample(gpu, dom, sig);
|
||||||
|
|
||||||
|
*(bo + pmr->offset) = val;
|
||||||
|
}
|
||||||
|
@ -43,4 +43,7 @@ int etnaviv_pm_query_sig(struct etnaviv_gpu *gpu,
|
|||||||
int etnaviv_pm_req_validate(const struct drm_etnaviv_gem_submit_pmr *r,
|
int etnaviv_pm_req_validate(const struct drm_etnaviv_gem_submit_pmr *r,
|
||||||
u32 exec_state);
|
u32 exec_state);
|
||||||
|
|
||||||
|
void etnaviv_perfmon_process(struct etnaviv_gpu *gpu,
|
||||||
|
const struct etnaviv_perfmon_request *pmr);
|
||||||
|
|
||||||
#endif /* __ETNAVIV_PERFMON_H__ */
|
#endif /* __ETNAVIV_PERFMON_H__ */
|
||||||
|
Loading…
Reference in New Issue
Block a user