X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=direct%2Ftest-framework%2Fnand_chip.h;fp=direct%2Ftest-framework%2Fnand_chip.h;h=c0c8f1d969beaf60494431927f0d277ea0f64812;hb=fd65eb6c02fba80b81f6e6f327ebb73250cbd9f5;hp=0000000000000000000000000000000000000000;hpb=b813666977c08c925a4b62cee860470e7f4bc302;p=yaffs2.git diff --git a/direct/test-framework/nand_chip.h b/direct/test-framework/nand_chip.h new file mode 100644 index 0000000..c0c8f1d --- /dev/null +++ b/direct/test-framework/nand_chip.h @@ -0,0 +1,39 @@ +/* + * YAFFS: Yet another Flash File System . A NAND-flash specific file system. + * + * Copyright (C) 2002-2011 Aleph One Ltd. + * + * Created by Charles Manning + * + * 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_CHIP_H__ +#define __NAND_CHIP_H__ + +#include + +struct nand_chip { + void *private_data; + + void (*set_ale)(struct nand_chip * this, int high); + void (*set_cle)(struct nand_chip * this, int high); + + unsigned (*read_cycle)(struct nand_chip * this); + void (*write_cycle)(struct nand_chip * this, unsigned b); + + int (*check_busy)(struct nand_chip * this); + void (*idle_fn) (struct nand_chip *this); + int (*power_check) (struct nand_chip *this); + + int blocks; + int pages_per_block; + int data_bytes_per_page; + int spare_bytes_per_page; + int bus_width_shift; +}; +#endif