#include "main/context.h"
+#include <xf86drm.h>
#include "brw_context.h"
/**
brw_get_graphics_reset_status(struct gl_context *ctx)
{
struct brw_context *brw = brw_context(ctx);
- int err;
- uint32_t reset_count;
- uint32_t active;
- uint32_t pending;
+ __DRIscreen *dri_screen = brw->screen->driScrnPriv;
+ struct drm_i915_reset_stats stats;
/* If hardware contexts are not being used (or
* DRM_IOCTL_I915_GET_RESET_STATS is not supported), this function should
*/
assert(brw->hw_ctx != NULL);
+ memset(&stats, 0, sizeof(stats));
+ drm_bacon_gem_context_get_id(brw->hw_ctx, &stats.ctx_id);
+
/* A reset status other than NO_ERROR was returned last time. I915 returns
* nonzero active/pending only if reset has been encountered and completed.
* Return NO_ERROR from now on.
if (brw->reset_count != 0)
return GL_NO_ERROR;
- err = drm_bacon_get_reset_stats(brw->hw_ctx, &reset_count, &active,
- &pending);
- if (err)
+ if (drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
return GL_NO_ERROR;
/* A reset was observed while a batch from this context was executing.
* Assume that this context was at fault.
*/
- if (active != 0) {
- brw->reset_count = reset_count;
+ if (stats.batch_active != 0) {
+ brw->reset_count = stats.reset_count;
return GL_GUILTY_CONTEXT_RESET_ARB;
}
* but the batch was not executing. In this case, assume that the context
* was not at fault.
*/
- if (pending != 0) {
- brw->reset_count = reset_count;
+ if (stats.batch_pending != 0) {
+ brw->reset_count = stats.reset_count;
return GL_INNOCENT_CONTEXT_RESET_ARB;
}
void
brw_check_for_reset(struct brw_context *brw)
{
- uint32_t reset_count;
- uint32_t active;
- uint32_t pending;
- int err;
+ __DRIscreen *dri_screen = brw->screen->driScrnPriv;
+ struct drm_i915_reset_stats stats;
+ memset(&stats, 0, sizeof(stats));
+ drm_bacon_gem_context_get_id(brw->hw_ctx, &stats.ctx_id);
- err = drm_bacon_get_reset_stats(brw->hw_ctx, &reset_count, &active,
- &pending);
- if (err)
+ if (drmIoctl(dri_screen->fd, DRM_IOCTL_I915_GET_RESET_STATS, &stats) != 0)
return;
- if (active > 0 || pending > 0)
+ if (stats.batch_active > 0 || stats.batch_pending > 0)
_mesa_set_context_lost_dispatch(&brw->ctx);
}
free(ctx);
}
-int
-drm_bacon_get_reset_stats(drm_bacon_context *ctx,
- uint32_t *reset_count,
- uint32_t *active,
- uint32_t *pending)
-{
- struct drm_i915_reset_stats stats;
- int ret;
-
- if (ctx == NULL)
- return -EINVAL;
-
- memclear(stats);
-
- stats.ctx_id = ctx->ctx_id;
- ret = drmIoctl(ctx->bufmgr->fd,
- DRM_IOCTL_I915_GET_RESET_STATS,
- &stats);
- if (ret == 0) {
- if (reset_count != NULL)
- *reset_count = stats.reset_count;
-
- if (active != NULL)
- *active = stats.batch_active;
-
- if (pending != NULL)
- *pending = stats.batch_pending;
- }
-
- return ret;
-}
-
int
drm_bacon_reg_read(drm_bacon_bufmgr *bufmgr,
uint32_t offset,