README                              |    9 
 configure.ac                        |   18 
 libdrm/Makefile.am                  |    3 
 libdrm/intel/Makefile.am            |    1 
 libdrm/intel/intel_bufmgr_fake.c    |    2 
 libdrm/intel/intel_bufmgr_gem.c     |   82 
 libdrm/intel/intel_chipset.h        |   71 
 libdrm/nouveau/Makefile.am          |   40 
 libdrm/nouveau/libdrm_nouveau.pc.in |   10 
 libdrm/nouveau/nouveau_bo.c         |  838 +++
 libdrm/nouveau/nouveau_bo.h         |   97 
 libdrm/nouveau/nouveau_channel.c    |  167 
 libdrm/nouveau/nouveau_channel.h    |   56 
 libdrm/nouveau/nouveau_class.h      | 8006 ++++++++++++++++++++++++++++++++++++
 libdrm/nouveau/nouveau_device.c     |  185 
 libdrm/nouveau/nouveau_device.h     |   31 
 libdrm/nouveau/nouveau_dma.c        |  215 
 libdrm/nouveau/nouveau_dma.h        |  154 
 libdrm/nouveau/nouveau_drmif.h      |   59 
 libdrm/nouveau/nouveau_fence.c      |  249 +
 libdrm/nouveau/nouveau_grobj.c      |  138 
 libdrm/nouveau/nouveau_grobj.h      |   48 
 libdrm/nouveau/nouveau_notifier.c   |  146 
 libdrm/nouveau/nouveau_notifier.h   |   63 
 libdrm/nouveau/nouveau_private.h    |  203 
 libdrm/nouveau/nouveau_pushbuf.c    |  276 +
 libdrm/nouveau/nouveau_pushbuf.h    |  160 
 libdrm/nouveau/nouveau_resource.c   |  115 
 libdrm/nouveau/nouveau_resource.h   |   48 
 libdrm/xf86drm.c                    |   23 
 libdrm/xf86drmMode.c                |   21 
 libdrm/xf86drmMode.h                |    7 
 linux-core/Makefile                 |   29 
 linux-core/Makefile.kernel          |    2 
 linux-core/drm_compat.h             |    6 
 linux-core/drm_fops.c               |    2 
 linux-core/nv_drv.c                 |   94 
 linux-core/nv_drv.h                 |    1 
 shared-core/i915_drm.h              |    2 
 shared-core/nouveau_drm.h           |  123 
 shared-core/nouveau_drv.h           |    2 
 shared-core/nouveau_irq.c           |   24 
 shared-core/nouveau_mem.c           |   11 
 shared-core/nouveau_object.c        |    7 
 shared-core/nouveau_state.c         |   23 
 shared-core/nv04_instmem.c          |    3 
 shared-core/nv50_graph.c            |    2 
 shared-core/nv_drv.h                |   52 
 tests/modetest/Makefile.am          |    6 
 tests/modetest/modetest.c           |  254 -
 50 files changed, 11890 insertions(+), 294 deletions(-)

New commits:
commit 8b8803695b24d4cb4d041437a4709be06e59471b
Author: Kristian Høgsberg <k...@redhat.com>
Date:   Wed Feb 4 12:17:13 2009 -0500

    modetest: Add syntax to also specify a crtc when setting a mode.

diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c
index f1c3bf3..9a82727 100644
--- a/tests/modetest/modetest.c
+++ b/tests/modetest/modetest.c
@@ -254,6 +254,7 @@ struct connector {
        char mode_str[64];
        struct drm_mode_modeinfo *mode;
        drmModeEncoder *encoder;
+       int crtc;
 };     
 
 static void
@@ -318,6 +319,9 @@ connector_find_mode(struct connector *c)
 
                drmModeFreeEncoder(c->encoder);
        }
+
+       if (c->crtc == -1)
+               c->crtc = c->encoder->crtc_id;
 }
 
 #ifdef HAVE_CAIRO
