Commit c1fb5e8f authored by Jens Kuske's avatar Jens Kuske
Browse files

Add UMP memory support

parent b029ad23
......@@ -10,6 +10,12 @@ prefix ?= /usr/local
libdir ?= $(prefix)/lib
includedir ?= $(prefix)/include
ifeq ($(USE_UMP),1)
SRC += cedrus_mem_ump.c
CFLAGS += -DUSE_UMP
LIBS += -lUMP
endif
DEP_CFLAGS = -MD -MP -MQ $@
LIB_CFLAGS = -fpic -fvisibility=hidden
LIB_LDFLAGS = -shared -Wl,-soname,$(TARGET)
......
......@@ -62,12 +62,18 @@ EXPORT struct cedrus *cedrus_open(void)
if (ve.regs == MAP_FAILED)
goto close;
ve.allocator = cedrus_allocator_ve_new(ve.fd, &info);
#ifdef USE_UMP
ve.allocator = cedrus_allocator_ump_new();
if (!ve.allocator)
#endif
{
ve.allocator = cedrus_allocator_ion_new();
ve.allocator = cedrus_allocator_ve_new(ve.fd, &info);
if (!ve.allocator)
goto unmap;
{
ve.allocator = cedrus_allocator_ion_new();
if (!ve.allocator)
goto unmap;
}
}
ioctl(ve.fd, IOCTL_ENGINE_REQ, 0);
......
......@@ -42,6 +42,9 @@ struct cedrus_allocator
struct cedrus_allocator *cedrus_allocator_ve_new(int ve_fd, const struct cedarv_env_infomation *ve_info);
struct cedrus_allocator *cedrus_allocator_ion_new(void);
#ifdef USE_UMP
struct cedrus_allocator *cedrus_allocator_ump_new(void);
#endif
uint32_t phys2bus(uint32_t phys);
uint32_t bus2phys(uint32_t bus);
......
/*
* Copyright (c) 2016 Jens Kuske <jenskuske@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <fcntl.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <ump/ump.h>
#include <ump/ump_ref_drv.h>
#include "cedrus_mem.h"
struct ump_mem
{
struct cedrus_mem pub;
ump_handle handle;
};
static struct cedrus_mem *cedrus_allocator_ump_mem_alloc(struct cedrus_allocator *allocator, size_t size)
{
(void)allocator;
struct ump_mem *mem = calloc(1, sizeof(*mem));
if (!mem)
return NULL;
mem->pub.size = size;
mem->handle = ump_ref_drv_allocate(size, UMP_REF_DRV_CONSTRAINT_PHYSICALLY_LINEAR);
if (mem->handle == UMP_INVALID_MEMORY_HANDLE)
goto err;
mem->pub.virt = ump_mapped_pointer_get(mem->handle);
if (!mem->pub.virt)
goto err_release;
mem->pub.phys = bus2phys((uint32_t)ump_phys_address_get(mem->handle));
if (!mem->pub.phys)
goto err_release;
return &mem->pub;
err_release:
ump_reference_release(mem->handle);
err:
free(mem);
return NULL;
}
static void cedrus_allocator_ump_mem_free(struct cedrus_allocator *allocator, struct cedrus_mem *mem_pub)
{
(void)allocator;
struct ump_mem *mem = (struct ump_mem *)mem_pub;
ump_reference_release(mem->handle);
free(mem);
}
static void cedrus_allocator_ump_mem_flush(struct cedrus_allocator *allocator, struct cedrus_mem *mem_pub)
{
(void)allocator;
struct ump_mem *mem = (struct ump_mem *)mem_pub;
ump_cpu_msync_now(mem->handle, UMP_MSYNC_CLEAN_AND_INVALIDATE, 0, mem->pub.size);
}
static void cedrus_allocator_ump_free(struct cedrus_allocator *allocator)
{
ump_close();
free(allocator);
}
struct cedrus_allocator *cedrus_allocator_ump_new(void)
{
struct cedrus_allocator *allocator = calloc(1, sizeof(*allocator));
if (!allocator)
return NULL;
if (ump_open() != UMP_OK)
{
free(allocator);
return NULL;
}
allocator->mem_alloc = cedrus_allocator_ump_mem_alloc;
allocator->mem_free = cedrus_allocator_ump_mem_free;
allocator->mem_flush = cedrus_allocator_ump_mem_flush;
allocator->free = cedrus_allocator_ump_free;
return allocator;
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment