Changes in v2:
- Addressed review comments
- Fixed lockless algorithm (must not dec if negative in addition to if 0)
- Made spinlock irqsave (fences are completed in IRQs)

This patch adds code to allocate semaphores in a dynamic way using
a lockless algorithm.

1. Semaphore BOs

Semaphore BOs are BOs containing semaphores. Each is 4KB large and
contains 1024 4-byte semaphores. They are pinned and mapped.

Semaphore BOs are allocated on-demand and freed at device takedown.
Those that are not fully allocated are kept on a free list.

Each is assigned an handle. DMA objects and references are created
on demand for each channel that needs to use a semaphore BO.
Those objects and references are automatically destroyed at channel
destruction time.

Typically only a single semaphore BO will be used.

2. Semaphore allocation

Each semaphore BO contains a bitmask of free semaphores within the BO.
Allocation is done in a lockless fashion using a count of free
semaphores and the bitmask.

Semaphores are released once the fence on the waiting side passed.
This is done by adding fields to nouveau_fence.

Semaphore values are zeroed when the semaphore BO is allocated, and
are afterwards only modified by the GPU.

This is performed by storing a bitmask that allows to alternate
between using the values 0 and 1 for a given semaphore.

Signed-off-by: Luca Barbieri <l...@luca-barbieri.com>
---
 drivers/gpu/drm/nouveau/nouveau_drv.h   |    9 +
 drivers/gpu/drm/nouveau/nouveau_fence.c |  265 +++++++++++++++++++++++++++++++
 drivers/gpu/drm/nouveau/nouveau_state.c |    4 +
 3 files changed, 278 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h 
b/drivers/gpu/drm/nouveau/nouveau_drv.h
index bb9024c..93e5427 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.h
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.h
@@ -621,6 +621,13 @@ struct drm_nouveau_private {
        struct {
                struct dentry *channel_root;
        } debugfs;
+
+       struct {
+               spinlock_t free_list_lock;
+               struct nouveau_sem_bo *free_list;
+               uint32_t handles;
+               uint32_t max_handles;
+       } sem;
 };
 
 static inline struct drm_nouveau_private *
@@ -1142,6 +1149,8 @@ extern int nouveau_fence_flush(void *obj, void *arg);
 extern void nouveau_fence_unref(void **obj);
 extern void *nouveau_fence_ref(void *obj);
 extern void nouveau_fence_handler(struct drm_device *dev, int channel);
+extern void nouveau_fence_device_init(struct drm_device *dev);
+extern void nouveau_fence_device_takedown(struct drm_device *dev);
 
 /* nouveau_gem.c */
 extern int nouveau_gem_new(struct drm_device *, struct nouveau_channel *,
diff --git a/drivers/gpu/drm/nouveau/nouveau_fence.c 
b/drivers/gpu/drm/nouveau/nouveau_fence.c
index 9b1c2c3..7157148 100644
--- a/drivers/gpu/drm/nouveau/nouveau_fence.c
+++ b/drivers/gpu/drm/nouveau/nouveau_fence.c
@@ -32,6 +32,13 @@
 
 #define USE_REFCNT (dev_priv->card_type >= NV_10)
 
+#define NOUVEAU_SEM_BO_SIZE PAGE_SIZE
+
+/* reading fences can be very expensive
+ * use a threshold that would only use up half a single sem_bo
+ */
+#define NOUVEAU_SEM_MIN_THRESHOLD (NOUVEAU_SEM_BO_SIZE / 
(NOUVEAU_MAX_CHANNEL_NR * 2))
+
 struct nouveau_fence {
        struct nouveau_channel *channel;
        struct kref refcount;
@@ -47,6 +54,240 @@ nouveau_fence(void *sync_obj)
        return (struct nouveau_fence *)sync_obj;
 }
 
