diff options
author | Chia-I Wu <[email protected]> | 2013-06-12 16:21:00 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-06-12 17:46:52 +0800 |
commit | cdfb2163c4cf6b54b6d8ba61f5460a29f58e3184 (patch) | |
tree | ab3a4dc322d583db7d279d2376bb36f9dd166c4f /src/gallium/winsys/intel | |
parent | 6fe0453c339b6e894e0ee8d2200e7638a43ed21e (diff) |
ilo: get rid of function tables in winsys
We are moving toward making struct intel_bo alias drm_intel_bo. As a first
step, we cannot have function tables.
Diffstat (limited to 'src/gallium/winsys/intel')
-rw-r--r-- | src/gallium/winsys/intel/drm/intel_drm_public.h | 35 | ||||
-rw-r--r-- | src/gallium/winsys/intel/drm/intel_drm_winsys.c | 501 | ||||
-rw-r--r-- | src/gallium/winsys/intel/drm/intel_winsys.h | 227 | ||||
-rw-r--r-- | src/gallium/winsys/intel/intel_winsys.h | 261 |
4 files changed, 464 insertions, 560 deletions
diff --git a/src/gallium/winsys/intel/drm/intel_drm_public.h b/src/gallium/winsys/intel/drm/intel_drm_public.h deleted file mode 100644 index 87311d29e56..00000000000 --- a/src/gallium/winsys/intel/drm/intel_drm_public.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Mesa 3-D graphics library - * - * Copyright (C) 2012-2013 LunarG, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - * - * Authors: - * Chia-I Wu <[email protected]> - */ - -#ifndef INTEL_DRM_PUBLIC_H -#define INTEL_DRM_PUBLIC_H - -struct intel_winsys; - -struct intel_winsys *intel_drm_winsys_create(int fd); - -#endif /* INTEL_DRM_PUBLIC_H */ diff --git a/src/gallium/winsys/intel/drm/intel_drm_winsys.c b/src/gallium/winsys/intel/drm/intel_drm_winsys.c index 1a8d0f7292f..e75eb4f6f61 100644 --- a/src/gallium/winsys/intel/drm/intel_drm_winsys.c +++ b/src/gallium/winsys/intel/drm/intel_drm_winsys.c @@ -40,14 +40,11 @@ #include "util/u_inlines.h" #include "util/u_memory.h" #include "util/u_debug.h" -#include "intel_drm_public.h" -#include "intel_winsys.h" +#include "../intel_winsys.h" #define BATCH_SZ (8192 * sizeof(uint32_t)) -struct intel_drm_winsys { - struct intel_winsys base; - +struct intel_winsys { int fd; drm_intel_bufmgr *bufmgr; struct drm_intel_decode *decode; @@ -58,8 +55,7 @@ struct intel_drm_winsys { int array_size; }; -struct intel_drm_bo { - struct intel_bo base; +struct intel_bo { struct pipe_reference reference; drm_intel_bo *bo; @@ -67,22 +63,9 @@ struct intel_drm_bo { unsigned long pitch; }; -static inline struct intel_drm_winsys * -intel_drm_winsys(struct intel_winsys *ws) -{ - return (struct intel_drm_winsys *) ws; -} - -static inline struct intel_drm_bo * -intel_drm_bo(struct intel_bo *bo) -{ - return (struct intel_drm_bo *) bo; -} - -static int -intel_drm_bo_export_handle(struct intel_bo *bo, struct winsys_handle *handle) +int +intel_bo_export_handle(struct intel_bo *bo, struct winsys_handle *handle) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); int err = 0; switch (handle->type) { @@ -90,20 +73,20 @@ intel_drm_bo_export_handle(struct intel_bo *bo, struct winsys_handle *handle) { uint32_t name; - err = drm_intel_bo_flink(drm_bo->bo, &name); + err = drm_intel_bo_flink(bo->bo, &name); if (!err) handle->handle = name; } break; case DRM_API_HANDLE_TYPE_KMS: - handle->handle = drm_bo->bo->handle; + handle->handle = bo->bo->handle; break; #if 0 case DRM_API_HANDLE_TYPE_PRIME: { int fd; - err = drm_intel_bo_gem_export_to_prime(drm_bo->bo, &fd); + err = drm_intel_bo_gem_export_to_prime(bo->bo, &fd); if (!err) handle->handle = fd; } @@ -117,33 +100,30 @@ intel_drm_bo_export_handle(struct intel_bo *bo, struct winsys_handle *handle) if (err) return err; - handle->stride = drm_bo->pitch; + handle->stride = bo->pitch; return 0; } -static int -intel_drm_bo_exec(struct intel_bo *bo, int used, - struct intel_context *ctx, unsigned long flags) +int +intel_bo_exec(struct intel_bo *bo, int used, + struct intel_context *ctx, unsigned long flags) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - if (ctx) { - return drm_intel_gem_bo_context_exec(drm_bo->bo, + return drm_intel_gem_bo_context_exec(bo->bo, (drm_intel_context *) ctx, used, flags); } else { - return drm_intel_bo_mrb_exec(drm_bo->bo, used, NULL, 0, 0, flags); + return drm_intel_bo_mrb_exec(bo->bo, used, NULL, 0, 0, flags); } } -static int -intel_drm_bo_wait(struct intel_bo *bo, int64_t timeout) +int +intel_bo_wait(struct intel_bo *bo, int64_t timeout) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); int err; - err = drm_intel_gem_bo_wait(drm_bo->bo, timeout); + err = drm_intel_gem_bo_wait(bo->bo, timeout); /* consider the bo idle on errors */ if (err && err != -ETIME) err = 0; @@ -151,263 +131,210 @@ intel_drm_bo_wait(struct intel_bo *bo, int64_t timeout) return err; } -static int -intel_drm_bo_emit_reloc(struct intel_bo *bo, uint32_t offset, - struct intel_bo *target_bo, uint32_t target_offset, - uint32_t read_domains, uint32_t write_domain) +int +intel_bo_emit_reloc(struct intel_bo *bo, uint32_t offset, + struct intel_bo *target_bo, uint32_t target_offset, + uint32_t read_domains, uint32_t write_domain) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - struct intel_drm_bo *target = intel_drm_bo(target_bo); - - return drm_intel_bo_emit_reloc(drm_bo->bo, offset, - target->bo, target_offset, read_domains, write_domain); + return drm_intel_bo_emit_reloc(bo->bo, offset, + target_bo->bo, target_offset, read_domains, write_domain); } -static int -intel_drm_bo_get_reloc_count(struct intel_bo *bo) +int +intel_bo_get_reloc_count(struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_gem_bo_get_reloc_count(drm_bo->bo); + return drm_intel_gem_bo_get_reloc_count(bo->bo); } -static void -intel_drm_bo_clear_relocs(struct intel_bo *bo, int start) +void +intel_bo_clear_relocs(struct intel_bo *bo, int start) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_gem_bo_clear_relocs(drm_bo->bo, start); + return drm_intel_gem_bo_clear_relocs(bo->bo, start); } -static bool -intel_drm_bo_references(struct intel_bo *bo, struct intel_bo *target_bo) +bool +intel_bo_references(struct intel_bo *bo, struct intel_bo *target_bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - struct intel_drm_bo *target = intel_drm_bo(target_bo); - - return drm_intel_bo_references(drm_bo->bo, target->bo); + return drm_intel_bo_references(bo->bo, target_bo->bo); } -static int -intel_drm_bo_map(struct intel_bo *bo, bool write_enable) +int +intel_bo_map(struct intel_bo *bo, bool write_enable) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_bo_map(drm_bo->bo, write_enable); + return drm_intel_bo_map(bo->bo, write_enable); } -static int -intel_drm_bo_map_gtt(struct intel_bo *bo) +int +intel_bo_map_gtt(struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_gem_bo_map_gtt(drm_bo->bo); + return drm_intel_gem_bo_map_gtt(bo->bo); } -static int -intel_drm_bo_map_unsynchronized(struct intel_bo *bo) +int +intel_bo_map_unsynchronized(struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_gem_bo_map_unsynchronized(drm_bo->bo); + return drm_intel_gem_bo_map_unsynchronized(bo->bo); } -static int -intel_drm_bo_unmap(struct intel_bo *bo) +int +intel_bo_unmap(struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_bo_unmap(drm_bo->bo); + return drm_intel_bo_unmap(bo->bo); } -static int -intel_drm_bo_pwrite(struct intel_bo *bo, unsigned long offset, - unsigned long size, const void *data) +int +intel_bo_pwrite(struct intel_bo *bo, unsigned long offset, + unsigned long size, const void *data) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_bo_subdata(drm_bo->bo, offset, size, data); + return drm_intel_bo_subdata(bo->bo, offset, size, data); } -static int -intel_drm_bo_pread(struct intel_bo *bo, unsigned long offset, - unsigned long size, void *data) +int +intel_bo_pread(struct intel_bo *bo, unsigned long offset, + unsigned long size, void *data) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_intel_bo_get_subdata(drm_bo->bo, offset, size, data); + return drm_intel_bo_get_subdata(bo->bo, offset, size, data); } -static unsigned long -intel_drm_bo_get_size(struct intel_bo *bo) +unsigned long +intel_bo_get_size(const struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_bo->bo->size; + return bo->bo->size; } -static unsigned long -intel_drm_bo_get_offset(struct intel_bo *bo) +unsigned long +intel_bo_get_offset(const struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_bo->bo->offset; + return bo->bo->offset; } -static void * -intel_drm_bo_get_virtual(struct intel_bo *bo) +void * +intel_bo_get_virtual(const struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_bo->bo->virtual; + return bo->bo->virtual; } -static enum intel_tiling_mode -intel_drm_bo_get_tiling(struct intel_bo *bo) +enum intel_tiling_mode +intel_bo_get_tiling(const struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_bo->tiling; + return bo->tiling; } -static unsigned long -intel_drm_bo_get_pitch(struct intel_bo *bo) +unsigned long +intel_bo_get_pitch(const struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - return drm_bo->pitch; + return bo->pitch; } -static void -intel_drm_bo_reference(struct intel_bo *bo) +void +intel_bo_reference(struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - - pipe_reference(NULL, &drm_bo->reference); + pipe_reference(NULL, &bo->reference); } -static void -intel_drm_bo_unreference(struct intel_bo *bo) +void +intel_bo_unreference(struct intel_bo *bo) { - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); - - if (pipe_reference(&drm_bo->reference, NULL)) { - drm_intel_bo_unreference(drm_bo->bo); - FREE(drm_bo); + if (pipe_reference(&bo->reference, NULL)) { + drm_intel_bo_unreference(bo->bo); + FREE(bo); } } -static struct intel_drm_bo * +static struct intel_bo * create_bo(void) { - struct intel_drm_bo *drm_bo; + struct intel_bo *bo; - drm_bo = CALLOC_STRUCT(intel_drm_bo); - if (!drm_bo) + bo = CALLOC_STRUCT(intel_bo); + if (!bo) return NULL; - pipe_reference_init(&drm_bo->reference, 1); - drm_bo->tiling = INTEL_TILING_NONE; - drm_bo->pitch = 0; + pipe_reference_init(&bo->reference, 1); + bo->tiling = INTEL_TILING_NONE; + bo->pitch = 0; - drm_bo->base.reference = intel_drm_bo_reference; - drm_bo->base.unreference = intel_drm_bo_unreference; - - drm_bo->base.get_size = intel_drm_bo_get_size; - drm_bo->base.get_offset = intel_drm_bo_get_offset; - drm_bo->base.get_virtual = intel_drm_bo_get_virtual; - drm_bo->base.get_tiling = intel_drm_bo_get_tiling; - drm_bo->base.get_pitch = intel_drm_bo_get_pitch; - - drm_bo->base.map = intel_drm_bo_map; - drm_bo->base.map_gtt = intel_drm_bo_map_gtt; - drm_bo->base.map_unsynchronized = intel_drm_bo_map_unsynchronized; - drm_bo->base.unmap = intel_drm_bo_unmap; - - drm_bo->base.pwrite = intel_drm_bo_pwrite; - drm_bo->base.pread = intel_drm_bo_pread; - - drm_bo->base.emit_reloc = intel_drm_bo_emit_reloc; - drm_bo->base.get_reloc_count = intel_drm_bo_get_reloc_count; - drm_bo->base.clear_relocs = intel_drm_bo_clear_relocs; - drm_bo->base.references = intel_drm_bo_references; - - drm_bo->base.exec = intel_drm_bo_exec; - drm_bo->base.wait = intel_drm_bo_wait; - - drm_bo->base.export_handle = intel_drm_bo_export_handle; - - return drm_bo; + return bo; } -static struct intel_bo * -intel_drm_winsys_alloc(struct intel_winsys *ws, - const char *name, - int width, int height, int cpp, - enum intel_tiling_mode tiling, - unsigned long flags) -{ - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - struct intel_drm_bo *drm_bo; +struct intel_bo * +intel_winsys_alloc(struct intel_winsys *winsys, + const char *name, + int width, int height, int cpp, + enum intel_tiling_mode tiling, + unsigned long flags) +{ + struct intel_bo *bo; uint32_t real_tiling = tiling; unsigned long pitch; - drm_bo = create_bo(); - if (!drm_bo) + bo = create_bo(); + if (!bo) return NULL; - drm_bo->bo = drm_intel_bo_alloc_tiled(drm_ws->bufmgr, name, + bo->bo = drm_intel_bo_alloc_tiled(winsys->bufmgr, name, width, height, cpp, &real_tiling, &pitch, flags); - if (!drm_bo->bo) { - FREE(drm_bo); + if (!bo->bo) { + FREE(bo); return NULL; } - drm_bo->tiling = real_tiling; - drm_bo->pitch = pitch; + bo->tiling = real_tiling; + bo->pitch = pitch; - return &drm_bo->base; + return bo; } -static struct intel_bo * -intel_drm_winsys_alloc_buffer(struct intel_winsys *ws, - const char *name, - unsigned long size, - unsigned long flags) +struct intel_bo * +intel_winsys_alloc_buffer(struct intel_winsys *winsys, + const char *name, + unsigned long size, + unsigned long flags) { const int alignment = 4096; /* always page-aligned */ - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - struct intel_drm_bo *drm_bo; + struct intel_bo *bo; - drm_bo = create_bo(); - if (!drm_bo) + bo = create_bo(); + if (!bo) return NULL; if (flags == INTEL_ALLOC_FOR_RENDER) { - drm_bo->bo = drm_intel_bo_alloc_for_render(drm_ws->bufmgr, + bo->bo = drm_intel_bo_alloc_for_render(winsys->bufmgr, name, size, alignment); } else { assert(!flags); - drm_bo->bo = drm_intel_bo_alloc(drm_ws->bufmgr, name, size, alignment); + bo->bo = drm_intel_bo_alloc(winsys->bufmgr, name, size, alignment); } - if (!drm_bo->bo) { - FREE(drm_bo); + if (!bo->bo) { + FREE(bo); return NULL; } - return &drm_bo->base; + return bo; } -static struct intel_bo * -intel_drm_winsys_import_handle(struct intel_winsys *ws, - const char *name, - int width, int height, int cpp, - const struct winsys_handle *handle) +struct intel_bo * +intel_winsys_import_handle(struct intel_winsys *winsys, + const char *name, + int width, int height, int cpp, + const struct winsys_handle *handle) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - struct intel_drm_bo *drm_bo; + struct intel_bo *bo; const unsigned long pitch = handle->stride; uint32_t tiling, swizzle; int err; - drm_bo = create_bo(); - if (!drm_bo) + bo = create_bo(); + if (!bo) return NULL; switch (handle->type) { case DRM_API_HANDLE_TYPE_SHARED: { const uint32_t gem_name = handle->handle; - drm_bo->bo = drm_intel_bo_gem_create_from_name(drm_ws->bufmgr, + bo->bo = drm_intel_bo_gem_create_from_name(winsys->bufmgr, name, gem_name); } break; @@ -415,7 +342,7 @@ intel_drm_winsys_import_handle(struct intel_winsys *ws, case DRM_API_HANDLE_TYPE_PRIME: { const int fd = (int) handle->handle; - drm_bo->bo = drm_intel_bo_gem_create_from_prime(drm_ws->bufmgr, + bo->bo = drm_intel_bo_gem_create_from_prime(winsys->bufmgr, fd, height * pitch); } break; @@ -424,76 +351,73 @@ intel_drm_winsys_import_handle(struct intel_winsys *ws, break; } - if (!drm_bo->bo) { - FREE(drm_bo); + if (!bo->bo) { + FREE(bo); return NULL; } - err = drm_intel_bo_get_tiling(drm_bo->bo, &tiling, &swizzle); + err = drm_intel_bo_get_tiling(bo->bo, &tiling, &swizzle); if (err) { - drm_intel_bo_unreference(drm_bo->bo); - FREE(drm_bo); + drm_intel_bo_unreference(bo->bo); + FREE(bo); return NULL; } - drm_bo->tiling = tiling; - drm_bo->pitch = pitch; + bo->tiling = tiling; + bo->pitch = pitch; - return &drm_bo->base; + return bo; } -static int -intel_drm_winsys_check_aperture_space(struct intel_winsys *ws, - struct intel_bo **bo_array, - int count) +int +intel_winsys_check_aperture_space(struct intel_winsys *winsys, + struct intel_bo **bo_array, + int count) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); drm_intel_bo *drm_bo_array[8]; int i; if (likely(count <= Elements(drm_bo_array))) { for (i = 0; i < count; i++) - drm_bo_array[i] = ((struct intel_drm_bo *) bo_array[i])->bo; + drm_bo_array[i] = bo_array[i]->bo; return drm_intel_bufmgr_check_aperture_space(drm_bo_array, count); } /* resize bo array if necessary */ - if (drm_ws->array_size < count) { - void *tmp = MALLOC(count * sizeof(*drm_ws->drm_bo_array)); + if (winsys->array_size < count) { + void *tmp = MALLOC(count * sizeof(*winsys->drm_bo_array)); if (!tmp) return -1; - FREE(drm_ws->drm_bo_array); - drm_ws->drm_bo_array = tmp; - drm_ws->array_size = count; + FREE(winsys->drm_bo_array); + winsys->drm_bo_array = tmp; + winsys->array_size = count; } for (i = 0; i < count; i++) - drm_ws->drm_bo_array[i] = ((struct intel_drm_bo *) bo_array[i])->bo; + winsys->drm_bo_array[i] = bo_array[i]->bo; - return drm_intel_bufmgr_check_aperture_space(drm_ws->drm_bo_array, count); + return drm_intel_bufmgr_check_aperture_space(winsys->drm_bo_array, count); } -static void -intel_drm_winsys_decode_commands(struct intel_winsys *ws, - struct intel_bo *bo, int used) +void +intel_winsys_decode_commands(struct intel_winsys *winsys, + struct intel_bo *bo, int used) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - struct intel_drm_bo *drm_bo = intel_drm_bo(bo); int err; - if (!drm_ws->decode) { - drm_ws->decode = drm_intel_decode_context_alloc(drm_ws->info.devid); - if (!drm_ws->decode) + if (!winsys->decode) { + winsys->decode = drm_intel_decode_context_alloc(winsys->info.devid); + if (!winsys->decode) return; /* debug_printf()/debug_error() uses stderr by default */ - drm_intel_decode_set_output_file(drm_ws->decode, stderr); + drm_intel_decode_set_output_file(winsys->decode, stderr); } - err = drm_intel_bo_map(drm_bo->bo, false); + err = drm_intel_bo_map(bo->bo, false); if (err) { debug_printf("failed to map buffer for decoding\n"); return; @@ -502,69 +426,62 @@ intel_drm_winsys_decode_commands(struct intel_winsys *ws, /* in dwords */ used /= 4; - drm_intel_decode_set_batch_pointer(drm_ws->decode, - drm_bo->bo->virtual, - drm_bo->bo->offset, + drm_intel_decode_set_batch_pointer(winsys->decode, + bo->bo->virtual, + bo->bo->offset, used); - drm_intel_decode(drm_ws->decode); + drm_intel_decode(winsys->decode); - drm_intel_bo_unmap(drm_bo->bo); + drm_intel_bo_unmap(bo->bo); } -static int -intel_drm_winsys_read_reg(struct intel_winsys *ws, - uint32_t reg, uint64_t *val) +int +intel_winsys_read_reg(struct intel_winsys *winsys, + uint32_t reg, uint64_t *val) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - return drm_intel_reg_read(drm_ws->bufmgr, reg, val); + return drm_intel_reg_read(winsys->bufmgr, reg, val); } -static void -intel_drm_winsys_enable_reuse(struct intel_winsys *ws) +void +intel_winsys_enable_reuse(struct intel_winsys *winsys) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - drm_intel_bufmgr_gem_enable_reuse(drm_ws->bufmgr); + drm_intel_bufmgr_gem_enable_reuse(winsys->bufmgr); } -static void -intel_drm_winsys_destroy_context(struct intel_winsys *ws, - struct intel_context *ctx) +void +intel_winsys_destroy_context(struct intel_winsys *winsys, + struct intel_context *ctx) { drm_intel_gem_context_destroy((drm_intel_context *) ctx); } -static struct intel_context * -intel_drm_winsys_create_context(struct intel_winsys *ws) +struct intel_context * +intel_winsys_create_context(struct intel_winsys *winsys) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - return (struct intel_context *) - drm_intel_gem_context_create(drm_ws->bufmgr); + drm_intel_gem_context_create(winsys->bufmgr); } -static const struct intel_winsys_info * -intel_drm_winsys_get_info(struct intel_winsys *ws) +const struct intel_winsys_info * +intel_winsys_get_info(const struct intel_winsys *winsys) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - return &drm_ws->info; + return &winsys->info; } -static void -intel_drm_winsys_destroy(struct intel_winsys *ws) +void +intel_winsys_destroy(struct intel_winsys *winsys) { - struct intel_drm_winsys *drm_ws = intel_drm_winsys(ws); - - if (drm_ws->decode) - drm_intel_decode_context_free(drm_ws->decode); + if (winsys->decode) + drm_intel_decode_context_free(winsys->decode); - drm_intel_bufmgr_destroy(drm_ws->bufmgr); - FREE(drm_ws->drm_bo_array); - FREE(drm_ws); + drm_intel_bufmgr_destroy(winsys->bufmgr); + FREE(winsys->drm_bo_array); + FREE(winsys); } static bool -get_param(struct intel_drm_winsys *drm_ws, int param, int *value) +get_param(struct intel_winsys *winsys, int param, int *value) { struct drm_i915_getparam gp; int err; @@ -575,7 +492,7 @@ get_param(struct intel_drm_winsys *drm_ws, int param, int *value) gp.param = param; gp.value = value; - err = drmCommandWriteRead(drm_ws->fd, DRM_I915_GETPARAM, &gp, sizeof(gp)); + err = drmCommandWriteRead(winsys->fd, DRM_I915_GETPARAM, &gp, sizeof(gp)); if (err) { *value = 0; return false; @@ -585,13 +502,13 @@ get_param(struct intel_drm_winsys *drm_ws, int param, int *value) } static bool -test_address_swizzling(struct intel_drm_winsys *drm_ws) +test_address_swizzling(struct intel_winsys *winsys) { drm_intel_bo *bo; uint32_t tiling = I915_TILING_X, swizzle; unsigned long pitch; - bo = drm_intel_bo_alloc_tiled(drm_ws->bufmgr, + bo = drm_intel_bo_alloc_tiled(winsys->bufmgr, "address swizzling test", 64, 64, 4, &tiling, &pitch, 0); if (bo) { drm_intel_bo_get_tiling(bo, &tiling, &swizzle); @@ -605,68 +522,56 @@ test_address_swizzling(struct intel_drm_winsys *drm_ws) } static bool -init_info(struct intel_drm_winsys *drm_ws) +init_info(struct intel_winsys *winsys) { - struct intel_winsys_info *info = &drm_ws->info; + struct intel_winsys_info *info = &winsys->info; int val; /* follow the classic driver here */ - get_param(drm_ws, I915_PARAM_HAS_RELAXED_DELTA, &val); + get_param(winsys, I915_PARAM_HAS_RELAXED_DELTA, &val); if (!val) { debug_error("kernel 2.6.39 required"); return false; } - info->devid = drm_intel_bufmgr_gem_get_devid(drm_ws->bufmgr); + info->devid = drm_intel_bufmgr_gem_get_devid(winsys->bufmgr); - get_param(drm_ws, I915_PARAM_HAS_LLC, &val); + get_param(winsys, I915_PARAM_HAS_LLC, &val); info->has_llc = val; - get_param(drm_ws, I915_PARAM_HAS_GEN7_SOL_RESET, &val); + get_param(winsys, I915_PARAM_HAS_GEN7_SOL_RESET, &val); info->has_gen7_sol_reset = val; - info->has_address_swizzling = test_address_swizzling(drm_ws); + info->has_address_swizzling = test_address_swizzling(winsys); return true; } struct intel_winsys * -intel_drm_winsys_create(int fd) +intel_winsys_create_for_fd(int fd) { - struct intel_drm_winsys *drm_ws; + struct intel_winsys *winsys; - drm_ws = CALLOC_STRUCT(intel_drm_winsys); - if (!drm_ws) + winsys = CALLOC_STRUCT(intel_winsys); + if (!winsys) return NULL; - drm_ws->fd = fd; + winsys->fd = fd; - drm_ws->bufmgr = drm_intel_bufmgr_gem_init(drm_ws->fd, BATCH_SZ); - if (!drm_ws->bufmgr) { + winsys->bufmgr = drm_intel_bufmgr_gem_init(winsys->fd, BATCH_SZ); + if (!winsys->bufmgr) { debug_error("failed to create GEM buffer manager"); - FREE(drm_ws); + FREE(winsys); return NULL; } - if (!init_info(drm_ws)) { - drm_intel_bufmgr_destroy(drm_ws->bufmgr); - FREE(drm_ws); + if (!init_info(winsys)) { + drm_intel_bufmgr_destroy(winsys->bufmgr); + FREE(winsys); return NULL; } - drm_intel_bufmgr_gem_enable_fenced_relocs(drm_ws->bufmgr); - - drm_ws->base.destroy = intel_drm_winsys_destroy; - drm_ws->base.get_info = intel_drm_winsys_get_info; - drm_ws->base.enable_reuse = intel_drm_winsys_enable_reuse; - drm_ws->base.create_context = intel_drm_winsys_create_context; - drm_ws->base.destroy_context = intel_drm_winsys_destroy_context; - drm_ws->base.read_reg = intel_drm_winsys_read_reg; - drm_ws->base.alloc = intel_drm_winsys_alloc; - drm_ws->base.alloc_buffer = intel_drm_winsys_alloc_buffer; - drm_ws->base.import_handle = intel_drm_winsys_import_handle; - drm_ws->base.check_aperture_space = intel_drm_winsys_check_aperture_space; - drm_ws->base.decode_commands = intel_drm_winsys_decode_commands; - - return &drm_ws->base; + drm_intel_bufmgr_gem_enable_fenced_relocs(winsys->bufmgr); + + return winsys; } diff --git a/src/gallium/winsys/intel/drm/intel_winsys.h b/src/gallium/winsys/intel/drm/intel_winsys.h deleted file mode 100644 index 90f1b49df1a..00000000000 --- a/src/gallium/winsys/intel/drm/intel_winsys.h +++ /dev/null @@ -1,227 +0,0 @@ -/* - * Mesa 3-D graphics library - * - * Copyright (C) 2012-2013 LunarG, Inc. - * - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included - * in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - * - * Authors: - * Chia-I Wu <[email protected]> - */ - -#ifndef INTEL_WINSYS_H -#define INTEL_WINSYS_H - -#include "pipe/p_compiler.h" - -/* this is compatible with i915_drm.h's definitions */ -enum intel_exec_flag { - /* bits[2:0]: ring type */ - INTEL_EXEC_DEFAULT = 0 << 0, - INTEL_EXEC_RENDER = 1 << 0, - INTEL_EXEC_BSD = 2 << 0, - INTEL_EXEC_BLT = 3 << 0, - - /* bits[7:6]: constant buffer addressing mode */ - - /* bits[8]: reset SO write offset register on GEN7+ */ - INTEL_EXEC_GEN7_SOL_RESET = 1 << 8, -}; - -/* this is compatible with i915_drm.h's definitions */ -enum intel_domain_flag { - INTEL_DOMAIN_CPU = 0x00000001, - INTEL_DOMAIN_RENDER = 0x00000002, - INTEL_DOMAIN_SAMPLER = 0x00000004, - INTEL_DOMAIN_COMMAND = 0x00000008, - INTEL_DOMAIN_INSTRUCTION = 0x00000010, - INTEL_DOMAIN_VERTEX = 0x00000020, - INTEL_DOMAIN_GTT = 0x00000040, -}; - -/* this is compatible with i915_drm.h's definitions */ -enum intel_tiling_mode { - INTEL_TILING_NONE = 0, - INTEL_TILING_X = 1, - INTEL_TILING_Y = 2, -}; - -/* this is compatible with intel_bufmgr.h's definitions */ -enum intel_alloc_flag { - INTEL_ALLOC_FOR_RENDER = 1 << 0, -}; - -struct winsys_handle; -struct intel_context; - -struct intel_winsys_info { - int devid; - bool has_llc; - bool has_gen7_sol_reset; - bool has_address_swizzling; -}; - -/** - * Buffer objects. - */ -struct intel_bo { - void (*reference)(struct intel_bo *bo); - void (*unreference)(struct intel_bo *bo); - - /* accessors */ - unsigned long (*get_size)(struct intel_bo *bo); - unsigned long (*get_offset)(struct intel_bo *bo); - void *(*get_virtual)(struct intel_bo *bo); - enum intel_tiling_mode (*get_tiling)(struct intel_bo *bo); - unsigned long (*get_pitch)(struct intel_bo *bo); - - /** - * Map/unmap \p bo for CPU access. - * - * map() maps the backing store into CPU address space, cached. This - * variant allows for fast random reads and writes. But the caller needs - * handle tiling or swizzling manually if the bo is tiled or swizzled. If - * write is enabled and there is no shared last-level cache (LLC), unmap() - * needs to flush the cache, which is rather expensive. - * - * map_gtt() maps the bo for MMIO access, uncached but write-combined. - * This variant promises a reasonable speed for sequential writes, but - * reads would be very slow. Callers always have a linear view of the bo. - * - * map_unsynchronized() is similar to map_gtt(), except that it does not - * wait until the bo is idle. - */ - int (*map)(struct intel_bo *bo, bool write_enable); - int (*map_gtt)(struct intel_bo *bo); - int (*map_unsynchronized)(struct intel_bo *bo); - int (*unmap)(struct intel_bo *bo); - - /** - * Move data in to or out of the bo. - */ - int (*pwrite)(struct intel_bo *bo, unsigned long offset, - unsigned long size, const void *data); - int (*pread)(struct intel_bo *bo, unsigned long offset, - unsigned long size, void *data); - - /** - * Add \p target_bo to the relocation list. - * - * When \p bo is submitted for execution, and if \p target_bo has moved, - * the kernel will patch \p bo at \p offset to \p target_bo->offset plus - * \p target_offset. - */ - int (*emit_reloc)(struct intel_bo *bo, uint32_t offset, - struct intel_bo *target_bo, uint32_t target_offset, - uint32_t read_domains, uint32_t write_domain); - - /** - * Return the current number of relocations. - */ - int (*get_reloc_count)(struct intel_bo *bo); - - /** - * Discard all relocations except the first \p start ones. - * - * Combined with \p get_reloc_count(), they can be used to undo - * the \p emit_reloc() calls that were just made. - */ - void (*clear_relocs)(struct intel_bo *bo, int start); - - /** - * Return true if \p target_bo is on the relocation list of \p bo, or on - * the relocation list of some bo that is referenced by \p bo. - */ - bool (*references)(struct intel_bo *bo, struct intel_bo *target_bo); - - /** - * Submit \p bo for execution. - * - * \p bo and all bos referenced by \p bo will be considered busy until all - * commands are parsed and executed. - */ - int (*exec)(struct intel_bo *bo, int used, - struct intel_context *ctx, unsigned long flags); - - /** - * Wait until \bo is idle, or \p timeout nanoseconds have passed. A - * negative timeout means to wait indefinitely. - * - * \return 0 only when \p bo is idle - */ - int (*wait)(struct intel_bo *bo, int64_t timeout); - - /** - * Export a handle for inter-process sharing. - */ - int (*export_handle)(struct intel_bo *bo, struct winsys_handle *handle); -}; - -/* - * Interface to OS functions. This allows the pipe drivers to be OS agnostic. - * - * Check libdrm_intel out for documentation. - */ -struct intel_winsys { - void (*destroy)(struct intel_winsys *ws); - - const struct intel_winsys_info *(*get_info)(struct intel_winsys *ws); - - void (*enable_reuse)(struct intel_winsys *ws); - - struct intel_context *(*create_context)(struct intel_winsys *ws); - void (*destroy_context)(struct intel_winsys *ws, - struct intel_context *ctx); - - int (*read_reg)(struct intel_winsys *ws, uint32_t reg, uint64_t *val); - - struct intel_bo *(*alloc)(struct intel_winsys *ws, - const char *name, - int width, int height, int cpp, - enum intel_tiling_mode tiling, - unsigned long flags); - - struct intel_bo *(*alloc_buffer)(struct intel_winsys *ws, - const char *name, - unsigned long size, - unsigned long flags); - - struct intel_bo *(*import_handle)(struct intel_winsys *ws, - const char *name, - int width, int height, int cpp, - const struct winsys_handle *handle); - - int (*check_aperture_space)(struct intel_winsys *ws, - struct intel_bo **bo_array, - int count); - - void (*decode_commands)(struct intel_winsys *ws, - struct intel_bo *bo, int used); -}; - -/** - * Return true if \p bo is busy. - */ -static inline bool -intel_bo_is_busy(struct intel_bo *bo) -{ - return (bo->wait(bo, 0) != 0); -} - -#endif /* INTEL_WINSYS_H */ diff --git a/src/gallium/winsys/intel/intel_winsys.h b/src/gallium/winsys/intel/intel_winsys.h new file mode 100644 index 00000000000..deed94e2ea6 --- /dev/null +++ b/src/gallium/winsys/intel/intel_winsys.h @@ -0,0 +1,261 @@ +/* + * Mesa 3-D graphics library + * + * Copyright (C) 2012-2013 LunarG, Inc. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + * + * Authors: + * Chia-I Wu <[email protected]> + */ + +#ifndef INTEL_WINSYS_H +#define INTEL_WINSYS_H + +#include "pipe/p_compiler.h" + +/* this is compatible with i915_drm.h's definitions */ +enum intel_exec_flag { + /* bits[2:0]: ring type */ + INTEL_EXEC_DEFAULT = 0 << 0, + INTEL_EXEC_RENDER = 1 << 0, + INTEL_EXEC_BSD = 2 << 0, + INTEL_EXEC_BLT = 3 << 0, + + /* bits[7:6]: constant buffer addressing mode */ + + /* bits[8]: reset SO write offset register on GEN7+ */ + INTEL_EXEC_GEN7_SOL_RESET = 1 << 8, +}; + +/* this is compatible with i915_drm.h's definitions */ +enum intel_domain_flag { + INTEL_DOMAIN_CPU = 0x00000001, + INTEL_DOMAIN_RENDER = 0x00000002, + INTEL_DOMAIN_SAMPLER = 0x00000004, + INTEL_DOMAIN_COMMAND = 0x00000008, + INTEL_DOMAIN_INSTRUCTION = 0x00000010, + INTEL_DOMAIN_VERTEX = 0x00000020, + INTEL_DOMAIN_GTT = 0x00000040, +}; + +/* this is compatible with i915_drm.h's definitions */ +enum intel_tiling_mode { + INTEL_TILING_NONE = 0, + INTEL_TILING_X = 1, + INTEL_TILING_Y = 2, +}; + +/* this is compatible with intel_bufmgr.h's definitions */ +enum intel_alloc_flag { + INTEL_ALLOC_FOR_RENDER = 1 << 0, +}; + +struct winsys_handle; +struct intel_winsys; +struct intel_context; +struct intel_bo; + +struct intel_winsys_info { + int devid; + bool has_llc; + bool has_gen7_sol_reset; + bool has_address_swizzling; +}; + +struct intel_winsys * +intel_winsys_create_for_fd(int fd); + +void +intel_winsys_destroy(struct intel_winsys *winsys); + +const struct intel_winsys_info * +intel_winsys_get_info(const struct intel_winsys *winsys); + +void +intel_winsys_enable_reuse(struct intel_winsys *winsys); + +struct intel_context * +intel_winsys_create_context(struct intel_winsys *winsys); + +void +intel_winsys_destroy_context(struct intel_winsys *winsys, + struct intel_context *ctx); + +int +intel_winsys_read_reg(struct intel_winsys *winsys, + uint32_t reg, uint64_t *val); + +struct intel_bo * +intel_winsys_alloc_buffer(struct intel_winsys *winsys, + const char *name, + unsigned long size, + unsigned long flags); + +struct intel_bo * +intel_winsys_alloc(struct intel_winsys *winsys, + const char *name, + int width, int height, int cpp, + enum intel_tiling_mode tiling, + unsigned long flags); + +struct intel_bo * +intel_winsys_import_handle(struct intel_winsys *winsys, + const char *name, + int width, int height, int cpp, + const struct winsys_handle *handle); + +int +intel_winsys_check_aperture_space(struct intel_winsys *winsys, + struct intel_bo **bo_array, + int count); + +void +intel_winsys_decode_commands(struct intel_winsys *winsys, + struct intel_bo *bo, int used); + +void +intel_bo_reference(struct intel_bo *bo); + +void +intel_bo_unreference(struct intel_bo *bo); + +unsigned long +intel_bo_get_size(const struct intel_bo *bo); + +unsigned long +intel_bo_get_offset(const struct intel_bo *bo); + +void * +intel_bo_get_virtual(const struct intel_bo *bo); + +enum intel_tiling_mode +intel_bo_get_tiling(const struct intel_bo *bo); + +unsigned long +intel_bo_get_pitch(const struct intel_bo *bo); + +/** + * Map/unmap \p bo for CPU access. + * + * map() maps the backing store into CPU address space, cached. This + * variant allows for fast random reads and writes. But the caller needs + * handle tiling or swizzling manually if the bo is tiled or swizzled. If + * write is enabled and there is no shared last-level cache (LLC), unmap() + * needs to flush the cache, which is rather expensive. + * + * map_gtt() maps the bo for MMIO access, uncached but write-combined. + * This variant promises a reasonable speed for sequential writes, but + * reads would be very slow. Callers always have a linear view of the bo. + * + * map_unsynchronized() is similar to map_gtt(), except that it does not + * wait until the bo is idle. + */ +int +intel_bo_map(struct intel_bo *bo, bool write_enable); + +int +intel_bo_map_gtt(struct intel_bo *bo); + +int +intel_bo_map_unsynchronized(struct intel_bo *bo); + +int +intel_bo_unmap(struct intel_bo *bo); + +/** + * Move data in to or out of the bo. + */ +int +intel_bo_pwrite(struct intel_bo *bo, unsigned long offset, + unsigned long size, const void *data); +int +intel_bo_pread(struct intel_bo *bo, unsigned long offset, + unsigned long size, void *data); + +/** + * Add \p target_bo to the relocation list. + * + * When \p bo is submitted for execution, and if \p target_bo has moved, + * the kernel will patch \p bo at \p offset to \p target_bo->offset plus + * \p target_offset. + */ +int +intel_bo_emit_reloc(struct intel_bo *bo, uint32_t offset, + struct intel_bo *target_bo, uint32_t target_offset, + uint32_t read_domains, uint32_t write_domain); + +/** + * Return the current number of relocations. + */ +int +intel_bo_get_reloc_count(struct intel_bo *bo); + +/** + * Discard all relocations except the first \p start ones. + * + * Combined with \p get_reloc_count(), they can be used to undo + * the \p emit_reloc() calls that were just made. + */ +void +intel_bo_clear_relocs(struct intel_bo *bo, int start); + +/** + * Return true if \p target_bo is on the relocation list of \p bo, or on + * the relocation list of some bo that is referenced by \p bo. + */ +bool +intel_bo_references(struct intel_bo *bo, struct intel_bo *target_bo); + +/** + * Submit \p bo for execution. + * + * \p bo and all bos referenced by \p bo will be considered busy until all + * commands are parsed and executed. + */ +int +intel_bo_exec(struct intel_bo *bo, int used, + struct intel_context *ctx, unsigned long flags); + +/** + * Wait until \bo is idle, or \p timeout nanoseconds have passed. A + * negative timeout means to wait indefinitely. + * + * \return 0 only when \p bo is idle + */ +int +intel_bo_wait(struct intel_bo *bo, int64_t timeout); + +/** + * Export a handle for inter-process sharing. + */ +int +intel_bo_export_handle(struct intel_bo *bo, + struct winsys_handle *handle); + +/** + * Return true if \p bo is busy. + */ +static inline bool +intel_bo_is_busy(struct intel_bo *bo) +{ + return (intel_bo_wait(bo, 0) != 0); +} + +#endif /* INTEL_WINSYS_H */ |