blob: 8821704911be69ab24e1e487a1f6c98903062e14 [file] [log] [blame]
Marian Balakowiczf9328632006-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 Denk932394a2005-08-17 12:55:25 +020024include $(TOPDIR)/config.mk
25
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010026LIB := $(obj)libnand.o
Wolfgang Denk932394a2005-08-17 12:55:25 +020027
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +020028ifdef CONFIG_CMD_NAND
Scott Wood6f2f01b2012-09-20 19:09:07 -050029
Simon Schwarz12c2f1e2011-09-14 15:30:16 -040030ifdef CONFIG_SPL_BUILD
Scott Wood6f2f01b2012-09-20 19:09:07 -050031
32ifdef CONFIG_SPL_NAND_DRIVERS
33NORMAL_DRIVERS=y
Simon Schwarz12c2f1e2011-09-14 15:30:16 -040034endif
Scott Wood6f2f01b2012-09-20 19:09:07 -050035
Ilya Yanok5846b112012-11-06 13:06:34 +000036COBJS-$(CONFIG_SPL_NAND_AM33XX_BCH) += am335x_spl_bch.o
Mike Dunn956b03e2013-04-12 11:59:18 -070037COBJS-$(CONFIG_SPL_NAND_DOCG4) += docg4_spl.o
Scott Wood6f2f01b2012-09-20 19:09:07 -050038COBJS-$(CONFIG_SPL_NAND_SIMPLE) += nand_spl_simple.o
39COBJS-$(CONFIG_SPL_NAND_LOAD) += nand_spl_load.o
40COBJS-$(CONFIG_SPL_NAND_ECC) += nand_ecc.o
41COBJS-$(CONFIG_SPL_NAND_BASE) += nand_base.o
42
43else # not spl
44
45NORMAL_DRIVERS=y
46
Grant Likelyf0037c52007-09-24 09:05:30 -060047COBJS-y += nand.o
Grant Likelyf0037c52007-09-24 09:05:30 -060048COBJS-y += nand_bbt.o
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +020049COBJS-y += nand_ids.o
Grant Likelyf0037c52007-09-24 09:05:30 -060050COBJS-y += nand_util.o
Scott Wood1f7b1742012-02-13 15:46:27 -060051COBJS-y += nand_ecc.o
Simon Schwarz12c2f1e2011-09-14 15:30:16 -040052COBJS-y += nand_base.o
Scott Wood6f2f01b2012-09-20 19:09:07 -050053
54endif # not spl
55
56ifdef NORMAL_DRIVERS
57
Christian Hitz4c6de852011-10-12 09:31:59 +020058COBJS-$(CONFIG_NAND_ECC_BCH) += nand_bch.o
Marian Balakowiczf9328632006-09-01 19:49:50 +020059
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010060COBJS-$(CONFIG_NAND_ATMEL) += atmel_nand.o
Mike Frysingerbe9d8c72008-11-26 21:43:06 -050061COBJS-$(CONFIG_DRIVER_NAND_BFIN) += bfin_nand.o
Jean-Christophe PLAGNIOL-VILLARDee4f3e22009-03-30 18:58:39 +020062COBJS-$(CONFIG_NAND_DAVINCI) += davinci_nand.o
Scott Wood9fd020d2008-03-21 16:12:51 -050063COBJS-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_nand.o
Dipen Dudhat52f90da2011-03-22 09:27:39 +053064COBJS-$(CONFIG_NAND_FSL_IFC) += fsl_ifc_nand.o
Jean-Christophe PLAGNIOL-VILLARDcc4a0ce2008-08-13 01:40:43 +020065COBJS-$(CONFIG_NAND_FSL_UPM) += fsl_upm.o
Vipin KUMAR7f0730a2012-05-22 00:15:54 +000066COBJS-$(CONFIG_NAND_FSMC) += fsmc_nand.o
Xiangfu Liu3a6591a2011-10-12 12:24:06 +080067COBJS-$(CONFIG_NAND_JZ4740) += jz4740_nand.o
Matthias Kaehlcke403ce1f2009-07-16 21:19:29 +020068COBJS-$(CONFIG_NAND_KB9202) += kb9202_nand.o
Prafulla Wadaskar205a0982009-06-29 15:25:18 +053069COBJS-$(CONFIG_NAND_KIRKWOOD) += kirkwood_nand.o
Heiko Schocherde425092009-07-21 17:13:40 +020070COBJS-$(CONFIG_NAND_KMETER1) += kmeter1_nand.o
Stefan Roese35f2edb2009-06-09 16:57:03 +020071COBJS-$(CONFIG_NAND_MPC5121_NFC) += mpc5121_nfc.o
Ilya Yanok36fab992009-08-11 02:32:54 +040072COBJS-$(CONFIG_NAND_MXC) += mxc_nand.o
Marek Vasut0d4e8502011-11-08 23:18:16 +000073COBJS-$(CONFIG_NAND_MXS) += mxs_nand.o
Stefan Roese12582ac2009-07-16 15:12:48 +020074COBJS-$(CONFIG_NAND_NDFC) += ndfc.o
Alessandro Rubini0d8c6ea2009-02-09 15:53:31 +010075COBJS-$(CONFIG_NAND_NOMADIK) += nomadik.o
kevin.morfitt@fearnside-systems.co.uk98713d22009-06-18 18:41:03 +010076COBJS-$(CONFIG_NAND_S3C2410) += s3c2410_nand.o
Vipin KUMAR165fa402010-01-15 19:15:46 +053077COBJS-$(CONFIG_NAND_SPEAR) += spr_nand.o
Jim Lin312693c2012-07-29 20:53:29 +000078COBJS-$(CONFIG_TEGRA_NAND) += tegra_nand.o
Dirk Behme12201a12008-12-14 09:47:16 +010079COBJS-$(CONFIG_NAND_OMAP_GPMC) += omap_gpmc.o
Mike Frysingercd844232009-05-25 22:42:28 -040080COBJS-$(CONFIG_NAND_PLAT) += nand_plat.o
Mike Dunn956b03e2013-04-12 11:59:18 -070081COBJS-$(CONFIG_NAND_DOCG4) += docg4.o
Scott Wood6f2f01b2012-09-20 19:09:07 -050082
Albert ARIBAUD44948592013-01-08 23:57:20 +010083else # minimal SPL drivers
84
85COBJS-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_spl.o
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000086COBJS-$(CONFIG_NAND_MXC) += mxc_nand_spl.o
Albert ARIBAUD44948592013-01-08 23:57:20 +010087
Scott Wood6f2f01b2012-09-20 19:09:07 -050088endif # drivers
89endif # nand
Anton Vorontsovcd9d2302008-01-14 23:09:32 +030090
Grant Likelyf0037c52007-09-24 09:05:30 -060091COBJS := $(COBJS-y)
Wolfgang Denk53677ef2008-05-20 16:00:29 +020092SRCS := $(COBJS:.o=.c)
93OBJS := $(addprefix $(obj),$(COBJS))
Marian Balakowiczf9328632006-09-01 19:49:50 +020094
Wolfgang Denk932394a2005-08-17 12:55:25 +020095all: $(LIB)
96
Marian Balakowiczf9328632006-09-01 19:49:50 +020097$(LIB): $(obj).depend $(OBJS)
Sebastien Carlier6d8962e2010-11-05 15:48:07 +010098 $(call cmd_link_o_target, $(OBJS))
Wolfgang Denk932394a2005-08-17 12:55:25 +020099
100#########################################################################
101
Marian Balakowiczf9328632006-09-01 19:49:50 +0200102# defines $(obj).depend target
103include $(SRCTREE)/rules.mk
Wolfgang Denk932394a2005-08-17 12:55:25 +0200104
Marian Balakowiczf9328632006-09-01 19:49:50 +0200105sinclude $(obj).depend
106
107#########################################################################