]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/mtd/nand/tango_nand.c
7ed35348993ec095d89464aab3db6714aa4e83b3
[karo-tx-linux.git] / drivers / mtd / nand / tango_nand.c
1 #include <linux/io.h>
2 #include <linux/of.h>
3 #include <linux/clk.h>
4 #include <linux/iopoll.h>
5 #include <linux/module.h>
6 #include <linux/mtd/nand.h>
7 #include <linux/dmaengine.h>
8 #include <linux/dma-mapping.h>
9 #include <linux/platform_device.h>
10
11 /* Offsets relative to chip->base */
12 #define PBUS_CMD        0
13 #define PBUS_ADDR       4
14 #define PBUS_DATA       8
15
16 /* Offsets relative to reg_base */
17 #define NFC_STATUS      0x00
18 #define NFC_FLASH_CMD   0x04
19 #define NFC_DEVICE_CFG  0x08
20 #define NFC_TIMING1     0x0c
21 #define NFC_TIMING2     0x10
22 #define NFC_XFER_CFG    0x14
23 #define NFC_PKT_0_CFG   0x18
24 #define NFC_PKT_N_CFG   0x1c
25 #define NFC_BB_CFG      0x20
26 #define NFC_ADDR_PAGE   0x24
27 #define NFC_ADDR_OFFSET 0x28
28 #define NFC_XFER_STATUS 0x2c
29
30 /* NFC_STATUS values */
31 #define CMD_READY       BIT(31)
32
33 /* NFC_FLASH_CMD values */
34 #define NFC_READ        1
35 #define NFC_WRITE       2
36
37 /* NFC_XFER_STATUS values */
38 #define PAGE_IS_EMPTY   BIT(16)
39
40 /* Offsets relative to mem_base */
41 #define METADATA        0x000
42 #define ERROR_REPORT    0x1c0
43
44 /*
45  * Error reports are split in two bytes:
46  * byte 0 for the first packet in the page (PKT_0)
47  * byte 1 for other packets in the page (PKT_N, for N > 0)
48  * ERR_COUNT_PKT_N is the max error count over all but the first packet.
49  */
50 #define DECODE_OK_PKT_0(v)      ((v) & BIT(7))
51 #define DECODE_OK_PKT_N(v)      ((v) & BIT(15))
52 #define ERR_COUNT_PKT_0(v)      (((v) >> 0) & 0x3f)
53 #define ERR_COUNT_PKT_N(v)      (((v) >> 8) & 0x3f)
54
55 /* Offsets relative to pbus_base */
56 #define PBUS_CS_CTRL    0x83c
57 #define PBUS_PAD_MODE   0x8f0
58
59 /* PBUS_CS_CTRL values */
60 #define PBUS_IORDY      BIT(31)
61
62 /*
63  * PBUS_PAD_MODE values
64  * In raw mode, the driver communicates directly with the NAND chips.
65  * In NFC mode, the NAND Flash controller manages the communication.
66  * We use NFC mode for read and write; raw mode for everything else.
67  */
68 #define MODE_RAW        0
69 #define MODE_NFC        BIT(31)
70
71 #define METADATA_SIZE   4
72 #define BBM_SIZE        6
73 #define FIELD_ORDER     15
74
75 #define MAX_CS          4
76
77 struct tango_nfc {
78         struct nand_hw_control hw;
79         void __iomem *reg_base;
80         void __iomem *mem_base;
81         void __iomem *pbus_base;
82         struct tango_chip *chips[MAX_CS];
83         struct dma_chan *chan;
84         int freq_kHz;
85 };
86
87 #define to_tango_nfc(ptr) container_of(ptr, struct tango_nfc, hw)
88
89 struct tango_chip {
90         struct nand_chip nand_chip;
91         void __iomem *base;
92         u32 timing1;
93         u32 timing2;
94         u32 xfer_cfg;
95         u32 pkt_0_cfg;
96         u32 pkt_n_cfg;
97         u32 bb_cfg;
98 };
99
100 #define to_tango_chip(ptr) container_of(ptr, struct tango_chip, nand_chip)
101
102 #define XFER_CFG(cs, page_count, steps, metadata_size)  \
103         ((cs) << 24 | (page_count) << 16 | (steps) << 8 | (metadata_size))
104
105 #define PKT_CFG(size, strength) ((size) << 16 | (strength))
106
107 #define BB_CFG(bb_offset, bb_size) ((bb_offset) << 16 | (bb_size))
108
109 #define TIMING(t0, t1, t2, t3) ((t0) << 24 | (t1) << 16 | (t2) << 8 | (t3))
110
111 static void tango_cmd_ctrl(struct mtd_info *mtd, int dat, unsigned int ctrl)
112 {
113         struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
114
115         if (ctrl & NAND_CLE)
116                 writeb_relaxed(dat, tchip->base + PBUS_CMD);
117
118         if (ctrl & NAND_ALE)
119                 writeb_relaxed(dat, tchip->base + PBUS_ADDR);
120 }
121
122 static int tango_dev_ready(struct mtd_info *mtd)
123 {
124         struct nand_chip *chip = mtd_to_nand(mtd);
125         struct tango_nfc *nfc = to_tango_nfc(chip->controller);
126
127         return readl_relaxed(nfc->pbus_base + PBUS_CS_CTRL) & PBUS_IORDY;
128 }
129
130 static u8 tango_read_byte(struct mtd_info *mtd)
131 {
132         struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
133
134         return readb_relaxed(tchip->base + PBUS_DATA);
135 }
136
137 static void tango_read_buf(struct mtd_info *mtd, u8 *buf, int len)
138 {
139         struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
140
141         ioread8_rep(tchip->base + PBUS_DATA, buf, len);
142 }
143
144 static void tango_write_buf(struct mtd_info *mtd, const u8 *buf, int len)
145 {
146         struct tango_chip *tchip = to_tango_chip(mtd_to_nand(mtd));
147
148         iowrite8_rep(tchip->base + PBUS_DATA, buf, len);
149 }
150
151 static void tango_select_chip(struct mtd_info *mtd, int idx)
152 {
153         struct nand_chip *chip = mtd_to_nand(mtd);
154         struct tango_nfc *nfc = to_tango_nfc(chip->controller);
155         struct tango_chip *tchip = to_tango_chip(chip);
156
157         if (idx < 0)
158                 return; /* No "chip unselect" function */
159
160         writel_relaxed(tchip->timing1, nfc->reg_base + NFC_TIMING1);
161         writel_relaxed(tchip->timing2, nfc->reg_base + NFC_TIMING2);
162         writel_relaxed(tchip->xfer_cfg, nfc->reg_base + NFC_XFER_CFG);
163         writel_relaxed(tchip->pkt_0_cfg, nfc->reg_base + NFC_PKT_0_CFG);
164         writel_relaxed(tchip->pkt_n_cfg, nfc->reg_base + NFC_PKT_N_CFG);
165         writel_relaxed(tchip->bb_cfg, nfc->reg_base + NFC_BB_CFG);
166 }
167
168 /*
169  * The controller does not check for bitflips in erased pages,
170  * therefore software must check instead.
171  */
172 static int check_erased_page(struct nand_chip *chip, u8 *buf)
173 {
174         u8 *meta = chip->oob_poi + BBM_SIZE;
175         u8 *ecc = chip->oob_poi + BBM_SIZE + METADATA_SIZE;
176         const int ecc_size = chip->ecc.bytes;
177         const int pkt_size = chip->ecc.size;
178         int i, res, meta_len, bitflips = 0;
179
180         for (i = 0; i < chip->ecc.steps; ++i) {
181                 meta_len = i ? 0 : METADATA_SIZE;
182                 res = nand_check_erased_ecc_chunk(buf, pkt_size, ecc, ecc_size,
183                                                   meta, meta_len,
184                                                   chip->ecc.strength);
185                 if (res < 0)
186                         chip->mtd.ecc_stats.failed++;
187
188                 bitflips = max(res, bitflips);
189                 buf += pkt_size;
190                 ecc += ecc_size;
191         }
192
193         return bitflips;
194 }
195
196 static int decode_error_report(struct tango_nfc *nfc)
197 {
198         u32 status, res;
199
200         status = readl_relaxed(nfc->reg_base + NFC_XFER_STATUS);
201         if (status & PAGE_IS_EMPTY)
202                 return 0;
203
204         res = readl_relaxed(nfc->mem_base + ERROR_REPORT);
205
206         if (DECODE_OK_PKT_0(res) && DECODE_OK_PKT_N(res))
207                 return max(ERR_COUNT_PKT_0(res), ERR_COUNT_PKT_N(res));
208
209         return -EBADMSG;
210 }
211
212 static void tango_dma_callback(void *arg)
213 {
214         complete(arg);
215 }
216
217 static int do_dma(struct tango_nfc *nfc, int dir, int cmd, const void *buf,
218                   int len, int page)
219 {
220         void __iomem *addr = nfc->reg_base + NFC_STATUS;
221         struct dma_chan *chan = nfc->chan;
222         struct dma_async_tx_descriptor *desc;
223         struct scatterlist sg;
224         struct completion tx_done;
225         int err = -EIO;
226         u32 res, val;
227
228         sg_init_one(&sg, buf, len);
229         if (dma_map_sg(chan->device->dev, &sg, 1, dir) != 1)
230                 return -EIO;
231
232         desc = dmaengine_prep_slave_sg(chan, &sg, 1, dir, DMA_PREP_INTERRUPT);
233         if (!desc)
234                 goto dma_unmap;
235
236         desc->callback = tango_dma_callback;
237         desc->callback_param = &tx_done;
238         init_completion(&tx_done);
239
240         writel_relaxed(MODE_NFC, nfc->pbus_base + PBUS_PAD_MODE);
241
242         writel_relaxed(page, nfc->reg_base + NFC_ADDR_PAGE);
243         writel_relaxed(0, nfc->reg_base + NFC_ADDR_OFFSET);
244         writel_relaxed(cmd, nfc->reg_base + NFC_FLASH_CMD);
245
246         dmaengine_submit(desc);
247         dma_async_issue_pending(chan);
248
249         res = wait_for_completion_timeout(&tx_done, HZ);
250         if (res > 0)
251                 err = readl_poll_timeout(addr, val, val & CMD_READY, 0, 1000);
252
253         writel_relaxed(MODE_RAW, nfc->pbus_base + PBUS_PAD_MODE);
254
255 dma_unmap:
256         dma_unmap_sg(chan->device->dev, &sg, 1, dir);
257
258         return err;
259 }
260
261 static int tango_read_page(struct mtd_info *mtd, struct nand_chip *chip,
262                            u8 *buf, int oob_required, int page)
263 {
264         struct tango_nfc *nfc = to_tango_nfc(chip->controller);
265         int err, res, len = mtd->writesize;
266
267         if (oob_required)
268                 chip->ecc.read_oob(mtd, chip, page);
269
270         err = do_dma(nfc, DMA_FROM_DEVICE, NFC_READ, buf, len, page);
271         if (err)
272                 return err;
273
274         res = decode_error_report(nfc);
275         if (res < 0) {
276                 chip->ecc.read_oob_raw(mtd, chip, page);
277                 res = check_erased_page(chip, buf);
278         }
279
280         return res;
281 }
282
283 static int tango_write_page(struct mtd_info *mtd, struct nand_chip *chip,
284                             const u8 *buf, int oob_required, int page)
285 {
286         struct tango_nfc *nfc = to_tango_nfc(chip->controller);
287         int err, len = mtd->writesize;
288
289         /* Calling tango_write_oob() would send PAGEPROG twice */
290         if (oob_required)
291                 return -ENOTSUPP;
292
293         writel_relaxed(0xffffffff, nfc->mem_base + METADATA);
294         err = do_dma(nfc, DMA_TO_DEVICE, NFC_WRITE, buf, len, page);
295         if (err)
296                 return err;
297
298         return 0;
299 }
300
301 static void aux_read(struct nand_chip *chip, u8 **buf, int len, int *pos)
302 {
303         *pos += len;
304
305         if (!*buf) {
306                 /* skip over "len" bytes */
307                 chip->cmdfunc(&chip->mtd, NAND_CMD_RNDOUT, *pos, -1);
308         } else {
309                 tango_read_buf(&chip->mtd, *buf, len);
310                 *buf += len;
311         }
312 }
313
314 static void aux_write(struct nand_chip *chip, const u8 **buf, int len, int *pos)
315 {
316         *pos += len;
317
318         if (!*buf) {
319                 /* skip over "len" bytes */
320                 chip->cmdfunc(&chip->mtd, NAND_CMD_SEQIN, *pos, -1);
321         } else {
322                 tango_write_buf(&chip->mtd, *buf, len);
323                 *buf += len;
324         }
325 }
326
327 /*
328  * Physical page layout (not drawn to scale)
329  *
330  * NB: Bad Block Marker area splits PKT_N in two (N1, N2).
331  *
332  * +---+-----------------+-------+-----+-----------+-----+----+-------+
333  * | M |      PKT_0      | ECC_0 | ... |     N1    | BBM | N2 | ECC_N |
334  * +---+-----------------+-------+-----+-----------+-----+----+-------+
335  *
336  * Logical page layout:
337  *
338  *       +-----+---+-------+-----+-------+
339  * oob = | BBM | M | ECC_0 | ... | ECC_N |
340  *       +-----+---+-------+-----+-------+
341  *
342  *       +-----------------+-----+-----------------+
343  * buf = |      PKT_0      | ... |      PKT_N      |
344  *       +-----------------+-----+-----------------+
345  */
346 static void raw_read(struct nand_chip *chip, u8 *buf, u8 *oob)
347 {
348         u8 *oob_orig = oob;
349         const int page_size = chip->mtd.writesize;
350         const int ecc_size = chip->ecc.bytes;
351         const int pkt_size = chip->ecc.size;
352         int pos = 0; /* position within physical page */
353         int rem = page_size; /* bytes remaining until BBM area */
354
355         if (oob)
356                 oob += BBM_SIZE;
357
358         aux_read(chip, &oob, METADATA_SIZE, &pos);
359
360         while (rem > pkt_size) {
361                 aux_read(chip, &buf, pkt_size, &pos);
362                 aux_read(chip, &oob, ecc_size, &pos);
363                 rem = page_size - pos;
364         }
365
366         aux_read(chip, &buf, rem, &pos);
367         aux_read(chip, &oob_orig, BBM_SIZE, &pos);
368         aux_read(chip, &buf, pkt_size - rem, &pos);
369         aux_read(chip, &oob, ecc_size, &pos);
370 }
371
372 static void raw_write(struct nand_chip *chip, const u8 *buf, const u8 *oob)
373 {
374         const u8 *oob_orig = oob;
375         const int page_size = chip->mtd.writesize;
376         const int ecc_size = chip->ecc.bytes;
377         const int pkt_size = chip->ecc.size;
378         int pos = 0; /* position within physical page */
379         int rem = page_size; /* bytes remaining until BBM area */
380
381         if (oob)
382                 oob += BBM_SIZE;
383
384         aux_write(chip, &oob, METADATA_SIZE, &pos);
385
386         while (rem > pkt_size) {
387                 aux_write(chip, &buf, pkt_size, &pos);
388                 aux_write(chip, &oob, ecc_size, &pos);
389                 rem = page_size - pos;
390         }
391
392         aux_write(chip, &buf, rem, &pos);
393         aux_write(chip, &oob_orig, BBM_SIZE, &pos);
394         aux_write(chip, &buf, pkt_size - rem, &pos);
395         aux_write(chip, &oob, ecc_size, &pos);
396 }
397
398 static int tango_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
399                                u8 *buf, int oob_required, int page)
400 {
401         chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
402         raw_read(chip, buf, chip->oob_poi);
403         return 0;
404 }
405
406 static int tango_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
407                                 const u8 *buf, int oob_required, int page)
408 {
409         chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0, page);
410         raw_write(chip, buf, chip->oob_poi);
411         chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
412         return 0;
413 }
414
415 static int tango_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
416                           int page)
417 {
418         chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page);
419         raw_read(chip, NULL, chip->oob_poi);
420         return 0;
421 }
422
423 static int tango_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
424                            int page)
425 {
426         chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0, page);
427         raw_write(chip, NULL, chip->oob_poi);
428         chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
429         chip->waitfunc(mtd, chip);
430         return 0;
431 }
432
433 static int oob_ecc(struct mtd_info *mtd, int idx, struct mtd_oob_region *res)
434 {
435         struct nand_chip *chip = mtd_to_nand(mtd);
436         struct nand_ecc_ctrl *ecc = &chip->ecc;
437
438         if (idx >= ecc->steps)
439                 return -ERANGE;
440
441         res->offset = BBM_SIZE + METADATA_SIZE + ecc->bytes * idx;
442         res->length = ecc->bytes;
443
444         return 0;
445 }
446
447 static int oob_free(struct mtd_info *mtd, int idx, struct mtd_oob_region *res)
448 {
449         return -ERANGE; /* no free space in spare area */
450 }
451
452 static const struct mtd_ooblayout_ops tango_nand_ooblayout_ops = {
453         .ecc    = oob_ecc,
454         .free   = oob_free,
455 };
456
457 static u32 to_ticks(int kHz, int ps)
458 {
459         return DIV_ROUND_UP_ULL((u64)kHz * ps, NSEC_PER_SEC);
460 }
461
462 static int tango_set_timings(struct mtd_info *mtd,
463                              const struct nand_data_interface *conf,
464                              bool check_only)
465 {
466         const struct nand_sdr_timings *sdr = nand_get_sdr_timings(conf);
467         struct nand_chip *chip = mtd_to_nand(mtd);
468         struct tango_nfc *nfc = to_tango_nfc(chip->controller);
469         struct tango_chip *tchip = to_tango_chip(chip);
470         u32 Trdy, Textw, Twc, Twpw, Tacc, Thold, Trpw, Textr;
471         int kHz = nfc->freq_kHz;
472
473         if (IS_ERR(sdr))
474                 return PTR_ERR(sdr);
475
476         if (check_only)
477                 return 0;
478
479         Trdy = to_ticks(kHz, sdr->tCEA_max - sdr->tREA_max);
480         Textw = to_ticks(kHz, sdr->tWB_max);
481         Twc = to_ticks(kHz, sdr->tWC_min);
482         Twpw = to_ticks(kHz, sdr->tWC_min - sdr->tWP_min);
483
484         Tacc = to_ticks(kHz, sdr->tREA_max);
485         Thold = to_ticks(kHz, sdr->tREH_min);
486         Trpw = to_ticks(kHz, sdr->tRC_min - sdr->tREH_min);
487         Textr = to_ticks(kHz, sdr->tRHZ_max);
488
489         tchip->timing1 = TIMING(Trdy, Textw, Twc, Twpw);
490         tchip->timing2 = TIMING(Tacc, Thold, Trpw, Textr);
491
492         return 0;
493 }
494
495 static int chip_init(struct device *dev, struct device_node *np)
496 {
497         u32 cs;
498         int err, res;
499         struct mtd_info *mtd;
500         struct nand_chip *chip;
501         struct tango_chip *tchip;
502         struct nand_ecc_ctrl *ecc;
503         struct tango_nfc *nfc = dev_get_drvdata(dev);
504
505         tchip = devm_kzalloc(dev, sizeof(*tchip), GFP_KERNEL);
506         if (!tchip)
507                 return -ENOMEM;
508
509         res = of_property_count_u32_elems(np, "reg");
510         if (res < 0)
511                 return res;
512
513         if (res != 1)
514                 return -ENOTSUPP; /* Multi-CS chips are not supported */
515
516         err = of_property_read_u32_index(np, "reg", 0, &cs);
517         if (err)
518                 return err;
519
520         if (cs >= MAX_CS)
521                 return -EINVAL;
522
523         chip = &tchip->nand_chip;
524         ecc = &chip->ecc;
525         mtd = &chip->mtd;
526
527         chip->read_byte = tango_read_byte;
528         chip->write_buf = tango_write_buf;
529         chip->read_buf = tango_read_buf;
530         chip->select_chip = tango_select_chip;
531         chip->cmd_ctrl = tango_cmd_ctrl;
532         chip->dev_ready = tango_dev_ready;
533         chip->setup_data_interface = tango_set_timings;
534         chip->options = NAND_USE_BOUNCE_BUFFER |
535                         NAND_NO_SUBPAGE_WRITE |
536                         NAND_WAIT_TCCS;
537         chip->controller = &nfc->hw;
538         tchip->base = nfc->pbus_base + (cs * 256);
539
540         nand_set_flash_node(chip, np);
541         mtd_set_ooblayout(mtd, &tango_nand_ooblayout_ops);
542         mtd->dev.parent = dev;
543
544         err = nand_scan_ident(mtd, 1, NULL);
545         if (err)
546                 return err;
547
548         ecc->mode = NAND_ECC_HW;
549         ecc->algo = NAND_ECC_BCH;
550         ecc->bytes = DIV_ROUND_UP(ecc->strength * FIELD_ORDER, BITS_PER_BYTE);
551
552         ecc->read_page_raw = tango_read_page_raw;
553         ecc->write_page_raw = tango_write_page_raw;
554         ecc->read_page = tango_read_page;
555         ecc->write_page = tango_write_page;
556         ecc->read_oob = tango_read_oob;
557         ecc->write_oob = tango_write_oob;
558         ecc->options = NAND_ECC_CUSTOM_PAGE_ACCESS;
559
560         err = nand_scan_tail(mtd);
561         if (err)
562                 return err;
563
564         tchip->xfer_cfg = XFER_CFG(cs, 1, ecc->steps, METADATA_SIZE);
565         tchip->pkt_0_cfg = PKT_CFG(ecc->size + METADATA_SIZE, ecc->strength);
566         tchip->pkt_n_cfg = PKT_CFG(ecc->size, ecc->strength);
567         tchip->bb_cfg = BB_CFG(mtd->writesize, BBM_SIZE);
568
569         err = mtd_device_register(mtd, NULL, 0);
570         if (err)
571                 return err;
572
573         nfc->chips[cs] = tchip;
574
575         return 0;
576 }
577
578 static int tango_nand_remove(struct platform_device *pdev)
579 {
580         int cs;
581         struct tango_nfc *nfc = platform_get_drvdata(pdev);
582
583         dma_release_channel(nfc->chan);
584
585         for (cs = 0; cs < MAX_CS; ++cs) {
586                 if (nfc->chips[cs])
587                         nand_release(&nfc->chips[cs]->nand_chip.mtd);
588         }
589
590         return 0;
591 }
592
593 static int tango_nand_probe(struct platform_device *pdev)
594 {
595         int err;
596         struct clk *clk;
597         struct resource *res;
598         struct tango_nfc *nfc;
599         struct device_node *np;
600
601         nfc = devm_kzalloc(&pdev->dev, sizeof(*nfc), GFP_KERNEL);
602         if (!nfc)
603                 return -ENOMEM;
604
605         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
606         nfc->reg_base = devm_ioremap_resource(&pdev->dev, res);
607         if (IS_ERR(nfc->reg_base))
608                 return PTR_ERR(nfc->reg_base);
609
610         res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
611         nfc->mem_base = devm_ioremap_resource(&pdev->dev, res);
612         if (IS_ERR(nfc->mem_base))
613                 return PTR_ERR(nfc->mem_base);
614
615         res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
616         nfc->pbus_base = devm_ioremap_resource(&pdev->dev, res);
617         if (IS_ERR(nfc->pbus_base))
618                 return PTR_ERR(nfc->pbus_base);
619
620         clk = clk_get(&pdev->dev, NULL);
621         if (IS_ERR(clk))
622                 return PTR_ERR(clk);
623
624         nfc->chan = dma_request_chan(&pdev->dev, "nfc_sbox");
625         if (IS_ERR(nfc->chan))
626                 return PTR_ERR(nfc->chan);
627
628         platform_set_drvdata(pdev, nfc);
629         nand_hw_control_init(&nfc->hw);
630         nfc->freq_kHz = clk_get_rate(clk) / 1000;
631
632         for_each_child_of_node(pdev->dev.of_node, np) {
633                 err = chip_init(&pdev->dev, np);
634                 if (err) {
635                         tango_nand_remove(pdev);
636                         return err;
637                 }
638         }
639
640         return 0;
641 }
642
643 static const struct of_device_id tango_nand_ids[] = {
644         { .compatible = "sigma,smp8758-nand" },
645         { /* sentinel */ }
646 };
647
648 static struct platform_driver tango_nand_driver = {
649         .probe  = tango_nand_probe,
650         .remove = tango_nand_remove,
651         .driver = {
652                 .name           = "tango-nand",
653                 .of_match_table = tango_nand_ids,
654         },
655 };
656
657 module_platform_driver(tango_nand_driver);
658
659 MODULE_LICENSE("GPL");
660 MODULE_AUTHOR("Sigma Designs");
661 MODULE_DESCRIPTION("Tango4 NAND Flash controller driver");