1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/**
* @file lv_nuttx_image_cache.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_nuttx_cache.h"
#include "../../../lvgl.h"
#if LV_CACHE_DEF_SIZE > 0
#if LV_USE_NUTTX
#include <nuttx/mm/mm.h>
/*********************
* DEFINES
*********************/
#define HEAP_NAME "GImageCache"
#define img_cache_p (LV_GLOBAL_DEFAULT()->img_cache)
#define img_header_cache_p (LV_GLOBAL_DEFAULT()->img_header_cache)
#define ctx (*(lv_nuttx_ctx_image_cache_t **)&LV_GLOBAL_DEFAULT()->nuttx_ctx->image_cache)
/**********************
* TYPEDEFS
**********************/
typedef struct {
uint8_t * mem;
uint32_t mem_size;
struct mm_heap_s * heap;
uint32_t heap_size;
} lv_nuttx_ctx_image_cache_t;
/**********************
* STATIC PROTOTYPES
**********************/
static void * malloc_cb(size_t size_bytes, lv_color_format_t color_format);
static void free_cb(void * draw_buf);
/**********************
* STATIC VARIABLES
**********************/
/**********************
* MACROS
**********************/
/**********************
* GLOBAL FUNCTIONS
**********************/
void lv_nuttx_image_cache_init(void)
{
lv_draw_buf_handlers_t * handlers = lv_draw_buf_get_handlers();
handlers->buf_malloc_cb = malloc_cb;
handlers->buf_free_cb = free_cb;
ctx = lv_malloc_zeroed(sizeof(lv_nuttx_ctx_image_cache_t));
LV_ASSERT_MALLOC(ctx);
ctx->mem_size = LV_CACHE_DEF_SIZE;
ctx->mem = malloc(ctx->mem_size);
LV_ASSERT_MALLOC(ctx->mem);
ctx->heap = mm_initialize(
HEAP_NAME,
ctx->mem,
ctx->mem_size
);
struct mallinfo info = mm_mallinfo(ctx->heap);
ctx->heap_size = info.arena;
LV_LOG_USER("heap info:");
LV_LOG_USER(" heap: %p", ctx->heap);
LV_LOG_USER(" mem: %p", ctx->mem);
LV_LOG_USER(" mem_size: %" LV_PRIu32, ctx->mem_size);
LV_LOG_USER(" arena: %d", info.arena);
LV_LOG_USER(" ordblks: %d", info.ordblks);
LV_LOG_USER(" aordblks: %d", info.aordblks);
LV_LOG_USER(" mxordblk: %d", info.mxordblk);
LV_LOG_USER(" uordblks: %d", info.uordblks);
LV_LOG_USER(" fordblks: %d", info.fordblks);
}
/**********************
* STATIC FUNCTIONS
**********************/
static void * malloc_cb(size_t size_bytes, lv_color_format_t color_format)
{
LV_UNUSED(color_format);
/*Allocate larger memory to be sure it can be aligned as needed*/
size_bytes += LV_DRAW_BUF_ALIGN - 1;
uint32_t cache_max_size = lv_cache_get_max_size(img_cache_p, NULL);
if(size_bytes > cache_max_size) {
LV_LOG_ERROR("data size (%" LV_PRIu32 ") is larger than max size (%" LV_PRIu32 ")",
(uint32_t)size_bytes,
cache_max_size);
return NULL;
}
while(1) {
void * mem = mm_malloc(ctx->heap, size_bytes);
if(mem) return mem;
LV_LOG_INFO("appears to be out of memory. attempting to evict one cache entry. with allocated size %" LV_PRIu32,
(uint32_t)size_bytes);
bool evict_res = lv_cache_evict_one(img_cache_p, NULL);
if(evict_res == false) {
LV_LOG_ERROR("failed to evict one cache entry");
return NULL;
}
}
}
static void free_cb(void * draw_buf)
{
mm_free(ctx->heap, draw_buf);
}
#endif /* LV_USE_NUTTX */
#endif /* LV_CACHE_DEF_SIZE > 0 */
|