+struct nouveau_sem_bo {
+       struct nouveau_sem_bo *next;
+       struct nouveau_bo *bo;
+       uint32_t handle;
+
+       /* >= 0: num_free + 1 slots are free, sem_bo is or is about to be on 
free_list
+           -1: all allocated, sem_bo is NOT on free_list
+       */
+       atomic_t num_free;
+
+       DECLARE_BITMAP(free_slots, NOUVEAU_SEM_BO_SIZE / sizeof(uint32_t));
+       DECLARE_BITMAP(values, NOUVEAU_SEM_BO_SIZE / sizeof(uint32_t));
+       DECLARE_BITMAP(channels, NOUVEAU_MAX_CHANNEL_NR);
+};
+
+struct nouveau_sem {
+       struct nouveau_sem_bo *sem_bo;
+       unsigned num;
+       uint32_t value;
+};
+
+static struct nouveau_sem_bo*
+nouveau_sem_bo_alloc(struct drm_device *dev)
+{
+       struct drm_nouveau_private *dev_priv = dev->dev_private;
+       struct nouveau_sem_bo *sem_bo;
+       struct nouveau_bo *bo;
+       int flags = TTM_PL_FLAG_VRAM;
+       int ret;
+       bool is_iomem;
+       void *mem;
+       unsigned handle;
+
+       do {
+               handle = dev_priv->sem.handles;
+               if (handle >= dev_priv->sem.max_handles)
+                       return NULL;
+       } while (cmpxchg(&dev_priv->sem.handles, handle, handle + 1) != handle);
+
+       sem_bo = kmalloc(sizeof(*sem_bo), GFP_KERNEL);
+       if (!sem_bo)
+               return NULL;
+
+       sem_bo->handle = NvSem + handle;
+
+       ret = nouveau_bo_new(dev, NULL, NOUVEAU_SEM_BO_SIZE, 0, flags,
+                       0, 0x0000, true, true, &bo);
+       if (ret)
+               goto out_free;
+
+       sem_bo->bo = bo;
+
+       ret = nouveau_bo_pin(bo, flags);
+       if (ret)
+               goto out_bo;
+
+       ret = nouveau_bo_map(bo);
+       if (ret)
+               goto out_unpin;
+
+       mem = ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
+       if (is_iomem)
+               memset_io((void __force __iomem *)mem, 0, NOUVEAU_SEM_BO_SIZE);
+       else
+               memset(mem, 0, NOUVEAU_SEM_BO_SIZE);
+
+       nouveau_bo_unmap(bo);
+
+       memset((void *)sem_bo->free_slots, 0xff, sizeof(sem_bo->free_slots));
+       memset((void *)sem_bo->values, 0xff, sizeof(sem_bo->values));
+       atomic_set(&sem_bo->num_free, sizeof(sem_bo->free_slots) * 8 - 1);
+
+       memset((void *)sem_bo->channels, 0, sizeof(sem_bo->channels));
+
+       return sem_bo;
+
+out_unpin:
+       nouveau_bo_unpin(sem_bo->bo);
+out_bo:
+       nouveau_bo_ref(NULL, &sem_bo->bo);
+out_free:
+       kfree(sem_bo);
+       return NULL;
+}
+
+static void
+nouveau_sem_bo_channel_dtor(struct drm_device *dev,
+                            struct nouveau_gpuobj *gpuobj) {
+       struct nouveau_sem_bo *sem_bo;
+       struct nouveau_channel *chan;
+
+       if (!gpuobj->priv)
+               return;
+
+       chan = gpuobj->im_channel;
+       sem_bo = gpuobj->priv;
+
+       clear_bit(chan->id, sem_bo->channels);
+       smp_wmb();
+}
+
+static int
+nouveau_sem_bo_channel_init(struct nouveau_sem_bo *sem_bo, struct 
nouveau_channel *chan)
+{
+       struct drm_device *dev = chan->dev;
+       struct nouveau_gpuobj *obj = NULL;
+       int ret;
+
+       if (test_bit(chan->id, sem_bo->channels))
+               return 0;
+
+       if (WARN_ON(sem_bo->bo->bo.mem.mem_type != TTM_PL_VRAM))
+               return -EINVAL;
+
+       ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
+               sem_bo->bo->bo.mem.mm_node->start, NOUVEAU_SEM_BO_SIZE,
+               NV_DMA_ACCESS_RW, NV_DMA_TARGET_VIDMEM, &obj);
+       if (ret)
+               return ret;
+
+       obj->dtor = nouveau_sem_bo_channel_dtor;
+       obj->priv = sem_bo;
+
+       ret = nouveau_gpuobj_ref_add(dev, chan, sem_bo->handle, obj, NULL);
+       if (ret) {
+               nouveau_gpuobj_del(dev, &obj);
+               return ret;
+       }
+
+       set_bit(chan->id, sem_bo->channels);
+       smp_wmb();
+
+       return 0;
+}
+
+static void
+nouveau_sem_bo_free(struct nouveau_sem_bo *sem_bo)
+{
+       nouveau_bo_unpin(sem_bo->bo);
+       nouveau_bo_ref(NULL, &sem_bo->bo);
+       kfree(sem_bo);
+}
+
+static inline void
+nouveau_sem_bo_enqueue(struct drm_device *dev, struct nouveau_sem_bo *sem_bo)
+{
+       struct drm_nouveau_private *dev_priv = dev->dev_private;
+       unsigned long flags;
+
+       spin_lock_irqsave(&dev_priv->sem.free_list_lock, flags);
+       sem_bo->next = dev_priv->sem.free_list;
+       dev_priv->sem.free_list = sem_bo;
+       spin_unlock_irqrestore(&dev_priv->sem.free_list_lock, flags);
+}
+
+static int
+nouveau_sem_alloc(struct drm_device *dev, struct nouveau_sem *sem)
+{
+       struct drm_nouveau_private *dev_priv = dev->dev_private;
+       struct nouveau_sem_bo *sem_bo = NULL;
+       int v;
+
+retry:
+       sem_bo = dev_priv->sem.free_list;
+       if (!sem_bo) {
+               sem_bo = nouveau_sem_bo_alloc(dev);
+               if (!sem_bo)
+                       return -ENOMEM;
+
+               atomic_dec(&sem_bo->num_free);
+               nouveau_sem_bo_enqueue(dev, sem_bo);
+       } else {
+               int num_free;
+retry_num_free:
+               num_free = atomic_read(&sem_bo->num_free);
+               if (unlikely(num_free <= 0)) {
+                       unsigned long flags;
+                       if (unlikely(num_free < 0))
+                               goto retry;
+
+                       spin_lock_irqsave(&dev_priv->sem.free_list_lock, flags);
+                       if (unlikely(sem_bo != dev_priv->sem.free_list)) {
+                               
spin_unlock_irqrestore(&dev_priv->sem.free_list_lock, flags);
+                               goto retry;
+                       }
+
+                       dev_priv->sem.free_list = sem_bo->next;
+                       /* Someone may have incremented the count in the 
meantime.
+                        * In this case, revert the above line and put it back 
on the free list.
+                        *
+                        * Note that we can't just decrement before removing 
from the list,
+                        * since otherwise an increment could put sem_bo in the 
free_list twice,
+                        * corrupting it.
+                        *
+                        * Note that num_free cannot already be -1 because we 
just checked that
+                        * sem_bo is still the head of the free list, and we 
are holding free_list_lock.
+                        *
+                        * atomic_dec_return is a memory barrier, so this is 
fine.
+                        */
+                       if (atomic_dec_return(&sem_bo->num_free) >= 0)
+                               dev_priv->sem.free_list = sem_bo;
+
+                       spin_unlock_irqrestore(&dev_priv->sem.free_list_lock, 
flags);
+               } else if (unlikely(atomic_cmpxchg(&sem_bo->num_free, num_free, 
num_free - 1) != num_free))
+                       goto retry_num_free;
+       }
+
+retry_bit:
+       v = find_first_bit(sem_bo->free_slots, sizeof(sem_bo->free_slots) * 8);
+
+       /* we reserved our bit by decrementing num_free, so this doesn't happen
+          however, the first available bit may have been taken */
+       if (WARN_ON(v >= sizeof(sem_bo->free_slots) * 8))
+               goto retry;
+
+       if (unlikely(!test_and_clear_bit(v, sem_bo->free_slots)))
+               goto retry_bit;
+
+       sem->sem_bo = sem_bo;
+       sem->value = test_and_change_bit(v, sem_bo->values);
+       sem->num = v;
+
+       return 0;
+}
+
+static void
+nouveau_sem_release(struct drm_device *dev, struct nouveau_sem_bo *sem_bo, int 
i)
+{
+       set_bit(i, sem_bo->free_slots);
+
+       if (atomic_inc_and_test(&sem_bo->num_free))
+               nouveau_sem_bo_enqueue(dev, sem_bo);
+}
+
 static void
 nouveau_fence_del(struct kref *ref)
 {
@@ -266,3 +507,27 @@ nouveau_fence_fini(struct nouveau_channel *chan)
        }
 }
 
