[MTD] [NAND] S3C2410: Added a kerneldoc for s3c2410_nand_set
[deliverable/linux.git] / drivers / mtd / nand / s3c2410.c
CommitLineData
1da177e4
LT
1/* linux/drivers/mtd/nand/s3c2410.c
2 *
7e74a507
BD
3 * Copyright © 2004-2008 Simtec Electronics
4 * http://armlinux.simtec.co.uk/
fdf2fd52 5 * Ben Dooks <ben@simtec.co.uk>
1da177e4 6 *
7e74a507 7 * Samsung S3C2410/S3C2440/S3C2412 NAND driver
1da177e4 8 *
1da177e4
LT
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22*/
23
1da177e4
LT
24#ifdef CONFIG_MTD_NAND_S3C2410_DEBUG
25#define DEBUG
26#endif
27
28#include <linux/module.h>
29#include <linux/types.h>
30#include <linux/init.h>
31#include <linux/kernel.h>
32#include <linux/string.h>
33#include <linux/ioport.h>
d052d1be 34#include <linux/platform_device.h>
1da177e4
LT
35#include <linux/delay.h>
36#include <linux/err.h>
4e57b681 37#include <linux/slab.h>
f8ce2547 38#include <linux/clk.h>
30821fee 39#include <linux/cpufreq.h>
1da177e4
LT
40
41#include <linux/mtd/mtd.h>
42#include <linux/mtd/nand.h>
43#include <linux/mtd/nand_ecc.h>
44#include <linux/mtd/partitions.h>
45
46#include <asm/io.h>
1da177e4 47
7926b5a3
BD
48#include <plat/regs-nand.h>
49#include <plat/nand.h>
1da177e4 50
1da177e4
LT
51#ifdef CONFIG_MTD_NAND_S3C2410_HWECC
52static int hardware_ecc = 1;
53#else
54static int hardware_ecc = 0;
55#endif
56
d1fef3c5
BD
57#ifdef CONFIG_MTD_NAND_S3C2410_CLKSTOP
58static int clock_stop = 1;
59#else
60static const int clock_stop = 0;
61#endif
62
63
1da177e4
LT
64/* new oob placement block for use with hardware ecc generation
65 */
66
5bd34c09 67static struct nand_ecclayout nand_hw_eccoob = {
e0c7d767
DW
68 .eccbytes = 3,
69 .eccpos = {0, 1, 2},
70 .oobfree = {{8, 8}}
1da177e4
LT
71};
72
73/* controller and mtd information */
74
75struct s3c2410_nand_info;
76
3db72151
BD
77/**
78 * struct s3c2410_nand_mtd - driver MTD structure
79 * @mtd: The MTD instance to pass to the MTD layer.
80 * @chip: The NAND chip information.
81 * @set: The platform information supplied for this set of NAND chips.
82 * @info: Link back to the hardware information.
83 * @scan_res: The result from calling nand_scan_ident().
84*/
1da177e4
LT
85struct s3c2410_nand_mtd {
86 struct mtd_info mtd;
87 struct nand_chip chip;
88 struct s3c2410_nand_set *set;
89 struct s3c2410_nand_info *info;
90 int scan_res;
91};
92
2c06a082
BD
93enum s3c_cpu_type {
94 TYPE_S3C2410,
95 TYPE_S3C2412,
96 TYPE_S3C2440,
97};
98
1da177e4
LT
99/* overview of the s3c2410 nand state */
100
3db72151
BD
101/**
102 * struct s3c2410_nand_info - NAND controller state.
103 * @mtds: An array of MTD instances on this controoler.
104 * @platform: The platform data for this board.
105 * @device: The platform device we bound to.
106 * @area: The IO area resource that came from request_mem_region().
107 * @clk: The clock resource for this controller.
108 * @regs: The area mapped for the hardware registers described by @area.
109 * @sel_reg: Pointer to the register controlling the NAND selection.
110 * @sel_bit: The bit in @sel_reg to select the NAND chip.
111 * @mtd_count: The number of MTDs created from this controller.
112 * @save_sel: The contents of @sel_reg to be saved over suspend.
113 * @clk_rate: The clock rate from @clk.
114 * @cpu_type: The exact type of this controller.
115 */
1da177e4
LT
116struct s3c2410_nand_info {
117 /* mtd info */
118 struct nand_hw_control controller;
119 struct s3c2410_nand_mtd *mtds;
120 struct s3c2410_platform_nand *platform;
121
122 /* device info */
123 struct device *device;
124 struct resource *area;
125 struct clk *clk;
fdf2fd52 126 void __iomem *regs;
2c06a082
BD
127 void __iomem *sel_reg;
128 int sel_bit;
1da177e4 129 int mtd_count;
09160832 130 unsigned long save_sel;
30821fee 131 unsigned long clk_rate;
03680b1e 132
2c06a082 133 enum s3c_cpu_type cpu_type;
30821fee
BD
134
135#ifdef CONFIG_CPU_FREQ
136 struct notifier_block freq_transition;
137#endif
1da177e4
LT
138};
139
140/* conversion functions */
141
142static struct s3c2410_nand_mtd *s3c2410_nand_mtd_toours(struct mtd_info *mtd)
143{
144 return container_of(mtd, struct s3c2410_nand_mtd, mtd);
145}
146
147static struct s3c2410_nand_info *s3c2410_nand_mtd_toinfo(struct mtd_info *mtd)
148{
149 return s3c2410_nand_mtd_toours(mtd)->info;
150}
151
3ae5eaec 152static struct s3c2410_nand_info *to_nand_info(struct platform_device *dev)
1da177e4 153{
3ae5eaec 154 return platform_get_drvdata(dev);
1da177e4
LT
155}
156
3ae5eaec 157static struct s3c2410_platform_nand *to_nand_plat(struct platform_device *dev)
1da177e4 158{
3ae5eaec 159 return dev->dev.platform_data;
1da177e4
LT
160}
161
d1fef3c5
BD
162static inline int allow_clk_stop(struct s3c2410_nand_info *info)
163{
164 return clock_stop;
165}
166
1da177e4
LT
167/* timing calculations */
168
cfd320fb 169#define NS_IN_KHZ 1000000
1da177e4 170
3db72151
BD
171/**
172 * s3c_nand_calc_rate - calculate timing data.
173 * @wanted: The cycle time in nanoseconds.
174 * @clk: The clock rate in kHz.
175 * @max: The maximum divider value.
176 *
177 * Calculate the timing value from the given parameters.
178 */
2c06a082 179static int s3c_nand_calc_rate(int wanted, unsigned long clk, int max)
1da177e4
LT
180{
181 int result;
182
cfd320fb 183 result = (wanted * clk) / NS_IN_KHZ;
1da177e4
LT
184 result++;
185
186 pr_debug("result %d from %ld, %d\n", result, clk, wanted);
187
188 if (result > max) {
e0c7d767 189 printk("%d ns is too big for current clock rate %ld\n", wanted, clk);
1da177e4
LT
190 return -1;
191 }
192
193 if (result < 1)
194 result = 1;
195
196 return result;
197}
198
cfd320fb 199#define to_ns(ticks,clk) (((ticks) * NS_IN_KHZ) / (unsigned int)(clk))
1da177e4
LT
200
201/* controller setup */
202
3db72151
BD
203/**
204 * s3c2410_nand_setrate - setup controller timing information.
205 * @info: The controller instance.
206 *
207 * Given the information supplied by the platform, calculate and set
208 * the necessary timing registers in the hardware to generate the
209 * necessary timing cycles to the hardware.
210 */
30821fee 211static int s3c2410_nand_setrate(struct s3c2410_nand_info *info)
1da177e4 212{
30821fee 213 struct s3c2410_platform_nand *plat = info->platform;
2c06a082 214 int tacls_max = (info->cpu_type == TYPE_S3C2412) ? 8 : 4;
cfd320fb 215 int tacls, twrph0, twrph1;
30821fee 216 unsigned long clkrate = clk_get_rate(info->clk);
2612e523 217 unsigned long uninitialized_var(set), cfg, uninitialized_var(mask);
30821fee 218 unsigned long flags;
1da177e4
LT
219
220 /* calculate the timing information for the controller */
221
30821fee 222 info->clk_rate = clkrate;
cfd320fb
BD
223 clkrate /= 1000; /* turn clock into kHz for ease of use */
224
1da177e4 225 if (plat != NULL) {
2c06a082
BD
226 tacls = s3c_nand_calc_rate(plat->tacls, clkrate, tacls_max);
227 twrph0 = s3c_nand_calc_rate(plat->twrph0, clkrate, 8);
228 twrph1 = s3c_nand_calc_rate(plat->twrph1, clkrate, 8);
1da177e4
LT
229 } else {
230 /* default timings */
2c06a082 231 tacls = tacls_max;
1da177e4
LT
232 twrph0 = 8;
233 twrph1 = 8;
234 }
61b03bd7 235
1da177e4 236 if (tacls < 0 || twrph0 < 0 || twrph1 < 0) {
99974c62 237 dev_err(info->device, "cannot get suitable timings\n");
1da177e4
LT
238 return -EINVAL;
239 }
240
99974c62 241 dev_info(info->device, "Tacls=%d, %dns Twrph0=%d %dns, Twrph1=%d %dns\n",
e0c7d767 242 tacls, to_ns(tacls, clkrate), twrph0, to_ns(twrph0, clkrate), twrph1, to_ns(twrph1, clkrate));
1da177e4 243
30821fee
BD
244 switch (info->cpu_type) {
245 case TYPE_S3C2410:
246 mask = (S3C2410_NFCONF_TACLS(3) |
247 S3C2410_NFCONF_TWRPH0(7) |
248 S3C2410_NFCONF_TWRPH1(7));
249 set = S3C2410_NFCONF_EN;
250 set |= S3C2410_NFCONF_TACLS(tacls - 1);
251 set |= S3C2410_NFCONF_TWRPH0(twrph0 - 1);
252 set |= S3C2410_NFCONF_TWRPH1(twrph1 - 1);
253 break;
254
255 case TYPE_S3C2440:
256 case TYPE_S3C2412:
257 mask = (S3C2410_NFCONF_TACLS(tacls_max - 1) |
258 S3C2410_NFCONF_TWRPH0(7) |
259 S3C2410_NFCONF_TWRPH1(7));
260
261 set = S3C2440_NFCONF_TACLS(tacls - 1);
262 set |= S3C2440_NFCONF_TWRPH0(twrph0 - 1);
263 set |= S3C2440_NFCONF_TWRPH1(twrph1 - 1);
264 break;
265
266 default:
30821fee
BD
267 BUG();
268 }
269
30821fee
BD
270 local_irq_save(flags);
271
272 cfg = readl(info->regs + S3C2410_NFCONF);
273 cfg &= ~mask;
274 cfg |= set;
275 writel(cfg, info->regs + S3C2410_NFCONF);
276
277 local_irq_restore(flags);
278
ae7304e5
AG
279 dev_dbg(info->device, "NF_CONF is 0x%lx\n", cfg);
280
30821fee
BD
281 return 0;
282}
283
3db72151
BD
284/**
285 * s3c2410_nand_inithw - basic hardware initialisation
286 * @info: The hardware state.
287 *
288 * Do the basic initialisation of the hardware, using s3c2410_nand_setrate()
289 * to setup the hardware access speeds and set the controller to be enabled.
290*/
30821fee
BD
291static int s3c2410_nand_inithw(struct s3c2410_nand_info *info)
292{
293 int ret;
294
295 ret = s3c2410_nand_setrate(info);
296 if (ret < 0)
297 return ret;
298
2c06a082
BD
299 switch (info->cpu_type) {
300 case TYPE_S3C2410:
30821fee 301 default:
2c06a082
BD
302 break;
303
304 case TYPE_S3C2440:
305 case TYPE_S3C2412:
d1fef3c5
BD
306 /* enable the controller and de-assert nFCE */
307
2c06a082 308 writel(S3C2440_NFCONT_ENABLE, info->regs + S3C2440_NFCONT);
a4f957f1 309 }
1da177e4 310
1da177e4
LT
311 return 0;
312}
313
3db72151
BD
314/**
315 * s3c2410_nand_select_chip - select the given nand chip
316 * @mtd: The MTD instance for this chip.
317 * @chip: The chip number.
318 *
319 * This is called by the MTD layer to either select a given chip for the
320 * @mtd instance, or to indicate that the access has finished and the
321 * chip can be de-selected.
322 *
323 * The routine ensures that the nFCE line is correctly setup, and any
324 * platform specific selection code is called to route nFCE to the specific
325 * chip.
326 */
1da177e4
LT
327static void s3c2410_nand_select_chip(struct mtd_info *mtd, int chip)
328{
329 struct s3c2410_nand_info *info;
61b03bd7 330 struct s3c2410_nand_mtd *nmtd;
1da177e4
LT
331 struct nand_chip *this = mtd->priv;
332 unsigned long cur;
333
334 nmtd = this->priv;
335 info = nmtd->info;
336
d1fef3c5
BD
337 if (chip != -1 && allow_clk_stop(info))
338 clk_enable(info->clk);
339
2c06a082 340 cur = readl(info->sel_reg);
1da177e4
LT
341
342 if (chip == -1) {
2c06a082 343 cur |= info->sel_bit;
1da177e4 344 } else {
fb8d82a8 345 if (nmtd->set != NULL && chip > nmtd->set->nr_chips) {
99974c62 346 dev_err(info->device, "invalid chip %d\n", chip);
1da177e4
LT
347 return;
348 }
349
350 if (info->platform != NULL) {
351 if (info->platform->select_chip != NULL)
e0c7d767 352 (info->platform->select_chip) (nmtd->set, chip);
1da177e4
LT
353 }
354
2c06a082 355 cur &= ~info->sel_bit;
1da177e4
LT
356 }
357
2c06a082 358 writel(cur, info->sel_reg);
d1fef3c5
BD
359
360 if (chip == -1 && allow_clk_stop(info))
361 clk_disable(info->clk);
1da177e4
LT
362}
363
ad3b5fb7 364/* s3c2410_nand_hwcontrol
a4f957f1 365 *
ad3b5fb7 366 * Issue command and address cycles to the chip
a4f957f1 367*/
1da177e4 368
7abd3ef9 369static void s3c2410_nand_hwcontrol(struct mtd_info *mtd, int cmd,
f9068876 370 unsigned int ctrl)
1da177e4
LT
371{
372 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
c9ac5977 373
7abd3ef9
TG
374 if (cmd == NAND_CMD_NONE)
375 return;
376
f9068876 377 if (ctrl & NAND_CLE)
7abd3ef9
TG
378 writeb(cmd, info->regs + S3C2410_NFCMD);
379 else
380 writeb(cmd, info->regs + S3C2410_NFADDR);
a4f957f1
BD
381}
382
383/* command and control functions */
384
f9068876
DW
385static void s3c2440_nand_hwcontrol(struct mtd_info *mtd, int cmd,
386 unsigned int ctrl)
a4f957f1
BD
387{
388 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
1da177e4 389
7abd3ef9
TG
390 if (cmd == NAND_CMD_NONE)
391 return;
392
f9068876 393 if (ctrl & NAND_CLE)
7abd3ef9
TG
394 writeb(cmd, info->regs + S3C2440_NFCMD);
395 else
396 writeb(cmd, info->regs + S3C2440_NFADDR);
1da177e4
LT
397}
398
1da177e4
LT
399/* s3c2410_nand_devready()
400 *
401 * returns 0 if the nand is busy, 1 if it is ready
402*/
403
404static int s3c2410_nand_devready(struct mtd_info *mtd)
405{
406 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
1da177e4
LT
407 return readb(info->regs + S3C2410_NFSTAT) & S3C2410_NFSTAT_BUSY;
408}
409
2c06a082
BD
410static int s3c2440_nand_devready(struct mtd_info *mtd)
411{
412 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
413 return readb(info->regs + S3C2440_NFSTAT) & S3C2440_NFSTAT_READY;
414}
415
416static int s3c2412_nand_devready(struct mtd_info *mtd)
417{
418 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
419 return readb(info->regs + S3C2412_NFSTAT) & S3C2412_NFSTAT_READY;
420}
421
1da177e4
LT
422/* ECC handling functions */
423
2c06a082
BD
424static int s3c2410_nand_correct_data(struct mtd_info *mtd, u_char *dat,
425 u_char *read_ecc, u_char *calc_ecc)
1da177e4 426{
a2593247
BD
427 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
428 unsigned int diff0, diff1, diff2;
429 unsigned int bit, byte;
430
431 pr_debug("%s(%p,%p,%p,%p)\n", __func__, mtd, dat, read_ecc, calc_ecc);
432
433 diff0 = read_ecc[0] ^ calc_ecc[0];
434 diff1 = read_ecc[1] ^ calc_ecc[1];
435 diff2 = read_ecc[2] ^ calc_ecc[2];
436
437 pr_debug("%s: rd %02x%02x%02x calc %02x%02x%02x diff %02x%02x%02x\n",
438 __func__,
439 read_ecc[0], read_ecc[1], read_ecc[2],
440 calc_ecc[0], calc_ecc[1], calc_ecc[2],
441 diff0, diff1, diff2);
442
443 if (diff0 == 0 && diff1 == 0 && diff2 == 0)
444 return 0; /* ECC is ok */
445
c45c6c68
BD
446 /* sometimes people do not think about using the ECC, so check
447 * to see if we have an 0xff,0xff,0xff read ECC and then ignore
448 * the error, on the assumption that this is an un-eccd page.
449 */
450 if (read_ecc[0] == 0xff && read_ecc[1] == 0xff && read_ecc[2] == 0xff
451 && info->platform->ignore_unset_ecc)
452 return 0;
453
a2593247
BD
454 /* Can we correct this ECC (ie, one row and column change).
455 * Note, this is similar to the 256 error code on smartmedia */
456
457 if (((diff0 ^ (diff0 >> 1)) & 0x55) == 0x55 &&
458 ((diff1 ^ (diff1 >> 1)) & 0x55) == 0x55 &&
459 ((diff2 ^ (diff2 >> 1)) & 0x55) == 0x55) {
460 /* calculate the bit position of the error */
461
d0bf3793
MR
462 bit = ((diff2 >> 3) & 1) |
463 ((diff2 >> 4) & 2) |
464 ((diff2 >> 5) & 4);
1da177e4 465
a2593247 466 /* calculate the byte position of the error */
1da177e4 467
d0bf3793
MR
468 byte = ((diff2 << 7) & 0x100) |
469 ((diff1 << 0) & 0x80) |
470 ((diff1 << 1) & 0x40) |
471 ((diff1 << 2) & 0x20) |
472 ((diff1 << 3) & 0x10) |
473 ((diff0 >> 4) & 0x08) |
474 ((diff0 >> 3) & 0x04) |
475 ((diff0 >> 2) & 0x02) |
476 ((diff0 >> 1) & 0x01);
a2593247
BD
477
478 dev_dbg(info->device, "correcting error bit %d, byte %d\n",
479 bit, byte);
480
481 dat[byte] ^= (1 << bit);
482 return 1;
483 }
484
485 /* if there is only one bit difference in the ECC, then
486 * one of only a row or column parity has changed, which
487 * means the error is most probably in the ECC itself */
488
489 diff0 |= (diff1 << 8);
490 diff0 |= (diff2 << 16);
491
492 if ((diff0 & ~(1<<fls(diff0))) == 0)
493 return 1;
494
4fac9f69 495 return -1;
1da177e4
LT
496}
497
a4f957f1
BD
498/* ECC functions
499 *
500 * These allow the s3c2410 and s3c2440 to use the controller's ECC
501 * generator block to ECC the data as it passes through]
502*/
503
1da177e4
LT
504static void s3c2410_nand_enable_hwecc(struct mtd_info *mtd, int mode)
505{
506 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
507 unsigned long ctrl;
508
509 ctrl = readl(info->regs + S3C2410_NFCONF);
510 ctrl |= S3C2410_NFCONF_INITECC;
511 writel(ctrl, info->regs + S3C2410_NFCONF);
512}
513
4f659923
MC
514static void s3c2412_nand_enable_hwecc(struct mtd_info *mtd, int mode)
515{
516 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
517 unsigned long ctrl;
518
519 ctrl = readl(info->regs + S3C2440_NFCONT);
520 writel(ctrl | S3C2412_NFCONT_INIT_MAIN_ECC, info->regs + S3C2440_NFCONT);
521}
522
a4f957f1
BD
523static void s3c2440_nand_enable_hwecc(struct mtd_info *mtd, int mode)
524{
525 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
526 unsigned long ctrl;
527
528 ctrl = readl(info->regs + S3C2440_NFCONT);
529 writel(ctrl | S3C2440_NFCONT_INITECC, info->regs + S3C2440_NFCONT);
530}
531
e0c7d767 532static int s3c2410_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code)
1da177e4
LT
533{
534 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
535
536 ecc_code[0] = readb(info->regs + S3C2410_NFECC + 0);
537 ecc_code[1] = readb(info->regs + S3C2410_NFECC + 1);
538 ecc_code[2] = readb(info->regs + S3C2410_NFECC + 2);
539
a2593247
BD
540 pr_debug("%s: returning ecc %02x%02x%02x\n", __func__,
541 ecc_code[0], ecc_code[1], ecc_code[2]);
1da177e4
LT
542
543 return 0;
544}
545
4f659923
MC
546static int s3c2412_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code)
547{
548 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
549 unsigned long ecc = readl(info->regs + S3C2412_NFMECC0);
550
551 ecc_code[0] = ecc;
552 ecc_code[1] = ecc >> 8;
553 ecc_code[2] = ecc >> 16;
554
555 pr_debug("calculate_ecc: returning ecc %02x,%02x,%02x\n", ecc_code[0], ecc_code[1], ecc_code[2]);
556
557 return 0;
558}
559
e0c7d767 560static int s3c2440_nand_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code)
a4f957f1
BD
561{
562 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
563 unsigned long ecc = readl(info->regs + S3C2440_NFMECC0);
564
565 ecc_code[0] = ecc;
566 ecc_code[1] = ecc >> 8;
567 ecc_code[2] = ecc >> 16;
568
71d54f38 569 pr_debug("%s: returning ecc %06lx\n", __func__, ecc & 0xffffff);
a4f957f1
BD
570
571 return 0;
572}
573
a4f957f1
BD
574/* over-ride the standard functions for a little more speed. We can
575 * use read/write block to move the data buffers to/from the controller
576*/
1da177e4
LT
577
578static void s3c2410_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
579{
580 struct nand_chip *this = mtd->priv;
581 readsb(this->IO_ADDR_R, buf, len);
582}
583
b773bb2e
MR
584static void s3c2440_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len)
585{
586 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
587 readsl(info->regs + S3C2440_NFDATA, buf, len / 4);
588}
589
e0c7d767 590static void s3c2410_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
1da177e4
LT
591{
592 struct nand_chip *this = mtd->priv;
593 writesb(this->IO_ADDR_W, buf, len);
594}
595
b773bb2e
MR
596static void s3c2440_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
597{
598 struct s3c2410_nand_info *info = s3c2410_nand_mtd_toinfo(mtd);
599 writesl(info->regs + S3C2440_NFDATA, buf, len / 4);
600}
601
30821fee
BD
602/* cpufreq driver support */
603
604#ifdef CONFIG_CPU_FREQ
605
606static int s3c2410_nand_cpufreq_transition(struct notifier_block *nb,
607 unsigned long val, void *data)
608{
609 struct s3c2410_nand_info *info;
610 unsigned long newclk;
611
612 info = container_of(nb, struct s3c2410_nand_info, freq_transition);
613 newclk = clk_get_rate(info->clk);
614
615 if ((val == CPUFREQ_POSTCHANGE && newclk < info->clk_rate) ||
616 (val == CPUFREQ_PRECHANGE && newclk > info->clk_rate)) {
617 s3c2410_nand_setrate(info);
618 }
619
620 return 0;
621}
622
623static inline int s3c2410_nand_cpufreq_register(struct s3c2410_nand_info *info)
624{
625 info->freq_transition.notifier_call = s3c2410_nand_cpufreq_transition;
626
627 return cpufreq_register_notifier(&info->freq_transition,
628 CPUFREQ_TRANSITION_NOTIFIER);
629}
630
631static inline void s3c2410_nand_cpufreq_deregister(struct s3c2410_nand_info *info)
632{
633 cpufreq_unregister_notifier(&info->freq_transition,
634 CPUFREQ_TRANSITION_NOTIFIER);
635}
636
637#else
638static inline int s3c2410_nand_cpufreq_register(struct s3c2410_nand_info *info)
639{
640 return 0;
641}
642
643static inline void s3c2410_nand_cpufreq_deregister(struct s3c2410_nand_info *info)
644{
645}
646#endif
647
1da177e4
LT
648/* device management functions */
649
ec0482e6 650static int s3c24xx_nand_remove(struct platform_device *pdev)
1da177e4 651{
3ae5eaec 652 struct s3c2410_nand_info *info = to_nand_info(pdev);
1da177e4 653
3ae5eaec 654 platform_set_drvdata(pdev, NULL);
1da177e4 655
61b03bd7 656 if (info == NULL)
1da177e4
LT
657 return 0;
658
30821fee
BD
659 s3c2410_nand_cpufreq_deregister(info);
660
661 /* Release all our mtds and their partitions, then go through
662 * freeing the resources used
1da177e4 663 */
61b03bd7 664
1da177e4
LT
665 if (info->mtds != NULL) {
666 struct s3c2410_nand_mtd *ptr = info->mtds;
667 int mtdno;
668
669 for (mtdno = 0; mtdno < info->mtd_count; mtdno++, ptr++) {
670 pr_debug("releasing mtd %d (%p)\n", mtdno, ptr);
671 nand_release(&ptr->mtd);
672 }
673
674 kfree(info->mtds);
675 }
676
677 /* free the common resources */
678
679 if (info->clk != NULL && !IS_ERR(info->clk)) {
d1fef3c5
BD
680 if (!allow_clk_stop(info))
681 clk_disable(info->clk);
1da177e4
LT
682 clk_put(info->clk);
683 }
684
685 if (info->regs != NULL) {
686 iounmap(info->regs);
687 info->regs = NULL;
688 }
689
690 if (info->area != NULL) {
691 release_resource(info->area);
692 kfree(info->area);
693 info->area = NULL;
694 }
695
696 kfree(info);
697
698 return 0;
699}
700
701#ifdef CONFIG_MTD_PARTITIONS
ed27f028 702const char *part_probes[] = { "cmdlinepart", NULL };
1da177e4
LT
703static int s3c2410_nand_add_partition(struct s3c2410_nand_info *info,
704 struct s3c2410_nand_mtd *mtd,
705 struct s3c2410_nand_set *set)
706{
ed27f028
AG
707 struct mtd_partition *part_info;
708 int nr_part = 0;
709
1da177e4
LT
710 if (set == NULL)
711 return add_mtd_device(&mtd->mtd);
712
ed27f028
AG
713 if (set->nr_partitions == 0) {
714 mtd->mtd.name = set->name;
715 nr_part = parse_mtd_partitions(&mtd->mtd, part_probes,
716 &part_info, 0);
717 } else {
718 if (set->nr_partitions > 0 && set->partitions != NULL) {
719 nr_part = set->nr_partitions;
720 part_info = set->partitions;
721 }
1da177e4
LT
722 }
723
ed27f028
AG
724 if (nr_part > 0 && part_info)
725 return add_mtd_partitions(&mtd->mtd, part_info, nr_part);
726
1da177e4
LT
727 return add_mtd_device(&mtd->mtd);
728}
729#else
730static int s3c2410_nand_add_partition(struct s3c2410_nand_info *info,
731 struct s3c2410_nand_mtd *mtd,
732 struct s3c2410_nand_set *set)
733{
734 return add_mtd_device(&mtd->mtd);
735}
736#endif
737
3db72151
BD
738/**
739 * s3c2410_nand_init_chip - initialise a single instance of an chip
740 * @info: The base NAND controller the chip is on.
741 * @nmtd: The new controller MTD instance to fill in.
742 * @set: The information passed from the board specific platform data.
1da177e4 743 *
3db72151
BD
744 * Initialise the given @nmtd from the information in @info and @set. This
745 * readies the structure for use with the MTD layer functions by ensuring
746 * all pointers are setup and the necessary control routines selected.
747 */
1da177e4
LT
748static void s3c2410_nand_init_chip(struct s3c2410_nand_info *info,
749 struct s3c2410_nand_mtd *nmtd,
750 struct s3c2410_nand_set *set)
751{
752 struct nand_chip *chip = &nmtd->chip;
2c06a082 753 void __iomem *regs = info->regs;
1da177e4 754
1da177e4
LT
755 chip->write_buf = s3c2410_nand_write_buf;
756 chip->read_buf = s3c2410_nand_read_buf;
757 chip->select_chip = s3c2410_nand_select_chip;
758 chip->chip_delay = 50;
759 chip->priv = nmtd;
760 chip->options = 0;
761 chip->controller = &info->controller;
762
2c06a082
BD
763 switch (info->cpu_type) {
764 case TYPE_S3C2410:
765 chip->IO_ADDR_W = regs + S3C2410_NFDATA;
766 info->sel_reg = regs + S3C2410_NFCONF;
767 info->sel_bit = S3C2410_NFCONF_nFCE;
768 chip->cmd_ctrl = s3c2410_nand_hwcontrol;
769 chip->dev_ready = s3c2410_nand_devready;
770 break;
771
772 case TYPE_S3C2440:
773 chip->IO_ADDR_W = regs + S3C2440_NFDATA;
774 info->sel_reg = regs + S3C2440_NFCONT;
775 info->sel_bit = S3C2440_NFCONT_nFCE;
776 chip->cmd_ctrl = s3c2440_nand_hwcontrol;
777 chip->dev_ready = s3c2440_nand_devready;
b773bb2e
MR
778 chip->read_buf = s3c2440_nand_read_buf;
779 chip->write_buf = s3c2440_nand_write_buf;
2c06a082
BD
780 break;
781
782 case TYPE_S3C2412:
783 chip->IO_ADDR_W = regs + S3C2440_NFDATA;
784 info->sel_reg = regs + S3C2440_NFCONT;
785 info->sel_bit = S3C2412_NFCONT_nFCE0;
786 chip->cmd_ctrl = s3c2440_nand_hwcontrol;
787 chip->dev_ready = s3c2412_nand_devready;
788
789 if (readl(regs + S3C2410_NFCONF) & S3C2412_NFCONF_NANDBOOT)
790 dev_info(info->device, "System booted from NAND\n");
791
792 break;
793 }
794
795 chip->IO_ADDR_R = chip->IO_ADDR_W;
a4f957f1 796
1da177e4
LT
797 nmtd->info = info;
798 nmtd->mtd.priv = chip;
552d9205 799 nmtd->mtd.owner = THIS_MODULE;
1da177e4
LT
800 nmtd->set = set;
801
802 if (hardware_ecc) {
6dfc6d25 803 chip->ecc.calculate = s3c2410_nand_calculate_ecc;
2c06a082 804 chip->ecc.correct = s3c2410_nand_correct_data;
6dfc6d25 805 chip->ecc.mode = NAND_ECC_HW;
a4f957f1 806
2c06a082
BD
807 switch (info->cpu_type) {
808 case TYPE_S3C2410:
809 chip->ecc.hwctl = s3c2410_nand_enable_hwecc;
810 chip->ecc.calculate = s3c2410_nand_calculate_ecc;
811 break;
812
813 case TYPE_S3C2412:
4f659923
MC
814 chip->ecc.hwctl = s3c2412_nand_enable_hwecc;
815 chip->ecc.calculate = s3c2412_nand_calculate_ecc;
816 break;
817
2c06a082
BD
818 case TYPE_S3C2440:
819 chip->ecc.hwctl = s3c2440_nand_enable_hwecc;
820 chip->ecc.calculate = s3c2440_nand_calculate_ecc;
821 break;
822
a4f957f1 823 }
1da177e4 824 } else {
6dfc6d25 825 chip->ecc.mode = NAND_ECC_SOFT;
1da177e4 826 }
1c21ab67
BD
827
828 if (set->ecc_layout != NULL)
829 chip->ecc.layout = set->ecc_layout;
37e5ffa3
BD
830
831 if (set->disable_ecc)
832 chip->ecc.mode = NAND_ECC_NONE;
8c3e843d
AG
833
834 switch (chip->ecc.mode) {
835 case NAND_ECC_NONE:
836 dev_info(info->device, "NAND ECC disabled\n");
837 break;
838 case NAND_ECC_SOFT:
839 dev_info(info->device, "NAND soft ECC\n");
840 break;
841 case NAND_ECC_HW:
842 dev_info(info->device, "NAND hardware ECC\n");
843 break;
844 default:
845 dev_info(info->device, "NAND ECC UNKNOWN\n");
846 break;
847 }
1da177e4
LT
848}
849
3db72151
BD
850/**
851 * s3c2410_nand_update_chip - post probe update
852 * @info: The controller instance.
853 * @nmtd: The driver version of the MTD instance.
71d54f38 854 *
3db72151
BD
855 * This routine is called after the chip probe has succesfully completed
856 * and the relevant per-chip information updated. This call ensure that
857 * we update the internal state accordingly.
858 *
859 * The internal state is currently limited to the ECC state information.
860*/
71d54f38
BD
861static void s3c2410_nand_update_chip(struct s3c2410_nand_info *info,
862 struct s3c2410_nand_mtd *nmtd)
863{
864 struct nand_chip *chip = &nmtd->chip;
865
451d3399
BD
866 dev_dbg(info->device, "chip %p => page shift %d\n",
867 chip, chip->page_shift);
71d54f38 868
8c3e843d
AG
869 if (chip->ecc.mode != NAND_ECC_HW)
870 return;
871
71d54f38
BD
872 /* change the behaviour depending on wether we are using
873 * the large or small page nand device */
874
8c3e843d
AG
875 if (chip->page_shift > 10) {
876 chip->ecc.size = 256;
877 chip->ecc.bytes = 3;
878 } else {
879 chip->ecc.size = 512;
880 chip->ecc.bytes = 3;
881 chip->ecc.layout = &nand_hw_eccoob;
71d54f38
BD
882 }
883}
884
ec0482e6 885/* s3c24xx_nand_probe
1da177e4
LT
886 *
887 * called by device layer when it finds a device matching
888 * one our driver can handled. This code checks to see if
889 * it can allocate all necessary resources then calls the
890 * nand layer to look for devices
891*/
ec0482e6 892static int s3c24xx_nand_probe(struct platform_device *pdev)
1da177e4 893{
3ae5eaec 894 struct s3c2410_platform_nand *plat = to_nand_plat(pdev);
ec0482e6 895 enum s3c_cpu_type cpu_type;
1da177e4
LT
896 struct s3c2410_nand_info *info;
897 struct s3c2410_nand_mtd *nmtd;
898 struct s3c2410_nand_set *sets;
899 struct resource *res;
900 int err = 0;
901 int size;
902 int nr_sets;
903 int setno;
904
ec0482e6
BD
905 cpu_type = platform_get_device_id(pdev)->driver_data;
906
3ae5eaec 907 pr_debug("s3c2410_nand_probe(%p)\n", pdev);
1da177e4
LT
908
909 info = kmalloc(sizeof(*info), GFP_KERNEL);
910 if (info == NULL) {
3ae5eaec 911 dev_err(&pdev->dev, "no memory for flash info\n");
1da177e4
LT
912 err = -ENOMEM;
913 goto exit_error;
914 }
915
59f0cb0f 916 memset(info, 0, sizeof(*info));
3ae5eaec 917 platform_set_drvdata(pdev, info);
1da177e4
LT
918
919 spin_lock_init(&info->controller.lock);
a4f957f1 920 init_waitqueue_head(&info->controller.wq);
1da177e4
LT
921
922 /* get the clock source and enable it */
923
3ae5eaec 924 info->clk = clk_get(&pdev->dev, "nand");
1da177e4 925 if (IS_ERR(info->clk)) {
898eb71c 926 dev_err(&pdev->dev, "failed to get clock\n");
1da177e4
LT
927 err = -ENOENT;
928 goto exit_error;
929 }
930
1da177e4
LT
931 clk_enable(info->clk);
932
933 /* allocate and map the resource */
934
a4f957f1
BD
935 /* currently we assume we have the one resource */
936 res = pdev->resource;
1da177e4
LT
937 size = res->end - res->start + 1;
938
939 info->area = request_mem_region(res->start, size, pdev->name);
940
941 if (info->area == NULL) {
3ae5eaec 942 dev_err(&pdev->dev, "cannot reserve register region\n");
1da177e4
LT
943 err = -ENOENT;
944 goto exit_error;
945 }
946
3ae5eaec 947 info->device = &pdev->dev;
a4f957f1
BD
948 info->platform = plat;
949 info->regs = ioremap(res->start, size);
2c06a082 950 info->cpu_type = cpu_type;
1da177e4
LT
951
952 if (info->regs == NULL) {
3ae5eaec 953 dev_err(&pdev->dev, "cannot reserve register region\n");
1da177e4
LT
954 err = -EIO;
955 goto exit_error;
61b03bd7 956 }
1da177e4 957
3ae5eaec 958 dev_dbg(&pdev->dev, "mapped registers at %p\n", info->regs);
1da177e4
LT
959
960 /* initialise the hardware */
961
30821fee 962 err = s3c2410_nand_inithw(info);
1da177e4
LT
963 if (err != 0)
964 goto exit_error;
965
966 sets = (plat != NULL) ? plat->sets : NULL;
967 nr_sets = (plat != NULL) ? plat->nr_sets : 1;
968
969 info->mtd_count = nr_sets;
970
971 /* allocate our information */
972
973 size = nr_sets * sizeof(*info->mtds);
974 info->mtds = kmalloc(size, GFP_KERNEL);
975 if (info->mtds == NULL) {
3ae5eaec 976 dev_err(&pdev->dev, "failed to allocate mtd storage\n");
1da177e4
LT
977 err = -ENOMEM;
978 goto exit_error;
979 }
980
59f0cb0f 981 memset(info->mtds, 0, size);
1da177e4
LT
982
983 /* initialise all possible chips */
984
985 nmtd = info->mtds;
986
987 for (setno = 0; setno < nr_sets; setno++, nmtd++) {
e0c7d767 988 pr_debug("initialising set %d (%p, info %p)\n", setno, nmtd, info);
61b03bd7 989
1da177e4
LT
990 s3c2410_nand_init_chip(info, nmtd, sets);
991
71d54f38
BD
992 nmtd->scan_res = nand_scan_ident(&nmtd->mtd,
993 (sets) ? sets->nr_chips : 1);
1da177e4
LT
994
995 if (nmtd->scan_res == 0) {
71d54f38
BD
996 s3c2410_nand_update_chip(info, nmtd);
997 nand_scan_tail(&nmtd->mtd);
1da177e4
LT
998 s3c2410_nand_add_partition(info, nmtd, sets);
999 }
1000
1001 if (sets != NULL)
1002 sets++;
1003 }
61b03bd7 1004
30821fee
BD
1005 err = s3c2410_nand_cpufreq_register(info);
1006 if (err < 0) {
1007 dev_err(&pdev->dev, "failed to init cpufreq support\n");
1008 goto exit_error;
1009 }
1010
d1fef3c5
BD
1011 if (allow_clk_stop(info)) {
1012 dev_info(&pdev->dev, "clock idle support enabled\n");
1013 clk_disable(info->clk);
1014 }
1015
1da177e4
LT
1016 pr_debug("initialised ok\n");
1017 return 0;
1018
1019 exit_error:
ec0482e6 1020 s3c24xx_nand_remove(pdev);
1da177e4
LT
1021
1022 if (err == 0)
1023 err = -EINVAL;
1024 return err;
1025}
1026
d1fef3c5
BD
1027/* PM Support */
1028#ifdef CONFIG_PM
1029
1030static int s3c24xx_nand_suspend(struct platform_device *dev, pm_message_t pm)
1031{
1032 struct s3c2410_nand_info *info = platform_get_drvdata(dev);
1033
1034 if (info) {
09160832 1035 info->save_sel = readl(info->sel_reg);
03680b1e
BD
1036
1037 /* For the moment, we must ensure nFCE is high during
1038 * the time we are suspended. This really should be
1039 * handled by suspending the MTDs we are using, but
1040 * that is currently not the case. */
1041
09160832 1042 writel(info->save_sel | info->sel_bit, info->sel_reg);
03680b1e 1043
d1fef3c5
BD
1044 if (!allow_clk_stop(info))
1045 clk_disable(info->clk);
1046 }
1047
1048 return 0;
1049}
1050
1051static int s3c24xx_nand_resume(struct platform_device *dev)
1052{
1053 struct s3c2410_nand_info *info = platform_get_drvdata(dev);
09160832 1054 unsigned long sel;
d1fef3c5
BD
1055
1056 if (info) {
1057 clk_enable(info->clk);
30821fee 1058 s3c2410_nand_inithw(info);
d1fef3c5 1059
03680b1e
BD
1060 /* Restore the state of the nFCE line. */
1061
09160832
BD
1062 sel = readl(info->sel_reg);
1063 sel &= ~info->sel_bit;
1064 sel |= info->save_sel & info->sel_bit;
1065 writel(sel, info->sel_reg);
03680b1e 1066
d1fef3c5
BD
1067 if (allow_clk_stop(info))
1068 clk_disable(info->clk);
1069 }
1070
1071 return 0;
1072}
1073
1074#else
1075#define s3c24xx_nand_suspend NULL
1076#define s3c24xx_nand_resume NULL
1077#endif
1078
a4f957f1
BD
1079/* driver device registration */
1080
ec0482e6
BD
1081static struct platform_device_id s3c24xx_driver_ids[] = {
1082 {
1083 .name = "s3c2410-nand",
1084 .driver_data = TYPE_S3C2410,
1085 }, {
1086 .name = "s3c2440-nand",
1087 .driver_data = TYPE_S3C2440,
1088 }, {
1089 .name = "s3c2412-nand",
1090 .driver_data = TYPE_S3C2412,
3ae5eaec 1091 },
ec0482e6 1092 { }
1da177e4
LT
1093};
1094
ec0482e6 1095MODULE_DEVICE_TABLE(platform, s3c24xx_driver_ids);
a4f957f1 1096
ec0482e6
BD
1097static struct platform_driver s3c24xx_nand_driver = {
1098 .probe = s3c24xx_nand_probe,
1099 .remove = s3c24xx_nand_remove,
2c06a082
BD
1100 .suspend = s3c24xx_nand_suspend,
1101 .resume = s3c24xx_nand_resume,
ec0482e6 1102 .id_table = s3c24xx_driver_ids,
2c06a082 1103 .driver = {
ec0482e6 1104 .name = "s3c24xx-nand",
2c06a082
BD
1105 .owner = THIS_MODULE,
1106 },
1107};
1108
1da177e4
LT
1109static int __init s3c2410_nand_init(void)
1110{
a4f957f1
BD
1111 printk("S3C24XX NAND Driver, (c) 2004 Simtec Electronics\n");
1112
ec0482e6 1113 return platform_driver_register(&s3c24xx_nand_driver);
1da177e4
LT
1114}
1115
1116static void __exit s3c2410_nand_exit(void)
1117{
ec0482e6 1118 platform_driver_unregister(&s3c24xx_nand_driver);
1da177e4
LT
1119}
1120
1121module_init(s3c2410_nand_init);
1122module_exit(s3c2410_nand_exit);
1123
1124MODULE_LICENSE("GPL");
1125MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
a4f957f1 1126MODULE_DESCRIPTION("S3C24XX MTD NAND driver");
This page took 0.378607 seconds and 5 git commands to generate.