blob: 824e61ede465fd6ec4c433785dcdfb2da96dc848 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 2001-2007 Red Hat, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#ifndef __JFFS2_OS_LINUX_H__
13#define __JFFS2_OS_LINUX_H__
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/* JFFS2 uses Linux mode bits natively -- no need for conversion */
16#define os_to_jffs2_mode(x) (x)
17#define jffs2_to_os_mode(x) (x)
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019struct kstatfs;
20struct kvec;
21
Rasmus Villemoesdb6172c2015-03-19 12:28:04 +010022#define JFFS2_INODE_INFO(i) (container_of(i, struct jffs2_inode_info, vfs_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define OFNI_EDONI_2SFFJ(f) (&(f)->vfs_inode)
24#define JFFS2_SB_INFO(sb) (sb->s_fs_info)
25#define OFNI_BS_2SFFJ(c) ((struct super_block *)c->os_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27
28#define JFFS2_F_I_SIZE(f) (OFNI_EDONI_2SFFJ(f)->i_size)
29#define JFFS2_F_I_MODE(f) (OFNI_EDONI_2SFFJ(f)->i_mode)
Eric W. Biederman0cfe53d2012-02-07 16:28:39 -080030#define JFFS2_F_I_UID(f) (i_uid_read(OFNI_EDONI_2SFFJ(f)))
31#define JFFS2_F_I_GID(f) (i_gid_read(OFNI_EDONI_2SFFJ(f)))
David Woodhouseaef9ab42006-05-19 00:28:49 +010032#define JFFS2_F_I_RDEV(f) (OFNI_EDONI_2SFFJ(f)->i_rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define ITIME(sec) ((struct timespec){sec, 0})
35#define I_SEC(tv) ((tv).tv_sec)
36#define JFFS2_F_I_CTIME(f) (OFNI_EDONI_2SFFJ(f)->i_ctime.tv_sec)
37#define JFFS2_F_I_MTIME(f) (OFNI_EDONI_2SFFJ(f)->i_mtime.tv_sec)
38#define JFFS2_F_I_ATIME(f) (OFNI_EDONI_2SFFJ(f)->i_atime.tv_sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define sleep_on_spinunlock(wq, s) \
41 do { \
42 DECLARE_WAITQUEUE(__wait, current); \
43 add_wait_queue((wq), &__wait); \
44 set_current_state(TASK_UNINTERRUPTIBLE); \
45 spin_unlock(s); \
46 schedule(); \
47 remove_wait_queue((wq), &__wait); \
48 } while(0)
49
50static inline void jffs2_init_inode_info(struct jffs2_inode_info *f)
51{
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 f->highest_version = 0;
53 f->fragtree = RB_ROOT;
54 f->metadata = NULL;
55 f->dents = NULL;
Artem B. Bityutskiy2b79adc2005-07-17 12:13:51 +010056 f->target = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 f->flags = 0;
58 f->usercompr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
Andrew Victor3be36672005-02-09 09:09:05 +000061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define jffs2_is_readonly(c) (OFNI_BS_2SFFJ(c)->s_flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Artem B. Bityutskiydaba5cc2005-09-30 14:59:17 +010064#define SECTOR_ADDR(x) ( (((unsigned long)(x) / c->sector_size) * c->sector_size) )
Andrew Victor2f82ce12005-02-09 09:24:26 +000065#ifndef CONFIG_JFFS2_FS_WRITEBUFFER
Artem B. Bityutskiydaba5cc2005-09-30 14:59:17 +010066
Ferenc Havasie631ddb2005-09-07 09:35:26 +010067
68#ifdef CONFIG_JFFS2_SUMMARY
69#define jffs2_can_mark_obsolete(c) (0)
70#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define jffs2_can_mark_obsolete(c) (1)
Ferenc Havasie631ddb2005-09-07 09:35:26 +010072#endif
73
Artem B. Bityuckiy8cd79212005-05-03 16:19:02 +010074#define jffs2_is_writebuffered(c) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define jffs2_cleanmarker_oob(c) (0)
76#define jffs2_write_nand_cleanmarker(c,jeb) (-EIO)
77
Ferenc Havasie631ddb2005-09-07 09:35:26 +010078#define jffs2_flash_write(c, ofs, len, retlen, buf) jffs2_flash_direct_write(c, ofs, len, retlen, buf)
Brian Norrisa6c22852012-02-02 16:21:09 -080079#define jffs2_flash_read(c, ofs, len, retlen, buf) (mtd_read((c)->mtd, ofs, len, retlen, buf))
Artem B. Bityutskiy733802d2005-09-22 12:25:00 +010080#define jffs2_flush_wbuf_pad(c) ({ do{} while(0); (void)(c), 0; })
81#define jffs2_flush_wbuf_gc(c, i) ({ do{} while(0); (void)(c), (void) i, 0; })
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define jffs2_write_nand_badblock(c,jeb,bad_offset) (1)
83#define jffs2_nand_flash_setup(c) (0)
84#define jffs2_nand_flash_cleanup(c) do {} while(0)
85#define jffs2_wbuf_dirty(c) (0)
86#define jffs2_flash_writev(a,b,c,d,e,f) jffs2_flash_direct_writev(a,b,c,d,e)
87#define jffs2_wbuf_timeout NULL
88#define jffs2_wbuf_process NULL
Andrew Victor8f15fd52005-02-09 09:17:45 +000089#define jffs2_dataflash(c) (0)
Todd Poynor751382d2005-07-12 03:34:39 +010090#define jffs2_dataflash_setup(c) (0)
91#define jffs2_dataflash_cleanup(c) do {} while (0)
David Woodhouse9bfeb692006-05-26 21:19:05 +010092#define jffs2_nor_wbuf_flash(c) (0)
Nicolas Pitre59da7212005-08-06 05:51:33 +010093#define jffs2_nor_wbuf_flash_setup(c) (0)
94#define jffs2_nor_wbuf_flash_cleanup(c) do {} while (0)
Artem Bityutskiy0029da32006-10-04 19:15:21 +030095#define jffs2_ubivol(c) (0)
96#define jffs2_ubivol_setup(c) (0)
97#define jffs2_ubivol_cleanup(c) do {} while (0)
Artem Bityutskiy8bdc81c2012-05-07 19:56:53 +030098#define jffs2_dirty_trigger(c) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100#else /* NAND and/or ECC'd NOR support present */
101
Artem B. Bityuckiy8cd79212005-05-03 16:19:02 +0100102#define jffs2_is_writebuffered(c) (c->wbuf != NULL)
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100103
104#ifdef CONFIG_JFFS2_SUMMARY
105#define jffs2_can_mark_obsolete(c) (0)
106#else
Joern Engel5fa43392006-05-22 23:18:29 +0200107#define jffs2_can_mark_obsolete(c) (c->mtd->flags & (MTD_BIT_WRITEABLE))
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100108#endif
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define jffs2_cleanmarker_oob(c) (c->mtd->type == MTD_NANDFLASH)
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define jffs2_wbuf_dirty(c) (!!(c)->wbuf_len)
113
114/* wbuf.c */
115int jffs2_flash_writev(struct jffs2_sb_info *c, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen, uint32_t ino);
116int jffs2_flash_write(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, const u_char *buf);
117int jffs2_flash_read(struct jffs2_sb_info *c, loff_t ofs, size_t len, size_t *retlen, u_char *buf);
118int jffs2_check_oob_empty(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,int mode);
119int jffs2_check_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
120int jffs2_write_nand_cleanmarker(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb);
121int jffs2_write_nand_badblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, uint32_t bad_offset);
122void jffs2_wbuf_timeout(unsigned long data);
123void jffs2_wbuf_process(void *data);
124int jffs2_flush_wbuf_gc(struct jffs2_sb_info *c, uint32_t ino);
125int jffs2_flush_wbuf_pad(struct jffs2_sb_info *c);
126int jffs2_nand_flash_setup(struct jffs2_sb_info *c);
127void jffs2_nand_flash_cleanup(struct jffs2_sb_info *c);
Andrew Victor2f82ce12005-02-09 09:24:26 +0000128
Andrew Victor8f15fd52005-02-09 09:17:45 +0000129#define jffs2_dataflash(c) (c->mtd->type == MTD_DATAFLASH)
130int jffs2_dataflash_setup(struct jffs2_sb_info *c);
131void jffs2_dataflash_cleanup(struct jffs2_sb_info *c);
Artem Bityutskiy0029da32006-10-04 19:15:21 +0300132#define jffs2_ubivol(c) (c->mtd->type == MTD_UBIVOLUME)
133int jffs2_ubivol_setup(struct jffs2_sb_info *c);
134void jffs2_ubivol_cleanup(struct jffs2_sb_info *c);
Andrew Victor2f82ce12005-02-09 09:24:26 +0000135
Joern Engel5fa43392006-05-22 23:18:29 +0200136#define jffs2_nor_wbuf_flash(c) (c->mtd->type == MTD_NORFLASH && ! (c->mtd->flags & MTD_BIT_WRITEABLE))
Nicolas Pitre59da7212005-08-06 05:51:33 +0100137int jffs2_nor_wbuf_flash_setup(struct jffs2_sb_info *c);
138void jffs2_nor_wbuf_flash_cleanup(struct jffs2_sb_info *c);
Artem Bityutskiy8bdc81c2012-05-07 19:56:53 +0300139void jffs2_dirty_trigger(struct jffs2_sb_info *c);
Nicolas Pitre59da7212005-08-06 05:51:33 +0100140
Andrew Victor2f82ce12005-02-09 09:24:26 +0000141#endif /* WRITEBUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* background.c */
144int jffs2_start_garbage_collect_thread(struct jffs2_sb_info *c);
145void jffs2_stop_garbage_collect_thread(struct jffs2_sb_info *c);
146void jffs2_garbage_collect_trigger(struct jffs2_sb_info *c);
147
148/* dir.c */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800149extern const struct file_operations jffs2_dir_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800150extern const struct inode_operations jffs2_dir_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/* file.c */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800153extern const struct file_operations jffs2_file_operations;
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800154extern const struct inode_operations jffs2_file_inode_operations;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700155extern const struct address_space_operations jffs2_file_address_operations;
Josef Bacik02c24a82011-07-16 20:44:56 -0400156int jffs2_fsync(struct file *, loff_t, loff_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157int jffs2_do_readpage_unlock (struct inode *inode, struct page *pg);
158
159/* ioctl.c */
Stoyan Gaydarov05334002008-07-07 07:45:59 -0500160long jffs2_ioctl(struct file *, unsigned int, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162/* symlink.c */
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800163extern const struct inode_operations jffs2_symlink_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165/* fs.c */
166int jffs2_setattr (struct dentry *, struct iattr *);
David Woodhouse9ed437c2007-08-22 12:39:19 +0100167int jffs2_do_setattr (struct inode *, struct iattr *);
David Howells5451f792008-02-07 00:15:42 -0800168struct inode *jffs2_iget(struct super_block *, unsigned long);
Al Virob57922d2010-06-07 14:34:48 -0400169void jffs2_evict_inode (struct inode *);
Christoph Hellwigaa385722011-05-27 06:53:02 -0400170void jffs2_dirty_inode(struct inode *inode, int flags);
Al Virod3fb6122011-07-23 18:37:50 -0400171struct inode *jffs2_new_inode (struct inode *dir_i, umode_t mode,
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900172 struct jffs2_raw_inode *ri);
David Howells726c3342006-06-23 02:02:58 -0700173int jffs2_statfs (struct dentry *, struct kstatfs *);
Andres Salomon92abc472011-10-16 18:15:16 -0700174int jffs2_do_remount_fs(struct super_block *, int *, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175int jffs2_do_fill_super(struct super_block *sb, void *data, int silent);
176void jffs2_gc_release_inode(struct jffs2_sb_info *c,
177 struct jffs2_inode_info *f);
178struct jffs2_inode_info *jffs2_gc_fetch_inode(struct jffs2_sb_info *c,
David Woodhouse1b690b42008-05-01 16:59:24 +0100179 int inum, int unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000181unsigned char *jffs2_gc_fetch_page(struct jffs2_sb_info *c,
182 struct jffs2_inode_info *f,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 unsigned long offset,
184 unsigned long *priv);
185void jffs2_gc_release_page(struct jffs2_sb_info *c,
186 unsigned char *pg,
187 unsigned long *priv);
188void jffs2_flash_cleanup(struct jffs2_sb_info *c);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191/* writev.c */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000192int jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct kvec *vecs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 unsigned long count, loff_t to, size_t *retlen);
Ferenc Havasie631ddb2005-09-07 09:35:26 +0100194int jffs2_flash_direct_write(struct jffs2_sb_info *c, loff_t ofs, size_t len,
195 size_t *retlen, const u_char *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197#endif /* __JFFS2_OS_LINUX_H__ */
198
199