@@ -477,9 +481,14 @@ set_mode(struct connector *c, int count)
 
        x = 0;
        for (i = 0; i < count; i++) {
+               int crtc_id;
                if (c[i].mode == NULL)
                        continue;
-               ret = drmModeSetCrtc(fd, c[i].encoder->crtc_id, fb_id, x, 0,
+
+               printf("setting mode %s on connector %d, crtc %d\n",
+                      c[i].mode_str, c[i].id, c[i].crtc);
+
+               ret = drmModeSetCrtc(fd, c[i].crtc, fb_id, x, 0,
                                     &c[i].id, 1, c[i].mode);
                x += c[i].mode->hdisplay;
 
@@ -503,6 +512,7 @@ void usage(char *name)
        fprintf(stderr, "\t-m\tlist modes\n");
        fprintf(stderr, "\t-f\tlist framebuffers\n");
        fprintf(stderr, "\t-s <connector_id>:<mode>\tset a mode\n");
+       fprintf(stderr, "\t-s <connector_id>@<crtc_id>:<mode>\tset a mode\n");
        fprintf(stderr, "\n\tDefault is to dump all info.\n");
        exit(0);
 }
@@ -538,13 +548,15 @@ int main(int argc, char **argv)
                        break;
                case 's':
                        modeset = strdup(optarg);
+                       con_args[count].crtc = -1;
                        if (sscanf(optarg, "%d:%64s",
                                   &con_args[count].id,
-                                  &con_args[count].mode_str) != 2)
+                                  &con_args[count].mode_str) != 2 &&
+                           sscanf(optarg, "%...@%d:%64s",
+                                  &con_args[count].id,
+                                  &con_args[count].crtc,
+                                  &con_args[count].mode_str) != 3)
                                usage(argv[0]);
-                       printf("setting mode %s on connector %d\n",
-                              con_args[count].mode_str,
-                              con_args[count].id);
                        count++;                                      
                        break;
                default:

commit 225e7e274f49d5e01fa1ad3fbbb9f1499865fe67
Author: Ben Skeggs <skeg...@gmail.com>
Date:   Fri Jan 30 11:25:35 2009 +1000

    nouveau: install libdrm_nouveau with libdrm

