summaryrefslogtreecommitdiff
path: root/src/flash/nand/imp.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-04 19:28:18 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-04 21:41:23 -0800
commit747d6f22868dd87cb54341cc22d9eb3687039735 (patch)
treed842966bd99593ffcbff2338517275ff9e408c12 /src/flash/nand/imp.h
parenta7fd30c07fb9c2b7662ffaa48287b1997dc60796 (diff)
downloadopenocd_libswd-747d6f22868dd87cb54341cc22d9eb3687039735.tar.gz
openocd_libswd-747d6f22868dd87cb54341cc22d9eb3687039735.tar.bz2
openocd_libswd-747d6f22868dd87cb54341cc22d9eb3687039735.tar.xz
openocd_libswd-747d6f22868dd87cb54341cc22d9eb3687039735.zip
split nand.c into nand/{core,fileio,tcl}.c
Moves commands into nand/tcl.c and core implementation to 'nand/core.c' and 'nand/fileio.c'. Eliminates 'flash/nand.c'. Adds 'nand/imp.h' to share routines between TCL commands and core.
Diffstat (limited to 'src/flash/nand/imp.h')
-rw-r--r--src/flash/nand/imp.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/flash/nand/imp.h b/src/flash/nand/imp.h
new file mode 100644
index 00000000..b381b538
--- /dev/null
+++ b/src/flash/nand/imp.h
@@ -0,0 +1,34 @@
+/***************************************************************************
+ * Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ ***************************************************************************/
+#ifndef FLASH_NAND_IMP_H
+#define FLASH_NAND_IMP_H
+
+int nand_write_page(struct nand_device *nand,
+ uint32_t page, uint8_t *data, uint32_t data_size,
+ uint8_t *oob, uint32_t oob_size);
+
+int nand_read_page(struct nand_device *nand, uint32_t page,
+ uint8_t *data, uint32_t data_size,
+ uint8_t *oob, uint32_t oob_size);
+
+int nand_probe(struct nand_device *nand);
+int nand_erase(struct nand_device *nand, int first_block, int last_block);
+int nand_build_bbt(struct nand_device *nand, int first, int last);
+
+#endif // FLASH_NAND_IMP_H