950ab4c045
When USE_ASHMEM is set, ASHMEM will be used only for non-MDP composition. This implementation will force to use PMEM for MDP composition case. This will allow using ASHMEM or PMEM at run time, depending on the composition type. USE_ASHMEM would mean that use ASHMEM where possible. This will also make sure that video works properly when dynamic ASHMEM feature is enabled on 7x27 / 7x27a / 7x25a targets. Change-Id: I5860311aad20d33e2d078cd6f0d05e041ff3364a
80 lines
2.4 KiB
C++
80 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef GRALLOC_QSD8K_GPU_H_
|
|
#define GRALLOC_QSD8K_GPU_H_
|
|
|
|
#include <errno.h>
|
|
#include <pthread.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <cutils/log.h>
|
|
#include <cutils/ashmem.h>
|
|
|
|
#include "gralloc_priv.h"
|
|
#include "pmemalloc.h"
|
|
|
|
|
|
class gpu_context_t : public alloc_device_t {
|
|
public:
|
|
|
|
class Deps {
|
|
public:
|
|
|
|
virtual ~Deps();
|
|
|
|
// ashmem
|
|
virtual int ashmem_create_region(const char *name, size_t size) = 0;
|
|
|
|
// POSIX
|
|
virtual int close(int fd) = 0;
|
|
|
|
// Framebuffer (locally defined)
|
|
virtual int mapFrameBufferLocked(struct private_module_t* module) = 0;
|
|
virtual int terminateBuffer(gralloc_module_t const* module,
|
|
private_handle_t* hnd) = 0;
|
|
};
|
|
|
|
gpu_context_t(Deps& deps, PmemAllocator& pmemAllocator,
|
|
PmemAllocator& pmemAdspAllocator, const private_module_t* module);
|
|
|
|
int gralloc_alloc_framebuffer_locked(size_t size, int usage,
|
|
buffer_handle_t* pHandle);
|
|
int gralloc_alloc_framebuffer(size_t size, int usage,
|
|
buffer_handle_t* pHandle);
|
|
int gralloc_alloc_buffer(size_t size, int usage, buffer_handle_t* pHandle);
|
|
int free_impl(private_handle_t const* hnd);
|
|
int alloc_impl(int w, int h, int format, int usage,
|
|
buffer_handle_t* pHandle, int* pStride);
|
|
|
|
static int gralloc_alloc(alloc_device_t* dev, int w, int h, int format,
|
|
int usage, buffer_handle_t* pHandle, int* pStride);
|
|
static int gralloc_free(alloc_device_t* dev, buffer_handle_t handle);
|
|
static int gralloc_close(struct hw_device_t *dev);
|
|
|
|
private:
|
|
|
|
Deps& deps;
|
|
PmemAllocator& pmemAllocator;
|
|
PmemAllocator& pmemAdspAllocator;
|
|
bool isMDPComposition;
|
|
int alloc_ashmem_buffer(size_t size, unsigned int postfix, void** pBase,
|
|
int* pOffset, int* pFd);
|
|
};
|
|
|
|
#endif // GRALLOC_QSD8K_GPU_H
|