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>
705 lines
24 KiB
Diff
705 lines
24 KiB
Diff
From 1c62b9982b7f6cb560d1237d2658945c070c91d4 Mon Sep 17 00:00:00 2001
|
|
From: Raghav Dogra <raghav@freescale.com>
|
|
Date: Wed, 20 Jan 2016 13:06:32 +0530
|
|
Subject: [PATCH 46/70] mtd/ifc: Segregate IFC fcm and runtime registers
|
|
|
|
IFC has two set of registers viz FCM (Flash control machine)
|
|
aka global and run time registers. These set are defined in two
|
|
memory map PAGES. Upto IFC 1.4 PAGE size is 4 KB and from IFC2.0
|
|
PAGE size is 64KB
|
|
|
|
Signed-off-by: Jaiprakash Singh <b44839@freescale.com>
|
|
Signed-off-by: Raghav Dogra <raghav@freescale.com>
|
|
---
|
|
drivers/memory/fsl_ifc.c | 251 ++++++++++++++++++++-------------------
|
|
drivers/mtd/nand/fsl_ifc_nand.c | 72 ++++++-----
|
|
include/linux/fsl_ifc.h | 48 +++++---
|
|
3 files changed, 203 insertions(+), 168 deletions(-)
|
|
|
|
--- a/drivers/memory/fsl_ifc.c
|
|
+++ b/drivers/memory/fsl_ifc.c
|
|
@@ -64,11 +64,11 @@ int fsl_ifc_find(phys_addr_t addr_base)
|
|
{
|
|
int i = 0;
|
|
|
|
- if (!fsl_ifc_ctrl_dev || !fsl_ifc_ctrl_dev->regs)
|
|
+ if (!fsl_ifc_ctrl_dev || !fsl_ifc_ctrl_dev->gregs)
|
|
return -ENODEV;
|
|
|
|
for (i = 0; i < fsl_ifc_ctrl_dev->banks; i++) {
|
|
- u32 cspr = ifc_in32(&fsl_ifc_ctrl_dev->regs->cspr_cs[i].cspr);
|
|
+ u32 cspr = ifc_in32(&fsl_ifc_ctrl_dev->gregs->cspr_cs[i].cspr);
|
|
if (cspr & CSPR_V && (cspr & CSPR_BA) ==
|
|
convert_ifc_address(addr_base))
|
|
return i;
|
|
@@ -80,7 +80,7 @@ EXPORT_SYMBOL(fsl_ifc_find);
|
|
|
|
static int fsl_ifc_ctrl_init(struct fsl_ifc_ctrl *ctrl)
|
|
{
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_fcm __iomem *ifc = ctrl->gregs;
|
|
|
|
/*
|
|
* Clear all the common status and event registers
|
|
@@ -109,7 +109,7 @@ static int fsl_ifc_ctrl_remove(struct pl
|
|
irq_dispose_mapping(ctrl->nand_irq);
|
|
irq_dispose_mapping(ctrl->irq);
|
|
|
|
- iounmap(ctrl->regs);
|
|
+ iounmap(ctrl->gregs);
|
|
|
|
dev_set_drvdata(&dev->dev, NULL);
|
|
kfree(ctrl);
|
|
@@ -127,7 +127,7 @@ static DEFINE_SPINLOCK(nand_irq_lock);
|
|
|
|
static u32 check_nand_stat(struct fsl_ifc_ctrl *ctrl)
|
|
{
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc = ctrl->rregs;
|
|
unsigned long flags;
|
|
u32 stat;
|
|
|
|
@@ -162,7 +162,7 @@ static irqreturn_t fsl_ifc_nand_irq(int
|
|
static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data)
|
|
{
|
|
struct fsl_ifc_ctrl *ctrl = data;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_fcm __iomem *ifc = ctrl->gregs;
|
|
u32 err_axiid, err_srcid, status, cs_err, err_addr;
|
|
irqreturn_t ret = IRQ_NONE;
|
|
|
|
@@ -220,6 +220,7 @@ static int fsl_ifc_ctrl_probe(struct pla
|
|
{
|
|
int ret = 0;
|
|
int version, banks;
|
|
+ void __iomem *addr;
|
|
|
|
dev_info(&dev->dev, "Freescale Integrated Flash Controller\n");
|
|
|
|
@@ -230,22 +231,13 @@ static int fsl_ifc_ctrl_probe(struct pla
|
|
dev_set_drvdata(&dev->dev, fsl_ifc_ctrl_dev);
|
|
|
|
/* IOMAP the entire IFC region */
|
|
- fsl_ifc_ctrl_dev->regs = of_iomap(dev->dev.of_node, 0);
|
|
- if (!fsl_ifc_ctrl_dev->regs) {
|
|
+ fsl_ifc_ctrl_dev->gregs = of_iomap(dev->dev.of_node, 0);
|
|
+ if (!fsl_ifc_ctrl_dev->gregs) {
|
|
dev_err(&dev->dev, "failed to get memory region\n");
|
|
ret = -ENODEV;
|
|
goto err;
|
|
}
|
|
|
|
- version = ifc_in32(&fsl_ifc_ctrl_dev->regs->ifc_rev) &
|
|
- FSL_IFC_VERSION_MASK;
|
|
- banks = (version == FSL_IFC_VERSION_1_0_0) ? 4 : 8;
|
|
- dev_info(&dev->dev, "IFC version %d.%d, %d banks\n",
|
|
- version >> 24, (version >> 16) & 0xf, banks);
|
|
-
|
|
- fsl_ifc_ctrl_dev->version = version;
|
|
- fsl_ifc_ctrl_dev->banks = banks;
|
|
-
|
|
if (of_property_read_bool(dev->dev.of_node, "little-endian")) {
|
|
fsl_ifc_ctrl_dev->little_endian = true;
|
|
dev_dbg(&dev->dev, "IFC REGISTERS are LITTLE endian\n");
|
|
@@ -254,8 +246,9 @@ static int fsl_ifc_ctrl_probe(struct pla
|
|
dev_dbg(&dev->dev, "IFC REGISTERS are BIG endian\n");
|
|
}
|
|
|
|
- version = ioread32be(&fsl_ifc_ctrl_dev->regs->ifc_rev) &
|
|
+ version = ifc_in32(&fsl_ifc_ctrl_dev->gregs->ifc_rev) &
|
|
FSL_IFC_VERSION_MASK;
|
|
+
|
|
banks = (version == FSL_IFC_VERSION_1_0_0) ? 4 : 8;
|
|
dev_info(&dev->dev, "IFC version %d.%d, %d banks\n",
|
|
version >> 24, (version >> 16) & 0xf, banks);
|
|
@@ -263,6 +256,14 @@ static int fsl_ifc_ctrl_probe(struct pla
|
|
fsl_ifc_ctrl_dev->version = version;
|
|
fsl_ifc_ctrl_dev->banks = banks;
|
|
|
|
+ addr = fsl_ifc_ctrl_dev->gregs;
|
|
+ if (version >= FSL_IFC_VERSION_2_0_0)
|
|
+ fsl_ifc_ctrl_dev->rregs =
|
|
+ (struct fsl_ifc_runtime *)(addr + PGOFFSET_64K);
|
|
+ else
|
|
+ fsl_ifc_ctrl_dev->rregs =
|
|
+ (struct fsl_ifc_runtime *)(addr + PGOFFSET_4K);
|
|
+
|
|
/* get the Controller level irq */
|
|
fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
|
|
if (fsl_ifc_ctrl_dev->irq == 0) {
|
|
@@ -319,33 +320,39 @@ err:
|
|
static int fsl_ifc_suspend(struct device *dev)
|
|
{
|
|
struct fsl_ifc_ctrl *ctrl = dev_get_drvdata(dev);
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_fcm __iomem *fcm = ctrl->gregs;
|
|
+ struct fsl_ifc_runtime __iomem *runtime = ctrl->rregs;
|
|
__be32 nand_evter_intr_en, cm_evter_intr_en, nor_evter_intr_en,
|
|
gpcm_evter_intr_en;
|
|
|
|
- ctrl->saved_regs = kzalloc(sizeof(struct fsl_ifc_regs), GFP_KERNEL);
|
|
- if (!ctrl->saved_regs)
|
|
+ ctrl->saved_gregs = kzalloc(sizeof(struct fsl_ifc_fcm), GFP_KERNEL);
|
|
+ if (!ctrl->saved_gregs)
|
|
+ return -ENOMEM;
|
|
+ ctrl->saved_rregs = kzalloc(sizeof(struct fsl_ifc_runtime), GFP_KERNEL);
|
|
+ if (!ctrl->saved_rregs)
|
|
return -ENOMEM;
|
|
|
|
- cm_evter_intr_en = ifc_in32(&ifc->cm_evter_intr_en);
|
|
- nand_evter_intr_en = ifc_in32(&ifc->ifc_nand.nand_evter_intr_en);
|
|
- nor_evter_intr_en = ifc_in32(&ifc->ifc_nor.nor_evter_intr_en);
|
|
- gpcm_evter_intr_en = ifc_in32(&ifc->ifc_gpcm.gpcm_evter_intr_en);
|
|
+ cm_evter_intr_en = ifc_in32(&fcm->cm_evter_intr_en);
|
|
+ nand_evter_intr_en = ifc_in32(&runtime->ifc_nand.nand_evter_intr_en);
|
|
+ nor_evter_intr_en = ifc_in32(&runtime->ifc_nor.nor_evter_intr_en);
|
|
+ gpcm_evter_intr_en = ifc_in32(&runtime->ifc_gpcm.gpcm_evter_intr_en);
|
|
|
|
/* IFC interrupts disabled */
|
|
|
|
- ifc_out32(0x0, &ifc->cm_evter_intr_en);
|
|
- ifc_out32(0x0, &ifc->ifc_nand.nand_evter_intr_en);
|
|
- ifc_out32(0x0, &ifc->ifc_nor.nor_evter_intr_en);
|
|
- ifc_out32(0x0, &ifc->ifc_gpcm.gpcm_evter_intr_en);
|
|
-
|
|
- memcpy_fromio(ctrl->saved_regs, ifc, sizeof(struct fsl_ifc_regs));
|
|
+ ifc_out32(0x0, &fcm->cm_evter_intr_en);
|
|
+ ifc_out32(0x0, &runtime->ifc_nand.nand_evter_intr_en);
|
|
+ ifc_out32(0x0, &runtime->ifc_nor.nor_evter_intr_en);
|
|
+ ifc_out32(0x0, &runtime->ifc_gpcm.gpcm_evter_intr_en);
|
|
+
|
|
+ memcpy_fromio(ctrl->saved_gregs, fcm, sizeof(struct fsl_ifc_fcm));
|
|
+ memcpy_fromio(ctrl->saved_rregs, runtime,
|
|
+ sizeof(struct fsl_ifc_runtime));
|
|
|
|
/* save the interrupt values */
|
|
- ctrl->saved_regs->cm_evter_intr_en = cm_evter_intr_en;
|
|
- ctrl->saved_regs->ifc_nand.nand_evter_intr_en = nand_evter_intr_en;
|
|
- ctrl->saved_regs->ifc_nor.nor_evter_intr_en = nor_evter_intr_en;
|
|
- ctrl->saved_regs->ifc_gpcm.gpcm_evter_intr_en = gpcm_evter_intr_en;
|
|
+ ctrl->saved_gregs->cm_evter_intr_en = cm_evter_intr_en;
|
|
+ ctrl->saved_rregs->ifc_nand.nand_evter_intr_en = nand_evter_intr_en;
|
|
+ ctrl->saved_rregs->ifc_nor.nor_evter_intr_en = nor_evter_intr_en;
|
|
+ ctrl->saved_rregs->ifc_gpcm.gpcm_evter_intr_en = gpcm_evter_intr_en;
|
|
|
|
return 0;
|
|
}
|
|
@@ -354,110 +361,116 @@ static int fsl_ifc_suspend(struct device
|
|
static int fsl_ifc_resume(struct device *dev)
|
|
{
|
|
struct fsl_ifc_ctrl *ctrl = dev_get_drvdata(dev);
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
- struct fsl_ifc_regs *savd_regs = ctrl->saved_regs;
|
|
+ struct fsl_ifc_fcm __iomem *fcm = ctrl->gregs;
|
|
+ struct fsl_ifc_runtime __iomem *runtime = ctrl->rregs;
|
|
+ struct fsl_ifc_fcm *savd_gregs = ctrl->saved_gregs;
|
|
+ struct fsl_ifc_runtime *savd_rregs = ctrl->saved_rregs;
|
|
uint32_t ver = 0, ncfgr, status, ifc_bank, i;
|
|
|
|
/*
|
|
* IFC interrupts disabled
|
|
*/
|
|
- ifc_out32(0x0, &ifc->cm_evter_intr_en);
|
|
- ifc_out32(0x0, &ifc->ifc_nand.nand_evter_intr_en);
|
|
- ifc_out32(0x0, &ifc->ifc_nor.nor_evter_intr_en);
|
|
- ifc_out32(0x0, &ifc->ifc_gpcm.gpcm_evter_intr_en);
|
|
+ ifc_out32(0x0, &fcm->cm_evter_intr_en);
|
|
+ ifc_out32(0x0, &runtime->ifc_nand.nand_evter_intr_en);
|
|
+ ifc_out32(0x0, &runtime->ifc_nor.nor_evter_intr_en);
|
|
+ ifc_out32(0x0, &runtime->ifc_gpcm.gpcm_evter_intr_en);
|
|
|
|
|
|
- if (ctrl->saved_regs) {
|
|
+ if (ctrl->saved_gregs) {
|
|
for (ifc_bank = 0; ifc_bank < FSL_IFC_BANK_COUNT; ifc_bank++) {
|
|
- ifc_out32(savd_regs->cspr_cs[ifc_bank].cspr_ext,
|
|
- &ifc->cspr_cs[ifc_bank].cspr_ext);
|
|
- ifc_out32(savd_regs->cspr_cs[ifc_bank].cspr,
|
|
- &ifc->cspr_cs[ifc_bank].cspr);
|
|
- ifc_out32(savd_regs->amask_cs[ifc_bank].amask,
|
|
- &ifc->amask_cs[ifc_bank].amask);
|
|
- ifc_out32(savd_regs->csor_cs[ifc_bank].csor_ext,
|
|
- &ifc->csor_cs[ifc_bank].csor_ext);
|
|
- ifc_out32(savd_regs->csor_cs[ifc_bank].csor,
|
|
- &ifc->csor_cs[ifc_bank].csor);
|
|
+ ifc_out32(savd_gregs->cspr_cs[ifc_bank].cspr_ext,
|
|
+ &fcm->cspr_cs[ifc_bank].cspr_ext);
|
|
+ ifc_out32(savd_gregs->cspr_cs[ifc_bank].cspr,
|
|
+ &fcm->cspr_cs[ifc_bank].cspr);
|
|
+ ifc_out32(savd_gregs->amask_cs[ifc_bank].amask,
|
|
+ &fcm->amask_cs[ifc_bank].amask);
|
|
+ ifc_out32(savd_gregs->csor_cs[ifc_bank].csor_ext,
|
|
+ &fcm->csor_cs[ifc_bank].csor_ext);
|
|
+ ifc_out32(savd_gregs->csor_cs[ifc_bank].csor,
|
|
+ &fcm->csor_cs[ifc_bank].csor);
|
|
for (i = 0; i < 4; i++) {
|
|
- ifc_out32(savd_regs->ftim_cs[ifc_bank].ftim[i],
|
|
- &ifc->ftim_cs[ifc_bank].ftim[i]);
|
|
+ ifc_out32(savd_gregs->ftim_cs[ifc_bank].ftim[i],
|
|
+ &fcm->ftim_cs[ifc_bank].ftim[i]);
|
|
}
|
|
}
|
|
- ifc_out32(savd_regs->ifc_gcr, &ifc->ifc_gcr);
|
|
- ifc_out32(savd_regs->cm_evter_en, &ifc->cm_evter_en);
|
|
-
|
|
-/*
|
|
-* IFC controller NAND machine registers
|
|
-*/
|
|
- ifc_out32(savd_regs->ifc_nand.ncfgr, &ifc->ifc_nand.ncfgr);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_fcr0,
|
|
- &ifc->ifc_nand.nand_fcr0);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_fcr1,
|
|
- &ifc->ifc_nand.nand_fcr1);
|
|
- ifc_out32(savd_regs->ifc_nand.row0, &ifc->ifc_nand.row0);
|
|
- ifc_out32(savd_regs->ifc_nand.row1, &ifc->ifc_nand.row1);
|
|
- ifc_out32(savd_regs->ifc_nand.col0, &ifc->ifc_nand.col0);
|
|
- ifc_out32(savd_regs->ifc_nand.col1, &ifc->ifc_nand.col1);
|
|
- ifc_out32(savd_regs->ifc_nand.row2, &ifc->ifc_nand.row2);
|
|
- ifc_out32(savd_regs->ifc_nand.col2, &ifc->ifc_nand.col2);
|
|
- ifc_out32(savd_regs->ifc_nand.row3, &ifc->ifc_nand.row3);
|
|
- ifc_out32(savd_regs->ifc_nand.col3, &ifc->ifc_nand.col3);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_fbcr,
|
|
- &ifc->ifc_nand.nand_fbcr);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_fir0,
|
|
- &ifc->ifc_nand.nand_fir0);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_fir1,
|
|
- &ifc->ifc_nand.nand_fir1);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_fir2,
|
|
- &ifc->ifc_nand.nand_fir2);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_csel,
|
|
- &ifc->ifc_nand.nand_csel);
|
|
- ifc_out32(savd_regs->ifc_nand.nandseq_strt,
|
|
- &ifc->ifc_nand.nandseq_strt);
|
|
- ifc_out32(savd_regs->ifc_nand.nand_evter_en,
|
|
- &ifc->ifc_nand.nand_evter_en);
|
|
- ifc_out32(savd_regs->ifc_nand.nanndcr, &ifc->ifc_nand.nanndcr);
|
|
-
|
|
-/*
|
|
-* IFC controller NOR machine registers
|
|
-*/
|
|
- ifc_out32(savd_regs->ifc_nor.nor_evter_en,
|
|
- &ifc->ifc_nor.nor_evter_en);
|
|
- ifc_out32(savd_regs->ifc_nor.norcr, &ifc->ifc_nor.norcr);
|
|
-
|
|
-/*
|
|
- * IFC controller GPCM Machine registers
|
|
- */
|
|
- ifc_out32(savd_regs->ifc_gpcm.gpcm_evter_en,
|
|
- &ifc->ifc_gpcm.gpcm_evter_en);
|
|
-
|
|
-
|
|
-
|
|
-/*
|
|
- * IFC interrupts enabled
|
|
- */
|
|
- ifc_out32(ctrl->saved_regs->cm_evter_intr_en, &ifc->cm_evter_intr_en);
|
|
- ifc_out32(ctrl->saved_regs->ifc_nand.nand_evter_intr_en,
|
|
- &ifc->ifc_nand.nand_evter_intr_en);
|
|
- ifc_out32(ctrl->saved_regs->ifc_nor.nor_evter_intr_en,
|
|
- &ifc->ifc_nor.nor_evter_intr_en);
|
|
- ifc_out32(ctrl->saved_regs->ifc_gpcm.gpcm_evter_intr_en,
|
|
- &ifc->ifc_gpcm.gpcm_evter_intr_en);
|
|
+ ifc_out32(savd_gregs->rb_map, &fcm->rb_map);
|
|
+ ifc_out32(savd_gregs->wb_map, &fcm->wb_map);
|
|
+ ifc_out32(savd_gregs->ifc_gcr, &fcm->ifc_gcr);
|
|
+ ifc_out32(savd_gregs->ddr_ccr_low, &fcm->ddr_ccr_low);
|
|
+ ifc_out32(savd_gregs->cm_evter_en, &fcm->cm_evter_en);
|
|
+ }
|
|
|
|
- kfree(ctrl->saved_regs);
|
|
- ctrl->saved_regs = NULL;
|
|
+ if (ctrl->saved_rregs) {
|
|
+ /* IFC controller NAND machine registers */
|
|
+ ifc_out32(savd_rregs->ifc_nand.ncfgr,
|
|
+ &runtime->ifc_nand.ncfgr);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_fcr0,
|
|
+ &runtime->ifc_nand.nand_fcr0);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_fcr1,
|
|
+ &runtime->ifc_nand.nand_fcr1);
|
|
+ ifc_out32(savd_rregs->ifc_nand.row0, &runtime->ifc_nand.row0);
|
|
+ ifc_out32(savd_rregs->ifc_nand.row1, &runtime->ifc_nand.row1);
|
|
+ ifc_out32(savd_rregs->ifc_nand.col0, &runtime->ifc_nand.col0);
|
|
+ ifc_out32(savd_rregs->ifc_nand.col1, &runtime->ifc_nand.col1);
|
|
+ ifc_out32(savd_rregs->ifc_nand.row2, &runtime->ifc_nand.row2);
|
|
+ ifc_out32(savd_rregs->ifc_nand.col2, &runtime->ifc_nand.col2);
|
|
+ ifc_out32(savd_rregs->ifc_nand.row3, &runtime->ifc_nand.row3);
|
|
+ ifc_out32(savd_rregs->ifc_nand.col3, &runtime->ifc_nand.col3);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_fbcr,
|
|
+ &runtime->ifc_nand.nand_fbcr);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_fir0,
|
|
+ &runtime->ifc_nand.nand_fir0);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_fir1,
|
|
+ &runtime->ifc_nand.nand_fir1);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_fir2,
|
|
+ &runtime->ifc_nand.nand_fir2);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_csel,
|
|
+ &runtime->ifc_nand.nand_csel);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nandseq_strt,
|
|
+ &runtime->ifc_nand.nandseq_strt);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_evter_en,
|
|
+ &runtime->ifc_nand.nand_evter_en);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nanndcr,
|
|
+ &runtime->ifc_nand.nanndcr);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_dll_lowcfg0,
|
|
+ &runtime->ifc_nand.nand_dll_lowcfg0);
|
|
+ ifc_out32(savd_rregs->ifc_nand.nand_dll_lowcfg1,
|
|
+ &runtime->ifc_nand.nand_dll_lowcfg1);
|
|
+
|
|
+ /* IFC controller NOR machine registers */
|
|
+ ifc_out32(savd_rregs->ifc_nor.nor_evter_en,
|
|
+ &runtime->ifc_nor.nor_evter_en);
|
|
+ ifc_out32(savd_rregs->ifc_nor.norcr, &runtime->ifc_nor.norcr);
|
|
+
|
|
+ /* IFC controller GPCM Machine registers */
|
|
+ ifc_out32(savd_rregs->ifc_gpcm.gpcm_evter_en,
|
|
+ &runtime->ifc_gpcm.gpcm_evter_en);
|
|
+
|
|
+ /* IFC interrupts enabled */
|
|
+ ifc_out32(ctrl->saved_gregs->cm_evter_intr_en,
|
|
+ &fcm->cm_evter_intr_en);
|
|
+ ifc_out32(ctrl->saved_rregs->ifc_nand.nand_evter_intr_en,
|
|
+ &runtime->ifc_nand.nand_evter_intr_en);
|
|
+ ifc_out32(ctrl->saved_rregs->ifc_nor.nor_evter_intr_en,
|
|
+ &runtime->ifc_nor.nor_evter_intr_en);
|
|
+ ifc_out32(ctrl->saved_rregs->ifc_gpcm.gpcm_evter_intr_en,
|
|
+ &runtime->ifc_gpcm.gpcm_evter_intr_en);
|
|
+
|
|
+ kfree(ctrl->saved_gregs);
|
|
+ kfree(ctrl->saved_rregs);
|
|
+ ctrl->saved_gregs = NULL;
|
|
+ ctrl->saved_rregs = NULL;
|
|
}
|
|
|
|
- ver = ifc_in32(&ctrl->regs->ifc_rev);
|
|
- ncfgr = ifc_in32(&ifc->ifc_nand.ncfgr);
|
|
+ ver = ifc_in32(&fcm->ifc_rev);
|
|
+ ncfgr = ifc_in32(&runtime->ifc_nand.ncfgr);
|
|
if (ver >= FSL_IFC_V1_3_0) {
|
|
|
|
ifc_out32(ncfgr | IFC_NAND_SRAM_INIT_EN,
|
|
- &ifc->ifc_nand.ncfgr);
|
|
+ &runtime->ifc_nand.ncfgr);
|
|
/* wait for SRAM_INIT bit to be clear or timeout */
|
|
status = spin_event_timeout(
|
|
- !(ifc_in32(&ifc->ifc_nand.ncfgr)
|
|
+ !(ifc_in32(&runtime->ifc_nand.ncfgr)
|
|
& IFC_NAND_SRAM_INIT_EN),
|
|
IFC_TIMEOUT_MSECS, 0);
|
|
|
|
--- a/drivers/mtd/nand/fsl_ifc_nand.c
|
|
+++ b/drivers/mtd/nand/fsl_ifc_nand.c
|
|
@@ -233,7 +233,7 @@ static void set_addr(struct mtd_info *mt
|
|
struct nand_chip *chip = mtd->priv;
|
|
struct fsl_ifc_mtd *priv = chip->priv;
|
|
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc = ctrl->rregs;
|
|
int buf_num;
|
|
|
|
ifc_nand_ctrl->page = page_addr;
|
|
@@ -296,7 +296,7 @@ static void fsl_ifc_run_command(struct m
|
|
struct fsl_ifc_mtd *priv = chip->priv;
|
|
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
|
|
struct fsl_ifc_nand_ctrl *nctrl = ifc_nand_ctrl;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc = ctrl->rregs;
|
|
u32 eccstat[4];
|
|
int i;
|
|
|
|
@@ -372,7 +372,7 @@ static void fsl_ifc_do_read(struct nand_
|
|
{
|
|
struct fsl_ifc_mtd *priv = chip->priv;
|
|
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc = ctrl->rregs;
|
|
|
|
/* Program FIR/IFC_NAND_FCR0 for Small/Large page */
|
|
if (mtd->writesize > 512) {
|
|
@@ -412,7 +412,7 @@ static void fsl_ifc_cmdfunc(struct mtd_i
|
|
struct nand_chip *chip = mtd->priv;
|
|
struct fsl_ifc_mtd *priv = chip->priv;
|
|
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc = ctrl->rregs;
|
|
|
|
/* clear the read buffer */
|
|
ifc_nand_ctrl->read_bytes = 0;
|
|
@@ -724,7 +724,7 @@ static int fsl_ifc_wait(struct mtd_info
|
|
{
|
|
struct fsl_ifc_mtd *priv = chip->priv;
|
|
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc = ctrl->rregs;
|
|
u32 nand_fsr;
|
|
|
|
/* Use READ_STATUS command, but wait for the device to be ready */
|
|
@@ -826,39 +826,42 @@ static int fsl_ifc_chip_init_tail(struct
|
|
static void fsl_ifc_sram_init(struct fsl_ifc_mtd *priv)
|
|
{
|
|
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc_runtime = ctrl->rregs;
|
|
+ struct fsl_ifc_fcm __iomem *ifc_global = ctrl->gregs;
|
|
uint32_t csor = 0, csor_8k = 0, csor_ext = 0;
|
|
uint32_t cs = priv->bank;
|
|
|
|
/* Save CSOR and CSOR_ext */
|
|
- csor = ifc_in32(&ifc->csor_cs[cs].csor);
|
|
- csor_ext = ifc_in32(&ifc->csor_cs[cs].csor_ext);
|
|
+ csor = ifc_in32(&ifc_global->csor_cs[cs].csor);
|
|
+ csor_ext = ifc_in32(&ifc_global->csor_cs[cs].csor_ext);
|
|
|
|
/* chage PageSize 8K and SpareSize 1K*/
|
|
csor_8k = (csor & ~(CSOR_NAND_PGS_MASK)) | 0x0018C000;
|
|
- ifc_out32(csor_8k, &ifc->csor_cs[cs].csor);
|
|
- ifc_out32(0x0000400, &ifc->csor_cs[cs].csor_ext);
|
|
+ ifc_out32(csor_8k, &ifc_global->csor_cs[cs].csor);
|
|
+ ifc_out32(0x0000400, &ifc_global->csor_cs[cs].csor_ext);
|
|
|
|
/* READID */
|
|
ifc_out32((IFC_FIR_OP_CW0 << IFC_NAND_FIR0_OP0_SHIFT) |
|
|
- (IFC_FIR_OP_UA << IFC_NAND_FIR0_OP1_SHIFT) |
|
|
- (IFC_FIR_OP_RB << IFC_NAND_FIR0_OP2_SHIFT),
|
|
- &ifc->ifc_nand.nand_fir0);
|
|
+ (IFC_FIR_OP_UA << IFC_NAND_FIR0_OP1_SHIFT) |
|
|
+ (IFC_FIR_OP_RB << IFC_NAND_FIR0_OP2_SHIFT),
|
|
+ &ifc_runtime->ifc_nand.nand_fir0);
|
|
ifc_out32(NAND_CMD_READID << IFC_NAND_FCR0_CMD0_SHIFT,
|
|
- &ifc->ifc_nand.nand_fcr0);
|
|
- ifc_out32(0x0, &ifc->ifc_nand.row3);
|
|
+ &ifc_runtime->ifc_nand.nand_fcr0);
|
|
+ ifc_out32(0x0, &ifc_runtime->ifc_nand.row3);
|
|
|
|
- ifc_out32(0x0, &ifc->ifc_nand.nand_fbcr);
|
|
+ ifc_out32(0x0, &ifc_runtime->ifc_nand.nand_fbcr);
|
|
|
|
/* Program ROW0/COL0 */
|
|
- ifc_out32(0x0, &ifc->ifc_nand.row0);
|
|
- ifc_out32(0x0, &ifc->ifc_nand.col0);
|
|
+ ifc_out32(0x0, &ifc_runtime->ifc_nand.row0);
|
|
+ ifc_out32(0x0, &ifc_runtime->ifc_nand.col0);
|
|
|
|
/* set the chip select for NAND Transaction */
|
|
- ifc_out32(cs << IFC_NAND_CSEL_SHIFT, &ifc->ifc_nand.nand_csel);
|
|
+ ifc_out32(cs << IFC_NAND_CSEL_SHIFT,
|
|
+ &ifc_runtime->ifc_nand.nand_csel);
|
|
|
|
/* start read seq */
|
|
- ifc_out32(IFC_NAND_SEQ_STRT_FIR_STRT, &ifc->ifc_nand.nandseq_strt);
|
|
+ ifc_out32(IFC_NAND_SEQ_STRT_FIR_STRT,
|
|
+ &ifc_runtime->ifc_nand.nandseq_strt);
|
|
|
|
/* wait for command complete flag or timeout */
|
|
wait_event_timeout(ctrl->nand_wait, ctrl->nand_stat,
|
|
@@ -868,14 +871,15 @@ static void fsl_ifc_sram_init(struct fsl
|
|
printk(KERN_ERR "fsl-ifc: Failed to Initialise SRAM\n");
|
|
|
|
/* Restore CSOR and CSOR_ext */
|
|
- ifc_out32(csor, &ifc->csor_cs[cs].csor);
|
|
- ifc_out32(csor_ext, &ifc->csor_cs[cs].csor_ext);
|
|
+ ifc_out32(csor, &ifc_global->csor_cs[cs].csor);
|
|
+ ifc_out32(csor_ext, &ifc_global->csor_cs[cs].csor_ext);
|
|
}
|
|
|
|
static int fsl_ifc_chip_init(struct fsl_ifc_mtd *priv)
|
|
{
|
|
struct fsl_ifc_ctrl *ctrl = priv->ctrl;
|
|
- struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
|
|
+ struct fsl_ifc_fcm __iomem *ifc_global = ctrl->gregs;
|
|
+ struct fsl_ifc_runtime __iomem *ifc_runtime = ctrl->rregs;
|
|
struct nand_chip *chip = &priv->chip;
|
|
struct nand_ecclayout *layout;
|
|
u32 csor;
|
|
@@ -886,7 +890,8 @@ static int fsl_ifc_chip_init(struct fsl_
|
|
|
|
/* fill in nand_chip structure */
|
|
/* set up function call table */
|
|
- if ((ifc_in32(&ifc->cspr_cs[priv->bank].cspr)) & CSPR_PORT_SIZE_16)
|
|
+ if ((ifc_in32(&ifc_global->cspr_cs[priv->bank].cspr))
|
|
+ & CSPR_PORT_SIZE_16)
|
|
chip->read_byte = fsl_ifc_read_byte16;
|
|
else
|
|
chip->read_byte = fsl_ifc_read_byte;
|
|
@@ -900,13 +905,14 @@ static int fsl_ifc_chip_init(struct fsl_
|
|
chip->bbt_td = &bbt_main_descr;
|
|
chip->bbt_md = &bbt_mirror_descr;
|
|
|
|
- ifc_out32(0x0, &ifc->ifc_nand.ncfgr);
|
|
+ ifc_out32(0x0, &ifc_runtime->ifc_nand.ncfgr);
|
|
|
|
/* set up nand options */
|
|
chip->bbt_options = NAND_BBT_USE_FLASH;
|
|
chip->options = NAND_NO_SUBPAGE_WRITE;
|
|
|
|
- if (ifc_in32(&ifc->cspr_cs[priv->bank].cspr) & CSPR_PORT_SIZE_16) {
|
|
+ if (ifc_in32(&ifc_global->cspr_cs[priv->bank].cspr)
|
|
+ & CSPR_PORT_SIZE_16) {
|
|
chip->read_byte = fsl_ifc_read_byte16;
|
|
chip->options |= NAND_BUSWIDTH_16;
|
|
} else {
|
|
@@ -919,7 +925,7 @@ static int fsl_ifc_chip_init(struct fsl_
|
|
chip->ecc.read_page = fsl_ifc_read_page;
|
|
chip->ecc.write_page = fsl_ifc_write_page;
|
|
|
|
- csor = ifc_in32(&ifc->csor_cs[priv->bank].csor);
|
|
+ csor = ifc_in32(&ifc_global->csor_cs[priv->bank].csor);
|
|
|
|
/* Hardware generates ECC per 512 Bytes */
|
|
chip->ecc.size = 512;
|
|
@@ -1005,10 +1011,10 @@ static int fsl_ifc_chip_remove(struct fs
|
|
return 0;
|
|
}
|
|
|
|
-static int match_bank(struct fsl_ifc_regs __iomem *ifc, int bank,
|
|
+static int match_bank(struct fsl_ifc_fcm __iomem *ifc_global, int bank,
|
|
phys_addr_t addr)
|
|
{
|
|
- u32 cspr = ifc_in32(&ifc->cspr_cs[bank].cspr);
|
|
+ u32 cspr = ifc_in32(&ifc_global->cspr_cs[bank].cspr);
|
|
|
|
if (!(cspr & CSPR_V))
|
|
return 0;
|
|
@@ -1022,7 +1028,7 @@ static DEFINE_MUTEX(fsl_ifc_nand_mutex);
|
|
|
|
static int fsl_ifc_nand_probe(struct platform_device *dev)
|
|
{
|
|
- struct fsl_ifc_regs __iomem *ifc;
|
|
+ struct fsl_ifc_runtime __iomem *ifc;
|
|
struct fsl_ifc_mtd *priv;
|
|
struct resource res;
|
|
static const char *part_probe_types[]
|
|
@@ -1033,9 +1039,9 @@ static int fsl_ifc_nand_probe(struct pla
|
|
struct mtd_part_parser_data ppdata;
|
|
|
|
ppdata.of_node = dev->dev.of_node;
|
|
- if (!fsl_ifc_ctrl_dev || !fsl_ifc_ctrl_dev->regs)
|
|
+ if (!fsl_ifc_ctrl_dev || !fsl_ifc_ctrl_dev->rregs)
|
|
return -ENODEV;
|
|
- ifc = fsl_ifc_ctrl_dev->regs;
|
|
+ ifc = fsl_ifc_ctrl_dev->rregs;
|
|
|
|
/* get, allocate and map the memory resource */
|
|
ret = of_address_to_resource(node, 0, &res);
|
|
@@ -1046,7 +1052,7 @@ static int fsl_ifc_nand_probe(struct pla
|
|
|
|
/* find which chip select it is connected to */
|
|
for (bank = 0; bank < fsl_ifc_ctrl_dev->banks; bank++) {
|
|
- if (match_bank(ifc, bank, res.start))
|
|
+ if (match_bank(fsl_ifc_ctrl_dev->gregs, bank, res.start))
|
|
break;
|
|
}
|
|
|
|
--- a/include/linux/fsl_ifc.h
|
|
+++ b/include/linux/fsl_ifc.h
|
|
@@ -39,6 +39,10 @@
|
|
#define FSL_IFC_VERSION_MASK 0x0F0F0000
|
|
#define FSL_IFC_VERSION_1_0_0 0x01000000
|
|
#define FSL_IFC_VERSION_1_1_0 0x01010000
|
|
+#define FSL_IFC_VERSION_2_0_0 0x02000000
|
|
+
|
|
+#define PGOFFSET_64K (64*1024)
|
|
+#define PGOFFSET_4K (4*1024)
|
|
|
|
/*
|
|
* CSPR - Chip Select Property Register
|
|
@@ -725,20 +729,26 @@ struct fsl_ifc_nand {
|
|
__be32 nand_evter_en;
|
|
u32 res17[0x2];
|
|
__be32 nand_evter_intr_en;
|
|
- u32 res18[0x2];
|
|
+ __be32 nand_vol_addr_stat;
|
|
+ u32 res18;
|
|
__be32 nand_erattr0;
|
|
__be32 nand_erattr1;
|
|
u32 res19[0x10];
|
|
__be32 nand_fsr;
|
|
- u32 res20;
|
|
- __be32 nand_eccstat[4];
|
|
- u32 res21[0x20];
|
|
+ u32 res20[0x3];
|
|
+ __be32 nand_eccstat[6];
|
|
+ u32 res21[0x1c];
|
|
__be32 nanndcr;
|
|
u32 res22[0x2];
|
|
__be32 nand_autoboot_trgr;
|
|
u32 res23;
|
|
__be32 nand_mdr;
|
|
- u32 res24[0x5C];
|
|
+ u32 res24[0x1C];
|
|
+ __be32 nand_dll_lowcfg0;
|
|
+ __be32 nand_dll_lowcfg1;
|
|
+ u32 res25;
|
|
+ __be32 nand_dll_lowstat;
|
|
+ u32 res26[0x3c];
|
|
};
|
|
|
|
/*
|
|
@@ -773,13 +783,12 @@ struct fsl_ifc_gpcm {
|
|
__be32 gpcm_erattr1;
|
|
__be32 gpcm_erattr2;
|
|
__be32 gpcm_stat;
|
|
- u32 res4[0x1F3];
|
|
};
|
|
|
|
/*
|
|
* IFC Controller Registers
|
|
*/
|
|
-struct fsl_ifc_regs {
|
|
+struct fsl_ifc_fcm {
|
|
__be32 ifc_rev;
|
|
u32 res1[0x2];
|
|
struct {
|
|
@@ -805,21 +814,26 @@ struct fsl_ifc_regs {
|
|
} ftim_cs[FSL_IFC_BANK_COUNT];
|
|
u32 res9[0x30];
|
|
__be32 rb_stat;
|
|
- u32 res10[0x2];
|
|
+ __be32 rb_map;
|
|
+ __be32 wb_map;
|
|
__be32 ifc_gcr;
|
|
- u32 res11[0x2];
|
|
+ u32 res10[0x2];
|
|
__be32 cm_evter_stat;
|
|
- u32 res12[0x2];
|
|
+ u32 res11[0x2];
|
|
__be32 cm_evter_en;
|
|
- u32 res13[0x2];
|
|
+ u32 res12[0x2];
|
|
__be32 cm_evter_intr_en;
|
|
- u32 res14[0x2];
|
|
+ u32 res13[0x2];
|
|
__be32 cm_erattr0;
|
|
__be32 cm_erattr1;
|
|
- u32 res15[0x2];
|
|
+ u32 res14[0x2];
|
|
__be32 ifc_ccr;
|
|
__be32 ifc_csr;
|
|
- u32 res16[0x2EB];
|
|
+ __be32 ddr_ccr_low;
|
|
+};
|
|
+
|
|
+
|
|
+struct fsl_ifc_runtime {
|
|
struct fsl_ifc_nand ifc_nand;
|
|
struct fsl_ifc_nor ifc_nor;
|
|
struct fsl_ifc_gpcm ifc_gpcm;
|
|
@@ -833,7 +847,8 @@ extern int fsl_ifc_find(phys_addr_t addr
|
|
struct fsl_ifc_ctrl {
|
|
/* device info */
|
|
struct device *dev;
|
|
- struct fsl_ifc_regs __iomem *regs;
|
|
+ struct fsl_ifc_fcm __iomem *gregs;
|
|
+ struct fsl_ifc_runtime __iomem *rregs;
|
|
int irq;
|
|
int nand_irq;
|
|
spinlock_t lock;
|
|
@@ -846,7 +861,8 @@ struct fsl_ifc_ctrl {
|
|
bool little_endian;
|
|
#ifdef CONFIG_PM_SLEEP
|
|
/*save regs when system goes to deep sleep*/
|
|
- struct fsl_ifc_regs *saved_regs;
|
|
+ struct fsl_ifc_fcm *saved_gregs;
|
|
+ struct fsl_ifc_runtime *saved_rregs;
|
|
#endif
|
|
};
|
|
|