move remaining nand helper files
Move remaining NAND implementation files into src/flash/nand/.__archive__
parent
747d6f2286
commit
da3bcb392e
|
@ -9,9 +9,6 @@ METASOURCES = AUTO
|
|||
noinst_LTLIBRARIES = libflash.la
|
||||
libflash_la_SOURCES = \
|
||||
common.c \
|
||||
arm_nandio.c \
|
||||
nand_ecc.c \
|
||||
nand_ecc_kw.c \
|
||||
mflash.c
|
||||
|
||||
libflash_la_LIBADD = \
|
||||
|
@ -19,7 +16,6 @@ libflash_la_LIBADD = \
|
|||
$(top_builddir)/src/flash/nand/libocdflashnand.la
|
||||
|
||||
noinst_HEADERS = \
|
||||
arm_nandio.h \
|
||||
common.h \
|
||||
mflash.h \
|
||||
nand.h
|
||||
|
|
|
@ -3,9 +3,12 @@ AM_CPPFLAGS = -I$(top_srcdir)/src
|
|||
noinst_LTLIBRARIES = libocdflashnand.la
|
||||
|
||||
libocdflashnand_la_SOURCES = \
|
||||
ecc.c \
|
||||
ecc_kw.c \
|
||||
core.c \
|
||||
fileio.c \
|
||||
tcl.c \
|
||||
arm_io.c \
|
||||
$(NAND_DRIVERS) \
|
||||
driver.c
|
||||
|
||||
|
@ -22,6 +25,7 @@ NAND_DRIVERS = \
|
|||
s3c2443.c
|
||||
|
||||
noinst_HEADERS = \
|
||||
arm_io.h \
|
||||
lpc3180.h \
|
||||
driver.h \
|
||||
mx3.h \
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "arm_nandio.h"
|
||||
#include "arm_io.h"
|
||||
#include <target/armv4_5.h>
|
||||
#include <target/algorithm.h>
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <flash/arm_nandio.h>
|
||||
#include "arm_io.h"
|
||||
|
||||
|
||||
enum ecc {
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "nand.h"
|
||||
#include <flash/nand.h>
|
||||
|
||||
/*
|
||||
* Pre-calculated 256-way 1 byte column parity
|
|
@ -20,9 +20,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include "nand.h"
|
||||
|
||||
#include <flash/nand.h>
|
||||
|
||||
/*****************************************************************************
|
||||
* Arithmetic in GF(2^10) ("F") modulo x^10 + x^3 + 1.
|
|
@ -26,7 +26,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <flash/arm_nandio.h>
|
||||
#include "arm_io.h"
|
||||
#include <target/armv4_5.h>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue