ar71xx: ar934x_nfc: fix RNDOUT operation
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / files / drivers / mtd / nand / ar934x_nfc.c
1 /*
2 * Driver for the built-in NAND controller of the Atheros AR934x SoCs
3 *
4 * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 */
10
11 #include <linux/init.h>
12 #include <linux/interrupt.h>
13 #include <linux/module.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/nand.h>
17 #include <linux/mtd/partitions.h>
18 #include <linux/platform_device.h>
19 #include <linux/delay.h>
20 #include <linux/slab.h>
21
22 #include <linux/platform/ar934x_nfc.h>
23
24 #define AR934X_NFC_REG_CMD 0x00
25 #define AR934X_NFC_REG_CTRL 0x04
26 #define AR934X_NFC_REG_STATUS 0x08
27 #define AR934X_NFC_REG_INT_MASK 0x0c
28 #define AR934X_NFC_REG_INT_STATUS 0x10
29 #define AR934X_NFC_REG_ECC_CTRL 0x14
30 #define AR934X_NFC_REG_ECC_OFFSET 0x18
31 #define AR934X_NFC_REG_ADDR0_0 0x1c
32 #define AR934X_NFC_REG_ADDR0_1 0x24
33 #define AR934X_NFC_REG_ADDR1_0 0x20
34 #define AR934X_NFC_REG_ADDR1_1 0x28
35 #define AR934X_NFC_REG_SPARE_SIZE 0x30
36 #define AR934X_NFC_REG_PROTECT 0x38
37 #define AR934X_NFC_REG_LOOKUP_EN 0x40
38 #define AR934X_NFC_REG_LOOKUP(_x) (0x44 + (_i) * 4)
39 #define AR934X_NFC_REG_DMA_ADDR 0x64
40 #define AR934X_NFC_REG_DMA_COUNT 0x68
41 #define AR934X_NFC_REG_DMA_CTRL 0x6c
42 #define AR934X_NFC_REG_MEM_CTRL 0x80
43 #define AR934X_NFC_REG_DATA_SIZE 0x84
44 #define AR934X_NFC_REG_READ_STATUS 0x88
45 #define AR934X_NFC_REG_TIME_SEQ 0x8c
46 #define AR934X_NFC_REG_TIMINGS_ASYN 0x90
47 #define AR934X_NFC_REG_TIMINGS_SYN 0x94
48 #define AR934X_NFC_REG_FIFO_DATA 0x98
49 #define AR934X_NFC_REG_TIME_MODE 0x9c
50 #define AR934X_NFC_REG_DMA_ADDR_OFFS 0xa0
51 #define AR934X_NFC_REG_FIFO_INIT 0xb0
52 #define AR934X_NFC_REG_GEN_SEQ_CTRL 0xb4
53
54 #define AR934X_NFC_CMD_CMD_SEQ_S 0
55 #define AR934X_NFC_CMD_CMD_SEQ_M 0x3f
56 #define AR934X_NFC_CMD_SEQ_1C 0x00
57 #define AR934X_NFC_CMD_SEQ_ERASE 0x0e
58 #define AR934X_NFC_CMD_SEQ_12 0x0c
59 #define AR934X_NFC_CMD_SEQ_1C1AXR 0x21
60 #define AR934X_NFC_CMD_SEQ_S 0x24
61 #define AR934X_NFC_CMD_SEQ_1C3AXR 0x27
62 #define AR934X_NFC_CMD_SEQ_1C5A1CXR 0x2a
63 #define AR934X_NFC_CMD_SEQ_18 0x32
64 #define AR934X_NFC_CMD_INPUT_SEL_SIU 0
65 #define AR934X_NFC_CMD_INPUT_SEL_DMA BIT(6)
66 #define AR934X_NFC_CMD_ADDR_SEL_0 0
67 #define AR934X_NFC_CMD_ADDR_SEL_1 BIT(7)
68 #define AR934X_NFC_CMD_CMD0_S 8
69 #define AR934X_NFC_CMD_CMD0_M 0xff
70 #define AR934X_NFC_CMD_CMD1_S 16
71 #define AR934X_NFC_CMD_CMD1_M 0xff
72 #define AR934X_NFC_CMD_CMD2_S 24
73 #define AR934X_NFC_CMD_CMD2_M 0xff
74
75 #define AR934X_NFC_CTRL_ADDR_CYCLE0_M 0x7
76 #define AR934X_NFC_CTRL_ADDR_CYCLE0_S 0
77 #define AR934X_NFC_CTRL_SPARE_EN BIT(3)
78 #define AR934X_NFC_CTRL_INT_EN BIT(4)
79 #define AR934X_NFC_CTRL_ECC_EN BIT(5)
80 #define AR934X_NFC_CTRL_BLOCK_SIZE_S 6
81 #define AR934X_NFC_CTRL_BLOCK_SIZE_M 0x3
82 #define AR934X_NFC_CTRL_BLOCK_SIZE_32 0
83 #define AR934X_NFC_CTRL_BLOCK_SIZE_64 1
84 #define AR934X_NFC_CTRL_BLOCK_SIZE_128 2
85 #define AR934X_NFC_CTRL_BLOCK_SIZE_256 3
86 #define AR934X_NFC_CTRL_PAGE_SIZE_S 8
87 #define AR934X_NFC_CTRL_PAGE_SIZE_M 0x7
88 #define AR934X_NFC_CTRL_PAGE_SIZE_256 0
89 #define AR934X_NFC_CTRL_PAGE_SIZE_512 1
90 #define AR934X_NFC_CTRL_PAGE_SIZE_1024 2
91 #define AR934X_NFC_CTRL_PAGE_SIZE_2048 3
92 #define AR934X_NFC_CTRL_PAGE_SIZE_4096 4
93 #define AR934X_NFC_CTRL_PAGE_SIZE_8192 5
94 #define AR934X_NFC_CTRL_PAGE_SIZE_16384 6
95 #define AR934X_NFC_CTRL_CUSTOM_SIZE_EN BIT(11)
96 #define AR934X_NFC_CTRL_IO_WIDTH_8BITS 0
97 #define AR934X_NFC_CTRL_IO_WIDTH_16BITS BIT(12)
98 #define AR934X_NFC_CTRL_LOOKUP_EN BIT(13)
99 #define AR934X_NFC_CTRL_PROT_EN BIT(14)
100 #define AR934X_NFC_CTRL_WORK_MODE_ASYNC 0
101 #define AR934X_NFC_CTRL_WORK_MODE_SYNC BIT(15)
102 #define AR934X_NFC_CTRL_ADDR0_AUTO_INC BIT(16)
103 #define AR934X_NFC_CTRL_ADDR1_AUTO_INC BIT(17)
104 #define AR934X_NFC_CTRL_ADDR_CYCLE1_M 0x7
105 #define AR934X_NFC_CTRL_ADDR_CYCLE1_S 18
106 #define AR934X_NFC_CTRL_SMALL_PAGE BIT(21)
107
108 #define AR934X_NFC_DMA_CTRL_DMA_START BIT(7)
109 #define AR934X_NFC_DMA_CTRL_DMA_DIR_WRITE 0
110 #define AR934X_NFC_DMA_CTRL_DMA_DIR_READ BIT(6)
111 #define AR934X_NFC_DMA_CTRL_DMA_MODE_SG BIT(5)
112 #define AR934X_NFC_DMA_CTRL_DMA_BURST_S 2
113 #define AR934X_NFC_DMA_CTRL_DMA_BURST_0 0
114 #define AR934X_NFC_DMA_CTRL_DMA_BURST_1 1
115 #define AR934X_NFC_DMA_CTRL_DMA_BURST_2 2
116 #define AR934X_NFC_DMA_CTRL_DMA_BURST_3 3
117 #define AR934X_NFC_DMA_CTRL_DMA_BURST_4 4
118 #define AR934X_NFC_DMA_CTRL_DMA_BURST_5 5
119 #define AR934X_NFC_DMA_CTRL_ERR_FLAG BIT(1)
120 #define AR934X_NFC_DMA_CTRL_DMA_READY BIT(0)
121
122 #define AR934X_NFC_INT_DEV_RDY(_x) BIT(4 + (_x))
123 #define AR934X_NFC_INT_CMD_END BIT(1)
124
125 /* default timing values */
126 #define AR934X_NFC_TIME_SEQ_DEFAULT 0x7fff
127 #define AR934X_NFC_TIMINGS_ASYN_DEFAULT 0x22
128 #define AR934X_NFC_TIMINGS_SYN_DEFAULT 0xf
129
130 #define AR934X_NFC_ID_BUF_SIZE 8
131 #define AR934X_NFC_DEV_READY_TIMEOUT 25 /* msecs */
132 #define AR934X_NFC_DMA_READY_TIMEOUT 25 /* msecs */
133 #define AR934X_NFC_DONE_TIMEOUT 1000
134
135 #define AR934X_NFC_USE_IRQ true
136 #define AR934X_NFC_IRQ_MASK AR934X_NFC_INT_DEV_RDY(0)
137
138 #define AR934X_NFC_GENSEQ_SMALL_PAGE_READ 0x30043
139
140 #undef AR934X_NFC_DEBUG_DATA
141 #undef AR934X_NFC_DEBUG
142
143 struct ar934x_nfc;
144
145 static inline __attribute__ ((format (printf, 2, 3)))
146 void _nfc_dbg(struct ar934x_nfc *nfc, const char *fmt, ...)
147 {
148 }
149
150 #ifdef AR934X_NFC_DEBUG
151 #define nfc_dbg(_nfc, fmt, ...) \
152 dev_info((_nfc)->parent, fmt, ##__VA_ARGS__)
153 #else
154 #define nfc_dbg(_nfc, fmt, ...) \
155 _nfc_dbg((_nfc), fmt, ##__VA_ARGS__)
156 #endif /* AR934X_NFC_DEBUG */
157
158 #ifdef AR934X_NFC_DEBUG_DATA
159 static void
160 nfc_debug_data(const char *label, void *data, int len)
161 {
162 print_hex_dump(KERN_WARNING, label, DUMP_PREFIX_OFFSET, 16, 1,
163 data, len, 0);
164 }
165 #else
166 static inline void
167 nfc_debug_data(const char *label, void *data, int len) {}
168 #endif /* AR934X_NFC_DEBUG_DATA */
169
170 struct ar934x_nfc {
171 struct mtd_info mtd;
172 struct nand_chip nand_chip;
173 struct device *parent;
174 void __iomem *base;
175 void (*select_chip)(int chip_no);
176 int irq;
177 wait_queue_head_t irq_waitq;
178
179 bool spurious_irq_expected;
180 u32 irq_status;
181
182 u32 ctrl_reg;
183 bool small_page;
184 unsigned int addr_count0;
185 unsigned int addr_count1;
186
187 u8 *buf;
188 dma_addr_t buf_dma;
189 unsigned int buf_size;
190 int buf_index;
191
192 int erase1_page_addr;
193
194 int rndout_page_addr;
195 int rndout_read_cmd;
196
197 int seqin_page_addr;
198 int seqin_column;
199 int seqin_read_cmd;
200 };
201
202 static void ar934x_nfc_restart(struct ar934x_nfc *nfc);
203
204 static inline void
205 ar934x_nfc_wr(struct ar934x_nfc *nfc, unsigned reg, u32 val)
206 {
207 __raw_writel(val, nfc->base + reg);
208 }
209
210 static inline u32
211 ar934x_nfc_rr(struct ar934x_nfc *nfc, unsigned reg)
212 {
213 return __raw_readl(nfc->base + reg);
214 }
215
216 static inline struct ar934x_nfc_platform_data *
217 ar934x_nfc_get_platform_data(struct ar934x_nfc *nfc)
218 {
219 return nfc->parent->platform_data;
220 }
221
222 static inline struct
223 ar934x_nfc *mtd_to_ar934x_nfc(struct mtd_info *mtd)
224 {
225 return container_of(mtd, struct ar934x_nfc, mtd);
226 }
227
228 static inline bool ar934x_nfc_use_irq(struct ar934x_nfc *nfc)
229 {
230 return AR934X_NFC_USE_IRQ;
231 }
232
233 static inline void ar934x_nfc_write_cmd_reg(struct ar934x_nfc *nfc, u32 cmd_reg)
234 {
235 wmb();
236
237 ar934x_nfc_wr(nfc, AR934X_NFC_REG_CMD, cmd_reg);
238 /* flush write */
239 ar934x_nfc_rr(nfc, AR934X_NFC_REG_CMD);
240 }
241
242 static bool
243 __ar934x_nfc_dev_ready(struct ar934x_nfc *nfc)
244 {
245 u32 status;
246
247 status = ar934x_nfc_rr(nfc, AR934X_NFC_REG_STATUS);
248 return (status & 0xff) == 0xff;
249 }
250
251 static inline bool
252 __ar934x_nfc_is_dma_ready(struct ar934x_nfc *nfc)
253 {
254 u32 status;
255
256 status = ar934x_nfc_rr(nfc, AR934X_NFC_REG_DMA_CTRL);
257 return (status & AR934X_NFC_DMA_CTRL_DMA_READY) != 0;
258 }
259
260 static int
261 ar934x_nfc_wait_dev_ready(struct ar934x_nfc *nfc)
262 {
263 unsigned long timeout;
264
265 timeout = jiffies + msecs_to_jiffies(AR934X_NFC_DEV_READY_TIMEOUT);
266 do {
267 if (__ar934x_nfc_dev_ready(nfc))
268 return 0;
269 } while time_before(jiffies, timeout);
270
271 nfc_dbg(nfc, "timeout waiting for device ready, status:%08x int:%08x\n",
272 ar934x_nfc_rr(nfc, AR934X_NFC_REG_STATUS),
273 ar934x_nfc_rr(nfc, AR934X_NFC_REG_INT_STATUS));
274 return -ETIMEDOUT;
275 }
276
277 static int
278 ar934x_nfc_wait_dma_ready(struct ar934x_nfc *nfc)
279 {
280 unsigned long timeout;
281
282 timeout = jiffies + msecs_to_jiffies(AR934X_NFC_DMA_READY_TIMEOUT);
283 do {
284 if (__ar934x_nfc_is_dma_ready(nfc))
285 return 0;
286 } while time_before(jiffies, timeout);
287
288 nfc_dbg(nfc, "timeout waiting for DMA ready, dma_ctrl:%08x\n",
289 ar934x_nfc_rr(nfc, AR934X_NFC_REG_DMA_CTRL));
290 return -ETIMEDOUT;
291 }
292
293 static int
294 ar934x_nfc_wait_irq(struct ar934x_nfc *nfc)
295 {
296 long timeout;
297 int ret;
298
299 timeout = wait_event_timeout(nfc->irq_waitq,
300 (nfc->irq_status & AR934X_NFC_IRQ_MASK) != 0,
301 msecs_to_jiffies(AR934X_NFC_DEV_READY_TIMEOUT));
302
303 ret = 0;
304 if (!timeout) {
305 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_MASK, 0);
306 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_STATUS, 0);
307 /* flush write */
308 ar934x_nfc_rr(nfc, AR934X_NFC_REG_INT_STATUS);
309
310 nfc_dbg(nfc,
311 "timeout waiting for interrupt, status:%08x\n",
312 nfc->irq_status);
313 ret = -ETIMEDOUT;
314 }
315
316 nfc->irq_status = 0;
317 return ret;
318 }
319
320 static int
321 ar934x_nfc_wait_done(struct ar934x_nfc *nfc)
322 {
323 int ret;
324
325 if (ar934x_nfc_use_irq(nfc))
326 ret = ar934x_nfc_wait_irq(nfc);
327 else
328 ret = ar934x_nfc_wait_dev_ready(nfc);
329
330 if (ret)
331 return ret;
332
333 return ar934x_nfc_wait_dma_ready(nfc);
334 }
335
336 static int
337 ar934x_nfc_alloc_buf(struct ar934x_nfc *nfc, unsigned size)
338 {
339 nfc->buf = dma_alloc_coherent(nfc->parent, size,
340 &nfc->buf_dma, GFP_KERNEL);
341 if (nfc->buf == NULL) {
342 dev_err(nfc->parent, "no memory for DMA buffer\n");
343 return -ENOMEM;
344 }
345
346 nfc->buf_size = size;
347 nfc_dbg(nfc, "buf:%p size:%u\n", nfc->buf, nfc->buf_size);
348
349 return 0;
350 }
351
352 static void
353 ar934x_nfc_free_buf(struct ar934x_nfc *nfc)
354 {
355 dma_free_coherent(nfc->parent, nfc->buf_size, nfc->buf, nfc->buf_dma);
356 }
357
358 static void
359 ar934x_nfc_get_addr(struct ar934x_nfc *nfc, int column, int page_addr,
360 u32 *addr0, u32 *addr1)
361 {
362 u32 a0, a1;
363
364 a0 = 0;
365 a1 = 0;
366
367 if (column == -1) {
368 /* ERASE1 */
369 a0 = (page_addr & 0xffff) << 16;
370 a1 = (page_addr >> 16) & 0xf;
371 } else if (page_addr != -1) {
372 /* SEQIN, READ0, etc.. */
373
374 /* TODO: handle 16bit bus width */
375 if (nfc->small_page) {
376 a0 = column & 0xff;
377 a0 |= (page_addr & 0xff) << 8;
378 a0 |= ((page_addr >> 8) & 0xff) << 16;
379 a0 |= ((page_addr >> 16) & 0xff) << 24;
380 } else {
381 a0 = column & 0x0FFF;
382 a0 |= (page_addr & 0xffff) << 16;
383
384 if (nfc->addr_count0 > 4)
385 a1 = (page_addr >> 16) & 0xf;
386 }
387 }
388
389 *addr0 = a0;
390 *addr1 = a1;
391 }
392
393 static void
394 ar934x_nfc_send_cmd(struct ar934x_nfc *nfc, unsigned command)
395 {
396 u32 cmd_reg;
397
398 cmd_reg = AR934X_NFC_CMD_INPUT_SEL_SIU | AR934X_NFC_CMD_ADDR_SEL_0 |
399 AR934X_NFC_CMD_SEQ_1C;
400 cmd_reg |= (command & AR934X_NFC_CMD_CMD0_M) << AR934X_NFC_CMD_CMD0_S;
401
402 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_STATUS, 0);
403 ar934x_nfc_wr(nfc, AR934X_NFC_REG_CTRL, nfc->ctrl_reg);
404
405 ar934x_nfc_write_cmd_reg(nfc, cmd_reg);
406 ar934x_nfc_wait_dev_ready(nfc);
407 }
408
409 static void
410 ar934x_nfc_do_rw_command(struct ar934x_nfc *nfc, int column, int page_addr,
411 int len, u32 cmd_reg, u32 ctrl_reg, bool write)
412 {
413 u32 addr0, addr1;
414 u32 dma_ctrl;
415 int dir;
416 int err;
417 int retries = 0;
418
419 WARN_ON(len & 3);
420
421 if (WARN_ON(len > nfc->buf_size))
422 dev_err(nfc->parent, "len=%d > buf_size=%d", len, nfc->buf_size);
423
424 if (write) {
425 dma_ctrl = AR934X_NFC_DMA_CTRL_DMA_DIR_WRITE;
426 dir = DMA_TO_DEVICE;
427 } else {
428 dma_ctrl = AR934X_NFC_DMA_CTRL_DMA_DIR_READ;
429 dir = DMA_FROM_DEVICE;
430 }
431
432 ar934x_nfc_get_addr(nfc, column, page_addr, &addr0, &addr1);
433
434 dma_ctrl |= AR934X_NFC_DMA_CTRL_DMA_START |
435 (AR934X_NFC_DMA_CTRL_DMA_BURST_3 <<
436 AR934X_NFC_DMA_CTRL_DMA_BURST_S);
437
438 cmd_reg |= AR934X_NFC_CMD_INPUT_SEL_DMA | AR934X_NFC_CMD_ADDR_SEL_0;
439 ctrl_reg |= AR934X_NFC_CTRL_INT_EN;
440
441 nfc_dbg(nfc, "%s a0:%08x a1:%08x len:%x cmd:%08x dma:%08x ctrl:%08x\n",
442 (write) ? "write" : "read",
443 addr0, addr1, len, cmd_reg, dma_ctrl, ctrl_reg);
444
445 retry:
446 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_STATUS, 0);
447 ar934x_nfc_wr(nfc, AR934X_NFC_REG_ADDR0_0, addr0);
448 ar934x_nfc_wr(nfc, AR934X_NFC_REG_ADDR0_1, addr1);
449 ar934x_nfc_wr(nfc, AR934X_NFC_REG_DMA_ADDR, nfc->buf_dma);
450 ar934x_nfc_wr(nfc, AR934X_NFC_REG_DMA_COUNT, len);
451 ar934x_nfc_wr(nfc, AR934X_NFC_REG_DATA_SIZE, len);
452 ar934x_nfc_wr(nfc, AR934X_NFC_REG_CTRL, ctrl_reg);
453 ar934x_nfc_wr(nfc, AR934X_NFC_REG_DMA_CTRL, dma_ctrl);
454
455 if (ar934x_nfc_use_irq(nfc)) {
456 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_MASK, AR934X_NFC_IRQ_MASK);
457 /* flush write */
458 ar934x_nfc_rr(nfc, AR934X_NFC_REG_INT_MASK);
459 }
460
461 ar934x_nfc_write_cmd_reg(nfc, cmd_reg);
462 err = ar934x_nfc_wait_done(nfc);
463 if (err) {
464 dev_dbg(nfc->parent, "%s operation stuck at page %d\n",
465 (write) ? "write" : "read", page_addr);
466
467 ar934x_nfc_restart(nfc);
468 if (retries++ < 5)
469 goto retry;
470
471 dev_err(nfc->parent, "%s operation failed on page %d\n",
472 (write) ? "write" : "read", page_addr);
473 }
474 }
475
476 static void
477 ar934x_nfc_send_readid(struct ar934x_nfc *nfc, unsigned command)
478 {
479 u32 cmd_reg;
480
481 nfc_dbg(nfc, "readid, cmd:%02x\n", command);
482
483 cmd_reg = AR934X_NFC_CMD_SEQ_1C1AXR;
484 cmd_reg |= (command & AR934X_NFC_CMD_CMD0_M) << AR934X_NFC_CMD_CMD0_S;
485
486 ar934x_nfc_do_rw_command(nfc, -1, -1, AR934X_NFC_ID_BUF_SIZE, cmd_reg,
487 nfc->ctrl_reg, false);
488
489 nfc_debug_data("[id] ", nfc->buf, AR934X_NFC_ID_BUF_SIZE);
490 }
491
492 static void
493 ar934x_nfc_send_read(struct ar934x_nfc *nfc, unsigned command, int column,
494 int page_addr, int len, bool oob)
495 {
496 u32 cmd_reg;
497
498 nfc_dbg(nfc, "read, column=%d page=%d len=%d oob:%d\n",
499 column, page_addr, len, oob);
500
501 cmd_reg = (command & AR934X_NFC_CMD_CMD0_M) << AR934X_NFC_CMD_CMD0_S;
502
503 if (nfc->small_page) {
504 cmd_reg |= AR934X_NFC_CMD_SEQ_18;
505 } else {
506 cmd_reg |= NAND_CMD_READSTART << AR934X_NFC_CMD_CMD1_S;
507 cmd_reg |= AR934X_NFC_CMD_SEQ_1C5A1CXR;
508 }
509
510 ar934x_nfc_do_rw_command(nfc, column, page_addr, len,
511 cmd_reg, nfc->ctrl_reg, false);
512
513 nfc_debug_data("[data] ", nfc->buf, len);
514 }
515
516 static void
517 ar934x_nfc_send_erase(struct ar934x_nfc *nfc, unsigned command, int column,
518 int page_addr)
519 {
520 u32 addr0, addr1;
521 u32 ctrl_reg;
522 u32 cmd_reg;
523
524 ar934x_nfc_get_addr(nfc, column, page_addr, &addr0, &addr1);
525
526 ctrl_reg = nfc->ctrl_reg;
527 if (nfc->small_page) {
528 /* override number of address cycles for the erase command */
529 ctrl_reg &= ~(AR934X_NFC_CTRL_ADDR_CYCLE0_M <<
530 AR934X_NFC_CTRL_ADDR_CYCLE0_S);
531 ctrl_reg &= ~(AR934X_NFC_CTRL_ADDR_CYCLE1_M <<
532 AR934X_NFC_CTRL_ADDR_CYCLE1_S);
533 ctrl_reg &= ~(AR934X_NFC_CTRL_SMALL_PAGE);
534 ctrl_reg |= (nfc->addr_count0 + 1) <<
535 AR934X_NFC_CTRL_ADDR_CYCLE0_S;
536 }
537
538 cmd_reg = NAND_CMD_ERASE1 << AR934X_NFC_CMD_CMD0_S;
539 cmd_reg |= command << AR934X_NFC_CMD_CMD1_S;
540 cmd_reg |= AR934X_NFC_CMD_SEQ_ERASE;
541
542 nfc_dbg(nfc, "erase page %d, a0:%08x a1:%08x cmd:%08x ctrl:%08x\n",
543 page_addr, addr0, addr1, cmd_reg, ctrl_reg);
544
545 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_STATUS, 0);
546 ar934x_nfc_wr(nfc, AR934X_NFC_REG_CTRL, ctrl_reg);
547 ar934x_nfc_wr(nfc, AR934X_NFC_REG_ADDR0_0, addr0);
548 ar934x_nfc_wr(nfc, AR934X_NFC_REG_ADDR0_1, addr1);
549
550 ar934x_nfc_write_cmd_reg(nfc, cmd_reg);
551 ar934x_nfc_wait_dev_ready(nfc);
552 }
553
554 static void
555 ar934x_nfc_send_write(struct ar934x_nfc *nfc, unsigned command, int column,
556 int page_addr, int len)
557 {
558 u32 cmd_reg;
559
560 nfc_dbg(nfc, "write, column=%d page=%d len=%d\n",
561 column, page_addr, len);
562
563 nfc_debug_data("[data] ", nfc->buf, len);
564
565 cmd_reg = NAND_CMD_SEQIN << AR934X_NFC_CMD_CMD0_S;
566 cmd_reg |= command << AR934X_NFC_CMD_CMD1_S;
567 cmd_reg |= AR934X_NFC_CMD_SEQ_12;
568
569 ar934x_nfc_do_rw_command(nfc, column, page_addr, len,
570 cmd_reg, nfc->ctrl_reg, true);
571 }
572
573 static void
574 ar934x_nfc_read_status(struct ar934x_nfc *nfc)
575 {
576 u32 cmd_reg;
577 u32 status;
578
579 cmd_reg = NAND_CMD_STATUS << AR934X_NFC_CMD_CMD0_S;
580 cmd_reg |= AR934X_NFC_CMD_SEQ_S;
581
582 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_STATUS, 0);
583 ar934x_nfc_wr(nfc, AR934X_NFC_REG_CTRL, nfc->ctrl_reg);
584
585 ar934x_nfc_write_cmd_reg(nfc, cmd_reg);
586 ar934x_nfc_wait_dev_ready(nfc);
587
588 status = ar934x_nfc_rr(nfc, AR934X_NFC_REG_READ_STATUS);
589
590 nfc_dbg(nfc, "read status, cmd:%08x status:%02x\n",
591 cmd_reg, (status & 0xff));
592
593 nfc->buf[0 ^ 3] = status;
594 }
595
596 static void
597 ar934x_nfc_cmdfunc(struct mtd_info *mtd, unsigned int command, int column,
598 int page_addr)
599 {
600 struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
601
602 if (command != NAND_CMD_PAGEPROG)
603 nfc->buf_index = 0;
604
605 switch (command) {
606 case NAND_CMD_RESET:
607 ar934x_nfc_send_cmd(nfc, command);
608 break;
609
610 case NAND_CMD_READID:
611 ar934x_nfc_send_readid(nfc, command);
612 break;
613
614 case NAND_CMD_READ0:
615 case NAND_CMD_READ1:
616 if (nfc->small_page) {
617 ar934x_nfc_send_read(nfc, command, column, page_addr,
618 mtd->writesize + mtd->oobsize,
619 false);
620 } else {
621 ar934x_nfc_send_read(nfc, command, 0, page_addr,
622 mtd->writesize + mtd->oobsize,
623 false);
624 nfc->buf_index = column;
625 nfc->rndout_page_addr = page_addr;
626 nfc->rndout_read_cmd = command;
627 }
628 break;
629
630 case NAND_CMD_READOOB:
631 if (nfc->small_page) {
632 ar934x_nfc_send_read(nfc, NAND_CMD_READOOB,
633 column, page_addr,
634 mtd->oobsize,
635 true);
636 } else {
637 ar934x_nfc_send_read(nfc, NAND_CMD_READ0,
638 column, page_addr,
639 mtd->writesize + mtd->oobsize,
640 true);
641 nfc->buf_index = mtd->writesize;
642 }
643 break;
644
645 case NAND_CMD_RNDOUT:
646 if (WARN_ON(nfc->small_page))
647 break;
648
649 /* emulate subpage read */
650 ar934x_nfc_send_read(nfc, nfc->rndout_read_cmd, 0,
651 nfc->rndout_page_addr,
652 mtd->writesize + mtd->oobsize, false);
653 nfc->buf_index = column;
654 break;
655
656 case NAND_CMD_ERASE1:
657 nfc->erase1_page_addr = page_addr;
658 break;
659
660 case NAND_CMD_ERASE2:
661 ar934x_nfc_send_erase(nfc, command, -1, nfc->erase1_page_addr);
662 break;
663
664 case NAND_CMD_STATUS:
665 ar934x_nfc_read_status(nfc);
666 break;
667
668 case NAND_CMD_SEQIN:
669 if (nfc->small_page) {
670 /* output read command */
671 if (column >= mtd->writesize) {
672 column -= mtd->writesize;
673 nfc->seqin_read_cmd = NAND_CMD_READOOB;
674 } else if (column < 256) {
675 nfc->seqin_read_cmd = NAND_CMD_READ0;
676 } else {
677 column -= 256;
678 nfc->seqin_read_cmd = NAND_CMD_READ1;
679 }
680 } else {
681 nfc->seqin_read_cmd = NAND_CMD_READ0;
682 }
683 nfc->seqin_column = column;
684 nfc->seqin_page_addr = page_addr;
685 break;
686
687 case NAND_CMD_PAGEPROG:
688 if (nfc->small_page)
689 ar934x_nfc_send_cmd(nfc, nfc->seqin_read_cmd);
690
691 ar934x_nfc_send_write(nfc, command, nfc->seqin_column,
692 nfc->seqin_page_addr,
693 nfc->buf_index);
694 break;
695
696 default:
697 dev_err(nfc->parent,
698 "unsupported command: %x, column:%d page_addr=%d\n",
699 command, column, page_addr);
700 break;
701 }
702 }
703
704 static int
705 ar934x_nfc_dev_ready(struct mtd_info *mtd)
706 {
707 struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
708
709 return __ar934x_nfc_dev_ready(nfc);
710 }
711
712 static void
713 ar934x_nfc_select_chip(struct mtd_info *mtd, int chip_no)
714 {
715 struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
716
717 if (nfc->select_chip)
718 nfc->select_chip(chip_no);
719 }
720
721 static u8
722 ar934x_nfc_read_byte(struct mtd_info *mtd)
723 {
724 struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
725 unsigned int buf_index;
726 u8 data;
727
728 WARN_ON(nfc->buf_index >= nfc->buf_size);
729
730 buf_index = nfc->buf_index ^ 3;
731 data = nfc->buf[buf_index];
732 nfc->buf_index++;
733
734 return data;
735 }
736
737 static void
738 ar934x_nfc_write_buf(struct mtd_info *mtd, const u8 *buf, int len)
739 {
740 struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
741 int i;
742
743 WARN_ON(nfc->buf_index + len > nfc->buf_size);
744
745 for (i = 0; i < len; i++) {
746 nfc->buf[nfc->buf_index ^ 3] = buf[i];
747 nfc->buf_index++;
748 }
749 }
750
751 static void
752 ar934x_nfc_read_buf(struct mtd_info *mtd, u8 *buf, int len)
753 {
754 struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
755 int buf_index;
756 int i;
757
758 WARN_ON(nfc->buf_index + len > nfc->buf_size);
759
760 buf_index = nfc->buf_index;
761
762 for (i = 0; i < len; i++) {
763 buf[i] = nfc->buf[buf_index ^ 3];
764 buf_index++;
765 }
766
767 nfc->buf_index = buf_index;
768 }
769
770 static int
771 ar934x_nfc_verify_buf(struct mtd_info *mtd, const u_char *buf, int len)
772 {
773 int i;
774
775 for (i = 0; i < len; i++)
776 if (buf[i] != ar934x_nfc_read_byte(mtd))
777 return -EFAULT;
778
779 return 0;
780 }
781
782 static void
783 ar934x_nfc_hw_init(struct ar934x_nfc *nfc)
784 {
785 struct ar934x_nfc_platform_data *pdata;
786
787 pdata = ar934x_nfc_get_platform_data(nfc);
788 if (pdata->hw_reset) {
789 pdata->hw_reset(true);
790 pdata->hw_reset(false);
791 }
792
793 /*
794 * setup timings
795 * TODO: make it configurable via platform data
796 */
797 ar934x_nfc_wr(nfc, AR934X_NFC_REG_TIME_SEQ,
798 AR934X_NFC_TIME_SEQ_DEFAULT);
799 ar934x_nfc_wr(nfc, AR934X_NFC_REG_TIMINGS_ASYN,
800 AR934X_NFC_TIMINGS_ASYN_DEFAULT);
801 ar934x_nfc_wr(nfc, AR934X_NFC_REG_TIMINGS_SYN,
802 AR934X_NFC_TIMINGS_SYN_DEFAULT);
803
804 /* disable WP on all chips, and select chip 0 */
805 ar934x_nfc_wr(nfc, AR934X_NFC_REG_MEM_CTRL, 0xff00);
806
807 ar934x_nfc_wr(nfc, AR934X_NFC_REG_DMA_ADDR_OFFS, 0);
808
809 /* initialize Control register */
810 nfc->ctrl_reg = AR934X_NFC_CTRL_CUSTOM_SIZE_EN;
811 ar934x_nfc_wr(nfc, AR934X_NFC_REG_CTRL, nfc->ctrl_reg);
812
813 if (nfc->small_page) {
814 /* Setup generic sequence register for small page reads. */
815 ar934x_nfc_wr(nfc, AR934X_NFC_REG_GEN_SEQ_CTRL,
816 AR934X_NFC_GENSEQ_SMALL_PAGE_READ);
817 }
818 }
819
820 static void
821 ar934x_nfc_restart(struct ar934x_nfc *nfc)
822 {
823 u32 ctrl_reg;
824
825 if (nfc->select_chip)
826 nfc->select_chip(-1);
827
828 ctrl_reg = nfc->ctrl_reg;
829 ar934x_nfc_hw_init(nfc);
830 nfc->ctrl_reg = ctrl_reg;
831
832 if (nfc->select_chip)
833 nfc->select_chip(0);
834
835 ar934x_nfc_send_cmd(nfc, NAND_CMD_RESET);
836 }
837
838 static irqreturn_t
839 ar934x_nfc_irq_handler(int irq, void *data)
840 {
841 struct ar934x_nfc *nfc = data;
842 u32 status;
843
844 status = ar934x_nfc_rr(nfc, AR934X_NFC_REG_INT_STATUS);
845
846 ar934x_nfc_wr(nfc, AR934X_NFC_REG_INT_STATUS, 0);
847 /* flush write */
848 ar934x_nfc_rr(nfc, AR934X_NFC_REG_INT_STATUS);
849
850 status &= ar934x_nfc_rr(nfc, AR934X_NFC_REG_INT_MASK);
851 if (status) {
852 nfc_dbg(nfc, "got IRQ, status:%08x\n", status);
853
854 nfc->irq_status = status;
855 nfc->spurious_irq_expected = true;
856 wake_up(&nfc->irq_waitq);
857 } else {
858 if (nfc->spurious_irq_expected) {
859 nfc->spurious_irq_expected = false;
860 } else {
861 dev_warn(nfc->parent, "spurious interrupt\n");
862 }
863 }
864
865 return IRQ_HANDLED;
866 }
867
868 static int __devinit
869 ar934x_nfc_init_tail(struct mtd_info *mtd)
870 {
871 struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
872 struct nand_chip *chip = &nfc->nand_chip;
873 u32 ctrl;
874 u32 t;
875 int err;
876
877 switch (mtd->oobsize) {
878 case 16:
879 case 64:
880 case 128:
881 ar934x_nfc_wr(nfc, AR934X_NFC_REG_SPARE_SIZE, mtd->oobsize);
882 break;
883
884 default:
885 dev_err(nfc->parent, "unsupported OOB size: %d bytes\n",
886 mtd->oobsize);
887 return -ENXIO;
888 }
889
890 ctrl = AR934X_NFC_CTRL_CUSTOM_SIZE_EN;
891
892 switch (mtd->erasesize / mtd->writesize) {
893 case 32:
894 t = AR934X_NFC_CTRL_BLOCK_SIZE_32;
895 break;
896
897 case 64:
898 t = AR934X_NFC_CTRL_BLOCK_SIZE_64;
899 break;
900
901 case 128:
902 t = AR934X_NFC_CTRL_BLOCK_SIZE_128;
903 break;
904
905 case 256:
906 t = AR934X_NFC_CTRL_BLOCK_SIZE_256;
907 break;
908
909 default:
910 dev_err(nfc->parent, "unsupported block size: %u\n",
911 mtd->erasesize / mtd->writesize);
912 return -ENXIO;
913 }
914
915 ctrl |= t << AR934X_NFC_CTRL_BLOCK_SIZE_S;
916
917 switch (mtd->writesize) {
918 case 256:
919 nfc->small_page = 1;
920 t = AR934X_NFC_CTRL_PAGE_SIZE_256;
921 break;
922
923 case 512:
924 nfc->small_page = 1;
925 t = AR934X_NFC_CTRL_PAGE_SIZE_512;
926 break;
927
928 case 1024:
929 t = AR934X_NFC_CTRL_PAGE_SIZE_1024;
930 break;
931
932 case 2048:
933 t = AR934X_NFC_CTRL_PAGE_SIZE_2048;
934 break;
935
936 case 4096:
937 t = AR934X_NFC_CTRL_PAGE_SIZE_4096;
938 break;
939
940 case 8192:
941 t = AR934X_NFC_CTRL_PAGE_SIZE_8192;
942 break;
943
944 case 16384:
945 t = AR934X_NFC_CTRL_PAGE_SIZE_16384;
946 break;
947
948 default:
949 dev_err(nfc->parent, "unsupported write size: %d bytes\n",
950 mtd->writesize);
951 return -ENXIO;
952 }
953
954 ctrl |= t << AR934X_NFC_CTRL_PAGE_SIZE_S;
955
956 if (nfc->small_page) {
957 ctrl |= AR934X_NFC_CTRL_SMALL_PAGE;
958
959 if (chip->chipsize > (32 << 20)) {
960 nfc->addr_count0 = 4;
961 nfc->addr_count1 = 3;
962 } else if (chip->chipsize > (2 << 16)) {
963 nfc->addr_count0 = 3;
964 nfc->addr_count1 = 2;
965 } else {
966 nfc->addr_count0 = 2;
967 nfc->addr_count1 = 1;
968 }
969 } else {
970 if (chip->chipsize > (128 << 20)) {
971 nfc->addr_count0 = 5;
972 nfc->addr_count1 = 3;
973 } else if (chip->chipsize > (8 << 16)) {
974 nfc->addr_count0 = 4;
975 nfc->addr_count1 = 2;
976 } else {
977 nfc->addr_count0 = 3;
978 nfc->addr_count1 = 1;
979 }
980 }
981
982 ctrl |= nfc->addr_count0 << AR934X_NFC_CTRL_ADDR_CYCLE0_S;
983 ctrl |= nfc->addr_count1 << AR934X_NFC_CTRL_ADDR_CYCLE1_S;
984
985 nfc->ctrl_reg = ctrl;
986 ar934x_nfc_wr(nfc, AR934X_NFC_REG_CTRL, nfc->ctrl_reg);
987
988 ar934x_nfc_free_buf(nfc);
989 err = ar934x_nfc_alloc_buf(nfc, mtd->writesize + mtd->oobsize);
990
991 return err;
992 }
993
994 static int __devinit
995 ar934x_nfc_probe(struct platform_device *pdev)
996 {
997 static const char *part_probes[] = { "cmdlinepart", NULL, };
998 struct ar934x_nfc_platform_data *pdata;
999 struct ar934x_nfc *nfc;
1000 struct resource *res;
1001 struct mtd_info *mtd;
1002 struct nand_chip *nand;
1003 struct mtd_part_parser_data ppdata;
1004 int ret;
1005
1006 pdata = pdev->dev.platform_data;
1007 if (pdata == NULL) {
1008 dev_err(&pdev->dev, "no platform data defined\n");
1009 return -EINVAL;
1010 }
1011
1012 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1013 if (!res) {
1014 dev_err(&pdev->dev, "failed to get I/O memory\n");
1015 return -EINVAL;
1016 }
1017
1018 nfc = kzalloc(sizeof(struct ar934x_nfc), GFP_KERNEL);
1019 if (!nfc) {
1020 dev_err(&pdev->dev, "failed to allocate driver data\n");
1021 return -ENOMEM;
1022 }
1023
1024 nfc->base = ioremap(res->start, resource_size(res));
1025 if (nfc->base == NULL) {
1026 dev_err(&pdev->dev, "failed to remap I/O memory\n");
1027 ret = -ENXIO;
1028 goto err_free_nand;
1029 }
1030
1031 nfc->irq = platform_get_irq(pdev, 0);
1032 if (nfc->irq < 0) {
1033 dev_err(&pdev->dev, "no IRQ resource specified\n");
1034 ret = -EINVAL;
1035 goto err_unmap;
1036 }
1037
1038 init_waitqueue_head(&nfc->irq_waitq);
1039 ret = request_irq(nfc->irq, ar934x_nfc_irq_handler, IRQF_DISABLED,
1040 dev_name(&pdev->dev), nfc);
1041 if (ret) {
1042 dev_err(&pdev->dev, "requast_irq failed, err:%d\n", ret);
1043 goto err_unmap;
1044 }
1045
1046 nfc->parent = &pdev->dev;
1047 nfc->select_chip = pdata->select_chip;
1048
1049 nand = &nfc->nand_chip;
1050 mtd = &nfc->mtd;
1051
1052 mtd->priv = nand;
1053 mtd->owner = THIS_MODULE;
1054 if (pdata->name)
1055 mtd->name = pdata->name;
1056 else
1057 mtd->name = dev_name(&pdev->dev);
1058
1059 nand->options = NAND_NO_AUTOINCR;
1060 nand->chip_delay = 25;
1061 nand->ecc.mode = NAND_ECC_SOFT;
1062
1063 nand->dev_ready = ar934x_nfc_dev_ready;
1064 nand->cmdfunc = ar934x_nfc_cmdfunc;
1065 nand->read_byte = ar934x_nfc_read_byte;
1066 nand->write_buf = ar934x_nfc_write_buf;
1067 nand->read_buf = ar934x_nfc_read_buf;
1068 nand->verify_buf = ar934x_nfc_verify_buf;
1069 nand->select_chip = ar934x_nfc_select_chip;
1070
1071 ret = ar934x_nfc_alloc_buf(nfc, AR934X_NFC_ID_BUF_SIZE);
1072 if (ret)
1073 goto err_free_irq;
1074
1075 platform_set_drvdata(pdev, nfc);
1076
1077 ar934x_nfc_hw_init(nfc);
1078
1079 ret = nand_scan_ident(mtd, 1, NULL);
1080 if (ret) {
1081 dev_err(&pdev->dev, "nand_scan_ident failed, err:%d\n", ret);
1082 goto err_free_buf;
1083 }
1084
1085 ret = ar934x_nfc_init_tail(mtd);
1086 if (ret) {
1087 dev_err(&pdev->dev, "init tail failed, err:%d\n", ret);
1088 goto err_free_buf;
1089 }
1090
1091 if (pdata->scan_fixup) {
1092 ret = pdata->scan_fixup(mtd);
1093 if (ret)
1094 goto err_free_buf;
1095 }
1096
1097 ret = nand_scan_tail(mtd);
1098 if (ret) {
1099 dev_err(&pdev->dev, "scan tail failed, err:%d\n", ret);
1100 goto err_free_buf;
1101 }
1102
1103 memset(&ppdata, '\0', sizeof(ppdata));
1104 ret = mtd_device_parse_register(mtd, part_probes, &ppdata,
1105 pdata->parts, pdata->nr_parts);
1106 if (ret) {
1107 dev_err(&pdev->dev, "unable to register mtd, err:%d\n", ret);
1108 goto err_free_buf;
1109 }
1110
1111 return 0;
1112
1113 err_free_buf:
1114 ar934x_nfc_free_buf(nfc);
1115 err_free_irq:
1116 free_irq(nfc->irq, nfc);
1117 err_unmap:
1118 iounmap(nfc->base);
1119 err_free_nand:
1120 kfree(nfc);
1121 platform_set_drvdata(pdev, NULL);
1122 return ret;
1123 }
1124
1125 static int __devexit
1126 ar934x_nfc_remove(struct platform_device *pdev)
1127 {
1128 struct ar934x_nfc *nfc;
1129
1130 nfc = platform_get_drvdata(pdev);
1131 if (nfc) {
1132 nand_release(&nfc->mtd);
1133 ar934x_nfc_free_buf(nfc);
1134 free_irq(nfc->irq, nfc);
1135 iounmap(nfc->base);
1136 kfree(nfc);
1137 }
1138
1139 return 0;
1140 }
1141
1142 static struct platform_driver ar934x_nfc_driver = {
1143 .probe = ar934x_nfc_probe,
1144 .remove = __devexit_p(ar934x_nfc_remove),
1145 .driver = {
1146 .name = AR934X_NFC_DRIVER_NAME,
1147 .owner = THIS_MODULE,
1148 },
1149 };
1150
1151 module_platform_driver(ar934x_nfc_driver);
1152
1153 MODULE_LICENSE("GPL v2");
1154 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
1155 MODULE_DESCRIPTION("Atheros AR934x NAND Flash Controller driver");
1156 MODULE_ALIAS("platform:" AR934X_NFC_DRIVER_NAME);