ilo: remove max_batch_size
authorChia-I Wu <olvaffe@gmail.com>
Tue, 26 Aug 2014 05:31:29 +0000 (13:31 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Tue, 26 Aug 2014 06:10:50 +0000 (14:10 +0800)
It is used to derive an artificial limit on max relocs per bo.  We choose not
to export it anymore.

src/gallium/drivers/ilo/ilo_common.h
src/gallium/drivers/ilo/ilo_context.c
src/gallium/drivers/ilo/ilo_screen.c
src/gallium/winsys/intel/drm/intel_drm_winsys.c
src/gallium/winsys/intel/intel_winsys.h

index e4f28b38122980c8a3e28d0eea6ffa121c9abb8d..20c784218f85c0133596ea0ccb85b1076a4e8a19 100644 (file)
@@ -70,7 +70,6 @@ struct ilo_dev_info {
    int devid;
    size_t aperture_total;
    size_t aperture_mappable;
-   int max_batch_size;
    bool has_llc;
    bool has_address_swizzling;
    bool has_logical_context;
index ab750acd24c65cebf168994399d763055f065b75..04df389c6c2dbf96bacade81cd05b2f690faf9e5 100644 (file)
@@ -104,7 +104,6 @@ ilo_context_create(struct pipe_screen *screen, void *priv)
 {
    struct ilo_screen *is = ilo_screen(screen);
    struct ilo_context *ilo;
-   int cp_size;
 
    ilo = CALLOC_STRUCT(ilo_context);
    if (!ilo)
@@ -121,11 +120,7 @@ ilo_context_create(struct pipe_screen *screen, void *priv)
          sizeof(struct ilo_transfer), 64, UTIL_SLAB_SINGLETHREADED);
 
    /* 8192 DWords */
-   cp_size = 8192;
-   if (cp_size * 4 > is->dev.max_batch_size)
-      cp_size = is->dev.max_batch_size / 4;
-
-   ilo->cp = ilo_cp_create(ilo->winsys, cp_size, is->dev.has_llc);
+   ilo->cp = ilo_cp_create(ilo->winsys, 8192, is->dev.has_llc);
    ilo->shader_cache = ilo_shader_cache_create();
    if (ilo->cp)
       ilo->hw3d = ilo_3d_create(ilo->cp, ilo->dev);
index 15658dad34e63b2a67028537aba8aa9678af4197..1ab14cffaf72c8e041d11d9eba6f82497b424842 100644 (file)
@@ -640,7 +640,6 @@ init_dev(struct ilo_dev_info *dev, const struct intel_winsys_info *info)
    dev->devid = info->devid;
    dev->aperture_total = info->aperture_total;
    dev->aperture_mappable = info->aperture_mappable;
-   dev->max_batch_size = info->max_batch_size;
    dev->has_llc = info->has_llc;
    dev->has_address_swizzling = info->has_address_swizzling;
    dev->has_logical_context = info->has_logical_context;
index c8ae6c16a8c297426ea24786f8702fbd30f8c803..6f85852c2643c2b52d11fdf2549b0d3344d0ddf5 100644 (file)
@@ -43,8 +43,6 @@
 #include "util/u_debug.h"
 #include "../intel_winsys.h"
 
-#define BATCH_SZ (8192 * sizeof(uint32_t))
-
 struct intel_winsys {
    int fd;
    drm_intel_bufmgr *bufmgr;
@@ -145,8 +143,6 @@ probe_winsys(struct intel_winsys *winsys)
       return false;
    }
 
-   info->max_batch_size = BATCH_SZ;
-
    get_param(winsys, I915_PARAM_HAS_LLC, &val);
    info->has_llc = val;
    info->has_address_swizzling = test_address_swizzling(winsys);
@@ -169,6 +165,8 @@ probe_winsys(struct intel_winsys *winsys)
 struct intel_winsys *
 intel_winsys_create_for_fd(int fd)
 {
+   /* so that we can have enough (up to 4094) relocs per bo */
+   const int batch_size = sizeof(uint32_t) * 8192;
    struct intel_winsys *winsys;
 
    winsys = CALLOC_STRUCT(intel_winsys);
@@ -177,7 +175,7 @@ intel_winsys_create_for_fd(int fd)
 
    winsys->fd = fd;
 
-   winsys->bufmgr = drm_intel_bufmgr_gem_init(winsys->fd, BATCH_SZ);
+   winsys->bufmgr = drm_intel_bufmgr_gem_init(winsys->fd, batch_size);
    if (!winsys->bufmgr) {
       debug_error("failed to create GEM buffer manager");
       FREE(winsys);
index bc18bb69be5ac2290f4a4850b9beae7ba1f62fb1..c928cad4316d67f93c392b010fd5af63a3c16b49 100644 (file)
@@ -69,7 +69,6 @@ struct intel_winsys_info {
    size_t aperture_total;
    size_t aperture_mappable;
 
-   int max_batch_size;
    bool has_llc;
    bool has_address_swizzling;
    bool has_logical_context;