intel_guc_log.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Copyright © 2014-2017 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. */
  24. #ifndef _INTEL_GUC_LOG_H_
  25. #define _INTEL_GUC_LOG_H_
  26. #include <linux/workqueue.h>
  27. #include "intel_guc_fwif.h"
  28. struct drm_i915_private;
  29. struct intel_guc;
  30. struct intel_guc_log {
  31. u32 flags;
  32. struct i915_vma *vma;
  33. /* The runtime stuff gets created only when GuC logging gets enabled */
  34. struct {
  35. void *buf_addr;
  36. struct workqueue_struct *flush_wq;
  37. struct work_struct flush_work;
  38. struct rchan *relay_chan;
  39. } runtime;
  40. /* logging related stats */
  41. u32 capture_miss_count;
  42. u32 flush_interrupt_count;
  43. u32 prev_overflow_count[GUC_MAX_LOG_BUFFER];
  44. u32 total_overflow_count[GUC_MAX_LOG_BUFFER];
  45. u32 flush_count[GUC_MAX_LOG_BUFFER];
  46. };
  47. int intel_guc_log_create(struct intel_guc *guc);
  48. void intel_guc_log_destroy(struct intel_guc *guc);
  49. int i915_guc_log_control(struct drm_i915_private *dev_priv, u64 control_val);
  50. void i915_guc_log_register(struct drm_i915_private *dev_priv);
  51. void i915_guc_log_unregister(struct drm_i915_private *dev_priv);
  52. #endif