mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-31 11:31:27 +02:00
Add support for the iproc Broadcom NAND controller, used in Northstar SoCs for example. Based on the Linux driver. Cc: Philippe Reynes <philippe.reynes@softathome.com> Cc: Dario Binacchi <dario.binacchi@amarulasolutions.com> Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: William Zhang <william.zhang@broadcom.com> Link: https://lore.kernel.org/all/20230308214231.378013-1-linus.walleij@linaro.org/ Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
12 lines
488 B
Makefile
12 lines
488 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
obj-$(CONFIG_NAND_BRCMNAND_6368) += bcm6368_nand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND_63158) += bcm63158_nand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND_6753) += bcm6753_nand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND_68360) += bcm68360_nand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND_6838) += bcm6838_nand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND_6858) += bcm6858_nand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND_IPROC) += iproc_nand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND) += brcmnand.o
|
|
obj-$(CONFIG_NAND_BRCMNAND) += brcmnand_compat.o
|