c6c731fe31
Add support for NXP layerscape ls1043ardb 64b/32b Dev board. LS1043a is an SoC with 4x64-bit up to 1.6 GHz ARMv8 A53 cores. ls1043ardb support features as: 2GB DDR4, 128MB NOR/512MB NAND, USB3.0, eSDHC, I2C, GPIO, PCIe/Mini-PCIe, 6x1G/1x10G network port, etc. 64b/32b ls1043ardb target is using 4.4 kernel, and rcw/u-boot/fman images from NXP QorIQ SDK release. All of 4.4 kernel patches porting from SDK release or upstream. QorIQ SDK ISOs can be downloaded from this location: http://www.nxp.com/products/software-and-tools/run-time-software/linux-sdk/linux-sdk-for-qoriq-processors:SDKLINUX Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>
51 lines
1.5 KiB
Diff
51 lines
1.5 KiB
Diff
From bf489e54ef3de7de2d9caf896141fd08490a89c9 Mon Sep 17 00:00:00 2001
|
|
From: Raghav Dogra <raghav@freescale.com>
|
|
Date: Wed, 16 Dec 2015 16:11:50 +0530
|
|
Subject: [PATCH 45/70] driver/memory: Update dependency of IFC for Layerscape
|
|
|
|
IFC NAND is not working on ARM layescape platform due to
|
|
undefined macro FSL_SOC.
|
|
This patch fixes the dependency to enable NAND.
|
|
|
|
Signed-off-by: Raghav Dogra <raghav@freescale.com>
|
|
---
|
|
drivers/memory/Kconfig | 2 +-
|
|
drivers/memory/fsl_ifc.c | 4 +++-
|
|
drivers/mtd/nand/Kconfig | 2 +-
|
|
3 files changed, 5 insertions(+), 3 deletions(-)
|
|
|
|
--- a/drivers/memory/Kconfig
|
|
+++ b/drivers/memory/Kconfig
|
|
@@ -103,7 +103,7 @@ config FSL_CORENET_CF
|
|
|
|
config FSL_IFC
|
|
bool
|
|
- depends on FSL_SOC
|
|
+ depends on FSL_SOC || ARCH_LAYERSCAPE
|
|
|
|
config JZ4780_NEMC
|
|
bool "Ingenic JZ4780 SoC NEMC driver"
|
|
--- a/drivers/memory/fsl_ifc.c
|
|
+++ b/drivers/memory/fsl_ifc.c
|
|
@@ -32,7 +32,9 @@
|
|
#include <linux/of_device.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/fsl_ifc.h>
|
|
-#include <asm/prom.h>
|
|
+#include <linux/irqdomain.h>
|
|
+#include <linux/of_address.h>
|
|
+#include <linux/of_irq.h>
|
|
|
|
struct fsl_ifc_ctrl *fsl_ifc_ctrl_dev;
|
|
EXPORT_SYMBOL(fsl_ifc_ctrl_dev);
|
|
--- a/drivers/mtd/nand/Kconfig
|
|
+++ b/drivers/mtd/nand/Kconfig
|
|
@@ -436,7 +436,7 @@ config MTD_NAND_FSL_ELBC
|
|
|
|
config MTD_NAND_FSL_IFC
|
|
tristate "NAND support for Freescale IFC controller"
|
|
- depends on MTD_NAND && FSL_SOC
|
|
+ depends on MTD_NAND && (FSL_SOC || ARCH_LAYERSCAPE)
|
|
select FSL_IFC
|
|
select MEMORY
|
|
help
|