mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 11:18:28 +00:00
1d9654dc43
A patch for NAND uclass support was proposed about half a year ago: https://patchwork.ozlabs.org/patch/722282/ It was not merged and I do not see on-going work for this. Without DM-based probing, we need to set up pinctrl etc. in an ad-hoc way and give lots of crappy CONFIG options for base addresses and properties, which are supposed to be specified by DT. This is painful. This commit just provides a probe hook to retrieve "reg" from DT and allocate private data in a DM manner. This DT driver is not essentially a NAND driver, in fact it is (ab)using UCLASS_MISC. Once UCLASS_NAND is supported, it would be possible to migrate to it. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
78 lines
2.2 KiB
Makefile
78 lines
2.2 KiB
Makefile
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
ifdef CONFIG_SPL_NAND_DRIVERS
|
|
NORMAL_DRIVERS=y
|
|
endif
|
|
|
|
obj-$(CONFIG_SPL_NAND_AM33XX_BCH) += am335x_spl_bch.o
|
|
obj-$(CONFIG_SPL_NAND_DENALI) += denali_spl.o
|
|
obj-$(CONFIG_SPL_NAND_SIMPLE) += nand_spl_simple.o
|
|
obj-$(CONFIG_SPL_NAND_LOAD) += nand_spl_load.o
|
|
obj-$(CONFIG_SPL_NAND_ECC) += nand_ecc.o
|
|
obj-$(CONFIG_SPL_NAND_BASE) += nand_base.o
|
|
obj-$(CONFIG_SPL_NAND_INIT) += nand.o
|
|
ifeq ($(CONFIG_SPL_ENV_SUPPORT),y)
|
|
obj-$(CONFIG_ENV_IS_IN_NAND) += nand_util.o
|
|
endif
|
|
|
|
else # not spl
|
|
|
|
NORMAL_DRIVERS=y
|
|
|
|
obj-y += nand.o
|
|
obj-y += nand_bbt.o
|
|
obj-y += nand_ids.o
|
|
obj-y += nand_util.o
|
|
obj-y += nand_ecc.o
|
|
obj-y += nand_base.o
|
|
obj-y += nand_timings.o
|
|
|
|
endif # not spl
|
|
|
|
ifdef NORMAL_DRIVERS
|
|
|
|
obj-$(CONFIG_NAND_ECC_BCH) += nand_bch.o
|
|
|
|
obj-$(CONFIG_NAND_ATMEL) += atmel_nand.o
|
|
obj-$(CONFIG_NAND_ARASAN) += arasan_nfc.o
|
|
obj-$(CONFIG_NAND_DAVINCI) += davinci_nand.o
|
|
obj-$(CONFIG_NAND_DENALI) += denali.o
|
|
obj-$(CONFIG_NAND_DENALI_DT) += denali_dt.o
|
|
obj-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_nand.o
|
|
obj-$(CONFIG_NAND_FSL_IFC) += fsl_ifc_nand.o
|
|
obj-$(CONFIG_NAND_FSL_UPM) += fsl_upm.o
|
|
obj-$(CONFIG_NAND_FSMC) += fsmc_nand.o
|
|
obj-$(CONFIG_NAND_KB9202) += kb9202_nand.o
|
|
obj-$(CONFIG_NAND_KIRKWOOD) += kirkwood_nand.o
|
|
obj-$(CONFIG_NAND_KMETER1) += kmeter1_nand.o
|
|
obj-$(CONFIG_NAND_LPC32XX_MLC) += lpc32xx_nand_mlc.o
|
|
obj-$(CONFIG_NAND_LPC32XX_SLC) += lpc32xx_nand_slc.o
|
|
obj-$(CONFIG_NAND_VF610_NFC) += vf610_nfc.o
|
|
obj-$(CONFIG_NAND_MXC) += mxc_nand.o
|
|
obj-$(CONFIG_NAND_MXS) += mxs_nand.o
|
|
obj-$(CONFIG_NAND_NDFC) += ndfc.o
|
|
obj-$(CONFIG_NAND_PXA3XX) += pxa3xx_nand.o
|
|
obj-$(CONFIG_NAND_SPEAR) += spr_nand.o
|
|
obj-$(CONFIG_TEGRA_NAND) += tegra_nand.o
|
|
obj-$(CONFIG_NAND_OMAP_GPMC) += omap_gpmc.o
|
|
obj-$(CONFIG_NAND_OMAP_ELM) += omap_elm.o
|
|
obj-$(CONFIG_NAND_PLAT) += nand_plat.o
|
|
obj-$(CONFIG_NAND_SUNXI) += sunxi_nand.o
|
|
obj-$(CONFIG_NAND_ZYNQ) += zynq_nand.o
|
|
|
|
else # minimal SPL drivers
|
|
|
|
obj-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_spl.o
|
|
obj-$(CONFIG_NAND_FSL_IFC) += fsl_ifc_spl.o
|
|
obj-$(CONFIG_NAND_MXC) += mxc_nand_spl.o
|
|
obj-$(CONFIG_NAND_MXS) += mxs_nand_spl.o mxs_nand.o
|
|
obj-$(CONFIG_NAND_SUNXI) += sunxi_nand_spl.o
|
|
|
|
endif # drivers
|