Blame view

fs/yaffs2/yaffs_nand.h 1.13 KB
0e8cc8bd9   William Juul   YAFFS2 import
1
  /*
4b0708093   Wolfgang Denk   Coding Style clea...
2
   * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
0e8cc8bd9   William Juul   YAFFS2 import
3
   *
753ac6108   Charles Manning   u-boot: Update ya...
4
   * Copyright (C) 2002-2011 Aleph One Ltd.
0e8cc8bd9   William Juul   YAFFS2 import
5
6
7
8
9
10
11
12
13
14
15
16
17
18
   *   for Toby Churchill Ltd and Brightstar Engineering
   *
   * Created by Charles Manning <charles@aleph1.co.uk>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU Lesser General Public License version 2.1 as
   * published by the Free Software Foundation.
   *
   * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
   */
  
  #ifndef __YAFFS_NAND_H__
  #define __YAFFS_NAND_H__
  #include "yaffs_guts.h"
753ac6108   Charles Manning   u-boot: Update ya...
19
20
  int yaffs_rd_chunk_tags_nand(struct yaffs_dev *dev, int nand_chunk,
  			     u8 *buffer, struct yaffs_ext_tags *tags);
0e8cc8bd9   William Juul   YAFFS2 import
21

753ac6108   Charles Manning   u-boot: Update ya...
22
23
24
  int yaffs_wr_chunk_tags_nand(struct yaffs_dev *dev,
  			     int nand_chunk,
  			     const u8 *buffer, struct yaffs_ext_tags *tags);
0e8cc8bd9   William Juul   YAFFS2 import
25

753ac6108   Charles Manning   u-boot: Update ya...
26
  int yaffs_mark_bad(struct yaffs_dev *dev, int block_no);
0e8cc8bd9   William Juul   YAFFS2 import
27

753ac6108   Charles Manning   u-boot: Update ya...
28
29
30
31
  int yaffs_query_init_block_state(struct yaffs_dev *dev,
  				 int block_no,
  				 enum yaffs_block_state *state,
  				 unsigned *seq_number);
0e8cc8bd9   William Juul   YAFFS2 import
32

753ac6108   Charles Manning   u-boot: Update ya...
33
  int yaffs_erase_block(struct yaffs_dev *dev, int flash_block);
0e8cc8bd9   William Juul   YAFFS2 import
34

753ac6108   Charles Manning   u-boot: Update ya...
35
  int yaffs_init_nand(struct yaffs_dev *dev);
0e8cc8bd9   William Juul   YAFFS2 import
36
37
  
  #endif