mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 12:18:55 +00:00
eb3a6e3283
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>
11 lines
488 B
Makefile
11 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
|