etnaviv_perfmon.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (C) 2017 Etnaviv Project
  3. * Copyright (C) 2017 Zodiac Inflight Innovations
  4. *
  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.
  8. *
  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
  12. * more details.
  13. *
  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/>.
  16. */
  17. #ifndef __ETNAVIV_PERFMON_H__
  18. #define __ETNAVIV_PERFMON_H__
  19. struct etnaviv_gpu;
  20. struct drm_etnaviv_pm_domain;
  21. struct drm_etnaviv_pm_signal;
  22. struct etnaviv_perfmon_request
  23. {
  24. u32 flags;
  25. u8 domain;
  26. u8 signal;
  27. u32 sequence;
  28. /* bo to store a value */
  29. u32 *bo_vma;
  30. u32 offset;
  31. };
  32. int etnaviv_pm_query_dom(struct etnaviv_gpu *gpu,
  33. struct drm_etnaviv_pm_domain *domain);
  34. int etnaviv_pm_query_sig(struct etnaviv_gpu *gpu,
  35. struct drm_etnaviv_pm_signal *signal);
  36. int etnaviv_pm_req_validate(const struct drm_etnaviv_gem_submit_pmr *r,
  37. u32 exec_state);
  38. void etnaviv_perfmon_process(struct etnaviv_gpu *gpu,
  39. const struct etnaviv_perfmon_request *pmr, u32 exec_state);
  40. #endif /* __ETNAVIV_PERFMON_H__ */