]> git.sur5r.net Git - openocd/commitdiff
rename nand.h to flash//nand/core.h
authorZachary T Welch <zw@superlucidity.net>
Sat, 5 Dec 2009 06:04:37 +0000 (22:04 -0800)
committerZachary T Welch <zw@superlucidity.net>
Sat, 5 Dec 2009 06:26:25 +0000 (22:26 -0800)
Rename nand.h as flash/nand/core.h, chase consumers.  The public APIs
need to be sorted out with imp.h, but this allows other changes to
begin improving the separation between policy and mechanism.

Moves #include <target/target.h> and #include "driver.h" into the
internal headers or source files, removing it from <flash/nand/core.h>.

21 files changed:
src/flash/Makefile.am
src/flash/nand.h [deleted file]
src/flash/nand/Makefile.am
src/flash/nand/arm_io.c
src/flash/nand/arm_io.h
src/flash/nand/core.c
src/flash/nand/core.h [new file with mode: 0644]
src/flash/nand/davinci.c
src/flash/nand/driver.c
src/flash/nand/ecc.c
src/flash/nand/ecc_kw.c
src/flash/nand/fileio.c
src/flash/nand/imp.h
src/flash/nand/lpc3180.c
src/flash/nand/mx3.c
src/flash/nand/mx3.h
src/flash/nand/nonce.c
src/flash/nand/orion.c
src/flash/nand/s3c24xx.h
src/flash/nand/tcl.c
src/openocd.c

index f8d7088386353ab63001a382a3e242804e2d75bf..646889e1deb130a6da3dc3c879f0d2c037350798 100644 (file)
@@ -17,8 +17,7 @@ libflash_la_LIBADD = \
 
 noinst_HEADERS = \
        common.h \
-       mflash.h \
-       nand.h
+       mflash.h
 
 EXTRA_DIST = startup.tcl
 