diff --git a/configure.ac b/configure.ac
index a65f79e..62d1a29 100644
--- a/configure.ac
+++ b/configure.ac
@@ -131,6 +131,8 @@ AC_OUTPUT([
        Makefile
        libdrm/Makefile
        libdrm/intel/Makefile
+       libdrm/nouveau/Makefile
+       libdrm/nouveau/libdrm_nouveau.pc
        shared-core/Makefile
        tests/Makefile
        tests/modeprint/Makefile
diff --git a/libdrm/Makefile.am b/libdrm/Makefile.am
index a568aac..cba4586 100644
--- a/libdrm/Makefile.am
+++ b/libdrm/Makefile.am
@@ -18,7 +18,7 @@
 #  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.
 
-SUBDIRS = . intel
+SUBDIRS = . intel nouveau
 
 libdrm_la_LTLIBRARIES = libdrm.la
 libdrm_ladir = $(libdir)
diff --git a/libdrm/nouveau/Makefile.am b/libdrm/nouveau/Makefile.am
new file mode 100644
index 0000000..80fb780
--- /dev/null
+++ b/libdrm/nouveau/Makefile.am
@@ -0,0 +1,40 @@
+AM_CFLAGS = \
+       $(WARN_CFLAGS) \
+       -I$(top_srcdir)/libdrm \
+       -I$(top_srcdir)/libdrm/nouveau \
+       $(PTHREADSTUBS_CFLAGS) \
+       -I$(top_srcdir)/shared-core
+
+libdrm_nouveau_la_LTLIBRARIES = libdrm_nouveau.la
+libdrm_nouveau_ladir = $(libdir)
+libdrm_nouveau_la_LDFLAGS = -version-number 1:0:0 -no-undefined
+libdrm_nouveau_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@
+
+libdrm_nouveau_la_SOURCES = \
+                           nouveau_device.c \
+                           nouveau_channel.c \
+                           nouveau_pushbuf.c \
+                           nouveau_grobj.c \
+                           nouveau_notifier.c \
+                           nouveau_bo.c \
+                           nouveau_resource.c \
+                           nouveau_dma.c \
+                           nouveau_fence.c
+
+libdrm_nouveaucommonincludedir = ${includedir}/nouveau
+libdrm_nouveaucommoninclude_HEADERS = \
+                               nouveau_device.h \
+                               nouveau_channel.h \
+                               nouveau_grobj.h \
+                               nouveau_notifier.h \
+                               nouveau_pushbuf.h \
+                               nouveau_bo.h \
+                               nouveau_resource.h \
+                               nouveau_class.h
+
+libdrm_nouveauincludedir = ${includedir}/drm
+libdrm_nouveauinclude_HEADERS = \
+                               nouveau_drmif.h
+
+pkgconfigdir = @pkgconfigdir@
+pkgconfig_DATA = libdrm_nouveau.pc
diff --git a/libdrm/nouveau/libdrm_nouveau.pc.in 
b/libdrm/nouveau/libdrm_nouveau.pc.in
new file mode 100644
index 0000000..9e67a23
--- /dev/null
+++ b/libdrm/nouveau/libdrm_nouveau.pc.in
@@ -0,0 +1,10 @@
+pref...@prefix@
+exec_pref...@exec_prefix@
+libd...@libdir@
+included...@includedir@
+
+Name: libdrm_nouveau
+Description: Userspace interface to nouveau kernel DRM services
+Version: 0.5
+Libs: -L${libdir} -ldrm_nouveau
+Cflags: -I${includedir} -I${includedir}/drm -I${includedir}/nouveau
diff --git a/libdrm/nouveau/nouveau_bo.c b/libdrm/nouveau/nouveau_bo.c
new file mode 100644
index 0000000..0ab426d
--- /dev/null
+++ b/libdrm/nouveau/nouveau_bo.c
@@ -0,0 +1,838 @@
+/*
+ * Copyright 2007 Nouveau Project
+ *
+ * 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 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.
+ */
+
+#include <stdint.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <assert.h>
+
+#include <sys/mman.h>
+#include <sys/ioctl.h>
+
+#include "nouveau_private.h"
+
+int
+nouveau_bo_init(struct nouveau_device *dev)
+{
+       return 0;
+}
+
+void
+nouveau_bo_takedown(struct nouveau_device *dev)
+{
+}
+
+static int
+nouveau_bo_allocated(struct nouveau_bo_priv *nvbo)
+{
+       if (nvbo->sysmem || nvbo->handle || (nvbo->flags & NOUVEAU_BO_PIN))
+               return 1;
+       return 0;
+}
+
+static int
+nouveau_bo_ualloc(struct nouveau_bo_priv *nvbo)
+{
+       if (nvbo->user || nvbo->sysmem) {
+               assert(nvbo->sysmem);
+               return 0;
+       }
+
+       nvbo->sysmem = malloc(nvbo->size);
+       if (!nvbo->sysmem)
+               return -ENOMEM;
+
+       return 0;
+}
+
+static void
+nouveau_bo_ufree(struct nouveau_bo_priv *nvbo)
+{
+       if (nvbo->sysmem) {
+               if (!nvbo->user)
+                       free(nvbo->sysmem);
+               nvbo->sysmem = NULL;
+       }
+}
+
+static void
+nouveau_bo_kfree_nomm(struct nouveau_bo_priv *nvbo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(nvbo->base.device);
+       struct drm_nouveau_mem_free req;
+
+       if (nvbo->map) {
+               drmUnmap(nvbo->map, nvbo->size);
+               nvbo->map = NULL;
+       }
+
+       req.offset = nvbo->offset;
+       if (nvbo->domain & NOUVEAU_BO_GART)
+               req.flags = NOUVEAU_MEM_AGP | NOUVEAU_MEM_PCI;
+       else
+       if (nvbo->domain & NOUVEAU_BO_VRAM)
+               req.flags = NOUVEAU_MEM_FB;
+       drmCommandWrite(nvdev->fd, DRM_NOUVEAU_MEM_FREE, &req, sizeof(req));
+
+       nvbo->handle = 0;
+}
+
+static void
+nouveau_bo_kfree(struct nouveau_bo_priv *nvbo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(nvbo->base.device);
+       struct drm_gem_close req;
+
+       if (!nvbo->handle)
+               return;
+
+       if (!nvdev->mm_enabled) {
+               nouveau_bo_kfree_nomm(nvbo);
+               return;
+       }
+
+       if (nvbo->map) {
+               munmap(nvbo->map, nvbo->size);
+               nvbo->map = NULL;
+       }
+
+       req.handle = nvbo->handle;
+       nvbo->handle = 0;
+       ioctl(nvdev->fd, DRM_IOCTL_GEM_CLOSE, &req);
+}
+
+static int
+nouveau_bo_kalloc_nomm(struct nouveau_bo_priv *nvbo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(nvbo->base.device);
+       struct drm_nouveau_mem_alloc req;
+       int ret;
+
+       if (nvbo->handle)
+               return 0;
+
+       if (!(nvbo->flags & (NOUVEAU_BO_VRAM|NOUVEAU_BO_GART)))
+               nvbo->flags |= (NOUVEAU_BO_GART | NOUVEAU_BO_VRAM);
+
+       req.size = nvbo->size;
+       req.alignment = nvbo->align;
+       req.flags = 0;
+       if (nvbo->flags & NOUVEAU_BO_VRAM)
+               req.flags |= NOUVEAU_MEM_FB;
+       if (nvbo->flags & NOUVEAU_BO_GART)
+               req.flags |= (NOUVEAU_MEM_AGP | NOUVEAU_MEM_PCI);
+       if (nvbo->flags & NOUVEAU_BO_TILED) {
+               req.flags |= NOUVEAU_MEM_TILE;
+               if (nvbo->flags & NOUVEAU_BO_ZTILE)
+                       req.flags |= NOUVEAU_MEM_TILE_ZETA;
+       }
+       req.flags |= NOUVEAU_MEM_MAPPED;
+
+       ret = drmCommandWriteRead(nvdev->fd, DRM_NOUVEAU_MEM_ALLOC,
+                                 &req, sizeof(req));
+       if (ret)
+               return ret;
+
+       nvbo->handle = req.map_handle;
+       nvbo->size = req.size;
+       nvbo->offset = req.offset;
+       if (req.flags & (NOUVEAU_MEM_AGP | NOUVEAU_MEM_PCI))
+               nvbo->domain = NOUVEAU_BO_GART;
+       else
+       if (req.flags & NOUVEAU_MEM_FB)
+               nvbo->domain = NOUVEAU_BO_VRAM;
+
+       return 0;
+}
+
+static int
+nouveau_bo_kalloc(struct nouveau_bo_priv *nvbo, struct nouveau_channel *chan)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(nvbo->base.device);
+       struct drm_nouveau_gem_new req;
+       int ret;
+
+       if (nvbo->handle || (nvbo->flags & NOUVEAU_BO_PIN))
+               return 0;
+
+       if (!nvdev->mm_enabled)
+               return nouveau_bo_kalloc_nomm(nvbo);
+
+       req.channel_hint = chan ? chan->id : 0;
+
+       req.size = nvbo->size;
+       req.align = nvbo->align;
+
+       req.domain = 0;
+
+       if (nvbo->flags & NOUVEAU_BO_VRAM)
+               req.domain |= NOUVEAU_GEM_DOMAIN_VRAM;
+
+       if (nvbo->flags & NOUVEAU_BO_GART)
+               req.domain |= NOUVEAU_GEM_DOMAIN_GART;
+
+       if (nvbo->flags & NOUVEAU_BO_TILED) {
+               req.domain |= NOUVEAU_GEM_DOMAIN_TILE;
+               if (nvbo->flags & NOUVEAU_BO_ZTILE)
+                       req.domain |= NOUVEAU_GEM_DOMAIN_TILE_ZETA;
+       }
+
+       if (!req.domain) {
+               req.domain |= (NOUVEAU_GEM_DOMAIN_VRAM |
+                              NOUVEAU_GEM_DOMAIN_GART);
+       }
+
+       ret = drmCommandWriteRead(nvdev->fd, DRM_NOUVEAU_GEM_NEW,
+                                 &req, sizeof(req));
+       if (ret)
+               return ret;
+       nvbo->handle = nvbo->base.handle = req.handle;
+       nvbo->size = req.size;
+       nvbo->domain = req.domain;
+       nvbo->offset = req.offset;
+
+       return 0;
+}
+
+static int
+nouveau_bo_kmap_nomm(struct nouveau_bo_priv *nvbo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(nvbo->base.device);
+       int ret;
+
+       ret = drmMap(nvdev->fd, nvbo->handle, nvbo->size, &nvbo->map);
+       if (ret) {
+               nvbo->map = NULL;
+               return ret;
+       }
+
+       return 0;
+}
+
+static int
+nouveau_bo_kmap(struct nouveau_bo_priv *nvbo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(nvbo->base.device);
+       struct drm_nouveau_gem_mmap req;
+       int ret;
+
+       if (nvbo->map)
+               return 0;
+
+       if (!nvbo->handle)
+               return -EINVAL;
+
+       if (!nvdev->mm_enabled)
+               return nouveau_bo_kmap_nomm(nvbo);
+
+       req.handle = nvbo->handle;
+       ret = drmCommandWriteRead(nvdev->fd, DRM_NOUVEAU_GEM_MMAP,
+                                 &req, sizeof(req));
+       if (ret)
+               return ret;
+
+       nvbo->map = (void *)(unsigned long)req.vaddr;
+       return 0;
+}
+
+int
+nouveau_bo_new(struct nouveau_device *dev, uint32_t flags, int align,
+              int size, struct nouveau_bo **bo)
+{
+       struct nouveau_bo_priv *nvbo;
+       int ret;
+
+       if (!dev || !bo || *bo)
+               return -EINVAL;
+
+       nvbo = calloc(1, sizeof(struct nouveau_bo_priv));
+       if (!nvbo)
+               return -ENOMEM;
+       nvbo->base.device = dev;
+       nvbo->base.size = size;
+
+       nvbo->refcount = 1;
+       /* Don't set NOUVEAU_BO_PIN here, or nouveau_bo_allocated() will
+        * decided the buffer's already allocated when it's not.  The
+        * call to nouveau_bo_pin() later will set this flag.
+        */
+       nvbo->flags = (flags & ~NOUVEAU_BO_PIN);
+       nvbo->size = size;
+       nvbo->align = align;
+
+       /*XXX: murder me violently */
+       if (flags & NOUVEAU_BO_TILED) {
+               nvbo->base.tiled = 1;
+               if (flags & NOUVEAU_BO_ZTILE)
+                       nvbo->base.tiled |= 2;
+       }
+
+       if (flags & NOUVEAU_BO_PIN) {
+               ret = nouveau_bo_pin((void *)nvbo, nvbo->flags);
+               if (ret) {
+                       nouveau_bo_ref(NULL, (void *)nvbo);
+                       return ret;
+               }
+       }
+
+       *bo = &nvbo->base;
+       return 0;
+}
+
+int
+nouveau_bo_user(struct nouveau_device *dev, void *ptr, int size,
+               struct nouveau_bo **bo)
+{
+       struct nouveau_bo_priv *nvbo;
+       int ret;
+
+       ret = nouveau_bo_new(dev, 0, 0, size, bo);
+       if (ret)
+               return ret;
+       nvbo = nouveau_bo(*bo);
+
+       nvbo->sysmem = ptr;
+       nvbo->user = 1;
+       return 0;
+}
+
+int
+nouveau_bo_fake(struct nouveau_device *dev, uint64_t offset, uint32_t flags,
+               uint32_t size, void *map, struct nouveau_bo **bo)
+{
+       struct nouveau_bo_priv *nvbo;
+       int ret;
+
+       ret = nouveau_bo_new(dev, flags & ~NOUVEAU_BO_PIN, 0, size, bo);
+       if (ret)
+               return ret;
+       nvbo = nouveau_bo(*bo);
+
+       nvbo->flags = flags | NOUVEAU_BO_PIN;
+       nvbo->domain = (flags & (NOUVEAU_BO_VRAM|NOUVEAU_BO_GART));
+       nvbo->offset = offset;
+       nvbo->size = nvbo->base.size = size;
+       nvbo->map = map;
+       nvbo->base.flags = nvbo->flags;
+       nvbo->base.offset = nvbo->offset;
+       return 0;
+}
+
+int
+nouveau_bo_handle_get(struct nouveau_bo *bo, uint32_t *handle)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       int ret;
+ 
+       if (!bo || !handle)
+               return -EINVAL;
+
+       if (!nvdev->mm_enabled)
+               return -ENODEV;
+
+       if (!nvbo->global_handle) {
+               struct drm_gem_flink req;
+ 
+               ret = nouveau_bo_kalloc(nvbo, NULL);
+               if (ret)
+                       return ret;
+ 
+               req.handle = nvbo->handle;
+               ret = ioctl(nvdev->fd, DRM_IOCTL_GEM_FLINK, &req);
+               if (ret) {
+                       nouveau_bo_kfree(nvbo);
+                       return ret;
+               }
+ 
+               nvbo->global_handle = req.name;
+       }
+ 
+       *handle = nvbo->global_handle;
+       return 0;
+}
+ 
+int
+nouveau_bo_handle_ref(struct nouveau_device *dev, uint32_t handle,
+                     struct nouveau_bo **bo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(dev);
+       struct nouveau_bo_priv *nvbo;
+       struct drm_gem_open req;
+       int ret;
+
+       ret = nouveau_bo_new(dev, 0, 0, 0, bo);
+       if (ret)
+               return ret;
+       nvbo = nouveau_bo(*bo);
+
+       if (!nvdev->mm_enabled) {
+               nvbo->handle = 0;
+               nvbo->offset =  handle;
+               nvbo->domain = NOUVEAU_BO_VRAM;
+               nvbo->flags = NOUVEAU_BO_VRAM | NOUVEAU_BO_PIN;
+               nvbo->base.offset = nvbo->offset;
+               nvbo->base.flags = nvbo->flags;
+       } else {
+               req.name = handle;
+               ret = ioctl(nvdev->fd, DRM_IOCTL_GEM_OPEN, &req);
+               if (ret) {
+                       nouveau_bo_ref(NULL, bo);
+                       return ret;
+               }
+
+               nvbo->size = req.size;
+               nvbo->handle = req.handle;
+       }
+ 
+       return 0;
+} 
+
+static void
+nouveau_bo_del_cb(void *priv)
+{
+       struct nouveau_bo_priv *nvbo = priv;
+
+       nouveau_bo_kfree(nvbo);
+       free(nvbo);
+}
+
+static void
+nouveau_bo_del(struct nouveau_bo **bo)
+{
+       struct nouveau_bo_priv *nvbo;
+
+       if (!bo || !*bo)
+               return;
+       nvbo = nouveau_bo(*bo);
+       *bo = NULL;
+
+       if (--nvbo->refcount)
+               return;
+
+       if (nvbo->pending) {
+               nvbo->pending = NULL;
+               nouveau_pushbuf_flush(nvbo->pending_channel, 0);
+       }
+
+       nouveau_bo_ufree(nvbo);
+       if (!nouveau_device(nvbo->base.device)->mm_enabled && nvbo->fence)
+               nouveau_fence_signal_cb(nvbo->fence, nouveau_bo_del_cb, nvbo);
+       else
+               nouveau_bo_del_cb(nvbo);
+}
+
+int
+nouveau_bo_ref(struct nouveau_bo *ref, struct nouveau_bo **pbo)
+{
+       if (!pbo)
+               return -EINVAL;
+
+       if (ref)
+               nouveau_bo(ref)->refcount++;
+
+       if (*pbo)
+               nouveau_bo_del(pbo);
+
+       *pbo = ref;
+       return 0;
+}
+
+static int
+nouveau_bo_wait_nomm(struct nouveau_bo *bo, int cpu_write)
+{
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       int ret = 0;
+
+       if (cpu_write)
+               ret = nouveau_fence_wait(&nvbo->fence);
+       else
+               ret = nouveau_fence_wait(&nvbo->wr_fence);
+       if (ret)
+               return ret;
+
+       nvbo->write_marker = 0;
+       return 0;
+}
+
+static int
+nouveau_bo_wait(struct nouveau_bo *bo, int cpu_write)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       struct drm_nouveau_gem_cpu_prep req;
+       int ret;
+
+       if (!nvbo->global_handle && !nvbo->write_marker && !cpu_write)
+               return 0;
+
+       if (nvbo->pending &&
+           (nvbo->pending->write_domains || cpu_write)) {
+               nvbo->pending = NULL;
+               nouveau_pushbuf_flush(nvbo->pending_channel, 0);
+       }
+
+       if (!nvdev->mm_enabled)
+               return nouveau_bo_wait_nomm(bo, cpu_write);
+
+       req.handle = nvbo->handle;
+       ret = drmCommandWrite(nvdev->fd, DRM_NOUVEAU_GEM_CPU_PREP,
+                             &req, sizeof(req));
+       if (ret)
+               return ret;
+
+       nvbo->write_marker = 0;
+       return 0;
+}
+
+int
+nouveau_bo_map(struct nouveau_bo *bo, uint32_t flags)
+{
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       int ret;
+
+       if (!nvbo || bo->map)
+               return -EINVAL;
+
+       if (!nouveau_bo_allocated(nvbo)) {
+               if (nvbo->flags & (NOUVEAU_BO_VRAM | NOUVEAU_BO_GART)) {
+                       ret = nouveau_bo_kalloc(nvbo, NULL);
+                       if (ret)
+                               return ret;
+               }
+
+               if (!nouveau_bo_allocated(nvbo)) {
+                       ret = nouveau_bo_ualloc(nvbo);
+                       if (ret)
+                               return ret;
+               }
+       }
+
+       if (nvbo->sysmem) {
+               bo->map = nvbo->sysmem;
+       } else {
+               ret = nouveau_bo_kmap(nvbo);
+               if (ret)
+                       return ret;
+
+               ret = nouveau_bo_wait(bo, (flags & NOUVEAU_BO_WR));
+               if (ret)
+                       return ret;
+
+               bo->map = nvbo->map;
+       }
+
+       return 0;
+}
+
+void
+nouveau_bo_unmap(struct nouveau_bo *bo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+
+       if (nvdev->mm_enabled && bo->map && !nvbo->sysmem) {
+               struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+               struct drm_nouveau_gem_cpu_fini req;
+
+               req.handle = nvbo->handle;
+               drmCommandWrite(nvdev->fd, DRM_NOUVEAU_GEM_CPU_FINI,
+                               &req, sizeof(req));
+       }
+
+       bo->map = NULL;
+}
+
+int
+nouveau_bo_validate_nomm(struct nouveau_bo_priv *nvbo, uint32_t flags)
+{
+       struct nouveau_bo *new = NULL;
+       uint32_t t_handle, t_domain, t_offset, t_size;
+       void *t_map;
+       int ret;
+
+       if ((flags & NOUVEAU_BO_VRAM) && nvbo->domain == NOUVEAU_BO_VRAM)
+               return 0;
+       if ((flags & NOUVEAU_BO_GART) && nvbo->domain == NOUVEAU_BO_GART)
+               return 0;
+       assert(flags & (NOUVEAU_BO_VRAM|NOUVEAU_BO_GART));
+
+       /* Keep tiling info */
+       flags |= (nvbo->flags & (NOUVEAU_BO_TILED|NOUVEAU_BO_ZTILE));
+
+       ret = nouveau_bo_new(nvbo->base.device, flags, 0, nvbo->size, &new);
+       if (ret)
+               return ret;
+
+       ret = nouveau_bo_kalloc(nouveau_bo(new), NULL);
+       if (ret) {
+               nouveau_bo_ref(NULL, &new);
+               return ret;
+       }
+
+       if (nvbo->handle || nvbo->sysmem) {
+       nouveau_bo_kmap(nouveau_bo(new));
+
+       if (!nvbo->base.map) {
+               nouveau_bo_map(&nvbo->base, NOUVEAU_BO_RD);
+               memcpy(nouveau_bo(new)->map, nvbo->base.map, nvbo->base.size);
+               nouveau_bo_unmap(&nvbo->base);
+       } else {
+               memcpy(nouveau_bo(new)->map, nvbo->base.map, nvbo->base.size);
+       }
+       }
+
+       t_handle = nvbo->handle;
+       t_domain = nvbo->domain;
+       t_offset = nvbo->offset;
+       t_size = nvbo->size;
+       t_map = nvbo->map;
+
+       nvbo->handle = nouveau_bo(new)->handle;
+       nvbo->domain = nouveau_bo(new)->domain;
+       nvbo->offset = nouveau_bo(new)->offset;
+       nvbo->size = nouveau_bo(new)->size;
+       nvbo->map = nouveau_bo(new)->map;
+
+       nouveau_bo(new)->handle = t_handle;
+       nouveau_bo(new)->domain = t_domain;
+       nouveau_bo(new)->offset = t_offset;
+       nouveau_bo(new)->size = t_size;
+       nouveau_bo(new)->map = t_map;
+
+       nouveau_bo_ref(NULL, &new);
+
+       return 0;
+}
+
+static int
+nouveau_bo_pin_nomm(struct nouveau_bo *bo, uint32_t flags)
+{
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       int ret;
+
+       if (!nvbo->handle) {
+               if (!(flags & (NOUVEAU_BO_VRAM | NOUVEAU_BO_GART)))
+                       return -EINVAL;
+
+               ret = nouveau_bo_validate_nomm(nvbo, flags & ~NOUVEAU_BO_PIN);
+               if (ret)
+                       return ret;
+       }
+
+       nvbo->pinned = 1;
+
+       /* Fill in public nouveau_bo members */
+       bo->flags = nvbo->domain;
+       bo->offset = nvbo->offset;
+
+       return 0;
+}
+
+int
+nouveau_bo_pin(struct nouveau_bo *bo, uint32_t flags)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       struct drm_nouveau_gem_pin req;
+       int ret;
+
+       if (nvbo->pinned)
+               return 0;
+
+       if (!nvdev->mm_enabled)
+               return nouveau_bo_pin_nomm(bo, flags);
+
+       /* Ensure we have a kernel object... */
+       if (!nvbo->handle) {
+               if (!(flags & (NOUVEAU_BO_VRAM | NOUVEAU_BO_GART)))
+                       return -EINVAL;
+               nvbo->flags = flags;
+
+               ret = nouveau_bo_kalloc(nvbo, NULL);
+               if (ret)
+                       return ret;
+       }
+
+       /* Now force it to stay put :) */
+       req.handle = nvbo->handle;
+       req.domain = 0;
+       if (nvbo->flags & NOUVEAU_BO_VRAM)
+               req.domain |= NOUVEAU_GEM_DOMAIN_VRAM;
+       if (nvbo->flags & NOUVEAU_BO_GART)
+               req.domain |= NOUVEAU_GEM_DOMAIN_GART;
+
+       ret = drmCommandWriteRead(nvdev->fd, DRM_NOUVEAU_GEM_PIN, &req,
+                                 sizeof(struct drm_nouveau_gem_pin));
+       if (ret)
+               return ret;
+       nvbo->offset = req.offset;
+       nvbo->domain = req.domain;
+       nvbo->pinned = 1;
+       nvbo->flags |= NOUVEAU_BO_PIN;
+
+       /* Fill in public nouveau_bo members */
+       if (nvbo->domain & NOUVEAU_GEM_DOMAIN_VRAM)
+               bo->flags = NOUVEAU_BO_VRAM;
+       if (nvbo->domain & NOUVEAU_GEM_DOMAIN_GART)
+               bo->flags = NOUVEAU_BO_GART;
+       bo->offset = nvbo->offset;
+
+       return 0;
+}
+
+void
+nouveau_bo_unpin(struct nouveau_bo *bo)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       struct drm_nouveau_gem_unpin req;
+
+       if (!nvbo->pinned)
+               return;
+
+       if (nvdev->mm_enabled) {
+               req.handle = nvbo->handle;
+               drmCommandWrite(nvdev->fd, DRM_NOUVEAU_GEM_UNPIN,
+                               &req, sizeof(req));
+       }
+
+       nvbo->pinned = bo->offset = bo->flags = 0;
+}
+
+int
+nouveau_bo_tile(struct nouveau_bo *bo, uint32_t flags, uint32_t delta,
+               uint32_t size)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+       uint32_t kern_flags = 0;
+       int ret = 0;
+
+       if (flags & NOUVEAU_BO_TILED) {
+               kern_flags |= NOUVEAU_MEM_TILE;
+               if (flags & NOUVEAU_BO_ZTILE)
+                       kern_flags |= NOUVEAU_MEM_TILE_ZETA;
+       }
+
+       if (nvdev->mm_enabled) {
+               struct drm_nouveau_gem_tile req;
+
+               req.handle = nvbo->handle;
+               req.delta = delta;
+               req.size = size;
+               req.flags = kern_flags;
+               ret = drmCommandWrite(nvdev->fd, DRM_NOUVEAU_GEM_TILE,
+                                     &req, sizeof(req));
+       } else {
+               struct drm_nouveau_mem_tile req;
+
+               req.offset = nvbo->offset;
+               req.delta = delta;
+               req.size = size;
+               req.flags = kern_flags;
+
+               if (flags & NOUVEAU_BO_VRAM)
+                       req.flags |= NOUVEAU_MEM_FB;
+               if (flags & NOUVEAU_BO_GART)
+                       req.flags |= NOUVEAU_MEM_AGP;
+
+               ret = drmCommandWrite(nvdev->fd, DRM_NOUVEAU_MEM_TILE,
+                                     &req, sizeof(req));
+       }
+
+       return 0;
+}
+
+int
+nouveau_bo_busy(struct nouveau_bo *bo, uint32_t access)
+{
+       struct nouveau_device_priv *nvdev = nouveau_device(bo->device);
+       struct nouveau_bo_priv *nvbo = nouveau_bo(bo);
+
+       if (!nvdev->mm_enabled) {
+               struct nouveau_fence *fence;
+


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to