2019-07-01 14:41:19 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019, Linaro Limited
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h>
As of today <zephyr/zephyr.h> is 100% equivalent to <zephyr/kernel.h>.
This patch proposes to then include <zephyr/kernel.h> instead of
<zephyr/zephyr.h> since it is more clear that you are including the
Kernel APIs and (probably) nothing else. <zephyr/zephyr.h> sounds like a
catch-all header that may be confusing. Most applications need to
include a bunch of other things to compile, e.g. driver headers or
subsystem headers like BT, logging, etc.
The idea of a catch-all header in Zephyr is probably not feasible
anyway. Reason is that Zephyr is not a library, like it could be for
example `libpython`. Zephyr provides many utilities nowadays: a kernel,
drivers, subsystems, etc and things will likely grow. A catch-all header
would be massive, difficult to keep up-to-date. It is also likely that
an application will only build a small subset. Note that subsystem-level
headers may use a catch-all approach to make things easier, though.
NOTE: This patch is **NOT** removing the header, just removing its usage
in-tree. I'd advocate for its deprecation (add a #warning on it), but I
understand many people will have concerns.
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-08-25 09:58:46 +02:00
|
|
|
#include <zephyr/kernel.h>
|
2019-07-01 14:41:19 +02:00
|
|
|
|
2022-05-06 10:25:46 +02:00
|
|
|
#include <zephyr/drivers/video.h>
|
2019-07-01 14:41:19 +02:00
|
|
|
|
2020-12-07 14:53:28 +01:00
|
|
|
K_HEAP_DEFINE(video_buffer_pool,
|
|
|
|
CONFIG_VIDEO_BUFFER_POOL_SZ_MAX *
|
|
|
|
CONFIG_VIDEO_BUFFER_POOL_NUM_MAX);
|
2019-07-01 14:41:19 +02:00
|
|
|
|
|
|
|
static struct video_buffer video_buf[CONFIG_VIDEO_BUFFER_POOL_NUM_MAX];
|
2020-12-07 14:53:28 +01:00
|
|
|
|
|
|
|
struct mem_block {
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
2020-12-13 13:53:36 +01:00
|
|
|
static struct mem_block video_block[CONFIG_VIDEO_BUFFER_POOL_NUM_MAX];
|
2019-07-01 14:41:19 +02:00
|
|
|
|
2024-04-23 14:33:31 +02:00
|
|
|
struct video_buffer *video_buffer_aligned_alloc(size_t size, size_t align)
|
2019-07-01 14:41:19 +02:00
|
|
|
{
|
|
|
|
struct video_buffer *vbuf = NULL;
|
2020-12-13 13:53:36 +01:00
|
|
|
struct mem_block *block;
|
2019-07-01 14:41:19 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* find available video buffer */
|
|
|
|
for (i = 0; i < ARRAY_SIZE(video_buf); i++) {
|
|
|
|
if (video_buf[i].buffer == NULL) {
|
|
|
|
vbuf = &video_buf[i];
|
2019-11-26 18:34:23 +01:00
|
|
|
block = &video_block[i];
|
2019-07-01 14:41:19 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vbuf == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Alloc buffer memory */
|
2024-04-23 14:33:31 +02:00
|
|
|
block->data = k_heap_aligned_alloc(&video_buffer_pool, align, size, K_FOREVER);
|
2020-12-07 14:53:28 +01:00
|
|
|
if (block->data == NULL) {
|
2019-07-01 14:41:19 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-11-26 18:34:23 +01:00
|
|
|
vbuf->buffer = block->data;
|
2019-07-01 14:41:19 +02:00
|
|
|
vbuf->size = size;
|
|
|
|
vbuf->bytesused = 0;
|
|
|
|
|
|
|
|
return vbuf;
|
|
|
|
}
|
|
|
|
|
2024-04-23 14:33:31 +02:00
|
|
|
struct video_buffer *video_buffer_alloc(size_t size)
|
|
|
|
{
|
|
|
|
return video_buffer_aligned_alloc(size, sizeof(void *));
|
|
|
|
}
|
|
|
|
|
2019-07-01 14:41:19 +02:00
|
|
|
void video_buffer_release(struct video_buffer *vbuf)
|
|
|
|
{
|
2020-12-07 14:53:28 +01:00
|
|
|
struct mem_block *block = NULL;
|
2019-11-26 18:34:23 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* vbuf to block */
|
2020-12-13 13:53:36 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(video_block); i++) {
|
2019-11-26 18:34:23 +01:00
|
|
|
if (video_block[i].data == vbuf->buffer) {
|
|
|
|
block = &video_block[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-01 14:41:19 +02:00
|
|
|
vbuf->buffer = NULL;
|
2020-12-10 19:38:50 +01:00
|
|
|
if (block) {
|
|
|
|
k_heap_free(&video_buffer_pool, block->data);
|
|
|
|
}
|
2019-07-01 14:41:19 +02:00
|
|
|
}
|