blob: 064ca1757589ac8d8cba8b536f72ff30632efcfe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand/sharpsl.c
3 *
4 * Copyright (C) 2004 Richard Purdie
Dmitry Baryshkovc176d0c2008-10-16 18:22:28 +04005 * Copyright (C) 2008 Dmitry Baryshkov
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Based on Sharp's NAND driver sharp_sl.c
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 */
14
15#include <linux/genhd.h>
16#include <linux/slab.h>
17#include <linux/module.h>
18#include <linux/delay.h>
19#include <linux/mtd/mtd.h>
20#include <linux/mtd/nand.h>
21#include <linux/mtd/nand_ecc.h>
22#include <linux/mtd/partitions.h>
Dmitry Baryshkova20c7ab2008-10-16 18:43:48 +040023#include <linux/mtd/sharpsl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
Dmitry Baryshkov26615242008-10-16 12:08:14 +040025#include <linux/platform_device.h>
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/io.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/mach-types.h>
30
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +040031struct sharpsl_nand {
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +040032 struct nand_chip chip;
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040033
34 void __iomem *io;
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +040035};
36
Boris BREZILLON0324e642015-12-10 09:00:24 +010037static inline struct sharpsl_nand *mtd_to_sharpsl(struct mtd_info *mtd)
38{
39 return container_of(mtd_to_nand(mtd), struct sharpsl_nand, chip);
40}
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* register offset */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040043#define ECCLPLB 0x00 /* line parity 7 - 0 bit */
44#define ECCLPUB 0x04 /* line parity 15 - 8 bit */
45#define ECCCP 0x08 /* column parity 5 - 0 bit */
46#define ECCCNTR 0x0C /* ECC byte counter */
47#define ECCCLRR 0x10 /* cleare ECC */
48#define FLASHIO 0x14 /* Flash I/O */
49#define FLASHCTL 0x18 /* Flash Control */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* Flash control bit */
52#define FLRYBY (1 << 5)
53#define FLCE1 (1 << 4)
54#define FLWP (1 << 3)
55#define FLALE (1 << 2)
56#define FLCLE (1 << 1)
57#define FLCE0 (1 << 0)
58
Thomas Gleixner61b03bd2005-11-07 11:15:49 +000059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * hardware specific access to control-lines
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020061 * ctrl:
Richard Purdie6a5a297c2006-07-15 13:05:24 +010062 * NAND_CNE: bit 0 -> ! bit 0 & 4
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020063 * NAND_CLE: bit 1 -> bit 1
64 * NAND_ALE: bit 2 -> bit 2
65 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020067static void sharpsl_nand_hwcontrol(struct mtd_info *mtd, int cmd,
68 unsigned int ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040070 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010071 struct nand_chip *chip = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020073 if (ctrl & NAND_CTRL_CHANGE) {
74 unsigned char bits = ctrl & 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020076 bits |= (ctrl & 0x01) << 4;
Richard Purdie6a5a297c2006-07-15 13:05:24 +010077
78 bits ^= 0x11;
79
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040080 writeb((readb(sharpsl->io + FLASHCTL) & ~0x17) | bits, sharpsl->io + FLASHCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020082
83 if (cmd != NAND_CMD_NONE)
84 writeb(cmd, chip->IO_ADDR_W);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
David Woodhousee0c7d762006-05-13 18:07:53 +010087static int sharpsl_nand_dev_ready(struct mtd_info *mtd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040089 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
90 return !((readb(sharpsl->io + FLASHCTL) & FLRYBY) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
David Woodhousee0c7d762006-05-13 18:07:53 +010093static void sharpsl_nand_enable_hwecc(struct mtd_info *mtd, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +040095 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
96 writeb(0, sharpsl->io + ECCCLRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
David Woodhousee0c7d762006-05-13 18:07:53 +010099static int sharpsl_nand_calculate_ecc(struct mtd_info *mtd, const u_char * dat, u_char * ecc_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400101 struct sharpsl_nand *sharpsl = mtd_to_sharpsl(mtd);
102 ecc_code[0] = ~readb(sharpsl->io + ECCLPUB);
103 ecc_code[1] = ~readb(sharpsl->io + ECCLPLB);
104 ecc_code[2] = (~readb(sharpsl->io + ECCCP) << 2) | 0x03;
105 return readb(sharpsl->io + ECCCNTR) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * Main initialization routine
110 */
Bill Pemberton06f25512012-11-19 13:23:07 -0500111static int sharpsl_nand_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 struct nand_chip *this;
Boris BREZILLON0324e642015-12-10 09:00:24 +0100114 struct mtd_info *mtd;
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400115 struct resource *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int err = 0;
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400117 struct sharpsl_nand *sharpsl;
Jingoo Han453810b2013-07-30 17:18:33 +0900118 struct sharpsl_nand_platform_data *data = dev_get_platdata(&pdev->dev);
Dmitry Baryshkova20c7ab2008-10-16 18:43:48 +0400119
120 if (!data) {
121 dev_err(&pdev->dev, "no platform data!\n");
122 return -EINVAL;
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 /* Allocate memory for MTD device structure and private data */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400126 sharpsl = kzalloc(sizeof(struct sharpsl_nand), GFP_KERNEL);
Jingoo Hanfc59a512013-12-26 12:01:55 +0900127 if (!sharpsl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return -ENOMEM;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000129
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400130 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
131 if (!r) {
132 dev_err(&pdev->dev, "no io memory resource defined!\n");
133 err = -ENODEV;
134 goto err_get_res;
135 }
136
Joe Perches8e87d782008-02-03 17:22:34 +0200137 /* map physical address */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400138 sharpsl->io = ioremap(r->start, resource_size(r));
139 if (!sharpsl->io) {
Jingoo Hanbb13bec2013-12-26 12:32:29 +0900140 dev_err(&pdev->dev, "ioremap to access Sharp SL NAND chip failed\n");
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400141 err = -EIO;
142 goto err_ioremap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /* Get pointer to private data */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400146 this = (struct nand_chip *)(&sharpsl->chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* Link the private data with the MTD structure */
Boris BREZILLON0324e642015-12-10 09:00:24 +0100149 mtd = nand_to_mtd(this);
Boris BREZILLON0324e642015-12-10 09:00:24 +0100150 mtd->dev.parent = &pdev->dev;
Boris Brezillone5b2d302016-02-03 19:58:11 +0100151 mtd_set_ooblayout(mtd, data->ecc_layout);
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400152
153 platform_set_drvdata(pdev, sharpsl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /*
156 * PXA initialize
157 */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400158 writeb(readb(sharpsl->io + FLASHCTL) | FLWP, sharpsl->io + FLASHCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /* Set address of NAND IO lines */
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400161 this->IO_ADDR_R = sharpsl->io + FLASHIO;
162 this->IO_ADDR_W = sharpsl->io + FLASHIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 /* Set address of hardware control function */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200164 this->cmd_ctrl = sharpsl_nand_hwcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 this->dev_ready = sharpsl_nand_dev_ready;
166 /* 15 us command delay time */
167 this->chip_delay = 15;
168 /* set eccmode using hardware ECC */
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200169 this->ecc.mode = NAND_ECC_HW;
170 this->ecc.size = 256;
171 this->ecc.bytes = 3;
Mike Dunn6a918ba2012-03-11 14:21:11 -0700172 this->ecc.strength = 1;
Dmitry Baryshkova20c7ab2008-10-16 18:43:48 +0400173 this->badblock_pattern = data->badblock_pattern;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200174 this->ecc.hwctl = sharpsl_nand_enable_hwecc;
175 this->ecc.calculate = sharpsl_nand_calculate_ecc;
176 this->ecc.correct = nand_correct_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* Scan to find existence of the device */
Boris BREZILLON0324e642015-12-10 09:00:24 +0100179 err = nand_scan(mtd, 1);
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400180 if (err)
181 goto err_scan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 /* Register the partitions */
Boris BREZILLON0324e642015-12-10 09:00:24 +0100184 mtd->name = "sharpsl-nand";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Boris BREZILLON0324e642015-12-10 09:00:24 +0100186 err = mtd_device_parse_register(mtd, NULL, NULL,
Artem Bityutskiy42d7fbe2012-03-09 19:24:26 +0200187 data->partitions, data->nr_partitions);
Dmitry Baryshkovc176d0c2008-10-16 18:22:28 +0400188 if (err)
189 goto err_add;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 /* Return happy */
192 return 0;
David Woodhousee0c7d762006-05-13 18:07:53 +0100193
Dmitry Baryshkovc176d0c2008-10-16 18:22:28 +0400194err_add:
Boris BREZILLON0324e642015-12-10 09:00:24 +0100195 nand_release(mtd);
Dmitry Baryshkovc176d0c2008-10-16 18:22:28 +0400196
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400197err_scan:
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400198 iounmap(sharpsl->io);
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400199err_ioremap:
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400200err_get_res:
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400201 kfree(sharpsl);
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400202 return err;
203}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/*
206 * Clean up routine
207 */
Bill Pemberton810b7e02012-11-19 13:26:04 -0500208static int sharpsl_nand_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400210 struct sharpsl_nand *sharpsl = platform_get_drvdata(pdev);
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* Release resources, unregister device */
Boris BREZILLON0324e642015-12-10 09:00:24 +0100213 nand_release(nand_to_mtd(&sharpsl->chip));
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400214
Dmitry Baryshkova4e4f292008-10-16 17:58:18 +0400215 iounmap(sharpsl->io);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Free the MTD device structure */
Dmitry Baryshkov2206ef12008-10-16 17:49:06 +0400218 kfree(sharpsl);
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400219
220 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
David Woodhousee0c7d762006-05-13 18:07:53 +0100222
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400223static struct platform_driver sharpsl_nand_driver = {
224 .driver = {
225 .name = "sharpsl-nand",
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400226 },
227 .probe = sharpsl_nand_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500228 .remove = sharpsl_nand_remove,
Dmitry Baryshkov26615242008-10-16 12:08:14 +0400229};
230
Axel Linf99640d2011-11-27 20:45:03 +0800231module_platform_driver(sharpsl_nand_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233MODULE_LICENSE("GPL");
234MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>");
235MODULE_DESCRIPTION("Device specific logic for NAND flash on Sharp SL-C7xx Series");