net/octeontx: add basic stats support
[dpdk.git] / drivers / mempool / octeontx / rte_mempool_octeontx.c
index d930a81..9f1c07f 100644 (file)
 
 #include "octeontx_fpavf.h"
 
+/*
+ * Per-pool descriptor.
+ * Links mempool with the corresponding memzone,
+ * that provides memory under the pool's elements.
+ */
+struct octeontx_pool_info {
+       const struct rte_mempool *mp;
+       uintptr_t mz_addr;
+
+       SLIST_ENTRY(octeontx_pool_info) link;
+};
+
+SLIST_HEAD(octeontx_pool_list, octeontx_pool_info);
+
+/* List of the allocated pools */
+static struct octeontx_pool_list octeontx_pool_head =
+                               SLIST_HEAD_INITIALIZER(octeontx_pool_head);
+/* Spinlock to protect pool list */
+static rte_spinlock_t pool_list_lock = RTE_SPINLOCK_INITIALIZER;
+
 static int
 octeontx_fpavf_alloc(struct rte_mempool *mp)
 {
        uintptr_t pool;
+       struct octeontx_pool_info *pool_info;
        uint32_t memseg_count = mp->size;
        uint32_t object_size;
        uintptr_t va_start;
        int rc = 0;
 
+       rte_spinlock_lock(&pool_list_lock);
+       SLIST_FOREACH(pool_info, &octeontx_pool_head, link) {
+               if (pool_info->mp == mp)
+                       break;
+       }
+       if (pool_info == NULL) {
+               rte_spinlock_unlock(&pool_list_lock);
+               return -ENXIO;
+       }
+
        /* virtual hugepage mapped addr */
-       va_start = ~(uint64_t)0;
+       va_start = pool_info->mz_addr;
+       rte_spinlock_unlock(&pool_list_lock);
 
        object_size = mp->elt_size + mp->header_size + mp->trailer_size;
 
@@ -74,15 +106,148 @@ _end:
        return rc;
 }
 
+static void
+octeontx_fpavf_free(struct rte_mempool *mp)
+{
+       struct octeontx_pool_info *pool_info;
+       uintptr_t pool;
+
+       pool = (uintptr_t)mp->pool_id;
+
+       rte_spinlock_lock(&pool_list_lock);
+       SLIST_FOREACH(pool_info, &octeontx_pool_head, link) {
+               if (pool_info->mp == mp)
+                       break;
+       }
+
+       if (pool_info == NULL) {
+               rte_spinlock_unlock(&pool_list_lock);
+               rte_panic("%s: trying to free pool with no valid metadata",
+                   __func__);
+       }
+
+       SLIST_REMOVE(&octeontx_pool_head, pool_info, octeontx_pool_info, link);
+       rte_spinlock_unlock(&pool_list_lock);
+
+       rte_free(pool_info);
+       octeontx_fpa_bufpool_destroy(pool, mp->socket_id);
+}
+
+static __rte_always_inline void *
+octeontx_fpa_bufpool_alloc(uintptr_t handle)
+{
+       return (void *)(uintptr_t)fpavf_read64((void *)(handle +
+                                               FPA_VF_VHAURA_OP_ALLOC(0)));
+}
+
+static __rte_always_inline void
+octeontx_fpa_bufpool_free(uintptr_t handle, void *buf)
+{
+       uint64_t free_addr = FPA_VF_FREE_ADDRS_S(FPA_VF_VHAURA_OP_FREE(0),
+                                                0 /* DWB */, 1 /* FABS */);
+
+       fpavf_write64((uintptr_t)buf, (void *)(uintptr_t)(handle + free_addr));
+}
+
+static int
+octeontx_fpavf_enqueue(struct rte_mempool *mp, void * const *obj_table,
+                       unsigned int n)
+{
+       uintptr_t pool;
+       unsigned int index;
+
+       pool = (uintptr_t)mp->pool_id;
+       /* Get pool bar address from handle */
+       pool &= ~(uint64_t)FPA_GPOOL_MASK;
+       for (index = 0; index < n; index++, obj_table++)
+               octeontx_fpa_bufpool_free(pool, *obj_table);
+
+       return 0;
+}
+
+static int
+octeontx_fpavf_dequeue(struct rte_mempool *mp, void **obj_table,
+                       unsigned int n)
+{
+       unsigned int index;
+       uintptr_t pool;
+       void *obj;
+
+       pool = (uintptr_t)mp->pool_id;
+       /* Get pool bar address from handle */
+       pool &= ~(uint64_t)FPA_GPOOL_MASK;
+       for (index = 0; index < n; index++, obj_table++) {
+               obj = octeontx_fpa_bufpool_alloc(pool);
+               if (obj == NULL) {
+                       /*
+                        * Failed to allocate the requested number of objects
+                        * from the pool. Current pool implementation requires
+                        * completing the entire request or returning error
+                        * otherwise.
+                        * Free already allocated buffers to the pool.
+                        */
+                       for (; index > 0; index--) {
+                               obj_table--;
+                               octeontx_fpa_bufpool_free(pool, *obj_table);
+                       }
+                       return -ENOMEM;
+               }
+               *obj_table = obj;
+       }
+
+       return 0;
+}
+
+static unsigned int
+octeontx_fpavf_get_count(const struct rte_mempool *mp)
+{
+       uintptr_t pool;
+
+       pool = (uintptr_t)mp->pool_id;
+
+       return octeontx_fpa_bufpool_free_count(pool);
+}
+
+static int
+octeontx_fpavf_get_capabilities(const struct rte_mempool *mp,
+                               unsigned int *flags)
+{
+       RTE_SET_USED(mp);
+       *flags |= (MEMPOOL_F_CAPA_PHYS_CONTIG |
+                       MEMPOOL_F_CAPA_BLK_ALIGNED_OBJECTS);
+       return 0;
+}
+
+static int
+octeontx_fpavf_register_memory_area(const struct rte_mempool *mp,
+                                   char *vaddr, phys_addr_t paddr, size_t len)
+{
+       struct octeontx_pool_info *pool_info;
+
+       RTE_SET_USED(paddr);
+       RTE_SET_USED(len);
+
+       pool_info = rte_malloc("octeontx_pool_info", sizeof(*pool_info), 0);
+       if (pool_info == NULL)
+               return -ENOMEM;
+
+       pool_info->mp = mp;
+       pool_info->mz_addr = (uintptr_t)vaddr;
+       rte_spinlock_lock(&pool_list_lock);
+       SLIST_INSERT_HEAD(&octeontx_pool_head, pool_info, link);
+       rte_spinlock_unlock(&pool_list_lock);
+       return 0;
+}
+
 static struct rte_mempool_ops octeontx_fpavf_ops = {
        .name = "octeontx_fpavf",
        .alloc = octeontx_fpavf_alloc,
-       .free = NULL,
-       .enqueue = NULL,
-       .dequeue = NULL,
-       .get_count = NULL,
-       .get_capabilities = NULL,
-       .register_memory_area = NULL,
+       .free = octeontx_fpavf_free,
+       .enqueue = octeontx_fpavf_enqueue,
+       .dequeue = octeontx_fpavf_dequeue,
+       .get_count = octeontx_fpavf_get_count,
+       .get_capabilities = octeontx_fpavf_get_capabilities,
+       .register_memory_area = octeontx_fpavf_register_memory_area,
 };
 
 MEMPOOL_REGISTER_OPS(octeontx_fpavf_ops);