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