Remove the support for yaffsram.
[yaffs2.git] / yaffs_nandemul.h
1 /*
2  * YAFFS: Yet another FFS. A NAND-flash specific file system. 
3  *
4  * Copyright (C) 2002 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License version 2.1 as
11  * published by the Free Software Foundation.
12  *
13  *
14  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
15  *
16  * yaffs_nandemul.h: Interface to emulated NAND functions
17  *
18  * $Id: yaffs_nandemul.h,v 1.2 2005-07-19 20:41:59 charles Exp $
19  */
20  
21 #ifndef __YAFFS_NANDEMUL_H__
22 #define __YAFFS_NANDEMUL_H__
23
24 #include "yaffs_guts.h" 
25  
26  
27 /* WriteChunkToNAND and ReadChunkFromNAND are used with two pointers. 
28  * If either of these pointers are null, then that field will not be 
29  * transferred.
30  */
31  
32 int nandemul_WriteChunkToNAND(struct yaffs_DeviceStruct *dev,int chunkInNAND, const __u8 *data, const yaffs_Spare *spare);
33 int nandemul_ReadChunkFromNAND(struct yaffs_DeviceStruct *dev,int chunkInNAND, __u8 *data, yaffs_Spare *spare);
34 int nandemul_EraseBlockInNAND(struct yaffs_DeviceStruct *dev,int blockInNAND);
35 int nandemul_InitialiseNAND(struct yaffs_DeviceStruct *dev);
36
37 #endif
38