2 * Copyright 2011 Freescale Semiconductor, Inc
4 * Freescale Integrated Flash Controller
6 * Author: Dipen Dudhat <Dipen.Dudhat@freescale.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/compiler.h>
25 #include <linux/spinlock.h>
26 #include <linux/types.h>
27 #include <linux/slab.h>
30 #include <linux/of_device.h>
31 #include <linux/platform_device.h>
32 #include <linux/fsl_ifc.h>
35 struct fsl_ifc_ctrl *fsl_ifc_ctrl_dev;
36 EXPORT_SYMBOL(fsl_ifc_ctrl_dev);
39 * convert_ifc_address - convert the base address
40 * @addr_base: base address of the memory bank
42 unsigned int convert_ifc_address(phys_addr_t addr_base)
44 return addr_base & CSPR_BA;
46 EXPORT_SYMBOL(convert_ifc_address);
49 * fsl_ifc_find - find IFC bank
50 * @addr_base: base address of the memory bank
52 * This function walks IFC banks comparing "Base address" field of the CSPR
53 * registers with the supplied addr_base argument. When bases match this
54 * function returns bank number (starting with 0), otherwise it returns
55 * appropriate errno value.
57 int fsl_ifc_find(phys_addr_t addr_base)
61 if (!fsl_ifc_ctrl_dev || !fsl_ifc_ctrl_dev->regs)
64 for (i = 0; i < fsl_ifc_ctrl_dev->banks; i++) {
65 u32 cspr = ifc_in32(&fsl_ifc_ctrl_dev->regs->cspr_cs[i].cspr);
66 if (cspr & CSPR_V && (cspr & CSPR_BA) ==
67 convert_ifc_address(addr_base))
73 EXPORT_SYMBOL(fsl_ifc_find);
75 static int fsl_ifc_ctrl_init(struct fsl_ifc_ctrl *ctrl)
77 struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
80 * Clear all the common status and event registers
82 if (ifc_in32(&ifc->cm_evter_stat) & IFC_CM_EVTER_STAT_CSER)
83 ifc_out32(IFC_CM_EVTER_STAT_CSER, &ifc->cm_evter_stat);
85 /* enable all error and events */
86 ifc_out32(IFC_CM_EVTER_EN_CSEREN, &ifc->cm_evter_en);
88 /* enable all error and event interrupts */
89 ifc_out32(IFC_CM_EVTER_INTR_EN_CSERIREN, &ifc->cm_evter_intr_en);
90 ifc_out32(0x0, &ifc->cm_erattr0);
91 ifc_out32(0x0, &ifc->cm_erattr1);
96 static int fsl_ifc_ctrl_remove(struct platform_device *dev)
98 struct fsl_ifc_ctrl *ctrl = dev_get_drvdata(&dev->dev);
100 free_irq(ctrl->nand_irq, ctrl);
101 free_irq(ctrl->irq, ctrl);
103 irq_dispose_mapping(ctrl->nand_irq);
104 irq_dispose_mapping(ctrl->irq);
108 dev_set_drvdata(&dev->dev, NULL);
115 * NAND events are split between an operational interrupt which only
116 * receives OPC, and an error interrupt that receives everything else,
117 * including non-NAND errors. Whichever interrupt gets to it first
118 * records the status and wakes the wait queue.
120 static DEFINE_SPINLOCK(nand_irq_lock);
122 static u32 check_nand_stat(struct fsl_ifc_ctrl *ctrl)
124 struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
128 spin_lock_irqsave(&nand_irq_lock, flags);
130 stat = ifc_in32(&ifc->ifc_nand.nand_evter_stat);
132 ifc_out32(stat, &ifc->ifc_nand.nand_evter_stat);
133 ctrl->nand_stat = stat;
134 wake_up(&ctrl->nand_wait);
137 spin_unlock_irqrestore(&nand_irq_lock, flags);
142 static irqreturn_t fsl_ifc_nand_irq(int irqno, void *data)
144 struct fsl_ifc_ctrl *ctrl = data;
146 if (check_nand_stat(ctrl))
153 * NOTE: This interrupt is used to report ifc events of various kinds,
154 * such as transaction errors on the chipselects.
156 static irqreturn_t fsl_ifc_ctrl_irq(int irqno, void *data)
158 struct fsl_ifc_ctrl *ctrl = data;
159 struct fsl_ifc_regs __iomem *ifc = ctrl->regs;
160 u32 err_axiid, err_srcid, status, cs_err, err_addr;
161 irqreturn_t ret = IRQ_NONE;
163 /* read for chip select error */
164 cs_err = ifc_in32(&ifc->cm_evter_stat);
166 dev_err(ctrl->dev, "transaction sent to IFC is not mapped to"
167 "any memory bank 0x%08X\n", cs_err);
168 /* clear the chip select error */
169 ifc_out32(IFC_CM_EVTER_STAT_CSER, &ifc->cm_evter_stat);
171 /* read error attribute registers print the error information */
172 status = ifc_in32(&ifc->cm_erattr0);
173 err_addr = ifc_in32(&ifc->cm_erattr1);
175 if (status & IFC_CM_ERATTR0_ERTYP_READ)
176 dev_err(ctrl->dev, "Read transaction error"
177 "CM_ERATTR0 0x%08X\n", status);
179 dev_err(ctrl->dev, "Write transaction error"
180 "CM_ERATTR0 0x%08X\n", status);
182 err_axiid = (status & IFC_CM_ERATTR0_ERAID) >>
183 IFC_CM_ERATTR0_ERAID_SHIFT;
184 dev_err(ctrl->dev, "AXI ID of the error"
185 "transaction 0x%08X\n", err_axiid);
187 err_srcid = (status & IFC_CM_ERATTR0_ESRCID) >>
188 IFC_CM_ERATTR0_ESRCID_SHIFT;
189 dev_err(ctrl->dev, "SRC ID of the error"
190 "transaction 0x%08X\n", err_srcid);
192 dev_err(ctrl->dev, "Transaction Address corresponding to error"
193 "ERADDR 0x%08X\n", err_addr);
198 if (check_nand_stat(ctrl))
207 * called by device layer when it finds a device matching
208 * one our driver can handled. This code allocates all of
209 * the resources needed for the controller only. The
210 * resources for the NAND banks themselves are allocated
211 * in the chip probe function.
213 static int fsl_ifc_ctrl_probe(struct platform_device *dev)
218 dev_info(&dev->dev, "Freescale Integrated Flash Controller\n");
220 fsl_ifc_ctrl_dev = kzalloc(sizeof(*fsl_ifc_ctrl_dev), GFP_KERNEL);
221 if (!fsl_ifc_ctrl_dev)
224 dev_set_drvdata(&dev->dev, fsl_ifc_ctrl_dev);
226 /* IOMAP the entire IFC region */
227 fsl_ifc_ctrl_dev->regs = of_iomap(dev->dev.of_node, 0);
228 if (!fsl_ifc_ctrl_dev->regs) {
229 dev_err(&dev->dev, "failed to get memory region\n");
234 version = ifc_in32(&fsl_ifc_ctrl_dev->regs->ifc_rev) &
235 FSL_IFC_VERSION_MASK;
236 banks = (version == FSL_IFC_VERSION_1_0_0) ? 4 : 8;
237 dev_info(&dev->dev, "IFC version %d.%d, %d banks\n",
238 version >> 24, (version >> 16) & 0xf, banks);
240 fsl_ifc_ctrl_dev->version = version;
241 fsl_ifc_ctrl_dev->banks = banks;
243 if (of_property_read_bool(dev->dev.of_node, "little-endian")) {
244 fsl_ifc_ctrl_dev->little_endian = true;
245 dev_dbg(&dev->dev, "IFC REGISTERS are LITTLE endian\n");
247 fsl_ifc_ctrl_dev->little_endian = false;
248 dev_dbg(&dev->dev, "IFC REGISTERS are BIG endian\n");
251 version = ioread32be(&fsl_ifc_ctrl_dev->regs->ifc_rev) &
252 FSL_IFC_VERSION_MASK;
253 banks = (version == FSL_IFC_VERSION_1_0_0) ? 4 : 8;
254 dev_info(&dev->dev, "IFC version %d.%d, %d banks\n",
255 version >> 24, (version >> 16) & 0xf, banks);
257 fsl_ifc_ctrl_dev->version = version;
258 fsl_ifc_ctrl_dev->banks = banks;
260 /* get the Controller level irq */
261 fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
262 if (fsl_ifc_ctrl_dev->irq == NO_IRQ) {
263 dev_err(&dev->dev, "failed to get irq resource "
269 /* get the nand machine irq */
270 fsl_ifc_ctrl_dev->nand_irq =
271 irq_of_parse_and_map(dev->dev.of_node, 1);
273 fsl_ifc_ctrl_dev->dev = &dev->dev;
275 ret = fsl_ifc_ctrl_init(fsl_ifc_ctrl_dev);
279 init_waitqueue_head(&fsl_ifc_ctrl_dev->nand_wait);
281 ret = request_irq(fsl_ifc_ctrl_dev->irq, fsl_ifc_ctrl_irq, IRQF_SHARED,
282 "fsl-ifc", fsl_ifc_ctrl_dev);
284 dev_err(&dev->dev, "failed to install irq (%d)\n",
285 fsl_ifc_ctrl_dev->irq);
289 if (fsl_ifc_ctrl_dev->nand_irq) {
290 ret = request_irq(fsl_ifc_ctrl_dev->nand_irq, fsl_ifc_nand_irq,
291 0, "fsl-ifc-nand", fsl_ifc_ctrl_dev);
293 dev_err(&dev->dev, "failed to install irq (%d)\n",
294 fsl_ifc_ctrl_dev->nand_irq);
302 free_irq(fsl_ifc_ctrl_dev->nand_irq, fsl_ifc_ctrl_dev);
303 irq_dispose_mapping(fsl_ifc_ctrl_dev->nand_irq);
305 free_irq(fsl_ifc_ctrl_dev->irq, fsl_ifc_ctrl_dev);
306 irq_dispose_mapping(fsl_ifc_ctrl_dev->irq);
311 static const struct of_device_id fsl_ifc_match[] = {
313 .compatible = "fsl,ifc",
318 static struct platform_driver fsl_ifc_ctrl_driver = {
321 .of_match_table = fsl_ifc_match,
323 .probe = fsl_ifc_ctrl_probe,
324 .remove = fsl_ifc_ctrl_remove,
327 static int __init fsl_ifc_init(void)
329 return platform_driver_register(&fsl_ifc_ctrl_driver);
331 subsys_initcall(fsl_ifc_init);
333 MODULE_LICENSE("GPL");
334 MODULE_AUTHOR("Freescale Semiconductor");
335 MODULE_DESCRIPTION("Freescale Integrated Flash Controller driver");