blob: 1e0348ae325f5522908356014fdb5903167e8100 [file] [log] [blame]
David Woodhouse179fdc32006-05-11 22:35:28 +01001/*
2 * drivers/mtd/nand/cs553x_nand.c
3 *
4 * (C) 2005, 2006 Red Hat Inc.
5 *
6 * Author: David Woodhouse <dwmw2@infradead.org>
David Woodhouse9d754142006-05-13 04:12:40 +01007 * Tom Sylla <tom.sylla@amd.com>
David Woodhouse179fdc32006-05-11 22:35:28 +01008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * Overview:
14 * This is a device driver for the NAND flash controller found on
15 * the AMD CS5535/CS5536 companion chipsets for the Geode processor.
16 *
17 */
18
19#include <linux/slab.h>
20#include <linux/init.h>
21#include <linux/module.h>
22#include <linux/delay.h>
23#include <linux/pci.h>
24#include <linux/mtd/mtd.h>
25#include <linux/mtd/nand.h>
David Woodhouse9d754142006-05-13 04:12:40 +010026#include <linux/mtd/nand_ecc.h>
David Woodhouse179fdc32006-05-11 22:35:28 +010027#include <linux/mtd/partitions.h>
28
29#include <asm/msr.h>
30#include <asm/io.h>
31
32#define NR_CS553X_CONTROLLERS 4
33
34/* NAND Timing MSRs */
35#define MSR_NANDF_DATA 0x5140001b /* NAND Flash Data Timing MSR */
36#define MSR_NANDF_CTL 0x5140001c /* NAND Flash Control Timing */
37#define MSR_NANDF_RSVD 0x5140001d /* Reserved */
38
39/* NAND BAR MSRs */
40#define MSR_DIVIL_LBAR_FLSH0 0x51400010 /* Flash Chip Select 0 */
41#define MSR_DIVIL_LBAR_FLSH1 0x51400011 /* Flash Chip Select 1 */
42#define MSR_DIVIL_LBAR_FLSH2 0x51400012 /* Flash Chip Select 2 */
43#define MSR_DIVIL_LBAR_FLSH3 0x51400013 /* Flash Chip Select 3 */
44 /* Each made up of... */
45#define FLSH_LBAR_EN (1ULL<<32)
46#define FLSH_NOR_NAND (1ULL<<33) /* 1 for NAND */
47#define FLSH_MEM_IO (1ULL<<34) /* 1 for MMIO */
48 /* I/O BARs have BASE_ADDR in bits 15:4, IO_MASK in 47:36 */
49 /* MMIO BARs have BASE_ADDR in bits 31:12, MEM_MASK in 63:44 */
50
51/* Pin function selection MSR (IDE vs. flash on the IDE pins) */
52#define MSR_DIVIL_BALL_OPTS 0x51400015
David Woodhousee0c7d762006-05-13 18:07:53 +010053#define PIN_OPT_IDE (1<<0) /* 0 for flash, 1 for IDE */
David Woodhouse179fdc32006-05-11 22:35:28 +010054
55/* Registers within the NAND flash controller BAR -- memory mapped */
56#define MM_NAND_DATA 0x00 /* 0 to 0x7ff, in fact */
57#define MM_NAND_CTL 0x800 /* Any even address 0x800-0x80e */
58#define MM_NAND_IO 0x801 /* Any odd address 0x801-0x80f */
59#define MM_NAND_STS 0x810
60#define MM_NAND_ECC_LSB 0x811
61#define MM_NAND_ECC_MSB 0x812
62#define MM_NAND_ECC_COL 0x813
63#define MM_NAND_LAC 0x814
64#define MM_NAND_ECC_CTL 0x815
65
66/* Registers within the NAND flash controller BAR -- I/O mapped */
67#define IO_NAND_DATA 0x00 /* 0 to 3, in fact */
68#define IO_NAND_CTL 0x04
69#define IO_NAND_IO 0x05
70#define IO_NAND_STS 0x06
71#define IO_NAND_ECC_CTL 0x08
72#define IO_NAND_ECC_LSB 0x09
73#define IO_NAND_ECC_MSB 0x0a
74#define IO_NAND_ECC_COL 0x0b
75#define IO_NAND_LAC 0x0c
76
77#define CS_NAND_CTL_DIST_EN (1<<4) /* Enable NAND Distract interrupt */
78#define CS_NAND_CTL_RDY_INT_MASK (1<<3) /* Enable RDY/BUSY# interrupt */
79#define CS_NAND_CTL_ALE (1<<2)
80#define CS_NAND_CTL_CLE (1<<1)
81#define CS_NAND_CTL_CE (1<<0) /* Keep low; 1 to reset */
82
83#define CS_NAND_STS_FLASH_RDY (1<<3)
84#define CS_NAND_CTLR_BUSY (1<<2)
85#define CS_NAND_CMD_COMP (1<<1)
86#define CS_NAND_DIST_ST (1<<0)
87
88#define CS_NAND_ECC_PARITY (1<<2)
89#define CS_NAND_ECC_CLRECC (1<<1)
90#define CS_NAND_ECC_ENECC (1<<0)
91
David Woodhouse9d754142006-05-13 04:12:40 +010092static void cs553x_read_buf(struct mtd_info *mtd, u_char *buf, int len)
93{
94 struct nand_chip *this = mtd->priv;
95
96 while (unlikely(len > 0x800)) {
97 memcpy_fromio(buf, this->IO_ADDR_R, 0x800);
98 buf += 0x800;
99 len -= 0x800;
100 }
101 memcpy_fromio(buf, this->IO_ADDR_R, len);
102}
103
104static void cs553x_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
105{
106 struct nand_chip *this = mtd->priv;
107
108 while (unlikely(len > 0x800)) {
109 memcpy_toio(this->IO_ADDR_R, buf, 0x800);
110 buf += 0x800;
111 len -= 0x800;
112 }
113 memcpy_toio(this->IO_ADDR_R, buf, len);
114}
115
David Woodhouse179fdc32006-05-11 22:35:28 +0100116static unsigned char cs553x_read_byte(struct mtd_info *mtd)
117{
118 struct nand_chip *this = mtd->priv;
David Woodhouse9d754142006-05-13 04:12:40 +0100119 return readb(this->IO_ADDR_R);
David Woodhouse179fdc32006-05-11 22:35:28 +0100120}
121
122static void cs553x_write_byte(struct mtd_info *mtd, u_char byte)
123{
124 struct nand_chip *this = mtd->priv;
125 int i = 100000;
126
127 while (i && readb(this->IO_ADDR_R + MM_NAND_STS) & CS_NAND_CTLR_BUSY) {
128 udelay(1);
129 i--;
130 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100131 writeb(byte, this->IO_ADDR_W + 0x801);
David Woodhouse179fdc32006-05-11 22:35:28 +0100132}
133
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200134static void cs553x_hwcontrol(struct mtd_info *mtd, int cmd,
135 unsigned int ctrl)
David Woodhouse179fdc32006-05-11 22:35:28 +0100136{
137 struct nand_chip *this = mtd->priv;
138 void __iomem *mmio_base = this->IO_ADDR_R;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200139 if (ctrl & NAND_CTRL_CHANGE) {
140 unsigned char ctl = (ctrl & ~NAND_CTRL_CHANGE ) ^ 0x01;
141 writeb(ctl, mmio_base + MM_NAND_CTL);
David Woodhouse179fdc32006-05-11 22:35:28 +0100142 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200143 if (cmd != NAND_CMD_NONE)
144 cs553x_write_byte(mtd, cmd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100145}
146
David Woodhouse179fdc32006-05-11 22:35:28 +0100147static int cs553x_device_ready(struct mtd_info *mtd)
148{
149 struct nand_chip *this = mtd->priv;
150 void __iomem *mmio_base = this->IO_ADDR_R;
151 unsigned char foo = readb(mmio_base + MM_NAND_STS);
152
David Woodhousee0c7d762006-05-13 18:07:53 +0100153 return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY);
David Woodhouse179fdc32006-05-11 22:35:28 +0100154}
155
David Woodhouse9d754142006-05-13 04:12:40 +0100156static void cs_enable_hwecc(struct mtd_info *mtd, int mode)
157{
158 struct nand_chip *this = mtd->priv;
159 void __iomem *mmio_base = this->IO_ADDR_R;
160
161 writeb(0x07, mmio_base + MM_NAND_ECC_CTL);
162}
163
164static int cs_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code)
165{
166 uint32_t ecc;
167 struct nand_chip *this = mtd->priv;
168 void __iomem *mmio_base = this->IO_ADDR_R;
169
170 ecc = readl(mmio_base + MM_NAND_STS);
171
172 ecc_code[1] = ecc >> 8;
173 ecc_code[0] = ecc >> 16;
174 ecc_code[2] = ecc >> 24;
175 return 0;
176}
177
David Woodhouse179fdc32006-05-11 22:35:28 +0100178static struct mtd_info *cs553x_mtd[4];
179
180static int __init cs553x_init_one(int cs, int mmio, unsigned long adr)
181{
182 int err = 0;
183 struct nand_chip *this;
184 struct mtd_info *new_mtd;
185
186 printk(KERN_NOTICE "Probing CS553x NAND controller CS#%d at %sIO 0x%08lx\n", cs, mmio?"MM":"P", adr);
187
188 if (!mmio) {
189 printk(KERN_NOTICE "PIO mode not yet implemented for CS553X NAND controller\n");
190 return -ENXIO;
191 }
192
193 /* Allocate memory for MTD device structure and private data */
David Woodhousee0c7d762006-05-13 18:07:53 +0100194 new_mtd = kmalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip), GFP_KERNEL);
David Woodhouse179fdc32006-05-11 22:35:28 +0100195 if (!new_mtd) {
196 printk(KERN_WARNING "Unable to allocate CS553X NAND MTD device structure.\n");
197 err = -ENOMEM;
198 goto out;
199 }
200
201 /* Get pointer to private data */
David Woodhousee0c7d762006-05-13 18:07:53 +0100202 this = (struct nand_chip *)(&new_mtd[1]);
David Woodhouse179fdc32006-05-11 22:35:28 +0100203
204 /* Initialize structures */
David Woodhouse9d754142006-05-13 04:12:40 +0100205 memset(new_mtd, 0, sizeof(struct mtd_info));
206 memset(this, 0, sizeof(struct nand_chip));
David Woodhouse179fdc32006-05-11 22:35:28 +0100207
208 /* Link the private data with the MTD structure */
209 new_mtd->priv = this;
David Woodhouse552d9202006-05-14 01:20:46 +0100210 new_mtd->owner = THIS_MODULE;
David Woodhouse179fdc32006-05-11 22:35:28 +0100211
212 /* map physical address */
213 this->IO_ADDR_R = this->IO_ADDR_W = ioremap(adr, 4096);
214 if (!this->IO_ADDR_R) {
215 printk(KERN_WARNING "ioremap cs553x NAND @0x%08lx failed\n", adr);
216 err = -EIO;
217 goto out_mtd;
218 }
219
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200220 this->cmd_ctrl = cs553x_hwcontrol;
David Woodhouse179fdc32006-05-11 22:35:28 +0100221 this->dev_ready = cs553x_device_ready;
222 this->read_byte = cs553x_read_byte;
David Woodhouse9d754142006-05-13 04:12:40 +0100223 this->read_buf = cs553x_read_buf;
224 this->write_buf = cs553x_write_buf;
David Woodhouse179fdc32006-05-11 22:35:28 +0100225
David Woodhouse9d754142006-05-13 04:12:40 +0100226 this->chip_delay = 0;
David Woodhouse179fdc32006-05-11 22:35:28 +0100227
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200228 this->ecc.mode = NAND_ECC_HW;
229 this->ecc.size = 256;
230 this->ecc.bytes = 3;
231 this->ecc.hwctl = cs_enable_hwecc;
232 this->ecc.calculate = cs_calculate_ecc;
233 this->ecc.correct = nand_correct_data;
234
David Woodhouse179fdc32006-05-11 22:35:28 +0100235 /* Enable the following for a flash based bad block table */
David Woodhouse9d754142006-05-13 04:12:40 +0100236 this->options = NAND_USE_FLASH_BBT | NAND_NO_AUTOINCR;
David Woodhouse179fdc32006-05-11 22:35:28 +0100237
238 /* Scan to find existance of the device */
David Woodhouse9d754142006-05-13 04:12:40 +0100239 if (nand_scan(new_mtd, 1)) {
David Woodhouse179fdc32006-05-11 22:35:28 +0100240 err = -ENXIO;
241 goto out_ior;
242 }
243
244 cs553x_mtd[cs] = new_mtd;
245 goto out;
246
247out_ior:
248 iounmap((void *)this->IO_ADDR_R);
249out_mtd:
David Woodhouse9d754142006-05-13 04:12:40 +0100250 kfree(new_mtd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100251out:
252 return err;
253}
254
David Woodhousecead4db2006-05-16 13:54:50 +0100255static int __init cs553x_init(void)
David Woodhouse179fdc32006-05-11 22:35:28 +0100256{
257 int err = -ENXIO;
258 int i;
259 uint64_t val;
260
261 /* Check whether we actually have a CS5535 or CS5536 */
262 if (!pci_find_device(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA, NULL) &&
263 !pci_find_device(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_ISA, NULL))
264 return -ENXIO;
265
266 rdmsrl(MSR_DIVIL_BALL_OPTS, val);
267 if (val & 1) {
268 printk(KERN_INFO "CS553x NAND controller: Flash I/O not enabled in MSR_DIVIL_BALL_OPTS.\n");
269 return -ENXIO;
270 }
271
David Woodhousee0c7d762006-05-13 18:07:53 +0100272 for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
273 rdmsrl(MSR_DIVIL_LBAR_FLSH0 + i, val);
David Woodhouse179fdc32006-05-11 22:35:28 +0100274
275 if ((val & (FLSH_LBAR_EN|FLSH_NOR_NAND)) == (FLSH_LBAR_EN|FLSH_NOR_NAND))
276 err = cs553x_init_one(i, !!(val & FLSH_MEM_IO), val & 0xFFFFFFFF);
277 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100278
David Woodhouse179fdc32006-05-11 22:35:28 +0100279 /* Register all devices together here. This means we can easily hack it to
280 do mtdconcat etc. if we want to. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100281 for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
David Woodhouse179fdc32006-05-11 22:35:28 +0100282 if (cs553x_mtd[i]) {
283 add_mtd_device(cs553x_mtd[i]);
284
285 /* If any devices registered, return success. Else the last error. */
286 err = 0;
287 }
288 }
289
290 return err;
291}
David Woodhousee0c7d762006-05-13 18:07:53 +0100292
David Woodhouse179fdc32006-05-11 22:35:28 +0100293module_init(cs553x_init);
294
David Woodhousee0c7d762006-05-13 18:07:53 +0100295static void __exit cs553x_cleanup(void)
David Woodhouse179fdc32006-05-11 22:35:28 +0100296{
297 int i;
298
David Woodhousee0c7d762006-05-13 18:07:53 +0100299 for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
David Woodhouse179fdc32006-05-11 22:35:28 +0100300 struct mtd_info *mtd = cs553x_mtd[i];
301 struct nand_chip *this;
302 void __iomem *mmio_base;
303
304 if (!mtd)
305 break;
306
307 this = cs553x_mtd[i]->priv;
308 mmio_base = this->IO_ADDR_R;
309
310 /* Release resources, unregister device */
David Woodhousee0c7d762006-05-13 18:07:53 +0100311 nand_release(cs553x_mtd[i]);
David Woodhouse179fdc32006-05-11 22:35:28 +0100312 cs553x_mtd[i] = NULL;
313
314 /* unmap physical adress */
315 iounmap(mmio_base);
316
317 /* Free the MTD device structure */
David Woodhouse9d754142006-05-13 04:12:40 +0100318 kfree(mtd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100319 }
320}
David Woodhousee0c7d762006-05-13 18:07:53 +0100321
David Woodhouse179fdc32006-05-11 22:35:28 +0100322module_exit(cs553x_cleanup);
323
324MODULE_LICENSE("GPL");
325MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
326MODULE_DESCRIPTION("NAND controller driver for AMD CS5535/CS5536 companion chip");