+void
+nouveau_fence_device_init(struct drm_device *dev)
+{
+       struct drm_nouveau_private *dev_priv = dev->dev_private;
+       spin_lock_init(&dev_priv->sem.free_list_lock);
+       dev_priv->sem.free_list = NULL;
+       dev_priv->sem.handles = 0;
+       /* these are each pinned and 4KB, providing 1024 semaphores each
+          we should need only one in normal circumstances */
+       dev_priv->sem.max_handles = 16;
+}
+
+void
+nouveau_fence_device_takedown(struct drm_device *dev)
+{
+       struct drm_nouveau_private *dev_priv = dev->dev_private;
+       struct nouveau_sem_bo *sem_bo, *next;
+       /* all the sem_bos allocated must be in the free list since all channels
+       * and thus fences have already been terminated */
+       for (sem_bo = dev_priv->sem.free_list; sem_bo; sem_bo = next) {
+               next = sem_bo->next;
+               nouveau_sem_bo_free(sem_bo);
+       }
+}
diff --git a/drivers/gpu/drm/nouveau/nouveau_state.c 
b/drivers/gpu/drm/nouveau/nouveau_state.c
index 3586667..bd3c43a 100644
--- a/drivers/gpu/drm/nouveau/nouveau_state.c
+++ b/drivers/gpu/drm/nouveau/nouveau_state.c
@@ -413,6 +413,8 @@ nouveau_card_init(struct drm_device *dev)
        if (ret)
                goto out_mem;
 
+       nouveau_fence_device_init(dev);
+
        /* PMC */
        ret = engine->mc.init(dev);
        if (ret)
@@ -533,6 +535,8 @@ static void nouveau_card_takedown(struct drm_device *dev)
                engine->timer.takedown(dev);
                engine->mc.takedown(dev);
 
+               nouveau_fence_device_takedown(dev);
+
                mutex_lock(&dev->struct_mutex);
                ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM);
                ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_TT);
-- 
1.6.6.1.476.g01ddb

_______________________________________________
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau

Reply via email to