mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 13:07:00 +07:00
af3855dd19
The BCM6368 has a NAND interrupt register with combined status and enable registers. As the BCM6328, BCM6362 and BCM6368 all use v2.1 controllers, the first variant that will work with this driver is the BCM63268 using a v4.0 controller. Set up the device by disabling and acking all interrupts, then handle the CTRL_READY interrupt. Signed-off-by: Simon Arlott <simon@fire.lp0.eu> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
8 lines
369 B
Makefile
8 lines
369 B
Makefile
# link order matters; don't link the more generic brcmstb_nand.o before the
|
|
# more specific iproc_nand.o, for instance
|
|
obj-$(CONFIG_MTD_NAND_BRCMNAND) += iproc_nand.o
|
|
obj-$(CONFIG_MTD_NAND_BRCMNAND) += bcm63138_nand.o
|
|
obj-$(CONFIG_MTD_NAND_BRCMNAND) += bcm6368_nand.o
|
|
obj-$(CONFIG_MTD_NAND_BRCMNAND) += brcmstb_nand.o
|
|
obj-$(CONFIG_MTD_NAND_BRCMNAND) += brcmnand.o
|