1
2
3
4
5
6
7
8
9
10
11
12#include <linux/slab.h>
13#include <linux/gpio.h>
14#include <linux/module.h>
15#include <linux/interrupt.h>
16#include <linux/mtd/mtd.h>
17#include <linux/mtd/nand.h>
18#include <linux/mtd/partitions.h>
19#include <linux/platform_device.h>
20#include <asm/io.h>
21#include <asm/mach-au1x00/au1000.h>
22#include <asm/mach-au1x00/au1550nd.h>
23
24
25struct au1550nd_ctx {
26 struct mtd_info info;
27 struct nand_chip chip;
28
29 int cs;
30 void __iomem *base;
31 void (*write_byte)(struct mtd_info *, u_char);
32};
33
34
35
36
37
38
39
40static u_char au_read_byte(struct mtd_info *mtd)
41{
42 struct nand_chip *this = mtd->priv;
43 u_char ret = readb(this->IO_ADDR_R);
44 au_sync();
45 return ret;
46}
47
48
49
50
51
52
53
54
55static void au_write_byte(struct mtd_info *mtd, u_char byte)
56{
57 struct nand_chip *this = mtd->priv;
58 writeb(byte, this->IO_ADDR_W);
59 au_sync();
60}
61
62
63
64
65
66
67
68static u_char au_read_byte16(struct mtd_info *mtd)
69{
70 struct nand_chip *this = mtd->priv;
71 u_char ret = (u_char) cpu_to_le16(readw(this->IO_ADDR_R));
72 au_sync();
73 return ret;
74}
75
76
77
78
79
80
81
82
83static void au_write_byte16(struct mtd_info *mtd, u_char byte)
84{
85 struct nand_chip *this = mtd->priv;
86 writew(le16_to_cpu((u16) byte), this->IO_ADDR_W);
87 au_sync();
88}
89
90
91
92
93
94
95
96static u16 au_read_word(struct mtd_info *mtd)
97{
98 struct nand_chip *this = mtd->priv;
99 u16 ret = readw(this->IO_ADDR_R);
100 au_sync();
101 return ret;
102}
103
104
105
106
107
108
109
110
111
112static void au_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
113{
114 int i;
115 struct nand_chip *this = mtd->priv;
116
117 for (i = 0; i < len; i++) {
118 writeb(buf[i], this->IO_ADDR_W);
119 au_sync();
120 }
121}
122
123
124
125
126
127
128
129
130
131static void au_read_buf(struct mtd_info *mtd, u_char *buf, int len)
132{
133 int i;
134 struct nand_chip *this = mtd->priv;
135
136 for (i = 0; i < len; i++) {
137 buf[i] = readb(this->IO_ADDR_R);
138 au_sync();
139 }
140}
141
142
143
144
145
146
147
148
149
150static void au_write_buf16(struct mtd_info *mtd, const u_char *buf, int len)
151{
152 int i;
153 struct nand_chip *this = mtd->priv;
154 u16 *p = (u16 *) buf;
155 len >>= 1;
156
157 for (i = 0; i < len; i++) {
158 writew(p[i], this->IO_ADDR_W);
159 au_sync();
160 }
161
162}
163
164
165
166
167
168
169
170
171
172static void au_read_buf16(struct mtd_info *mtd, u_char *buf, int len)
173{
174 int i;
175 struct nand_chip *this = mtd->priv;
176 u16 *p = (u16 *) buf;
177 len >>= 1;
178
179 for (i = 0; i < len; i++) {
180 p[i] = readw(this->IO_ADDR_R);
181 au_sync();
182 }
183}
184
185
186#define NAND_CTL_SETNCE 1
187
188#define NAND_CTL_CLRNCE 2
189
190#define NAND_CTL_SETCLE 3
191
192#define NAND_CTL_CLRCLE 4
193
194#define NAND_CTL_SETALE 5
195
196#define NAND_CTL_CLRALE 6
197
198static void au1550_hwcontrol(struct mtd_info *mtd, int cmd)
199{
200 struct au1550nd_ctx *ctx = container_of(mtd, struct au1550nd_ctx, info);
201 struct nand_chip *this = mtd->priv;
202
203 switch (cmd) {
204
205 case NAND_CTL_SETCLE:
206 this->IO_ADDR_W = ctx->base + MEM_STNAND_CMD;
207 break;
208
209 case NAND_CTL_CLRCLE:
210 this->IO_ADDR_W = ctx->base + MEM_STNAND_DATA;
211 break;
212
213 case NAND_CTL_SETALE:
214 this->IO_ADDR_W = ctx->base + MEM_STNAND_ADDR;
215 break;
216
217 case NAND_CTL_CLRALE:
218 this->IO_ADDR_W = ctx->base + MEM_STNAND_DATA;
219
220
221 udelay(1);
222 break;
223
224 case NAND_CTL_SETNCE:
225
226 au_writel((1 << (4 + ctx->cs)), MEM_STNDCTL);
227 break;
228
229 case NAND_CTL_CLRNCE:
230
231 au_writel(0, MEM_STNDCTL);
232 break;
233 }
234
235 this->IO_ADDR_R = this->IO_ADDR_W;
236
237
238 au_sync();
239}
240
241int au1550_device_ready(struct mtd_info *mtd)
242{
243 int ret = (au_readl(MEM_STSTAT) & 0x1) ? 1 : 0;
244 au_sync();
245 return ret;
246}
247
248
249
250
251
252
253
254
255
256
257
258
259
260static void au1550_select_chip(struct mtd_info *mtd, int chip)
261{
262}
263
264
265
266
267
268
269
270
271static void au1550_command(struct mtd_info *mtd, unsigned command, int column, int page_addr)
272{
273 struct au1550nd_ctx *ctx = container_of(mtd, struct au1550nd_ctx, info);
274 struct nand_chip *this = mtd->priv;
275 int ce_override = 0, i;
276 unsigned long flags = 0;
277
278
279 au1550_hwcontrol(mtd, NAND_CTL_SETCLE);
280
281
282
283 if (command == NAND_CMD_SEQIN) {
284 int readcmd;
285
286 if (column >= mtd->writesize) {
287
288 column -= mtd->writesize;
289 readcmd = NAND_CMD_READOOB;
290 } else if (column < 256) {
291
292 readcmd = NAND_CMD_READ0;
293 } else {
294 column -= 256;
295 readcmd = NAND_CMD_READ1;
296 }
297 ctx->write_byte(mtd, readcmd);
298 }
299 ctx->write_byte(mtd, command);
300
301
302 au1550_hwcontrol(mtd, NAND_CTL_CLRCLE);
303
304 if (column != -1 || page_addr != -1) {
305 au1550_hwcontrol(mtd, NAND_CTL_SETALE);
306
307
308 if (column != -1) {
309
310 if (this->options & NAND_BUSWIDTH_16 &&
311 !nand_opcode_8bits(command))
312 column >>= 1;
313 ctx->write_byte(mtd, column);
314 }
315 if (page_addr != -1) {
316 ctx->write_byte(mtd, (u8)(page_addr & 0xff));
317
318 if (command == NAND_CMD_READ0 ||
319 command == NAND_CMD_READ1 ||
320 command == NAND_CMD_READOOB) {
321
322
323
324
325
326
327
328
329 ce_override = 1;
330 local_irq_save(flags);
331 au1550_hwcontrol(mtd, NAND_CTL_SETNCE);
332 }
333
334 ctx->write_byte(mtd, (u8)(page_addr >> 8));
335
336
337 if (this->chipsize > (32 << 20))
338 ctx->write_byte(mtd,
339 ((page_addr >> 16) & 0x0f));
340 }
341
342 au1550_hwcontrol(mtd, NAND_CTL_CLRALE);
343 }
344
345
346
347
348
349 switch (command) {
350
351 case NAND_CMD_PAGEPROG:
352 case NAND_CMD_ERASE1:
353 case NAND_CMD_ERASE2:
354 case NAND_CMD_SEQIN:
355 case NAND_CMD_STATUS:
356 return;
357
358 case NAND_CMD_RESET:
359 break;
360
361 case NAND_CMD_READ0:
362 case NAND_CMD_READ1:
363 case NAND_CMD_READOOB:
364
365 if (unlikely(!ce_override))
366 break;
367
368
369 ndelay(100);
370
371 for (i = this->chip_delay; !this->dev_ready(mtd) && i > 0; --i)
372 udelay(1);
373
374
375 au1550_hwcontrol(mtd, NAND_CTL_CLRNCE);
376 local_irq_restore(flags);
377 return;
378 }
379
380 ndelay(100);
381
382 while(!this->dev_ready(mtd));
383}
384
385static int find_nand_cs(unsigned long nand_base)
386{
387 void __iomem *base =
388 (void __iomem *)KSEG1ADDR(AU1000_STATIC_MEM_PHYS_ADDR);
389 unsigned long addr, staddr, start, mask, end;
390 int i;
391
392 for (i = 0; i < 4; i++) {
393 addr = 0x1000 + (i * 0x10);
394 staddr = __raw_readl(base + addr + 0x08);
395
396 start = (staddr << 4) & 0xfffc0000;
397 mask = (staddr << 18) & 0xfffc0000;
398 end = (start | (start - 1)) & ~(start ^ mask);
399 if ((nand_base >= start) && (nand_base < end))
400 return i;
401 }
402
403 return -ENODEV;
404}
405
406static int au1550nd_probe(struct platform_device *pdev)
407{
408 struct au1550nd_platdata *pd;
409 struct au1550nd_ctx *ctx;
410 struct nand_chip *this;
411 struct resource *r;
412 int ret, cs;
413
414 pd = dev_get_platdata(&pdev->dev);
415 if (!pd) {
416 dev_err(&pdev->dev, "missing platform data\n");
417 return -ENODEV;
418 }
419
420 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
421 if (!ctx)
422 return -ENOMEM;
423
424 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
425 if (!r) {
426 dev_err(&pdev->dev, "no NAND memory resource\n");
427 ret = -ENODEV;
428 goto out1;
429 }
430 if (request_mem_region(r->start, resource_size(r), "au1550-nand")) {
431 dev_err(&pdev->dev, "cannot claim NAND memory area\n");
432 ret = -ENOMEM;
433 goto out1;
434 }
435
436 ctx->base = ioremap_nocache(r->start, 0x1000);
437 if (!ctx->base) {
438 dev_err(&pdev->dev, "cannot remap NAND memory area\n");
439 ret = -ENODEV;
440 goto out2;
441 }
442
443 this = &ctx->chip;
444 ctx->info.priv = this;
445 ctx->info.owner = THIS_MODULE;
446
447
448 cs = find_nand_cs(r->start);
449 if (cs < 0) {
450 dev_err(&pdev->dev, "cannot detect NAND chipselect\n");
451 ret = -ENODEV;
452 goto out3;
453 }
454 ctx->cs = cs;
455
456 this->dev_ready = au1550_device_ready;
457 this->select_chip = au1550_select_chip;
458 this->cmdfunc = au1550_command;
459
460
461 this->chip_delay = 30;
462 this->ecc.mode = NAND_ECC_SOFT;
463
464 if (pd->devwidth)
465 this->options |= NAND_BUSWIDTH_16;
466
467 this->read_byte = (pd->devwidth) ? au_read_byte16 : au_read_byte;
468 ctx->write_byte = (pd->devwidth) ? au_write_byte16 : au_write_byte;
469 this->read_word = au_read_word;
470 this->write_buf = (pd->devwidth) ? au_write_buf16 : au_write_buf;
471 this->read_buf = (pd->devwidth) ? au_read_buf16 : au_read_buf;
472
473 ret = nand_scan(&ctx->info, 1);
474 if (ret) {
475 dev_err(&pdev->dev, "NAND scan failed with %d\n", ret);
476 goto out3;
477 }
478
479 mtd_device_register(&ctx->info, pd->parts, pd->num_parts);
480
481 platform_set_drvdata(pdev, ctx);
482
483 return 0;
484
485out3:
486 iounmap(ctx->base);
487out2:
488 release_mem_region(r->start, resource_size(r));
489out1:
490 kfree(ctx);
491 return ret;
492}
493
494static int au1550nd_remove(struct platform_device *pdev)
495{
496 struct au1550nd_ctx *ctx = platform_get_drvdata(pdev);
497 struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
498
499 nand_release(&ctx->info);
500 iounmap(ctx->base);
501 release_mem_region(r->start, 0x1000);
502 kfree(ctx);
503 return 0;
504}
505
506static struct platform_driver au1550nd_driver = {
507 .driver = {
508 .name = "au1550-nand",
509 .owner = THIS_MODULE,
510 },
511 .probe = au1550nd_probe,
512 .remove = au1550nd_remove,
513};
514
515module_platform_driver(au1550nd_driver);
516
517MODULE_LICENSE("GPL");
518MODULE_AUTHOR("Embedded Edge, LLC");
519MODULE_DESCRIPTION("Board-specific glue layer for NAND flash on Pb1550 board");
520