blob: d8a2dfc398aff5c2aff31816646db82ba3bf9e3f [file] [log] [blame]
Marian Balakowiczd62379d2006-09-01 19:49:50 +02001#
2# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020024include $(TOPDIR)/config.mk
25
Sebastien Carliera8d426f2010-11-05 15:48:07 +010026LIB := $(obj)libnand.o
Marian Balakowiczd62379d2006-09-01 19:49:50 +020027
Jean-Christophe PLAGNIOL-VILLARD719bb5f2008-08-13 01:40:43 +020028ifdef CONFIG_CMD_NAND
Scott Woodc352a0c2012-09-20 19:09:07 -050029
Simon Schwarz4f62e982011-09-14 15:30:16 -040030ifdef CONFIG_SPL_BUILD
Scott Woodc352a0c2012-09-20 19:09:07 -050031
32ifdef CONFIG_SPL_NAND_DRIVERS
33NORMAL_DRIVERS=y
Heiko Schocher565a09c2011-11-01 20:00:29 +000034endif
Scott Woodc352a0c2012-09-20 19:09:07 -050035
36COBJS-$(CONFIG_SPL_NAND_SIMPLE) += nand_spl_simple.o
37COBJS-$(CONFIG_SPL_NAND_LOAD) += nand_spl_load.o
38COBJS-$(CONFIG_SPL_NAND_ECC) += nand_ecc.o
39COBJS-$(CONFIG_SPL_NAND_BASE) += nand_base.o
40
41else # not spl
42
43NORMAL_DRIVERS=y
44
Grant Likely1179ad12007-09-24 09:05:30 -060045COBJS-y += nand.o
Grant Likely1179ad12007-09-24 09:05:30 -060046COBJS-y += nand_bbt.o
Jean-Christophe PLAGNIOL-VILLARD719bb5f2008-08-13 01:40:43 +020047COBJS-y += nand_ids.o
Grant Likely1179ad12007-09-24 09:05:30 -060048COBJS-y += nand_util.o
Scott Wood107c6302012-02-13 15:46:27 -060049COBJS-y += nand_ecc.o
Simon Schwarz4f62e982011-09-14 15:30:16 -040050COBJS-y += nand_base.o
Scott Woodc352a0c2012-09-20 19:09:07 -050051
52endif # not spl
53
54ifdef NORMAL_DRIVERS
55
Christian Hitz55f7bca2011-10-12 09:31:59 +020056COBJS-$(CONFIG_NAND_ECC_BCH) += nand_bch.o
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020057
Jean-Christophe PLAGNIOL-VILLARDc9539ba2009-03-22 10:22:34 +010058COBJS-$(CONFIG_NAND_ATMEL) += atmel_nand.o
Mike Frysinger4e2fe542008-11-26 21:43:06 -050059COBJS-$(CONFIG_DRIVER_NAND_BFIN) += bfin_nand.o
Jean-Christophe PLAGNIOL-VILLARDf6812502009-03-30 18:58:39 +020060COBJS-$(CONFIG_NAND_DAVINCI) += davinci_nand.o
Scott Wood40c6e092008-03-21 16:12:51 -050061COBJS-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_nand.o
Dipen Dudhat9eae0832011-03-22 09:27:39 +053062COBJS-$(CONFIG_NAND_FSL_IFC) += fsl_ifc_nand.o
Jean-Christophe PLAGNIOL-VILLARD719bb5f2008-08-13 01:40:43 +020063COBJS-$(CONFIG_NAND_FSL_UPM) += fsl_upm.o
Vipin KUMAR6f2f5572012-05-22 00:15:54 +000064COBJS-$(CONFIG_NAND_FSMC) += fsmc_nand.o
Xiangfu Liu244e4282011-10-12 12:24:06 +080065COBJS-$(CONFIG_NAND_JZ4740) += jz4740_nand.o
Matthias Kaehlcke723fe352009-07-16 21:19:29 +020066COBJS-$(CONFIG_NAND_KB9202) += kb9202_nand.o
Prafulla Wadaskare9046782009-06-29 15:25:18 +053067COBJS-$(CONFIG_NAND_KIRKWOOD) += kirkwood_nand.o
Heiko Schocher1bc95632009-07-21 17:13:40 +020068COBJS-$(CONFIG_NAND_KMETER1) += kmeter1_nand.o
Stefan Roesed4b75c42009-06-09 16:57:03 +020069COBJS-$(CONFIG_NAND_MPC5121_NFC) += mpc5121_nfc.o
Ilya Yanokf9e2bee2009-08-11 02:32:54 +040070COBJS-$(CONFIG_NAND_MXC) += mxc_nand.o
Marek Vasut913a7252011-11-08 23:18:16 +000071COBJS-$(CONFIG_NAND_MXS) += mxs_nand.o
Stefan Roese913fd052009-07-16 15:12:48 +020072COBJS-$(CONFIG_NAND_NDFC) += ndfc.o
Alessandro Rubini9b97b452009-02-09 15:53:31 +010073COBJS-$(CONFIG_NAND_NOMADIK) += nomadik.o
kevin.morfitt@fearnside-systems.co.uk3e9f2012009-06-18 18:41:03 +010074COBJS-$(CONFIG_NAND_S3C2410) += s3c2410_nand.o
Guennadi Liakhovetski21ece4d2008-08-31 00:39:47 +020075COBJS-$(CONFIG_NAND_S3C64XX) += s3c64xx.o
Vipin KUMAR204ad542010-01-15 19:15:46 +053076COBJS-$(CONFIG_NAND_SPEAR) += spr_nand.o
Jim Lin5d309e62012-07-29 20:53:29 +000077COBJS-$(CONFIG_TEGRA_NAND) += tegra_nand.o
Dirk Behme778933f2008-12-14 09:47:16 +010078COBJS-$(CONFIG_NAND_OMAP_GPMC) += omap_gpmc.o
Mike Frysingerc0e7c7a2009-05-25 22:42:28 -040079COBJS-$(CONFIG_NAND_PLAT) += nand_plat.o
Scott Woodc352a0c2012-09-20 19:09:07 -050080
81endif # drivers
82endif # nand
Anton Vorontsov6ab97e92008-01-14 23:09:32 +030083
Grant Likely1179ad12007-09-24 09:05:30 -060084COBJS := $(COBJS-y)
Wolfgang Denka1be4762008-05-20 16:00:29 +020085SRCS := $(COBJS:.o=.c)
86OBJS := $(addprefix $(obj),$(COBJS))
Marian Balakowiczd62379d2006-09-01 19:49:50 +020087
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020088all: $(LIB)
89
Marian Balakowiczd62379d2006-09-01 19:49:50 +020090$(LIB): $(obj).depend $(OBJS)
Sebastien Carliera8d426f2010-11-05 15:48:07 +010091 $(call cmd_link_o_target, $(OBJS))
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020092
93#########################################################################
94
Marian Balakowiczd62379d2006-09-01 19:49:50 +020095# defines $(obj).depend target
96include $(SRCTREE)/rules.mk
Wolfgang Denk2f9b7e42005-08-17 12:55:25 +020097
Marian Balakowiczd62379d2006-09-01 19:49:50 +020098sinclude $(obj).depend
99
100#########################################################################