diff --git a/src/flash/nand.h b/src/flash/nand.h
deleted file mode 100644 (file)
index d675b29..0000000
+++ /dev/null
@@ -1,246 +0,0 @@
-/***************************************************************************
- *   Copyright (C) 2007 by Dominic Rath                                    *
- *   Dominic.Rath@gmx.de                                                   *
- *                                                                         *
- *   Partially based on linux/include/linux/mtd/nand.h                     *
- *   Copyright (C) 2000 David Woodhouse <dwmw2@mvhi.com>                   *
- *   Copyright (C) 2000 Steven J. Hill <sjhill@realitydiluted.com>         *
- *   Copyright (C) 2000 Thomas Gleixner <tglx@linutronix.de>               *
- *                                                                         *
- *   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 NAND_H
-#define NAND_H
-
-#include <flash/common.h>
-// to be removed later
-#include <target/target.h>
-// to be removed later
-#include <flash/nand/driver.h>
-
-/**
- * Representation of a single NAND block in a NAND device.
- */
-struct nand_block
-{
-       /** Offset to the block. */
-       uint32_t offset;
-
-       /** Size of the block. */
-       uint32_t size;
-
-       /** True if the block has been erased. */
-       int is_erased;
-
-       /** True if the block is bad. */
-       int is_bad;
-};
-
-struct nand_oobfree {
-       int offset;
-       int length;
-};
-
-struct nand_ecclayout {
-       int eccbytes;
-       int eccpos[64];
-       int oobavail;
-       struct nand_oobfree oobfree[2];
-};
-
-struct nand_device
-{
-       char *name;
-       struct nand_flash_controller *controller;
-       void *controller_priv;
-       struct nand_manufacturer *manufacturer;
-       struct nand_info *device;
-       int bus_width;
-       int address_cycles;
-       int page_size;
-       int erase_size;
-       int use_raw;
-       int num_blocks;
-       struct nand_block *blocks;
-       struct nand_device *next;
-};
-
-/* NAND Flash Manufacturer ID Codes
- */
-enum
-{
-       NAND_MFR_TOSHIBA = 0x98,
-       NAND_MFR_SAMSUNG = 0xec,
-       NAND_MFR_FUJITSU = 0x04,
-       NAND_MFR_NATIONAL = 0x8f,
-       NAND_MFR_RENESAS = 0x07,
-       NAND_MFR_STMICRO = 0x20,
-       NAND_MFR_HYNIX = 0xad,
-       NAND_MFR_MICRON = 0x2c,
-};
-
-struct nand_manufacturer
-{
-       int id;
-       char *name;
-};
-
-struct nand_info
-{
-       char *name;
-       int id;
-       int page_size;
-       int chip_size;
-       int erase_size;
-       int options;
-};
-
-/* Option constants for bizarre disfunctionality and real features
- */
-enum {
-       /* Chip can not auto increment pages */
-       NAND_NO_AUTOINCR = 0x00000001,
-
-       /* Buswitdh is 16 bit */
-       NAND_BUSWIDTH_16 = 0x00000002,
-
-       /* Device supports partial programming without padding */
-       NAND_NO_PADDING = 0x00000004,
-
-       /* Chip has cache program function */
-       NAND_CACHEPRG = 0x00000008,
-
-       /* Chip has copy back function */
-       NAND_COPYBACK = 0x00000010,
-
-       /* AND Chip which has 4 banks and a confusing page / block
-        * assignment. See Renesas datasheet for further information */
-       NAND_IS_AND = 0x00000020,
-
-       /* Chip has a array of 4 pages which can be read without
-        * additional ready /busy waits */
-       NAND_4PAGE_ARRAY = 0x00000040,
-
-       /* Chip requires that BBT is periodically rewritten to prevent
-        * bits from adjacent blocks from 'leaking' in altering data.
-        * This happens with the Renesas AG-AND chips, possibly others.  */
-       BBT_AUTO_REFRESH = 0x00000080,
-
-       /* Chip does not require ready check on read. True
-        * for all large page devices, as they do not support
-        * autoincrement.*/
-       NAND_NO_READRDY = 0x00000100,
-
-       /* Options valid for Samsung large page devices */
-       NAND_SAMSUNG_LP_OPTIONS = (NAND_NO_PADDING | NAND_CACHEPRG | NAND_COPYBACK),
-
-       /* Options for new chips with large page size. The pagesize and the
-        * erasesize is determined from the extended id bytes
-        */
-       LP_OPTIONS = (NAND_SAMSUNG_LP_OPTIONS | NAND_NO_READRDY | NAND_NO_AUTOINCR),
-       LP_OPTIONS16 = (LP_OPTIONS | NAND_BUSWIDTH_16),
-};
-
-enum
-{
-       /* Standard NAND flash commands */
-       NAND_CMD_READ0 = 0x0,
-       NAND_CMD_READ1 = 0x1,
-       NAND_CMD_RNDOUT = 0x5,
-       NAND_CMD_PAGEPROG = 0x10,
-       NAND_CMD_READOOB = 0x50,
-       NAND_CMD_ERASE1 = 0x60,
-       NAND_CMD_STATUS = 0x70,
-       NAND_CMD_STATUS_MULTI = 0x71,
-       NAND_CMD_SEQIN = 0x80,
-       NAND_CMD_RNDIN = 0x85,
-       NAND_CMD_READID = 0x90,
-       NAND_CMD_ERASE2 = 0xd0,
-       NAND_CMD_RESET = 0xff,
-
-       /* Extended commands for large page devices */
-       NAND_CMD_READSTART = 0x30,
-       NAND_CMD_RNDOUTSTART = 0xE0,
-       NAND_CMD_CACHEDPROG = 0x15,
-};
-
-/* Status bits */
-enum
-{
-       NAND_STATUS_FAIL = 0x01,
-       NAND_STATUS_FAIL_N1 = 0x02,
-       NAND_STATUS_TRUE_READY = 0x20,
-       NAND_STATUS_READY = 0x40,
-       NAND_STATUS_WP = 0x80,
-};
-
-/* OOB (spare) data formats */
-enum oob_formats
-{
-       NAND_OOB_NONE = 0x0,    /* no OOB data at all */
-       NAND_OOB_RAW = 0x1,             /* raw OOB data (16 bytes for 512b page sizes, 64 bytes for 2048b page sizes) */
-       NAND_OOB_ONLY = 0x2,    /* only OOB data */
-       NAND_OOB_SW_ECC = 0x10, /* when writing, use SW ECC (as opposed to no ECC) */
-       NAND_OOB_HW_ECC = 0x20, /* when writing, use HW ECC (as opposed to no ECC) */
-       NAND_OOB_SW_ECC_KW = 0x40, /* when writing, use Marvell's Kirkwood bootrom format */
-       NAND_OOB_JFFS2 = 0x100, /* when writing, use JFFS2 OOB layout */
-       NAND_OOB_YAFFS2 = 0x100,/* when writing, use YAFFS2 OOB layout */
-};
-
-
-/**
- * Returns the flash bank specified by @a name, which matches the
- * driver name and a suffix (option) specify the driver-specific
- * bank number. The suffix consists of the '.' and the driver-specific
- * bank number: when two davinci banks are defined, then 'davinci.1' refers
- * to the second (e.g. DM355EVM).
- */
-struct nand_device *get_nand_device_by_name(const char *name);
-
-struct nand_device *get_nand_device_by_num(int num);
-
-int nand_page_command(struct nand_device *nand, uint32_t page,
-               uint8_t cmd, bool oob_only);
-
-int nand_read_page_raw(struct nand_device *nand, uint32_t page,
-               uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
-int nand_write_page_raw(struct nand_device *nand, uint32_t page,
-               uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
-
-int nand_read_status(struct nand_device *nand, uint8_t *status);
-
-int nand_calculate_ecc(struct nand_device *nand,
-               const uint8_t *dat, uint8_t *ecc_code);
-int nand_calculate_ecc_kw(struct nand_device *nand,
-               const uint8_t *dat, uint8_t *ecc_code);
-
-int nand_register_commands(struct command_context *cmd_ctx);
-int nand_init(struct command_context *cmd_ctx);
-
-/// helper for parsing a nand device command argument string
-COMMAND_HELPER(nand_command_get_device, unsigned name_index,
-               struct nand_device **nand);
-
-
-#define                ERROR_NAND_DEVICE_INVALID               (-1100)
-#define                ERROR_NAND_OPERATION_FAILED             (-1101)
-#define                ERROR_NAND_OPERATION_TIMEOUT    (-1102)
-#define                ERROR_NAND_OPERATION_NOT_SUPPORTED      (-1103)
-#define                ERROR_NAND_DEVICE_NOT_PROBED    (-1104)
-#define                ERROR_NAND_ERROR_CORRECTION_FAILED      (-1105)
-#define                ERROR_NAND_NO_BUFFER                    (-1106)
-
-#endif /* NAND_H */
index 667ef8fdf71658fbb17eb909aaad282f4a52a998..a48b726ac768f3f75beb07f015ea4c64c1db104a 100644 (file)
@@ -26,6 +26,7 @@ NAND_DRIVERS = \
 
 noinst_HEADERS = \
        arm_io.h \
+       core.h \
        lpc3180.h \
        driver.h \
        mx3.h \
index cc565dcbc023592214c2f61d7d686878e4012157..4c746757cf841b6311411766d4e61f1744aafe94 100644 (file)
 #include "config.h"
 #endif
 
+#include "core.h"
 #include "arm_io.h"
+#include <helper/binarybuffer.h>
 #include <target/armv4_5.h>
 #include <target/algorithm.h>
 
+
 /**
  * Copies code to a working area.  This will allocate room for the code plus the
  * additional amount requested if the working area pointer is null.
index d3504f434d7a5a62d4b962ca1030ba9684d86fc9..2e825bf801c185ea6c0aa2e789a9712181117fc4 100644 (file)
@@ -19,9 +19,6 @@
 #ifndef __ARM_NANDIO_H
 #define __ARM_NANDIO_H
 
-#include <flash/nand.h>
-#include <helper/binarybuffer.h>
-
 /**
  * Available operational states the arm_nand_data struct can be in.
  */
index 46f545469daef649b86dee61de409271754d5248..d52cf5df69a0e8836789c816050103130a9061b1 100644 (file)
@@ -24,8 +24,6 @@
 #include "config.h"
 #endif
 
-#include <flash/nand.h>
-#include <flash/common.h>
 #include "imp.h"
 
 /* configured NAND devices and NAND Flash command handler */
diff --git a/src/flash/nand/core.h b/src/flash/nand/core.h
new file mode 100644 (file)
index 0000000..b8dc01c
--- /dev/null
@@ -0,0 +1,243 @@
+/***************************************************************************
+ *   Copyright (C) 2007 by Dominic Rath <Dominic.Rath@gmx.de>              *
+ *   Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net>             *
+ *                                                                         *
+ *   Partially based on linux/include/linux/mtd/nand.h                     *
+ *   Copyright (C) 2000 David Woodhouse <dwmw2@mvhi.com>                   *
+ *   Copyright (C) 2000 Steven J. Hill <sjhill@realitydiluted.com>         *
+ *   Copyright (C) 2000 Thomas Gleixner <tglx@linutronix.de>               *
+ *                                                                         *
+ *   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_CORE_H
+#define FLASH_NAND_CORE_H
+
+#include <flash/common.h>
+
+/**
+ * Representation of a single NAND block in a NAND device.
+ */
+struct nand_block
+{
+       /** Offset to the block. */
+       uint32_t offset;
+
+       /** Size of the block. */
+       uint32_t size;
+
+       /** True if the block has been erased. */
+       int is_erased;
+
+       /** True if the block is bad. */
+       int is_bad;
+};
+
+struct nand_oobfree {
+       int offset;
+       int length;
+};
+
+struct nand_ecclayout {
+       int eccbytes;
+       int eccpos[64];
+       int oobavail;
+       struct nand_oobfree oobfree[2];
+};
+
+struct nand_device
+{
+       char *name;
+       struct nand_flash_controller *controller;
+       void *controller_priv;
+       struct nand_manufacturer *manufacturer;
+       struct nand_info *device;
+       int bus_width;
+       int address_cycles;
+       int page_size;
+       int erase_size;
+       int use_raw;
+       int num_blocks;
+       struct nand_block *blocks;
+       struct nand_device *next;
+};
+
+/* NAND Flash Manufacturer ID Codes
+ */
+enum
+{
+       NAND_MFR_TOSHIBA = 0x98,
+       NAND_MFR_SAMSUNG = 0xec,
+       NAND_MFR_FUJITSU = 0x04,
+       NAND_MFR_NATIONAL = 0x8f,
+       NAND_MFR_RENESAS = 0x07,
+       NAND_MFR_STMICRO = 0x20,
+       NAND_MFR_HYNIX = 0xad,
+       NAND_MFR_MICRON = 0x2c,
+};
+
+struct nand_manufacturer
+{
+       int id;
+       char *name;
+};
+
+struct nand_info
+{
+       char *name;
+       int id;
+       int page_size;
+       int chip_size;
+       int erase_size;
+       int options;
+};
+
+/* Option constants for bizarre disfunctionality and real features
+ */
+enum {
+       /* Chip can not auto increment pages */
+       NAND_NO_AUTOINCR = 0x00000001,
+
+       /* Buswitdh is 16 bit */
+       NAND_BUSWIDTH_16 = 0x00000002,
+
+       /* Device supports partial programming without padding */
+       NAND_NO_PADDING = 0x00000004,
+
+       /* Chip has cache program function */
+       NAND_CACHEPRG = 0x00000008,
+
+       /* Chip has copy back function */
+       NAND_COPYBACK = 0x00000010,
+
+       /* AND Chip which has 4 banks and a confusing page / block
+        * assignment. See Renesas datasheet for further information */
+       NAND_IS_AND = 0x00000020,
+
+       /* Chip has a array of 4 pages which can be read without
+        * additional ready /busy waits */
+       NAND_4PAGE_ARRAY = 0x00000040,
+
+       /* Chip requires that BBT is periodically rewritten to prevent
+        * bits from adjacent blocks from 'leaking' in altering data.
+        * This happens with the Renesas AG-AND chips, possibly others.  */
+       BBT_AUTO_REFRESH = 0x00000080,
+
+       /* Chip does not require ready check on read. True
+        * for all large page devices, as they do not support
+        * autoincrement.*/
+       NAND_NO_READRDY = 0x00000100,
+
+       /* Options valid for Samsung large page devices */
+       NAND_SAMSUNG_LP_OPTIONS = (NAND_NO_PADDING | NAND_CACHEPRG | NAND_COPYBACK),
+
+       /* Options for new chips with large page size. The pagesize and the
+        * erasesize is determined from the extended id bytes
+        */
+       LP_OPTIONS = (NAND_SAMSUNG_LP_OPTIONS | NAND_NO_READRDY | NAND_NO_AUTOINCR),
+       LP_OPTIONS16 = (LP_OPTIONS | NAND_BUSWIDTH_16),
+};
+
+enum
+{
+       /* Standard NAND flash commands */
+       NAND_CMD_READ0 = 0x0,
+       NAND_CMD_READ1 = 0x1,
+       NAND_CMD_RNDOUT = 0x5,
+       NAND_CMD_PAGEPROG = 0x10,
+       NAND_CMD_READOOB = 0x50,
+       NAND_CMD_ERASE1 = 0x60,
+       NAND_CMD_STATUS = 0x70,
+       NAND_CMD_STATUS_MULTI = 0x71,
+       NAND_CMD_SEQIN = 0x80,
+       NAND_CMD_RNDIN = 0x85,
+       NAND_CMD_READID = 0x90,
+       NAND_CMD_ERASE2 = 0xd0,
+       NAND_CMD_RESET = 0xff,
+
+       /* Extended commands for large page devices */
+       NAND_CMD_READSTART = 0x30,
+       NAND_CMD_RNDOUTSTART = 0xE0,
+       NAND_CMD_CACHEDPROG = 0x15,
+};
+
+/* Status bits */
+enum
+{
+       NAND_STATUS_FAIL = 0x01,
+       NAND_STATUS_FAIL_N1 = 0x02,
+       NAND_STATUS_TRUE_READY = 0x20,
+       NAND_STATUS_READY = 0x40,
+       NAND_STATUS_WP = 0x80,
+};
+
+/* OOB (spare) data formats */
+enum oob_formats
+{
+       NAND_OOB_NONE = 0x0,    /* no OOB data at all */
+       NAND_OOB_RAW = 0x1,             /* raw OOB data (16 bytes for 512b page sizes, 64 bytes for 2048b page sizes) */
+       NAND_OOB_ONLY = 0x2,    /* only OOB data */
+       NAND_OOB_SW_ECC = 0x10, /* when writing, use SW ECC (as opposed to no ECC) */
+       NAND_OOB_HW_ECC = 0x20, /* when writing, use HW ECC (as opposed to no ECC) */
+       NAND_OOB_SW_ECC_KW = 0x40, /* when writing, use Marvell's Kirkwood bootrom format */
+       NAND_OOB_JFFS2 = 0x100, /* when writing, use JFFS2 OOB layout */
+       NAND_OOB_YAFFS2 = 0x100,/* when writing, use YAFFS2 OOB layout */
+};
+
+
+/**
+ * Returns the flash bank specified by @a name, which matches the
+ * driver name and a suffix (option) specify the driver-specific
+ * bank number. The suffix consists of the '.' and the driver-specific
+ * bank number: when two davinci banks are defined, then 'davinci.1' refers
+ * to the second (e.g. DM355EVM).
+ */
+struct nand_device *get_nand_device_by_name(const char *name);
+
+struct nand_device *get_nand_device_by_num(int num);
+
+int nand_page_command(struct nand_device *nand, uint32_t page,
+               uint8_t cmd, bool oob_only);
+
+int nand_read_page_raw(struct nand_device *nand, uint32_t page,
+               uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
+int nand_write_page_raw(struct nand_device *nand, uint32_t page,
+               uint8_t *data, uint32_t data_size, uint8_t *oob, uint32_t oob_size);
+
+int nand_read_status(struct nand_device *nand, uint8_t *status);
+
+int nand_calculate_ecc(struct nand_device *nand,
+               const uint8_t *dat, uint8_t *ecc_code);
+int nand_calculate_ecc_kw(struct nand_device *nand,
+               const uint8_t *dat, uint8_t *ecc_code);
+
+int nand_register_commands(struct command_context *cmd_ctx);
+int nand_init(struct command_context *cmd_ctx);
+
+/// helper for parsing a nand device command argument string
+COMMAND_HELPER(nand_command_get_device, unsigned name_index,
+               struct nand_device **nand);
+
+
+#define                ERROR_NAND_DEVICE_INVALID               (-1100)
+#define                ERROR_NAND_OPERATION_FAILED             (-1101)
+#define                ERROR_NAND_OPERATION_TIMEOUT    (-1102)
+#define                ERROR_NAND_OPERATION_NOT_SUPPORTED      (-1103)
+#define                ERROR_NAND_DEVICE_NOT_PROBED    (-1104)
+#define                ERROR_NAND_ERROR_CORRECTION_FAILED      (-1105)
+#define                ERROR_NAND_NO_BUFFER                    (-1106)
+
+#endif // FLASH_NAND_CORE_H
+
index 0152b4d93787cff8ee7dd3b09045ed37d514936e..96cbfeae75b23ce09a9f106956872932ebe62491 100644 (file)
@@ -28,8 +28,9 @@
 #include "config.h"
 #endif
 
+#include "imp.h"
 #include "arm_io.h"
-
+#include <target/target.h>
 
 enum ecc {
        HWECC1,         /* all controllers support 1-bit ECC */
index 717f5aaad20261e646cc331e719ec839bd3c5c41..1ccc4f44f9d69911d507767e9ce8a65ce091dda2 100644 (file)
@@ -23,7 +23,7 @@
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
-#include <flash/nand.h>
+#include "core.h"
 #include "driver.h"
 
 /* NAND flash controller
index 1e103d00210a231e2f5cca96c42633f20f90eced..2de12d424510912e19ca020e6e932b6bb5e6e301 100644 (file)
@@ -41,7 +41,7 @@
 #include "config.h"
 #endif
 
-#include <flash/nand.h>
+#include "core.h"
 
 /*
  * Pre-calculated 256-way 1 byte column parity
index 55273c58f7622e7e0ca2341a9f1de6a2b4a8a968..1c1a8ea64c71d5c95d870299610f94d658892b61 100644 (file)
@@ -20,7 +20,7 @@
 #include "config.h"
 #endif
 
-#include <flash/nand.h>
+#include "core.h"
 
 /*****************************************************************************
  * Arithmetic in GF(2^10) ("F") modulo x^10 + x^3 + 1.
index fbaa8b424faa20a3f098e5eec11da33f0dc02d50..3e397ebd6b70dd60f16fdfdef745f497cd06d354 100644 (file)
@@ -24,7 +24,7 @@
 #include "config.h"
 #endif
 
-#include <flash/nand.h>
+#include "core.h"
 #include "fileio.h"
 
 static struct nand_ecclayout nand_oob_16 = {
index b381b538ddc9bad7da00642becdc2bc4eadd9d57..e0d411fa4e44cd8b5978e93927f8797c75f3bc14 100644 (file)
@@ -19,6 +19,9 @@
 #ifndef FLASH_NAND_IMP_H
 #define FLASH_NAND_IMP_H
 
+#include "core.h"
+#include "driver.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);
index 80284cc62d6728cb446e9715c51a78fc5913ba12..4268b66ebef7e390f2875783b5dfe9f2f30a4d7e 100644 (file)
 #include "config.h"
 #endif
 
+#include "imp.h"
 #include "lpc3180.h"
-#include <flash/nand.h>
+#include <target/target.h>
+
 
 static int lpc3180_reset(struct nand_device *nand);
 static int lpc3180_controller_ready(struct nand_device *nand, int timeout);
index 21577a6e9334ff8841abf078359ffcfef1a56847..4823534c04c4c1cc6d1c2337a49d2869bdfd7728 100644 (file)
@@ -35,7 +35,9 @@ get_next_halfword_from_sram_buffer() not tested
 #include "config.h"
 #endif
 
+#include "imp.h"
 #include "mx3.h"
+#include <target/target.h>
 
 static const char target_not_halted_err_msg[] =
        "target must be halted to use mx3 NAND flash controller";
index 94dbf0cba6d94a93dc657143f2c2a05f5346ab13..f37fc323d62b82db70084bd336bdde90d82c49e1 100644 (file)
@@ -25,7 +25,6 @@
  *
  * Many thanks to Ben Dooks for writing s3c24xx driver.
  */
-#include <flash/nand.h>
 
 #define                MX3_NF_BASE_ADDR                0xb8000000
 #define                MX3_NF_BUFSIZ                   (MX3_NF_BASE_ADDR + 0xe00)
index 8d15040ffacb0cca08c432ccc646a797118b1ee0..ab490aeab2e2f83053efffcb84a93c023768275d 100644 (file)
@@ -20,7 +20,8 @@
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
-#include <flash/nand.h>
+
+#include "imp.h"
 #include "hello.h"
 
 
index 4b174da35e549a18376318a7aacb609d628b5b83..01d4a082b31f42dfa95809a72620ce21dc0b4bee 100644 (file)
@@ -26,6 +26,7 @@
 #include "config.h"
 #endif
 
+#include "imp.h"
 #include "arm_io.h"
 #include <target/armv4_5.h>
 
index f89bf6e91e5c6ae4e68267e030f42b69c9592795..9424cb3eb3adb16e19d7dc67f296d97841bd32ab 100644 (file)
@@ -27,8 +27,9 @@
  * Many thanks to Simtec Electronics for sponsoring this work.
  */
 
-#include <flash/nand.h>
-#include <flash/nand/s3c24xx_regs.h>
+#include "imp.h"
+#include "s3c24xx_regs.h"
+#include <target/target.h>
 
 struct s3c24xx_nand_controller
 {
index 75a416f1986c367ecb24c355c1f50399ba262684..e69882bb5851397b466d2d8a77db70fa752da29c 100644 (file)
@@ -24,7 +24,7 @@
 #include "config.h"
 #endif
 
-#include <flash/nand.h>
+#include "core.h"
 #include "imp.h"
 #include "fileio.h"
 
index e500ba6081a9182dbea9d91127e77ea28411e8f3..8cb86746bf51e61fd5f5a5b7cea4ff3d75e4d9d4 100644 (file)
@@ -35,7 +35,7 @@
 #include <xsvf/xsvf.h>
 #include <svf/svf.h>
 #include <flash/nor/core.h>
-#include <flash/nand.h>
+#include <flash/nand/core.h>
 #include <pld/pld.h>
 #include <flash/mflash.h>