intel-2D: update layout

git-svn-id: svn://kolibrios.org@4304 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge) 2013-11-27 15:43:13 +00:00
parent e840cc28ad
commit 19d2a1e87e
100 changed files with 171 additions and 145 deletions

View File

@ -2345,7 +2345,7 @@ gen4_blit_tex(struct sna *sna,
tmp->dst.bo = dst_bo; tmp->dst.bo = dst_bo;
tmp->dst.width = dst->drawable.width; tmp->dst.width = dst->drawable.width;
tmp->dst.height = dst->drawable.height; tmp->dst.height = dst->drawable.height;
tmp->dst.format = PICT_x8r8g8b8; tmp->dst.format = PICT_a8r8g8b8;
tmp->src.repeat = RepeatNone; tmp->src.repeat = RepeatNone;

View File

@ -3496,7 +3496,7 @@ gen6_blit_tex(struct sna *sna,
tmp->dst.bo = dst_bo; tmp->dst.bo = dst_bo;
tmp->dst.width = dst->drawable.width; tmp->dst.width = dst->drawable.width;
tmp->dst.height = dst->drawable.height; tmp->dst.height = dst->drawable.height;
tmp->dst.format = PICT_x8r8g8b8; tmp->dst.format = PICT_a8r8g8b8;
tmp->src.repeat = SAMPLER_EXTEND_NONE; tmp->src.repeat = SAMPLER_EXTEND_NONE;

View File

@ -2249,7 +2249,7 @@ gen7_blit_tex(struct sna *sna,
tmp->dst.bo = dst_bo; tmp->dst.bo = dst_bo;
tmp->dst.width = dst->drawable.width; tmp->dst.width = dst->drawable.width;
tmp->dst.height = dst->drawable.height; tmp->dst.height = dst->drawable.height;
tmp->dst.format = PICT_x8r8g8b8; tmp->dst.format = PICT_a8r8g8b8;
tmp->src.repeat = RepeatNone; tmp->src.repeat = RepeatNone;

View File

@ -2655,6 +2655,16 @@ void _kgem_submit(struct kgem *kgem)
execbuf.batch_len = batch_end*sizeof(uint32_t); execbuf.batch_len = batch_end*sizeof(uint32_t);
execbuf.flags = kgem->ring | kgem->batch_flags; execbuf.flags = kgem->ring | kgem->batch_flags;
if (DEBUG_DUMP)
{
int fd = open("/tmp1/1/batchbuffer.bin", O_CREAT|O_WRONLY|O_BINARY);
if (fd != -1) {
write(fd, kgem->batch, size);
close(fd);
}
else printf("SNA: failed to write batchbuffer\n");
asm volatile("int3");
}
ret = drmIoctl(kgem->fd, ret = drmIoctl(kgem->fd,
DRM_IOCTL_I915_GEM_EXECBUFFER2, DRM_IOCTL_I915_GEM_EXECBUFFER2,
@ -2676,8 +2686,8 @@ void _kgem_submit(struct kgem *kgem)
ret = drmIoctl(kgem->fd, DRM_IOCTL_I915_GEM_SET_DOMAIN, &set_domain); ret = drmIoctl(kgem->fd, DRM_IOCTL_I915_GEM_SET_DOMAIN, &set_domain);
} }
if (ret == -1) { if (ret == -1) {
// DBG(("%s: GPU hang detected [%d]\n", DBG(("%s: GPU hang detected [%d]\n",
// __FUNCTION__, errno)); __FUNCTION__, errno));
kgem_throttle(kgem); kgem_throttle(kgem);
kgem->wedged = true; kgem->wedged = true;

View File

@ -1,140 +1,156 @@
/* /*
* Copyright © 2011 Intel Corporation * Copyright © 2011 Intel Corporation
* *
* Permission is hereby granted, free of charge, to any person obtaining a * Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"), * copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation * to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense, * the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the * 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: * Software is furnished to do so, subject to the following conditions:
* *
* The above copyright notice and this permission notice (including the next * The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the * paragraph) shall be included in all copies or substantial portions of the
* Software. * Software.
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * 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, * 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 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE. * SOFTWARE.
* *
* Authors: * Authors:
* Chris Wilson <chris@chris-wilson.co.uk> * Chris Wilson <chris@chris-wilson.co.uk>
* *
*/ */
#include "sna.h" #include "sna.h"
#include "sna_render.h" #include "sna_render.h"
#include "brw/brw.h" #include "brw/brw.h"
#include <fcntl.h>
int sna_static_stream_init(struct sna_static_stream *stream)
{ int sna_static_stream_init(struct sna_static_stream *stream)
stream->used = 0; {
stream->size = 64*1024; stream->used = 0;
stream->size = 64*1024;
stream->data = malloc(stream->size);
return stream->data != NULL; stream->data = malloc(stream->size);
} return stream->data != NULL;
}
static uint32_t sna_static_stream_alloc(struct sna_static_stream *stream,
uint32_t len, uint32_t align) static uint32_t sna_static_stream_alloc(struct sna_static_stream *stream,
{ uint32_t len, uint32_t align)
uint32_t offset = ALIGN(stream->used, align); {
uint32_t size = offset + len; uint32_t offset = ALIGN(stream->used, align);
uint32_t size = offset + len;
if (size > stream->size) {
do if (size > stream->size) {
stream->size *= 2; do
while (stream->size < size); stream->size *= 2;
while (stream->size < size);
stream->data = realloc(stream->data, stream->size);
} stream->data = realloc(stream->data, stream->size);
}
stream->used = size;
return offset; stream->used = size;
} return offset;
}
uint32_t sna_static_stream_add(struct sna_static_stream *stream,
const void *data, uint32_t len, uint32_t align) uint32_t sna_static_stream_add(struct sna_static_stream *stream,
{ const void *data, uint32_t len, uint32_t align)
uint32_t offset = sna_static_stream_alloc(stream, len, align); {
memcpy(stream->data + offset, data, len); uint32_t offset = sna_static_stream_alloc(stream, len, align);
return offset; memcpy(stream->data + offset, data, len);
} return offset;
}
void *sna_static_stream_map(struct sna_static_stream *stream,
uint32_t len, uint32_t align) void *sna_static_stream_map(struct sna_static_stream *stream,
{ uint32_t len, uint32_t align)
uint32_t offset = sna_static_stream_alloc(stream, len, align); {
return memset(stream->data + offset, 0, len); uint32_t offset = sna_static_stream_alloc(stream, len, align);
} return memset(stream->data + offset, 0, len);
}
uint32_t sna_static_stream_offsetof(struct sna_static_stream *stream, void *ptr)
{ uint32_t sna_static_stream_offsetof(struct sna_static_stream *stream, void *ptr)
return (uint8_t *)ptr - stream->data; {
} return (uint8_t *)ptr - stream->data;
}
struct kgem_bo *sna_static_stream_fini(struct sna *sna,
struct sna_static_stream *stream) struct kgem_bo *sna_static_stream_fini(struct sna *sna,
{ struct sna_static_stream *stream)
struct kgem_bo *bo; {
struct kgem_bo *bo;
DBG(("uploaded %d bytes of static state\n", stream->used));
DBG(("uploaded %d bytes of static state\n", stream->used));
bo = kgem_create_linear(&sna->kgem, stream->used, 0);
if (bo && !kgem_bo_write(&sna->kgem, bo, stream->data, stream->used)) { if (DEBUG_DUMP)
kgem_bo_destroy(&sna->kgem, bo); {
return NULL; int fd = open("/tmp1/1/static.bin", O_CREAT|O_WRONLY|O_BINARY);
} if (fd != -1) {
write(fd, stream->data, stream->used);
free(stream->data); close(fd);
}
return bo; else
} {
printf("SNA: failed to write static stream\n");
unsigned asm volatile("int3");
sna_static_stream_compile_sf(struct sna *sna, }
struct sna_static_stream *stream, }
bool (*compile)(struct brw_compile *))
{
struct brw_compile p; bo = kgem_create_linear(&sna->kgem, stream->used, 0);
if (bo && !kgem_bo_write(&sna->kgem, bo, stream->data, stream->used)) {
brw_compile_init(&p, sna->kgem.gen, kgem_bo_destroy(&sna->kgem, bo);
sna_static_stream_map(stream, return NULL;
64*sizeof(uint32_t), 64)); }
if (!compile(&p)) { free(stream->data);
stream->used -= 64*sizeof(uint32_t);
return 0; return bo;
} }
assert(p.nr_insn*sizeof(struct brw_instruction) <= 64*sizeof(uint32_t)); unsigned
sna_static_stream_compile_sf(struct sna *sna,
stream->used -= 64*sizeof(uint32_t) - p.nr_insn*sizeof(struct brw_instruction); struct sna_static_stream *stream,
return sna_static_stream_offsetof(stream, p.store); bool (*compile)(struct brw_compile *))
} {
struct brw_compile p;
unsigned
sna_static_stream_compile_wm(struct sna *sna, brw_compile_init(&p, sna->kgem.gen,
struct sna_static_stream *stream, sna_static_stream_map(stream,
bool (*compile)(struct brw_compile *, int), 64*sizeof(uint32_t), 64));
int dispatch_width)
{ if (!compile(&p)) {
struct brw_compile p; stream->used -= 64*sizeof(uint32_t);
return 0;
brw_compile_init(&p, sna->kgem.gen, }
sna_static_stream_map(stream,
256*sizeof(uint32_t), 64)); assert(p.nr_insn*sizeof(struct brw_instruction) <= 64*sizeof(uint32_t));
if (!compile(&p, dispatch_width)) { stream->used -= 64*sizeof(uint32_t) - p.nr_insn*sizeof(struct brw_instruction);
stream->used -= 256*sizeof(uint32_t); return sna_static_stream_offsetof(stream, p.store);
return 0; }
}
unsigned
assert(p.nr_insn*sizeof(struct brw_instruction) <= 256*sizeof(uint32_t)); sna_static_stream_compile_wm(struct sna *sna,
struct sna_static_stream *stream,
stream->used -= 256*sizeof(uint32_t) - p.nr_insn*sizeof(struct brw_instruction); bool (*compile)(struct brw_compile *, int),
return sna_static_stream_offsetof(stream, p.store); int dispatch_width)
} {
struct brw_compile p;
brw_compile_init(&p, sna->kgem.gen,
sna_static_stream_map(stream,
256*sizeof(uint32_t), 64));
if (!compile(&p, dispatch_width)) {
stream->used -= 256*sizeof(uint32_t);
return 0;
}
assert(p.nr_insn*sizeof(struct brw_instruction) <= 256*sizeof(uint32_t));
stream->used -= 256*sizeof(uint32_t) - p.nr_insn*sizeof(struct brw_instruction);
return sna_static_stream_offsetof(stream, p.store);
}