4 * This file is part of BeRTOS.
6 * Bertos is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
33 * \author Francesco Sacchi <batt@develer.com>
35 * \brief KBlock interface on RAM memory
37 * \author Francesco Sacchi <batt@develer.com>
39 * $WIZ$ module_name = "kfile_ram"
40 * $WIZ$ module_depends = "kblock"
44 #include "kblock_ram.h"
48 static int kblockram_load(KBlock *b, block_idx_t index)
50 KBlockRam *r = KBLOCKRAM_CAST(b);
51 memcpy(r->b.priv.buf, r->membuf + index * r->b.blk_size, r->b.blk_size);
55 static int kblockram_store(struct KBlock *b, block_idx_t index)
57 KBlockRam *r = KBLOCKRAM_CAST(b);
58 memcpy(r->membuf + index * r->b.blk_size, r->b.priv.buf, r->b.blk_size);
62 static size_t kblockram_readBuf(struct KBlock *b, void *buf, size_t offset, size_t size)
64 KBlockRam *r = KBLOCKRAM_CAST(b);
65 memcpy(buf, (uint8_t *)r->b.priv.buf + offset, size);
69 static size_t kblockram_readDirect(struct KBlock *b, block_idx_t index, void *buf, size_t offset, size_t size)
71 KBlockRam *r = KBLOCKRAM_CAST(b);
72 memcpy(buf, r->membuf + index * r->b.blk_size + offset, size);
76 static size_t kblockram_writeBuf(struct KBlock *b, const void *buf, size_t offset, size_t size)
78 KBlockRam *r = KBLOCKRAM_CAST(b);
79 memcpy((uint8_t *)r->b.priv.buf + offset, buf, size);
83 static size_t kblockram_writeDirect(struct KBlock *b, block_idx_t index, const void *buf, size_t offset, size_t size)
85 KBlockRam *r = KBLOCKRAM_CAST(b);
87 ASSERT(index < b->blk_cnt);
89 memcpy(r->membuf + index * r->b.blk_size + offset, buf, size);
93 static int kblockram_dummy(UNUSED_ARG(struct KBlock *,b))
98 static const KBlockVTable kblockram_hwbuffered_vt =
100 .readDirect = kblockram_readDirect,
102 .readBuf = kblockram_readBuf,
103 .writeBuf = kblockram_writeBuf,
104 .load = kblockram_load,
105 .store = kblockram_store,
107 .error = kblockram_dummy,
108 .clearerr = (kblock_clearerr_t)kblockram_dummy,
109 .close = kblockram_dummy,
113 static const KBlockVTable kblockram_swbuffered_vt =
115 .readDirect = kblockram_readDirect,
116 .writeDirect = kblockram_writeDirect,
118 .readBuf = kblock_swReadBuf,
119 .writeBuf = kblock_swWriteBuf,
120 .load = kblock_swLoad,
121 .store = kblock_swStore,
123 .error = kblockram_dummy,
124 .clearerr = (kblock_clearerr_t)kblockram_dummy,
125 .close = kblockram_dummy,
128 static const KBlockVTable kblockram_unbuffered_vt =
130 .readDirect = kblockram_readDirect,
131 .writeDirect = kblockram_writeDirect,
133 .error = kblockram_dummy,
134 .clearerr = (kblock_clearerr_t)kblockram_dummy,
135 .close = kblockram_dummy,
138 void kblockram_init(KBlockRam *ram, void *buf, size_t size, size_t block_size, bool buffered, bool hwbuffered)
144 memset(ram, 0, sizeof(*ram));
146 DB(ram->b.priv.type = KBT_KBLOCKRAM);
147 ram->b.blk_size = block_size;
148 ram->b.priv.flags |= KB_PARTIAL_WRITE;
152 ram->b.priv.flags |= KB_BUFFERED;
153 ram->b.blk_cnt = (size / block_size) - 1;
154 ram->b.priv.buf = buf;
155 // First page used as page buffer
156 ram->membuf = (uint8_t *)buf + block_size;
159 ram->b.priv.vt = &kblockram_hwbuffered_vt;
161 ram->b.priv.vt = &kblockram_swbuffered_vt;
163 kblockram_load(&ram->b, 0);
167 ram->b.blk_cnt = (size / block_size);
168 ram->membuf = (uint8_t *)buf;
169 ram->b.priv.vt = &kblockram_unbuffered_vt;