blob: 8d92e45168ca1b4511239fa9b1b6f4c45232b369 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
Artem B. Bityutskiydaba5cc2005-09-30 14:59:17 +010010 * $Id: os-linux.h,v 1.64 2005/09/30 13:59:13 dedekind Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 */
13
14#ifndef __JFFS2_OS_LINUX_H__
15#define __JFFS2_OS_LINUX_H__
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct kstatfs;
22struct kvec;
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
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)
David Woodhouseaef9ab42006-05-19 00:28:49 +010034#define JFFS2_F_I_RDEV(f) (OFNI_EDONI_2SFFJ(f)->i_rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define ITIME(sec) ((struct timespec){sec, 0})
37#define I_SEC(tv) ((tv).tv_sec)
38#define JFFS2_F_I_CTIME(f) (OFNI_EDONI_2SFFJ(f)->i_ctime.tv_sec)
39#define JFFS2_F_I_MTIME(f) (OFNI_EDONI_2SFFJ(f)->i_mtime.tv_sec)
40#define JFFS2_F_I_ATIME(f) (OFNI_EDONI_2SFFJ(f)->i_atime.tv_sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define sleep_on_spinunlock(wq, s) \
43 do { \
44 DECLARE_WAITQUEUE(__wait, current); \
45 add_wait_queue((wq), &__wait); \
46 set_current_state(TASK_UNINTERRUPTIBLE); \
47 spin_unlock(s); \
48 schedule(); \
49 remove_wait_queue((wq), &__wait); \
50 } while(0)
51
52static inline void jffs2_init_inode_info(struct jffs2_inode_info *f)
53{
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 f->highest_version = 0;
55 f->fragtree = RB_ROOT;
56 f->metadata = NULL;
57 f->dents = NULL;
Artem B. Bityutskiy2b79adc2005-07-17 12:13:51 +010058 f->target = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 f->flags = 0;
60 f->usercompr = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090061#ifdef CONFIG_JFFS2_FS_POSIX_ACL
62 f->i_acl_access = JFFS2_ACL_NOT_CACHED;
63 f->i_acl_default = JFFS2_ACL_NOT_CACHED;
64#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
Andrew Victor3be36672005-02-09 09:09:05 +000067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define jffs2_is_readonly(c) (OFNI_BS_2SFFJ(c)->s_flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Artem B. Bityutskiydaba5cc2005-09-30 14:59:17 +010070#define SECTOR_ADDR(x) ( (((unsigned long)(x) / c->sector_size) * c->sector_size) )
Andrew Victor2f82ce12005-02-09 09:24:26 +000071#ifndef CONFIG_JFFS2_FS_WRITEBUFFER
Artem B. Bityutskiydaba5cc2005-09-30 14:59:17 +010072
Ferenc Havasie631ddb2005-09-07 09:35:26 +010073
74#ifdef CONFIG_JFFS2_SUMMARY
75#define jffs2_can_mark_obsolete(c) (0)
76#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#define jffs2_can_mark_obsolete(c) (1)
Ferenc Havasie631ddb2005-09-07 09:35:26 +010078#endif
79
Artem B. Bityuckiy8cd79212005-05-03 16:19:02 +010080#define jffs2_is_writebuffered(c) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define jffs2_cleanmarker_oob(c) (0)
82#define jffs2_write_nand_cleanmarker(c,jeb) (-EIO)
83
Ferenc Havasie631ddb2005-09-07 09:35:26 +010084#define jffs2_flash_write(c, ofs, len, retlen, buf) jffs2_flash_direct_write(c, ofs, len, retlen, buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define jffs2_flash_read(c, ofs, len, retlen, buf) ((c)->mtd->read((c)->mtd, ofs, len, retlen, buf))
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +010086#define jffs2_flush_wbuf_pad(c) ({ do{} while(0); (void)(c), 0; })
87#define jffs2_flush_wbuf_gc(c, i) ({ do{} while(0); (void)(c), (void) i, 0; })
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define jffs2_write_nand_badblock(c,jeb,bad_offset) (1)
89#define jffs2_nand_flash_setup(c) (0)
90#define jffs2_nand_flash_cleanup(c) do {} while(0)
91#define jffs2_wbuf_dirty(c) (0)
92#define jffs2_flash_writev(a,b,c,d,e,f) jffs2_flash_direct_writev(a,b,c,d,e)
93#define jffs2_wbuf_timeout NULL
94#define jffs2_wbuf_process NULL
Andrew Victor8f15fd52005-02-09 09:17:45 +000095#define jffs2_dataflash(c) (0)
Todd Poynor751382d2005-07-12 03:34:39 +010096#define jffs2_dataflash_setup(c) (0)
97#define jffs2_dataflash_cleanup(c) do {} while (0)
David Woodhouse9bfeb692006-05-26 21:19:05 +010098#define jffs2_nor_wbuf_flash(c) (0)
Nicolas Pitre59da7212005-08-06 05:51:33 +010099#define jffs2_nor_wbuf_flash_setup(c) (0)
100#define jffs2_nor_wbuf_flash_cleanup(c) do {} while (0)
Artem Bityutskiy0029da32006-10-04 19:15:21 +0300101#define jffs2_ubivol(c) (0)
102#define jffs2_ubivol_setup(c) (0)
103#define jffs2_ubivol_cleanup(c) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105#else /* NAND and/or ECC'd NOR support present */
106
Artem B. Bityuckiy8cd79212005-05-03 16:19:02 +0100107#define jffs2_is_writebuffered(c) (c->wbuf != NULL)
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100108
109#ifdef CONFIG_JFFS2_SUMMARY
110#define jffs2_can_mark_obsolete(c) (0)
111#else
Joern Engel5fa43392006-05-22 23:18:29 +0200112#define jffs2_can_mark_obsolete(c) (c->mtd->flags & (MTD_BIT_WRITEABLE))
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100113#endif
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#define jffs2_cleanmarker_oob(c) (c->mtd->type == MTD_NANDFLASH)
116
117#define jffs2_flash_write_oob(c, ofs, len, retlen, buf) ((c)->mtd->write_oob((c)->mtd, ofs, len, retlen, buf))
118#define jffs2_flash_read_oob(c, ofs, len, retlen, buf) ((c)->mtd->read_oob((c)->mtd, ofs, len, retlen, buf))
119#define jffs2_wbuf_dirty(c) (!!(c)->wbuf_len)
120
121/* wbuf.c */
122int jffs2_flash_writev(struct jffs2_sb_info *c, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen, uint32_t ino);
123int jffs2_flash_write(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, const u_char *buf);
124int jffs2_flash_read(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, u_char *buf);
125int jffs2_check_oob_empty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,int mode);
126int jffs2_check_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
127int jffs2_write_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
128int jffs2_write_nand_badblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset);
129void jffs2_wbuf_timeout(unsigned long data);
130void jffs2_wbuf_process(void *data);
131int jffs2_flush_wbuf_gc(struct jffs2_sb_info *c, uint32_t ino);
132int jffs2_flush_wbuf_pad(struct jffs2_sb_info *c);
133int jffs2_nand_flash_setup(struct jffs2_sb_info *c);
134void jffs2_nand_flash_cleanup(struct jffs2_sb_info *c);
Andrew Victor2f82ce12005-02-09 09:24:26 +0000135
Andrew Victor8f15fd52005-02-09 09:17:45 +0000136#define jffs2_dataflash(c) (c->mtd->type == MTD_DATAFLASH)
137int jffs2_dataflash_setup(struct jffs2_sb_info *c);
138void jffs2_dataflash_cleanup(struct jffs2_sb_info *c);
Artem Bityutskiy0029da32006-10-04 19:15:21 +0300139#define jffs2_ubivol(c) (c->mtd->type == MTD_UBIVOLUME)
140int jffs2_ubivol_setup(struct jffs2_sb_info *c);
141void jffs2_ubivol_cleanup(struct jffs2_sb_info *c);
Andrew Victor2f82ce12005-02-09 09:24:26 +0000142
Joern Engel5fa43392006-05-22 23:18:29 +0200143#define jffs2_nor_wbuf_flash(c) (c->mtd->type == MTD_NORFLASH && ! (c->mtd->flags & MTD_BIT_WRITEABLE))
Nicolas Pitre59da7212005-08-06 05:51:33 +0100144int jffs2_nor_wbuf_flash_setup(struct jffs2_sb_info *c);
145void jffs2_nor_wbuf_flash_cleanup(struct jffs2_sb_info *c);
146
Andrew Victor2f82ce12005-02-09 09:24:26 +0000147#endif /* WRITEBUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149/* erase.c */
150static inline void jffs2_erase_pending_trigger(struct jffs2_sb_info *c)
151{
152 OFNI_BS_2SFFJ(c)->s_dirt = 1;
153}
154
155/* background.c */
156int jffs2_start_garbage_collect_thread(struct jffs2_sb_info *c);
157void jffs2_stop_garbage_collect_thread(struct jffs2_sb_info *c);
158void jffs2_garbage_collect_trigger(struct jffs2_sb_info *c);
159
160/* dir.c */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800161extern const struct file_operations jffs2_dir_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800162extern const struct inode_operations jffs2_dir_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/* file.c */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800165extern const struct file_operations jffs2_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800166extern const struct inode_operations jffs2_file_inode_operations;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700167extern const struct address_space_operations jffs2_file_address_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168int jffs2_fsync(struct file *, struct dentry *, int);
169int jffs2_do_readpage_unlock (struct inode *inode, struct page *pg);
170
171/* ioctl.c */
172int jffs2_ioctl(struct inode *, struct file *, unsigned int, unsigned long);
173
174/* symlink.c */
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800175extern const struct inode_operations jffs2_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/* fs.c */
178int jffs2_setattr (struct dentry *, struct iattr *);
179void jffs2_read_inode (struct inode *);
180void jffs2_clear_inode (struct inode *);
181void jffs2_dirty_inode(struct inode *inode);
182struct inode *jffs2_new_inode (struct inode *dir_i, int mode,
183 struct jffs2_raw_inode *ri);
David Howells726c3342006-06-23 02:02:58 -0700184int jffs2_statfs (struct dentry *, struct kstatfs *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185void jffs2_write_super (struct super_block *);
186int jffs2_remount_fs (struct super_block *, int *, char *);
187int jffs2_do_fill_super(struct super_block *sb, void *data, int silent);
188void jffs2_gc_release_inode(struct jffs2_sb_info *c,
189 struct jffs2_inode_info *f);
190struct jffs2_inode_info *jffs2_gc_fetch_inode(struct jffs2_sb_info *c,
191 int inum, int nlink);
192
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000193unsigned char *jffs2_gc_fetch_page(struct jffs2_sb_info *c,
194 struct jffs2_inode_info *f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 unsigned long offset,
196 unsigned long *priv);
197void jffs2_gc_release_page(struct jffs2_sb_info *c,
198 unsigned char *pg,
199 unsigned long *priv);
200void jffs2_flash_cleanup(struct jffs2_sb_info *c);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203/* writev.c */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000204int jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct kvec *vecs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 unsigned long count, loff_t to, size_t *retlen);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100206int jffs2_flash_direct_write(struct jffs2_sb_info *c, loff_t ofs, size_t len,
207 size_t *retlen, const u_char *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209#endif /* __JFFS2_OS_LINUX_H__ */
210
211