RTEMS 6.1-rc1
os-rtems.h
1/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
4 * Copyright © 2002-2003 Free Software Foundation, Inc.
5 * Copyright © 2013 embedded brains GmbH & Co. KG
6 *
7 * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
8 *
9 * Port to the RTEMS by embedded brains GmbH & Co. KG
10 *
11 * For licensing information, see the file 'LICENCE' in this directory.
12 *
13 * $Id: os-ecos.h,v 1.24 2005/02/09 09:23:55 pavlov Exp $
14 *
15 */
16
17#ifndef __JFFS2_OS_RTEMS_H__
18#define __JFFS2_OS_RTEMS_H__
19
20#include <asm/atomic.h>
21#include <asm/bug.h>
22#include <linux/compiler.h>
23#include <linux/list.h>
24#include <linux/pagemap.h>
25#include <linux/stat.h>
26#include <linux/types.h>
27#include <sys/uio.h>
28#include <dirent.h>
29#include <errno.h>
30#include <fcntl.h>
31#include <string.h>
32#include <time.h>
33
34#include <rtems/jffs2.h>
35#include <rtems/thread.h>
36
37#define CONFIG_JFFS2_RTIME
38
39#define CONFIG_JFFS2_ZLIB
40
41struct _inode;
42struct super_block;
43
44static inline unsigned int full_name_hash(const void *salt, const unsigned char * name, size_t len) {
45
46 uint32_t hash = 0;
47 (void)salt;
48 while (len--) {
49 hash = (hash << 4) | (hash >> 28);
50 hash ^= *(name++);
51 }
52 return hash;
53}
54
55#define container_of(a, b, c) RTEMS_CONTAINER_OF(a, b, c)
56
57#define JFFS2_INODE_INFO(i) (&(i)->jffs2_i)
58#define OFNI_EDONI_2SFFJ(f) RTEMS_CONTAINER_OF(f, struct _inode, jffs2_i)
59
60#define ITIME(sec) (sec)
61#define I_SEC(tv) (tv)
62
63#define JFFS2_F_I_SIZE(f) (OFNI_EDONI_2SFFJ(f)->i_size)
64#define JFFS2_F_I_MODE(f) (OFNI_EDONI_2SFFJ(f)->i_mode)
65#define JFFS2_F_I_UID(f) (OFNI_EDONI_2SFFJ(f)->i_uid)
66#define JFFS2_F_I_GID(f) (OFNI_EDONI_2SFFJ(f)->i_gid)
67#define JFFS2_F_I_CTIME(f) (OFNI_EDONI_2SFFJ(f)->i_ctime)
68#define JFFS2_F_I_MTIME(f) (OFNI_EDONI_2SFFJ(f)->i_mtime)
69#define JFFS2_F_I_ATIME(f) (OFNI_EDONI_2SFFJ(f)->i_atime)
70
71#define get_seconds() time(NULL)
72
73struct _inode {
74 cyg_uint32 i_ino;
75
76 int i_count;
77 mode_t i_mode;
78 nlink_t i_nlink; // Could we dispense with this?
79 uid_t i_uid;
80 gid_t i_gid;
81 time_t i_atime;
82 time_t i_mtime;
83 time_t i_ctime;
84// union {
85 unsigned short i_rdev; // For devices only
86 struct _inode * i_parent; // For directories only
87 off_t i_size; // For files only
88// };
89 struct super_block * i_sb;
90 struct jffs2_full_dirent * i_fd;
91
92 struct jffs2_inode_info jffs2_i;
93
94 struct _inode * i_cache_prev; // We need doubly-linked?
95 struct _inode * i_cache_next;
96};
97
98#define JFFS2_SB_INFO(sb) (&(sb)->jffs2_sb)
99#define OFNI_BS_2SFFJ(c) ((struct super_block *) ( ((char *)c) - ((char *)(&((struct super_block *)NULL)->jffs2_sb)) ) )
100
102 struct jffs2_sb_info jffs2_sb;
103 struct _inode * s_root;
104 rtems_jffs2_flash_control *s_flash_control;
105 rtems_jffs2_compressor_control *s_compressor_control;
106 bool s_is_readonly;
107 unsigned char s_gc_buffer[PAGE_CACHE_SIZE]; // Avoids malloc when user may be under memory pressure
108 rtems_recursive_mutex s_mutex;
109 char s_name_buf[JFFS2_MAX_NAME_LEN];
110 uint32_t s_flags;
111};
112
113#define sleep_on_spinunlock(wq, sl) spin_unlock(sl)
114#define EBADFD 32767
115
116static inline bool jffs2_is_readonly(struct jffs2_sb_info *c)
117{
118 struct super_block *sb = OFNI_BS_2SFFJ(c);
119
120 return sb->s_is_readonly;
121}
122
123static inline void jffs2_garbage_collect_trigger(struct jffs2_sb_info *c)
124{
125 const struct super_block *sb = OFNI_BS_2SFFJ(c);
126 rtems_jffs2_flash_control *fc = sb->s_flash_control;
127
128 if (fc->trigger_garbage_collection != NULL) {
130 }
131}
132
133/* fs-rtems.c */
134struct _inode *jffs2_new_inode (struct _inode *dir_i, int mode, struct jffs2_raw_inode *ri);
135struct _inode *jffs2_iget(struct super_block *sb, cyg_uint32 ino);
136void jffs2_iput(struct _inode * i);
137void jffs2_gc_release_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f);
138struct jffs2_inode_info *jffs2_gc_fetch_inode(struct jffs2_sb_info *c, int inum, int nlink);
139
140/* Avoid polluting RTEMS namespace with names not starting in jffs2_ */
141#define os_to_jffs2_mode(x) jffs2_from_os_mode(x)
142static inline uint32_t jffs2_from_os_mode(uint32_t osmode)
143{
144 return osmode & (S_IFMT | S_IRWXU | S_IRWXG | S_IRWXO);
145}
146
147static inline uint32_t jffs2_to_os_mode (uint32_t jmode)
148{
149 return jmode & (S_IFMT | S_IRWXU | S_IRWXG | S_IRWXO);
150}
151
152
153/* flashio.c */
154int jffs2_flash_read(struct jffs2_sb_info *c, loff_t read_buffer_offset,
155 size_t size, size_t * return_size, unsigned char * write_buffer);
156int jffs2_flash_write(struct jffs2_sb_info *c, loff_t write_buffer_offset,
157 size_t size, size_t * return_size, const unsigned char * read_buffer);
158int jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct iovec *vecs,
159 unsigned long count, loff_t to, size_t *retlen);
160int jffs2_flash_erase(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
161int jffs2_flash_direct_write(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, const u_char *buf);
162int jffs2_flash_direct_read(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, u_char *buf);
163
164// dir-rtems.c
165struct _inode *jffs2_lookup(struct _inode *dir_i, const unsigned char *name, size_t namelen);
166int jffs2_create(struct _inode *dir_i, const char *d_name, size_t d_namelen, int mode);
167int jffs2_mknod(struct _inode *dir_i, const unsigned char *d_name, size_t d_namelen, int mode, const unsigned char *data, size_t datalen);
168int jffs2_link (struct _inode *old_d_inode, struct _inode *dir_i, const unsigned char *d_name, size_t d_namelen);
169int jffs2_unlink(struct _inode *dir_i, struct _inode *d_inode, const unsigned char *d_name, size_t d_namelen);
170int jffs2_rmdir (struct _inode *dir_i, struct _inode *d_inode, const unsigned char *d_name, size_t d_namelen);
171int jffs2_rename (struct _inode *old_dir_i, struct _inode *d_inode, const unsigned char *old_d_name, size_t old_d_namelen,
172 struct _inode *new_dir_i, const unsigned char *new_d_name, size_t new_d_namelen);
173
174/* erase.c */
175static inline void jffs2_erase_pending_trigger(struct jffs2_sb_info *c)
176{ }
177
178#define SECTOR_ADDR(x) ( ((unsigned long)(x) & ~(c->sector_size-1)) )
179#ifndef CONFIG_JFFS2_FS_WRITEBUFFER
180
181#define jffs2_can_mark_obsolete(c) (1)
182#define jffs2_is_writebuffered(c) (0)
183#define jffs2_cleanmarker_oob(c) (0)
184#define jffs2_write_nand_cleanmarker(c,jeb) (-EIO)
185
186#define jffs2_flush_wbuf_pad(c) (c=c)
187#define jffs2_flush_wbuf_gc(c, i) ({ (void)(c), (void) i, 0; })
188#define jffs2_nand_read_failcnt(c,jeb) do { ; } while(0)
189#define jffs2_write_nand_badblock(c,jeb,p) (0)
190#define jffs2_flash_setup(c) (0)
191#define jffs2_nand_flash_cleanup(c) do {} while(0)
192#define jffs2_wbuf_dirty(c) (0)
193#define jffs2_flash_writev(a,b,c,d,e,f) jffs2_flash_direct_writev(a,b,c,d,e)
194#define jffs2_wbuf_timeout NULL
195#define jffs2_wbuf_process NULL
196#define jffs2_nor_ecc(c) (0)
197#else /* CONFIG_JFFS2_FS_WRITEBUFFER */
198/* dirty_writeback_interval is in centiseconds, 500cs == 5s */
199#define dirty_writeback_interval 500
200#define MTD_BIT_WRITEABLE 0x800
201#define jffs2_is_writebuffered(c) (c->wbuf != NULL)
202
203#define jffs2_can_mark_obsolete(c) (OFNI_BS_2SFFJ(c)->s_flash_control->block_is_bad == NULL)
204
205#define jffs2_cleanmarker_oob(c) (OFNI_BS_2SFFJ(c)->s_flash_control->block_is_bad != NULL)
206
207#define jffs2_wbuf_dirty(c) (!!(c)->wbuf_len)
208
209/* wbuf.c */
210int jffs2_flash_writev(struct jffs2_sb_info *c, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen, uint32_t ino);
211int jffs2_check_oob_empty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,int mode);
212int jffs2_check_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
213int jffs2_write_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
214int jffs2_write_nand_badblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset);
215void jffs2_wbuf_timeout(unsigned long data);
216void jffs2_wbuf_process(void *data);
217int jffs2_flush_wbuf_gc(struct jffs2_sb_info *c, uint32_t ino);
218int jffs2_flush_wbuf_pad(struct jffs2_sb_info *c);
219int jffs2_nand_flash_setup(struct jffs2_sb_info *c);
220void jffs2_nand_flash_cleanup(struct jffs2_sb_info *c);
221int jffs2_flash_block_is_bad(struct jffs2_sb_info * c,
222 cyg_uint32 block_offset,
223 bool *bad);
224int jffs2_flash_block_mark_bad(struct jffs2_sb_info * c,
225 cyg_uint32 block_offset);
226int jffs2_flash_oob_write(struct jffs2_sb_info * c,
227 cyg_uint32 block_offset,
228 uint8_t *oobbuf,
229 uint32_t ooblen);
230int jffs2_flash_oob_read(struct jffs2_sb_info * c,
231 cyg_uint32 block_offset,
232 uint8_t *oobbuf,
233 uint32_t ooblen);
234int jffs2_flash_get_oob_size(struct jffs2_sb_info * c);
235
236int jffs2_dataflash_setup(struct jffs2_sb_info *c);
237void jffs2_dataflash_cleanup(struct jffs2_sb_info *c);
238int jffs2_ubivol_setup(struct jffs2_sb_info *c);
239void jffs2_ubivol_cleanup(struct jffs2_sb_info *c);
240
241int jffs2_nor_wbuf_flash_setup(struct jffs2_sb_info *c);
242void jffs2_nor_wbuf_flash_cleanup(struct jffs2_sb_info *c);
243void jffs2_dirty_trigger(struct jffs2_sb_info *c);
244
245#endif /* CONFIG_JFFS2_FS_WRITEBUFFER */
246
247#ifndef BUG_ON
248#define BUG_ON(x) do { if (unlikely(x)) BUG(); } while(0)
249#endif
250
251#define __init
252
253#endif /* __JFFS2_OS_RTEMS_H__ */
#define NULL
Requests a GPIO pin group configuration.
Definition: xil_types.h:54
Definition: os-rtems.h:73
Definition: nodelist.h:278
Definition: nodelist.h:252
Definition: jffs2_fs_i.h:20
Definition: jffs2.h:133
Definition: jffs2_fs_sb.h:51
JFFS2 compressor control.
Definition: jffs2.h:506
JFFS2 flash device control.
Definition: jffs2.h:355
rtems_jffs2_trigger_garbage_collection trigger_garbage_collection
Trigger garbage collection operation.
Definition: jffs2.h:439
Definition: os-rtems.h:101
unsigned size
Definition: tte.h:1
This header file provides the API of Self-Contained Objects.