source: rtems/cpukit/libfs/src/jffs2/src/os-rtems.h @ 6ac6a5c8

5
Last change on this file since 6ac6a5c8 was b17bcb3, checked in by Sebastian Huber <sebastian.huber@…>, on 12/13/17 at 05:18:28

JFFS2: Use self-contained recursive mutex

Update #2843.

  • Property mode set to 100644
File size: 6.7 KB
Line 
1/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
4 * Copyright © 2002-2003 Free Software Foundation, Inc.
5 * Copyright © 2013 embedded brains GmbH <rtems@embedded-brains.de>
6 *
7 * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
8 *
9 * Port to the RTEMS by embedded brains GmbH.
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 unsigned char * name, size_t len) {
45
46        uint32_t hash = 0;
47        while (len--) {
48                hash = (hash << 4) | (hash >> 28);
49                hash ^= *(name++);
50        }
51        return hash;
52}
53
54/* NAND flash not currently supported on RTEMS */
55#define jffs2_can_mark_obsolete(c) (1)
56
57#define JFFS2_INODE_INFO(i) (&(i)->jffs2_i)
58#define OFNI_EDONI_2SFFJ(f)  ((struct _inode *) ( ((char *)f) - ((char *)(&((struct _inode *)NULL)->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
101struct super_block {
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};
111
112#define sleep_on_spinunlock(wq, sl) spin_unlock(sl)
113#define EBADFD 32767
114
115static inline bool jffs2_is_readonly(struct jffs2_sb_info *c)
116{
117        struct super_block *sb = OFNI_BS_2SFFJ(c);
118
119        return sb->s_is_readonly;
120}
121
122static inline void jffs2_garbage_collect_trigger(struct jffs2_sb_info *c)
123{
124        const struct super_block *sb = OFNI_BS_2SFFJ(c);
125        rtems_jffs2_flash_control *fc = sb->s_flash_control;
126
127        if (fc->trigger_garbage_collection != NULL) {
128                (*fc->trigger_garbage_collection)(fc);
129        }
130}
131
132/* fs-rtems.c */
133struct _inode *jffs2_new_inode (struct _inode *dir_i, int mode, struct jffs2_raw_inode *ri);
134struct _inode *jffs2_iget(struct super_block *sb, cyg_uint32 ino);
135void jffs2_iput(struct _inode * i);
136void jffs2_gc_release_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f);
137struct jffs2_inode_info *jffs2_gc_fetch_inode(struct jffs2_sb_info *c, int inum, int nlink);
138unsigned char *jffs2_gc_fetch_page(struct jffs2_sb_info *c, struct jffs2_inode_info *f,
139                                   unsigned long offset, unsigned long *priv);
140void jffs2_gc_release_page(struct jffs2_sb_info *c, unsigned char *pg, unsigned long *priv);
141
142/* Avoid polluting RTEMS namespace with names not starting in jffs2_ */
143#define os_to_jffs2_mode(x) jffs2_from_os_mode(x)
144static inline uint32_t jffs2_from_os_mode(uint32_t osmode)
145{
146  return osmode & (S_IFMT | S_IRWXU | S_IRWXG | S_IRWXO);
147}
148
149static inline uint32_t jffs2_to_os_mode (uint32_t jmode)
150{
151  return jmode & (S_IFMT | S_IRWXU | S_IRWXG | S_IRWXO);
152}
153
154
155/* flashio.c */
156int jffs2_flash_read(struct jffs2_sb_info *c, cyg_uint32 read_buffer_offset,
157                          const size_t size, size_t * return_size, unsigned char * write_buffer);
158int jffs2_flash_write(struct jffs2_sb_info *c, cyg_uint32 write_buffer_offset,
159                           const size_t size, size_t * return_size, unsigned char * read_buffer);
160int jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct iovec *vecs,
161                              unsigned long count, loff_t to, size_t *retlen);
162int jffs2_flash_erase(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
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#ifndef CONFIG_JFFS2_FS_WRITEBUFFER
179#define SECTOR_ADDR(x) ( ((unsigned long)(x) & ~(c->sector_size-1)) )
180#define jffs2_can_mark_obsolete(c) (1)
181#define jffs2_is_writebuffered(c) (0)
182#define jffs2_cleanmarker_oob(c) (0)
183#define jffs2_write_nand_cleanmarker(c,jeb) (-EIO)
184
185#define jffs2_flush_wbuf_pad(c) (c=c)
186#define jffs2_flush_wbuf_gc(c, i) ({ (void)(c), (void) i, 0; })
187#define jffs2_nand_read_failcnt(c,jeb) do { ; } while(0)
188#define jffs2_write_nand_badblock(c,jeb,p) (0)
189#define jffs2_flash_setup(c) (0)
190#define jffs2_nand_flash_cleanup(c) do {} while(0)
191#define jffs2_wbuf_dirty(c) (0)
192#define jffs2_flash_writev(a,b,c,d,e,f) jffs2_flash_direct_writev(a,b,c,d,e)
193#define jffs2_wbuf_timeout NULL
194#define jffs2_wbuf_process NULL
195#define jffs2_nor_ecc(c) (0)
196#else
197#error no nand yet
198#endif
199
200#ifndef BUG_ON
201#define BUG_ON(x) do { if (unlikely(x)) BUG(); } while(0)
202#endif
203
204#define __init
205
206#endif /* __JFFS2_OS_RTEMS_H__ */
Note: See TracBrowser for help on using the repository browser.