Load first page.
[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 2010 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->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->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, r->pagebuf + offset, size);
61         return size;
62 }
63
64 static size_t kblockram_readDirect(struct KBlock *b, block_idx_t index, void *buf, size_t offset, size_t size)
65 {
66         KBlockRam *r = KBLOCKRAM_CAST(b);
67         memcpy(buf, r->membuf + index * r->b.blk_size + offset, size);
68         return size;
69 }
70
71 static size_t kblockram_writeBuf(struct KBlock *b, const void *buf, size_t offset, size_t size)
72 {
73         KBlockRam *r = KBLOCKRAM_CAST(b);
74         memcpy(r->pagebuf + offset, buf, size);
75         return size;
76 }
77
78 static int kblockram_error(struct KBlock *b)
79 {
80         return b->priv.flags;
81 }
82
83 static int kblockram_dummy(UNUSED_ARG(struct KBlock *,b))
84 {
85         return 0;
86 }
87
88 static KBlockVTable kblockram_vt =
89 {
90         .readDirect = kblockram_readDirect,
91         .readBuf = kblockram_readBuf,
92         .writeBuf = kblockram_writeBuf,
93         .load = kblockram_load,
94         .store = kblockram_store,
95
96         .error = kblockram_error,
97         .clearerr = kblockram_dummy,
98         .close = kblockram_dummy,
99 };
100
101 void kblockram_init(KBlockRam *ram, void *buf, size_t size, size_t block_size)
102 {
103         ASSERT(buf);
104         ASSERT(size);
105         ASSERT(block_size);
106
107         memset(ram, 0, sizeof(*ram));
108
109         DB(ram->b.priv.type = KBT_KBLOCKRAM);
110
111         // First page used as page buffer
112         ram->b.blk_cnt = (size / block_size) - 1;
113         ram->pagebuf = (uint8_t *)buf;
114         ram->membuf = (uint8_t *)buf + block_size;
115         ram->b.blk_size = block_size;
116         ram->b.priv.vt = &kblockram_vt;
117         kblockram_load(&ram->b, 0);
118 }