blob: 9bf6d9915694e0cd69708fd0a3d4cc7f706968ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/mtd/nand/au1550nd.c
3 *
4 * Copyright (C) 2004 Embedded Edge, LLC
5 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/slab.h>
Manuel Laussb7f720d2011-05-08 10:42:20 +020013#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Sergei Shtylyov35af68b2006-05-16 20:52:06 +040015#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/mtd/mtd.h>
17#include <linux/mtd/nand.h>
18#include <linux/mtd/partitions.h>
Manuel Laussb67a1a02011-12-08 10:42:10 +000019#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/io.h>
Manuel Laussb67a1a02011-12-08 10:42:10 +000021#include <asm/mach-au1x00/au1000.h>
22#include <asm/mach-au1x00/au1550nd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Manuel Laussb67a1a02011-12-08 10:42:10 +000025struct au1550nd_ctx {
Manuel Laussb67a1a02011-12-08 10:42:10 +000026 struct nand_chip chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Manuel Laussb67a1a02011-12-08 10:42:10 +000028 int cs;
29 void __iomem *base;
30 void (*write_byte)(struct mtd_info *, u_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33/**
34 * au_read_byte - read one byte from the chip
35 * @mtd: MTD device structure
36 *
Brian Norris7854d3f2011-06-23 14:12:08 -070037 * read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39static u_char au_read_byte(struct mtd_info *mtd)
40{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010041 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 u_char ret = readb(this->IO_ADDR_R);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +020043 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return ret;
45}
46
47/**
48 * au_write_byte - write one byte to the chip
49 * @mtd: MTD device structure
50 * @byte: pointer to data byte to write
51 *
Brian Norris7854d3f2011-06-23 14:12:08 -070052 * write function for 8it buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 */
54static void au_write_byte(struct mtd_info *mtd, u_char byte)
55{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010056 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 writeb(byte, this->IO_ADDR_W);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +020058 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61/**
Brian Norris7854d3f2011-06-23 14:12:08 -070062 * au_read_byte16 - read one byte endianness aware from the chip
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * @mtd: MTD device structure
64 *
Brian Norris7854d3f2011-06-23 14:12:08 -070065 * read function for 16bit buswidth with endianness conversion
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
67static u_char au_read_byte16(struct mtd_info *mtd)
68{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010069 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 u_char ret = (u_char) cpu_to_le16(readw(this->IO_ADDR_R));
Manuel Lauss2f73bfb2014-07-23 16:36:26 +020071 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return ret;
73}
74
75/**
Brian Norris7854d3f2011-06-23 14:12:08 -070076 * au_write_byte16 - write one byte endianness aware to the chip
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * @mtd: MTD device structure
78 * @byte: pointer to data byte to write
79 *
Brian Norris7854d3f2011-06-23 14:12:08 -070080 * write function for 16bit buswidth with endianness conversion
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82static void au_write_byte16(struct mtd_info *mtd, u_char byte)
83{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010084 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 writew(le16_to_cpu((u16) byte), this->IO_ADDR_W);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +020086 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/**
90 * au_read_word - read one word from the chip
91 * @mtd: MTD device structure
92 *
Brian Norris7854d3f2011-06-23 14:12:08 -070093 * read function for 16bit buswidth without endianness conversion
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 */
95static u16 au_read_word(struct mtd_info *mtd)
96{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +010097 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 u16 ret = readw(this->IO_ADDR_R);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +020099 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return ret;
101}
102
103/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * au_write_buf - write buffer to chip
105 * @mtd: MTD device structure
106 * @buf: data buffer
107 * @len: number of bytes to write
108 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700109 * write function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
111static void au_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
112{
113 int i;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100114 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
David Woodhousee0c7d762006-05-13 18:07:53 +0100116 for (i = 0; i < len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 writeb(buf[i], this->IO_ADDR_W);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200118 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120}
121
122/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000123 * au_read_buf - read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * @mtd: MTD device structure
125 * @buf: buffer to store date
126 * @len: number of bytes to read
127 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700128 * read function for 8bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
130static void au_read_buf(struct mtd_info *mtd, u_char *buf, int len)
131{
132 int i;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100133 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
David Woodhousee0c7d762006-05-13 18:07:53 +0100135 for (i = 0; i < len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 buf[i] = readb(this->IO_ADDR_R);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200137 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139}
140
141/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 * au_write_buf16 - write buffer to chip
143 * @mtd: MTD device structure
144 * @buf: data buffer
145 * @len: number of bytes to write
146 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700147 * write function for 16bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
149static void au_write_buf16(struct mtd_info *mtd, const u_char *buf, int len)
150{
151 int i;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100152 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 u16 *p = (u16 *) buf;
154 len >>= 1;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000155
David Woodhousee0c7d762006-05-13 18:07:53 +0100156 for (i = 0; i < len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 writew(p[i], this->IO_ADDR_W);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200158 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163/**
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000164 * au_read_buf16 - read chip data into buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * @mtd: MTD device structure
166 * @buf: buffer to store date
167 * @len: number of bytes to read
168 *
Brian Norris7854d3f2011-06-23 14:12:08 -0700169 * read function for 16bit buswidth
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
171static void au_read_buf16(struct mtd_info *mtd, u_char *buf, int len)
172{
173 int i;
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100174 struct nand_chip *this = mtd_to_nand(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 u16 *p = (u16 *) buf;
176 len >>= 1;
177
David Woodhousee0c7d762006-05-13 18:07:53 +0100178 for (i = 0; i < len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 p[i] = readw(this->IO_ADDR_R);
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200180 wmb(); /* drain writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182}
183
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200184/* Select the chip by setting nCE to low */
185#define NAND_CTL_SETNCE 1
186/* Deselect the chip by setting nCE to high */
187#define NAND_CTL_CLRNCE 2
188/* Select the command latch by setting CLE to high */
189#define NAND_CTL_SETCLE 3
190/* Deselect the command latch by setting CLE to low */
191#define NAND_CTL_CLRCLE 4
192/* Select the address latch by setting ALE to high */
193#define NAND_CTL_SETALE 5
194/* Deselect the address latch by setting ALE to low */
195#define NAND_CTL_CLRALE 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197static void au1550_hwcontrol(struct mtd_info *mtd, int cmd)
198{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100199 struct nand_chip *this = mtd_to_nand(mtd);
Boris BREZILLONff70f352015-12-10 08:59:51 +0100200 struct au1550nd_ctx *ctx = container_of(this, struct au1550nd_ctx,
201 chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
David Woodhousee0c7d762006-05-13 18:07:53 +0100203 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
David Woodhousee0c7d762006-05-13 18:07:53 +0100205 case NAND_CTL_SETCLE:
Manuel Laussb67a1a02011-12-08 10:42:10 +0000206 this->IO_ADDR_W = ctx->base + MEM_STNAND_CMD;
David Woodhousee0c7d762006-05-13 18:07:53 +0100207 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
David Woodhousee0c7d762006-05-13 18:07:53 +0100209 case NAND_CTL_CLRCLE:
Manuel Laussb67a1a02011-12-08 10:42:10 +0000210 this->IO_ADDR_W = ctx->base + MEM_STNAND_DATA;
David Woodhousee0c7d762006-05-13 18:07:53 +0100211 break;
212
213 case NAND_CTL_SETALE:
Manuel Laussb67a1a02011-12-08 10:42:10 +0000214 this->IO_ADDR_W = ctx->base + MEM_STNAND_ADDR;
David Woodhousee0c7d762006-05-13 18:07:53 +0100215 break;
216
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000217 case NAND_CTL_CLRALE:
Manuel Laussb67a1a02011-12-08 10:42:10 +0000218 this->IO_ADDR_W = ctx->base + MEM_STNAND_DATA;
David Woodhousee0c7d762006-05-13 18:07:53 +0100219 /* FIXME: Nobody knows why this is necessary,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * but it works only that way */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000221 udelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 break;
223
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000224 case NAND_CTL_SETNCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* assert (force assert) chip enable */
Manuel Lauss9cf12162014-07-23 16:36:25 +0200226 alchemy_wrsmem((1 << (4 + ctx->cs)), AU1000_MEM_STNDCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
228
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000229 case NAND_CTL_CLRNCE:
David Woodhousee0c7d762006-05-13 18:07:53 +0100230 /* deassert chip enable */
Manuel Lauss9cf12162014-07-23 16:36:25 +0200231 alchemy_wrsmem(0, AU1000_MEM_STNDCTL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 break;
233 }
234
235 this->IO_ADDR_R = this->IO_ADDR_W;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000236
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200237 wmb(); /* Drain the writebuffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240int au1550_device_ready(struct mtd_info *mtd)
241{
Manuel Lauss9cf12162014-07-23 16:36:25 +0200242 return (alchemy_rdsmem(AU1000_MEM_STSTAT) & 0x1) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400245/**
246 * au1550_select_chip - control -CE line
247 * Forbid driving -CE manually permitting the NAND controller to do this.
248 * Keeping -CE asserted during the whole sector reads interferes with the
249 * NOR flash and PCMCIA drivers as it causes contention on the static bus.
250 * We only have to hold -CE low for the NAND read commands since the flash
251 * chip needs it to be asserted during chip not ready time but the NAND
252 * controller keeps it released.
253 *
254 * @mtd: MTD device structure
255 * @chip: chipnumber to select, -1 for deselect
256 */
257static void au1550_select_chip(struct mtd_info *mtd, int chip)
258{
259}
260
261/**
262 * au1550_command - Send command to NAND device
263 * @mtd: MTD device structure
264 * @command: the command to be sent
265 * @column: the column address for this command, -1 if none
266 * @page_addr: the page address for this command, -1 if none
267 */
268static void au1550_command(struct mtd_info *mtd, unsigned command, int column, int page_addr)
269{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100270 struct nand_chip *this = mtd_to_nand(mtd);
Boris BREZILLONff70f352015-12-10 08:59:51 +0100271 struct au1550nd_ctx *ctx = container_of(this, struct au1550nd_ctx,
272 chip);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400273 int ce_override = 0, i;
Manuel Laussb67a1a02011-12-08 10:42:10 +0000274 unsigned long flags = 0;
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400275
276 /* Begin command latch cycle */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200277 au1550_hwcontrol(mtd, NAND_CTL_SETCLE);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400278 /*
279 * Write out the command to the device.
280 */
281 if (command == NAND_CMD_SEQIN) {
282 int readcmd;
283
Joern Engel28318772006-05-22 23:18:05 +0200284 if (column >= mtd->writesize) {
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400285 /* OOB area */
Joern Engel28318772006-05-22 23:18:05 +0200286 column -= mtd->writesize;
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400287 readcmd = NAND_CMD_READOOB;
288 } else if (column < 256) {
289 /* First 256 bytes --> READ0 */
290 readcmd = NAND_CMD_READ0;
291 } else {
292 column -= 256;
293 readcmd = NAND_CMD_READ1;
294 }
Manuel Laussb67a1a02011-12-08 10:42:10 +0000295 ctx->write_byte(mtd, readcmd);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400296 }
Manuel Laussb67a1a02011-12-08 10:42:10 +0000297 ctx->write_byte(mtd, command);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400298
299 /* Set ALE and clear CLE to start address cycle */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200300 au1550_hwcontrol(mtd, NAND_CTL_CLRCLE);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400301
302 if (column != -1 || page_addr != -1) {
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200303 au1550_hwcontrol(mtd, NAND_CTL_SETALE);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400304
305 /* Serially input address */
306 if (column != -1) {
307 /* Adjust columns for 16 bit buswidth */
Brian Norris3dad2342014-01-29 14:08:12 -0800308 if (this->options & NAND_BUSWIDTH_16 &&
309 !nand_opcode_8bits(command))
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400310 column >>= 1;
Manuel Laussb67a1a02011-12-08 10:42:10 +0000311 ctx->write_byte(mtd, column);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400312 }
313 if (page_addr != -1) {
Manuel Laussb67a1a02011-12-08 10:42:10 +0000314 ctx->write_byte(mtd, (u8)(page_addr & 0xff));
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400315
316 if (command == NAND_CMD_READ0 ||
317 command == NAND_CMD_READ1 ||
318 command == NAND_CMD_READOOB) {
319 /*
320 * NAND controller will release -CE after
321 * the last address byte is written, so we'll
322 * have to forcibly assert it. No interrupts
323 * are allowed while we do this as we don't
324 * want the NOR flash or PCMCIA drivers to
325 * steal our precious bytes of data...
326 */
327 ce_override = 1;
328 local_irq_save(flags);
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200329 au1550_hwcontrol(mtd, NAND_CTL_SETNCE);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400330 }
331
Manuel Laussb67a1a02011-12-08 10:42:10 +0000332 ctx->write_byte(mtd, (u8)(page_addr >> 8));
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400333
334 /* One more address cycle for devices > 32MiB */
335 if (this->chipsize > (32 << 20))
Manuel Laussb67a1a02011-12-08 10:42:10 +0000336 ctx->write_byte(mtd,
337 ((page_addr >> 16) & 0x0f));
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400338 }
339 /* Latch in address */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200340 au1550_hwcontrol(mtd, NAND_CTL_CLRALE);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400341 }
342
343 /*
344 * Program and erase have their own busy handlers.
345 * Status and sequential in need no delay.
346 */
347 switch (command) {
348
349 case NAND_CMD_PAGEPROG:
350 case NAND_CMD_ERASE1:
351 case NAND_CMD_ERASE2:
352 case NAND_CMD_SEQIN:
353 case NAND_CMD_STATUS:
354 return;
355
356 case NAND_CMD_RESET:
357 break;
358
359 case NAND_CMD_READ0:
360 case NAND_CMD_READ1:
361 case NAND_CMD_READOOB:
362 /* Check if we're really driving -CE low (just in case) */
363 if (unlikely(!ce_override))
364 break;
365
366 /* Apply a short delay always to ensure that we do wait tWB. */
367 ndelay(100);
368 /* Wait for a chip to become ready... */
369 for (i = this->chip_delay; !this->dev_ready(mtd) && i > 0; --i)
370 udelay(1);
371
372 /* Release -CE and re-enable interrupts. */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200373 au1550_hwcontrol(mtd, NAND_CTL_CLRNCE);
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400374 local_irq_restore(flags);
375 return;
376 }
377 /* Apply this short delay always to ensure that we do wait tWB. */
378 ndelay(100);
379
380 while(!this->dev_ready(mtd));
381}
382
Bill Pemberton06f25512012-11-19 13:23:07 -0500383static int find_nand_cs(unsigned long nand_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Manuel Laussb67a1a02011-12-08 10:42:10 +0000385 void __iomem *base =
386 (void __iomem *)KSEG1ADDR(AU1000_STATIC_MEM_PHYS_ADDR);
387 unsigned long addr, staddr, start, mask, end;
388 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Manuel Laussb67a1a02011-12-08 10:42:10 +0000390 for (i = 0; i < 4; i++) {
391 addr = 0x1000 + (i * 0x10); /* CSx */
392 staddr = __raw_readl(base + addr + 0x08); /* STADDRx */
393 /* figure out the decoded range of this CS */
394 start = (staddr << 4) & 0xfffc0000;
395 mask = (staddr << 18) & 0xfffc0000;
396 end = (start | (start - 1)) & ~(start ^ mask);
397 if ((nand_base >= start) && (nand_base < end))
398 return i;
399 }
400
401 return -ENODEV;
402}
403
Bill Pemberton06f25512012-11-19 13:23:07 -0500404static int au1550nd_probe(struct platform_device *pdev)
Manuel Laussb67a1a02011-12-08 10:42:10 +0000405{
406 struct au1550nd_platdata *pd;
407 struct au1550nd_ctx *ctx;
408 struct nand_chip *this;
Boris BREZILLONff70f352015-12-10 08:59:51 +0100409 struct mtd_info *mtd;
Manuel Laussb67a1a02011-12-08 10:42:10 +0000410 struct resource *r;
411 int ret, cs;
412
Jingoo Han453810b2013-07-30 17:18:33 +0900413 pd = dev_get_platdata(&pdev->dev);
Manuel Laussb67a1a02011-12-08 10:42:10 +0000414 if (!pd) {
415 dev_err(&pdev->dev, "missing platform data\n");
416 return -ENODEV;
417 }
418
419 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Jingoo Hance3737f2013-12-26 12:02:30 +0900420 if (!ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Manuel Laussb67a1a02011-12-08 10:42:10 +0000423 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
424 if (!r) {
425 dev_err(&pdev->dev, "no NAND memory resource\n");
426 ret = -ENODEV;
427 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Manuel Laussb67a1a02011-12-08 10:42:10 +0000429 if (request_mem_region(r->start, resource_size(r), "au1550-nand")) {
430 dev_err(&pdev->dev, "cannot claim NAND memory area\n");
431 ret = -ENOMEM;
432 goto out1;
Pete Popovef6f0d12005-09-23 02:44:58 +0100433 }
Manuel Laussb67a1a02011-12-08 10:42:10 +0000434
435 ctx->base = ioremap_nocache(r->start, 0x1000);
436 if (!ctx->base) {
437 dev_err(&pdev->dev, "cannot remap NAND memory area\n");
438 ret = -ENODEV;
439 goto out2;
Pete Popovef6f0d12005-09-23 02:44:58 +0100440 }
Manuel Laussb67a1a02011-12-08 10:42:10 +0000441
442 this = &ctx->chip;
Boris BREZILLONff70f352015-12-10 08:59:51 +0100443 mtd = nand_to_mtd(this);
Boris BREZILLONff70f352015-12-10 08:59:51 +0100444 mtd->dev.parent = &pdev->dev;
Manuel Laussb67a1a02011-12-08 10:42:10 +0000445
446 /* figure out which CS# r->start belongs to */
447 cs = find_nand_cs(r->start);
448 if (cs < 0) {
449 dev_err(&pdev->dev, "cannot detect NAND chipselect\n");
450 ret = -ENODEV;
451 goto out3;
Pete Popovef6f0d12005-09-23 02:44:58 +0100452 }
Manuel Laussb67a1a02011-12-08 10:42:10 +0000453 ctx->cs = cs;
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 this->dev_ready = au1550_device_ready;
Sergei Shtylyov35af68b2006-05-16 20:52:06 +0400456 this->select_chip = au1550_select_chip;
457 this->cmdfunc = au1550_command;
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /* 30 us command delay time */
Thomas Gleixner61b03bd2005-11-07 11:15:49 +0000460 this->chip_delay = 30;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200461 this->ecc.mode = NAND_ECC_SOFT;
Rafał Miłeckic2ec6b32016-04-13 14:06:57 +0200462 this->ecc.algo = NAND_ECC_HAMMING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Manuel Laussb67a1a02011-12-08 10:42:10 +0000464 if (pd->devwidth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 this->options |= NAND_BUSWIDTH_16;
466
Manuel Laussb67a1a02011-12-08 10:42:10 +0000467 this->read_byte = (pd->devwidth) ? au_read_byte16 : au_read_byte;
468 ctx->write_byte = (pd->devwidth) ? au_write_byte16 : au_write_byte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 this->read_word = au_read_word;
Manuel Laussb67a1a02011-12-08 10:42:10 +0000470 this->write_buf = (pd->devwidth) ? au_write_buf16 : au_write_buf;
471 this->read_buf = (pd->devwidth) ? au_read_buf16 : au_read_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Boris BREZILLONff70f352015-12-10 08:59:51 +0100473 ret = nand_scan(mtd, 1);
Manuel Laussb67a1a02011-12-08 10:42:10 +0000474 if (ret) {
475 dev_err(&pdev->dev, "NAND scan failed with %d\n", ret);
476 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Boris BREZILLONff70f352015-12-10 08:59:51 +0100479 mtd_device_register(mtd, pd->parts, pd->num_parts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Wei Yongjuna1d79942013-11-11 14:18:29 +0800481 platform_set_drvdata(pdev, ctx);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return 0;
484
Manuel Laussb67a1a02011-12-08 10:42:10 +0000485out3:
486 iounmap(ctx->base);
487out2:
488 release_mem_region(r->start, resource_size(r));
489out1:
490 kfree(ctx);
491 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Bill Pemberton810b7e02012-11-19 13:26:04 -0500494static int au1550nd_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Manuel Laussb67a1a02011-12-08 10:42:10 +0000496 struct au1550nd_ctx *ctx = platform_get_drvdata(pdev);
497 struct resource *r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Boris BREZILLONff70f352015-12-10 08:59:51 +0100499 nand_release(nand_to_mtd(&ctx->chip));
Manuel Laussb67a1a02011-12-08 10:42:10 +0000500 iounmap(ctx->base);
501 release_mem_region(r->start, 0x1000);
502 kfree(ctx);
503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
David Woodhousee0c7d762006-05-13 18:07:53 +0100505
Manuel Laussb67a1a02011-12-08 10:42:10 +0000506static struct platform_driver au1550nd_driver = {
507 .driver = {
508 .name = "au1550-nand",
Manuel Laussb67a1a02011-12-08 10:42:10 +0000509 },
510 .probe = au1550nd_probe,
Bill Pemberton5153b882012-11-19 13:21:24 -0500511 .remove = au1550nd_remove,
Manuel Laussb67a1a02011-12-08 10:42:10 +0000512};
513
514module_platform_driver(au1550nd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516MODULE_LICENSE("GPL");
517MODULE_AUTHOR("Embedded Edge, LLC");
518MODULE_DESCRIPTION("Board-specific glue layer for NAND flash on Pb1550 board");