c3c1619fb1372e5ac8ecad8d523fbc75692e057b
[safe/jmp/linux-2.6] / fs / jffs2 / os-linux.h
1 /*
2  * JFFS2 -- Journalling Flash File System, Version 2.
3  *
4  * Copyright (C) 2002-2003 Red Hat, Inc.
5  *
6  * Created by David Woodhouse <dwmw2@infradead.org>
7  *
8  * For licensing information, see the file 'LICENCE' in this directory.
9  *
10  * $Id: os-linux.h,v 1.60 2005/08/06 04:51:30 nico Exp $
11  *
12  */
13
14 #ifndef __JFFS2_OS_LINUX_H__
15 #define __JFFS2_OS_LINUX_H__
16
17 /* JFFS2 uses Linux mode bits natively -- no need for conversion */
18 #define os_to_jffs2_mode(x) (x)
19 #define jffs2_to_os_mode(x) (x)
20
21 struct kstatfs;
22 struct kvec;
23
24 #define JFFS2_INODE_INFO(i) (list_entry(i, struct jffs2_inode_info, vfs_inode))
25 #define OFNI_EDONI_2SFFJ(f)  (&(f)->vfs_inode)
26 #define JFFS2_SB_INFO(sb) (sb->s_fs_info)
27 #define OFNI_BS_2SFFJ(c)  ((struct super_block *)c->os_priv)
28
29
30 #define JFFS2_F_I_SIZE(f) (OFNI_EDONI_2SFFJ(f)->i_size)
31 #define JFFS2_F_I_MODE(f) (OFNI_EDONI_2SFFJ(f)->i_mode)
32 #define JFFS2_F_I_UID(f) (OFNI_EDONI_2SFFJ(f)->i_uid)
33 #define JFFS2_F_I_GID(f) (OFNI_EDONI_2SFFJ(f)->i_gid)
34
35 #define JFFS2_F_I_RDEV_MIN(f) (iminor(OFNI_EDONI_2SFFJ(f)))
36 #define JFFS2_F_I_RDEV_MAJ(f) (imajor(OFNI_EDONI_2SFFJ(f)))
37
38 #define ITIME(sec) ((struct timespec){sec, 0})
39 #define I_SEC(tv) ((tv).tv_sec)
40 #define JFFS2_F_I_CTIME(f) (OFNI_EDONI_2SFFJ(f)->i_ctime.tv_sec)
41 #define JFFS2_F_I_MTIME(f) (OFNI_EDONI_2SFFJ(f)->i_mtime.tv_sec)
42 #define JFFS2_F_I_ATIME(f) (OFNI_EDONI_2SFFJ(f)->i_atime.tv_sec)
43
44 #define sleep_on_spinunlock(wq, s)                              \
45         do {                                                    \
46                 DECLARE_WAITQUEUE(__wait, current);             \
47                 add_wait_queue((wq), &__wait);                  \
48                 set_current_state(TASK_UNINTERRUPTIBLE);        \
49                 spin_unlock(s);                                 \
50                 schedule();                                     \
51                 remove_wait_queue((wq), &__wait);               \
52         } while(0)
53
54 static inline void jffs2_init_inode_info(struct jffs2_inode_info *f)
55 {
56         f->highest_version = 0;
57         f->fragtree = RB_ROOT;
58         f->metadata = NULL;
59         f->dents = NULL;
60         f->target = NULL;
61         f->flags = 0;
62         f->usercompr = 0;
63 }
64
65
66 #define jffs2_is_readonly(c) (OFNI_BS_2SFFJ(c)->s_flags & MS_RDONLY)
67
68 #ifndef CONFIG_JFFS2_FS_WRITEBUFFER
69 #define SECTOR_ADDR(x) ( ((unsigned long)(x) & ~(c->sector_size-1)) )
70 #define jffs2_can_mark_obsolete(c) (1)
71 #define jffs2_is_writebuffered(c) (0)
72 #define jffs2_cleanmarker_oob(c) (0)
73 #define jffs2_write_nand_cleanmarker(c,jeb) (-EIO)
74
75 #define jffs2_flash_write(c, ofs, len, retlen, buf) ((c)->mtd->write((c)->mtd, ofs, len, retlen, buf))
76 #define jffs2_flash_read(c, ofs, len, retlen, buf) ((c)->mtd->read((c)->mtd, ofs, len, retlen, buf))
77 #define jffs2_flush_wbuf_pad(c) ({ (void)(c), 0; })
78 #define jffs2_flush_wbuf_gc(c, i) ({ (void)(c), (void) i, 0; })
79 #define jffs2_write_nand_badblock(c,jeb,bad_offset) (1)
80 #define jffs2_nand_flash_setup(c) (0)
81 #define jffs2_nand_flash_cleanup(c) do {} while(0)
82 #define jffs2_wbuf_dirty(c) (0)
83 #define jffs2_flash_writev(a,b,c,d,e,f) jffs2_flash_direct_writev(a,b,c,d,e)
84 #define jffs2_wbuf_timeout NULL
85 #define jffs2_wbuf_process NULL
86 #define jffs2_nor_ecc(c) (0)
87 #define jffs2_dataflash(c) (0)
88 #define jffs2_nor_wbuf_flash(c) (0)
89 #define jffs2_nor_ecc_flash_setup(c) (0)
90 #define jffs2_nor_ecc_flash_cleanup(c) do {} while (0)
91 #define jffs2_dataflash_setup(c) (0)
92 #define jffs2_dataflash_cleanup(c) do {} while (0)
93 #define jffs2_nor_wbuf_flash_setup(c) (0)
94 #define jffs2_nor_wbuf_flash_cleanup(c) do {} while (0)
95
96 #else /* NAND and/or ECC'd NOR support present */
97
98 #define jffs2_is_writebuffered(c) (c->wbuf != NULL)
99 #define SECTOR_ADDR(x) ( ((unsigned long)(x) / (unsigned long)(c->sector_size)) * c->sector_size )
100 #define jffs2_can_mark_obsolete(c) \
101   ((c->mtd->type == MTD_NORFLASH && !(c->mtd->flags & (MTD_ECC|MTD_PROGRAM_REGIONS))) || \
102    c->mtd->type == MTD_RAM)
103 #define jffs2_cleanmarker_oob(c) (c->mtd->type == MTD_NANDFLASH)
104
105 #define jffs2_flash_write_oob(c, ofs, len, retlen, buf) ((c)->mtd->write_oob((c)->mtd, ofs, len, retlen, buf))
106 #define jffs2_flash_read_oob(c, ofs, len, retlen, buf) ((c)->mtd->read_oob((c)->mtd, ofs, len, retlen, buf))
107 #define jffs2_wbuf_dirty(c) (!!(c)->wbuf_len)
108
109 /* wbuf.c */
110 int jffs2_flash_writev(struct jffs2_sb_info *c, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen, uint32_t ino);
111 int jffs2_flash_write(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, const u_char *buf);
112 int jffs2_flash_read(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, u_char *buf);
113 int jffs2_check_oob_empty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,int mode);
114 int jffs2_check_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
115 int jffs2_write_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
116 int jffs2_write_nand_badblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset);
117 void jffs2_wbuf_timeout(unsigned long data);
118 void jffs2_wbuf_process(void *data);
119 int jffs2_flush_wbuf_gc(struct jffs2_sb_info *c, uint32_t ino);
120 int jffs2_flush_wbuf_pad(struct jffs2_sb_info *c);
121 int jffs2_nand_flash_setup(struct jffs2_sb_info *c);
122 void jffs2_nand_flash_cleanup(struct jffs2_sb_info *c);
123
124 #define jffs2_nor_ecc(c) (c->mtd->type == MTD_NORFLASH && (c->mtd->flags & MTD_ECC))
125 int jffs2_nor_ecc_flash_setup(struct jffs2_sb_info *c);
126 void jffs2_nor_ecc_flash_cleanup(struct jffs2_sb_info *c);
127
128 #define jffs2_dataflash(c) (c->mtd->type == MTD_DATAFLASH)
129 int jffs2_dataflash_setup(struct jffs2_sb_info *c);
130 void jffs2_dataflash_cleanup(struct jffs2_sb_info *c);
131
132 #define jffs2_nor_wbuf_flash(c) (c->mtd->type == MTD_NORFLASH && (c->mtd->flags & MTD_PROGRAM_REGIONS))
133 int jffs2_nor_wbuf_flash_setup(struct jffs2_sb_info *c);
134 void jffs2_nor_wbuf_flash_cleanup(struct jffs2_sb_info *c);
135
136 #endif /* WRITEBUFFER */
137
138 /* erase.c */
139 static inline void jffs2_erase_pending_trigger(struct jffs2_sb_info *c)
140 {
141         OFNI_BS_2SFFJ(c)->s_dirt = 1;
142 }
143
144 /* background.c */
145 int jffs2_start_garbage_collect_thread(struct jffs2_sb_info *c);
146 void jffs2_stop_garbage_collect_thread(struct jffs2_sb_info *c);
147 void jffs2_garbage_collect_trigger(struct jffs2_sb_info *c);
148
149 /* dir.c */
150 extern struct file_operations jffs2_dir_operations;
151 extern struct inode_operations jffs2_dir_inode_operations;
152
153 /* file.c */
154 extern struct file_operations jffs2_file_operations;
155 extern struct inode_operations jffs2_file_inode_operations;
156 extern struct address_space_operations jffs2_file_address_operations;
157 int jffs2_fsync(struct file *, struct dentry *, int);
158 int jffs2_do_readpage_unlock (struct inode *inode, struct page *pg);
159
160 /* ioctl.c */
161 int jffs2_ioctl(struct inode *, struct file *, unsigned int, unsigned long);
162
163 /* symlink.c */
164 extern struct inode_operations jffs2_symlink_inode_operations;
165
166 /* fs.c */
167 int jffs2_setattr (struct dentry *, struct iattr *);
168 void jffs2_read_inode (struct inode *);
169 void jffs2_clear_inode (struct inode *);
170 void jffs2_dirty_inode(struct inode *inode);
171 struct inode *jffs2_new_inode (struct inode *dir_i, int mode,
172                                struct jffs2_raw_inode *ri);
173 int jffs2_statfs (struct super_block *, struct kstatfs *);
174 void jffs2_write_super (struct super_block *);
175 int jffs2_remount_fs (struct super_block *, int *, char *);
176 int jffs2_do_fill_super(struct super_block *sb, void *data, int silent);
177 void jffs2_gc_release_inode(struct jffs2_sb_info *c,
178                             struct jffs2_inode_info *f);
179 struct jffs2_inode_info *jffs2_gc_fetch_inode(struct jffs2_sb_info *c,
180                                               int inum, int nlink);
181
182 unsigned char *jffs2_gc_fetch_page(struct jffs2_sb_info *c, 
183                                    struct jffs2_inode_info *f, 
184                                    unsigned long offset,
185                                    unsigned long *priv);
186 void jffs2_gc_release_page(struct jffs2_sb_info *c,
187                            unsigned char *pg,
188                            unsigned long *priv);
189 void jffs2_flash_cleanup(struct jffs2_sb_info *c);
190      
191
192 /* writev.c */
193 int jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct kvec *vecs, 
194                        unsigned long count, loff_t to, size_t *retlen);
195
196
197 #endif /* __JFFS2_OS_LINUX_H__ */
198
199