6707561dafe20b7b537c63e315ca67c9c90dcb2e
[bertos.git] / bertos / io / kblock_ram.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
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.
10  *
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.
15  *
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
19  *
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.
28  *
29  * Copyright 2009 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \author Francesco Sacchi <batt@develer.com>
34  *
35  * \brief KBlock interface
36  */
37
38
39 #include "kblock_ram.h"
40 #include <string.h>
41
42
43 static int kblockram_load(KBlock *b, block_idx_t index)
44 {
45         KBlockRam *r = KBLOCKRAM_CAST(b);
46         memcpy(r->b.priv.pagebuf, r->membuf + index * r->b.blk_size, r->b.blk_size);
47         return 0;
48 }
49
50 static int kblockram_store(struct KBlock *b, block_idx_t index)
51 {
52         KBlockRam *r = KBLOCKRAM_CAST(b);
53         memcpy(r->membuf + index * r->b.blk_size, r->b.priv.pagebuf, r->b.blk_size);
54         return 0;
55 }
56
57 static size_t kblockram_readBuf(struct KBlock *b, void *buf, size_t offset, size_t size)
58 {
59         KBlockRam *r = KBLOCKRAM_CAST(b);
60         memcpy(buf, (uint8_t *)r->b.priv.pagebuf + offset, size);
61         return size;
62 }
63
64 static size_t kblockram_writeBuf(struct KBlock *b, const void *buf, size_t offset, size_t size)
65 {
66         KBlockRam *r = KBLOCKRAM_CAST(b);
67         memcpy((uint8_t *)r->b.priv.pagebuf + offset, buf, size);
68         return size;
69 }
70
71 static void * kblockram_map(struct KBlock *b, size_t offset, UNUSED_ARG(size_t, size))
72 {
73         return (uint8_t *)b->priv.pagebuf + offset;
74 }
75
76
77 static int kblockram_unmap(UNUSED_ARG(struct KBlock *, b), UNUSED_ARG(size_t, offset), UNUSED_ARG(size_t, size))
78 {
79         return 0;
80 }
81
82 static int kblockram_error(struct KBlock *b)
83 {
84         return b->priv.flags;
85 }
86
87 static int kblockram_dummy(UNUSED_ARG(struct KBlock *,b))
88 {
89         return 0;
90 }
91
92 static KBlockVTable kblockram_vt =
93 {
94         .readBuf = kblockram_readBuf,
95         .writeBuf = kblockram_writeBuf,
96         .load = kblockram_load,
97         .store = kblockram_store,
98         .map = kblockram_map,
99         .unmap = kblockram_unmap,
100         .error = kblockram_error,
101         .clearerr = kblockram_dummy,
102         .close = kblockram_dummy,
103 };
104
105 void kblockram_init(KBlockRam *ram, void *buf, size_t size, size_t block_size)
106 {
107         ASSERT(buf);
108         ASSERT(size);
109         ASSERT(block_size);
110
111         memset(ram, 0, sizeof(*ram));
112         
113         // First page used as page buffer
114         ram->b.blk_cnt = (size / block_size) - 1;
115         ram->b.priv.pagebuf = buf;
116         ram->b.priv.pagebuf_size = block_size;
117         
118         ram->membuf = (uint8_t *)buf + block_size;
119         ram->b.blk_size = block_size;   
120         ram->b.vt = &kblockram_vt;
121 }