Write back cache mode.
[lwext4.git] / lwext4 / ext4_bcache.h
1 /*\r
2  * Copyright (c) 2013 Grzegorz Kostka (kostka.grzegorz@gmail.com)\r
3  * All rights reserved.\r
4  *\r
5  * Redistribution and use in source and binary forms, with or without\r
6  * modification, are permitted provided that the following conditions\r
7  * are met:\r
8  *\r
9  * - Redistributions of source code must retain the above copyright\r
10  *   notice, this list of conditions and the following disclaimer.\r
11  * - Redistributions in binary form must reproduce the above copyright\r
12  *   notice, this list of conditions and the following disclaimer in the\r
13  *   documentation and/or other materials provided with the distribution.\r
14  * - The name of the author may not be used to endorse or promote products\r
15  *   derived from this software without specific prior written permission.\r
16  *\r
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\r
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\r
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\r
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\r
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
27  */\r
28 \r
29 /** @addtogroup lwext4\r
30  * @{\r
31  */\r
32 /**\r
33  * @file  ext4_bcache.h\r
34  * @brief Block cache allocator.\r
35  */\r
36 \r
37 #ifndef EXT4_BCACHE_H_\r
38 #define EXT4_BCACHE_H_\r
39 \r
40 #include <ext4_config.h>\r
41 \r
42 #include <stdint.h>\r
43 #include <stdbool.h>\r
44 \r
45 /**@brief   Single block descriptor.*/\r
46 struct ext4_block {\r
47     /**@brief   Dirty flag.*/\r
48     bool dirty;\r
49 \r
50     /**@brief   Logical block ID*/\r
51     uint64_t lb_id;\r
52 \r
53     /**@brief   Cache id*/\r
54     uint32_t cache_id;\r
55 \r
56     /**@brief   Data buffer.*/\r
57     uint8_t *data;\r
58 };\r
59 \r
60 \r
61 /**@brief   Block cache descriptor.*/\r
62 struct ext4_bcache {\r
63 \r
64     /**@brief   Item count in block cache*/\r
65     uint32_t cnt;\r
66 \r
67     /**@brief   Item size in block cache*/\r
68     uint32_t itemsize;\r
69 \r
70     /**@brief   Last recently used counter.*/\r
71     uint32_t lru_ctr;\r
72 \r
73     /**@brief   Reference count table (cnt).*/\r
74     uint32_t *refctr;\r
75 \r
76     /**@brief   Last recently used ID table (cnt)*/\r
77     uint32_t *lru_id;\r
78 \r
79     /**@brief   Writeback free delay mode table (cnt)*/\r
80     uint8_t *free_delay;\r
81 \r
82     /**@brief   Logical block table (cnt).*/\r
83     uint64_t *lba;\r
84 \r
85     /**@brief   Dirty mark (cnt).*/\r
86     bool *dirty;\r
87 \r
88     /**@brief   Cache data buffers (cnt * itemsize)*/\r
89     uint8_t *data;\r
90 \r
91     /**@brief   Currently referenced datablocks*/\r
92     uint32_t ref_blocks;\r
93 \r
94     /**@brief   Maximum referenced datablocks*/\r
95     uint32_t max_ref_blocks;\r
96 \r
97 };\r
98 \r
99 /**@brief   Static initializer of block cache structure.*/\r
100 #define EXT4_BCACHE_STATIC_INSTANCE(__name, __cnt, __itemsize)      \\r
101         static uint32_t __name##_refctr[(__cnt)];                   \\r
102         static uint32_t __name##_lru_id[(__cnt)];                   \\r
103         static uint8_t  __name##_free_delay[(__cnt)];               \\r
104         static uint64_t __name##_lba[(__cnt)];                      \\r
105         static bool     __name##_dirty[(__cnt)];                    \\r
106         static uint8_t  __name##_data[(__cnt) * (__itemsize)];      \\r
107         static struct ext4_bcache __name = {                        \\r
108                 .cnt     = __cnt,                                   \\r
109                 .itemsize  = __itemsize,                            \\r
110                 .lru_ctr   = 0,                                     \\r
111                 .refctr    = __name##_refctr,                       \\r
112                 .lru_id    = __name##_lru_id,                       \\r
113                 .lba    = __name##_lba,                             \\r
114                 .dirty    = __name##_dirty,                         \\r
115                 .free_delay= __name##_free_delay,                   \\r
116                 .data    = __name##_data,                           \\r
117         }\r
118 \r
119 \r
120 /**@brief   Dynamic initialization of block cache.\r
121  * @param   bc block cache descriptor\r
122  * @param   cnt items count in block cache\r
123  * @param   itemsize single item size (in bytes)\r
124  * @return  standard error code*/\r
125 int ext4_bcache_init_dynamic(struct ext4_bcache *bc, uint32_t cnt,\r
126     uint32_t itemsize);\r
127 \r
128 /**@brief   Dynamic de-initialization of block cache.\r
129  * @param   bc block cache descriptor\r
130  * @return  standard error code*/\r
131 int ext4_bcache_fini_dynamic(struct ext4_bcache *bc);\r
132 \r
133 /**@brief   Allocate block from block cache memory.\r
134  *          Unreferenced block allocation is based on LRU\r
135  *          (Last Recently Used) algorithm.\r
136  * @param   bc block cache descriptor\r
137  * @param   b block to alloc\r
138  * @param   is_new block is new (needs to be read)\r
139  * @return  standard error code*/\r
140 int ext4_bcache_alloc(struct ext4_bcache *bc, struct ext4_block *b,\r
141     bool *is_new);\r
142 \r
143 /**@brief   Free block from cache memory (decrement reference counter).\r
144  * @param   bc block cache descriptor\r
145  * @param   b block to free\r
146  * @param   cache writeback mode\r
147  * @return  standard error code*/\r
148 int ext4_bcache_free (struct ext4_bcache *bc, struct ext4_block *b,\r
149     uint8_t free_delay);\r
150 \r
151 \r
152 /**@brief   Return a full status of block cache.\r
153  * @param   bc block cache descriptor\r
154  * @return  full status*/\r
155 bool ext4_bcache_is_full(struct ext4_bcache *bc);\r
156 \r
157 #endif /* EXT4_BCACHE_H_ */\r
158 \r
159 /**\r
160  * @}\r
161  */\r