Merge branch 'master' of ssh://www.aleph1.co.uk/home/aleph1/git/yaffs2
[yaffs2.git] / direct / test-framework / nanddrv.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2018 Aleph One Ltd.
5  *
6  * Created by Charles Manning <charles@aleph1.co.uk>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License version 2.1 as
10  * published by the Free Software Foundation.
11  *
12  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
13  */
14
15 #ifndef __NAND_DRIVER_H__
16 #define __NAND_DRIVER_H__
17 #include "nand_chip.h"
18
19 struct nanddrv_transfer {
20         unsigned char *buffer;
21         int offset;
22         int nbytes;
23 };
24
25 int nanddrv_read_tr(struct nand_chip *this, int page,
26                 struct nanddrv_transfer *tr, int n_tr);
27 int nanddrv_write_tr(struct nand_chip *this, int page,
28                 struct nanddrv_transfer *tr, int n_tr);
29 int nanddrv_erase(struct nand_chip *this, int block);
30
31 #endif
32