Add nand driver that works with a nand simulator
[yaffs2.git] / direct / test-framework / nand_store.h
diff --git a/direct/test-framework/nand_store.h b/direct/test-framework/nand_store.h
new file mode 100644 (file)
index 0000000..431ec1a
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
+ *
+ * Copyright (C) 2002-2011 Aleph One Ltd.
+ *
+ * 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 __NAND_STORE_H__
+#define __NAND_STORE_H__
+
+struct nand_store {
+       void *private_data;
+
+       int (*store)(struct nand_store *this, int page,
+                       const unsigned char * buffer);
+       int (*retrieve)(struct nand_store *this, int page,
+                       unsigned char * buffer);
+       int (*erase)(struct nand_store *this, int block);
+       int (*shutdown)(struct nand_store *this);
+
+       int blocks;
+       int pages_per_block;
+       int data_bytes_per_page;
+       int spare_bytes_per_page;
+};
+#endif