blob: 4394eeebec7ff8d8003fe31d880f14c38703741b [file] [log] [blame]
David Woodhouse179fdc32006-05-11 22:35:28 +01001/*
David Woodhouse179fdc32006-05-11 22:35:28 +01002 * (C) 2005, 2006 Red Hat Inc.
3 *
4 * Author: David Woodhouse <dwmw2@infradead.org>
David Woodhouse9d754142006-05-13 04:12:40 +01005 * Tom Sylla <tom.sylla@amd.com>
David Woodhouse179fdc32006-05-11 22:35:28 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Overview:
David Woodhousec9ac59772006-11-30 08:17:38 +000012 * This is a device driver for the NAND flash controller found on
David Woodhouse179fdc32006-05-11 22:35:28 +010013 * the AMD CS5535/CS5536 companion chipsets for the Geode processor.
Mart Raudsepp641f4362008-02-09 08:16:36 +000014 * mtd-id for command line partitioning is cs553x_nand_cs[0-3]
15 * where 0-3 reflects the chip select for NAND.
David Woodhouse179fdc32006-05-11 22:35:28 +010016 *
17 */
18
Mart Raudsepp641f4362008-02-09 08:16:36 +000019#include <linux/kernel.h>
David Woodhouse179fdc32006-05-11 22:35:28 +010020#include <linux/slab.h>
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/delay.h>
David Woodhouse179fdc32006-05-11 22:35:28 +010024#include <linux/mtd/mtd.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020025#include <linux/mtd/rawnand.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
David Woodhousee4d222f2006-05-26 02:06:27 +010034#define MSR_DIVIL_GLD_CAP 0x51400000 /* DIVIL capabilitiies */
35#define CAP_CS5535 0x2df000ULL
36#define CAP_CS5536 0x5df500ULL
37
David Woodhouse179fdc32006-05-11 22:35:28 +010038/* NAND Timing MSRs */
39#define MSR_NANDF_DATA 0x5140001b /* NAND Flash Data Timing MSR */
40#define MSR_NANDF_CTL 0x5140001c /* NAND Flash Control Timing */
41#define MSR_NANDF_RSVD 0x5140001d /* Reserved */
42
43/* NAND BAR MSRs */
44#define MSR_DIVIL_LBAR_FLSH0 0x51400010 /* Flash Chip Select 0 */
45#define MSR_DIVIL_LBAR_FLSH1 0x51400011 /* Flash Chip Select 1 */
46#define MSR_DIVIL_LBAR_FLSH2 0x51400012 /* Flash Chip Select 2 */
47#define MSR_DIVIL_LBAR_FLSH3 0x51400013 /* Flash Chip Select 3 */
48 /* Each made up of... */
49#define FLSH_LBAR_EN (1ULL<<32)
50#define FLSH_NOR_NAND (1ULL<<33) /* 1 for NAND */
51#define FLSH_MEM_IO (1ULL<<34) /* 1 for MMIO */
52 /* I/O BARs have BASE_ADDR in bits 15:4, IO_MASK in 47:36 */
53 /* MMIO BARs have BASE_ADDR in bits 31:12, MEM_MASK in 63:44 */
54
55/* Pin function selection MSR (IDE vs. flash on the IDE pins) */
56#define MSR_DIVIL_BALL_OPTS 0x51400015
David Woodhousee0c7d762006-05-13 18:07:53 +010057#define PIN_OPT_IDE (1<<0) /* 0 for flash, 1 for IDE */
David Woodhouse179fdc32006-05-11 22:35:28 +010058
59/* Registers within the NAND flash controller BAR -- memory mapped */
60#define MM_NAND_DATA 0x00 /* 0 to 0x7ff, in fact */
61#define MM_NAND_CTL 0x800 /* Any even address 0x800-0x80e */
62#define MM_NAND_IO 0x801 /* Any odd address 0x801-0x80f */
63#define MM_NAND_STS 0x810
64#define MM_NAND_ECC_LSB 0x811
65#define MM_NAND_ECC_MSB 0x812
66#define MM_NAND_ECC_COL 0x813
67#define MM_NAND_LAC 0x814
68#define MM_NAND_ECC_CTL 0x815
69
70/* Registers within the NAND flash controller BAR -- I/O mapped */
71#define IO_NAND_DATA 0x00 /* 0 to 3, in fact */
72#define IO_NAND_CTL 0x04
73#define IO_NAND_IO 0x05
74#define IO_NAND_STS 0x06
75#define IO_NAND_ECC_CTL 0x08
76#define IO_NAND_ECC_LSB 0x09
77#define IO_NAND_ECC_MSB 0x0a
78#define IO_NAND_ECC_COL 0x0b
79#define IO_NAND_LAC 0x0c
80
81#define CS_NAND_CTL_DIST_EN (1<<4) /* Enable NAND Distract interrupt */
82#define CS_NAND_CTL_RDY_INT_MASK (1<<3) /* Enable RDY/BUSY# interrupt */
83#define CS_NAND_CTL_ALE (1<<2)
84#define CS_NAND_CTL_CLE (1<<1)
85#define CS_NAND_CTL_CE (1<<0) /* Keep low; 1 to reset */
86
87#define CS_NAND_STS_FLASH_RDY (1<<3)
88#define CS_NAND_CTLR_BUSY (1<<2)
89#define CS_NAND_CMD_COMP (1<<1)
90#define CS_NAND_DIST_ST (1<<0)
91
92#define CS_NAND_ECC_PARITY (1<<2)
93#define CS_NAND_ECC_CLRECC (1<<1)
94#define CS_NAND_ECC_ENECC (1<<0)
95
Boris Brezillon7e534322018-09-06 14:05:22 +020096static void cs553x_read_buf(struct nand_chip *this, u_char *buf, int len)
David Woodhouse9d754142006-05-13 04:12:40 +010097{
David Woodhouse9d754142006-05-13 04:12:40 +010098 while (unlikely(len > 0x800)) {
99 memcpy_fromio(buf, this->IO_ADDR_R, 0x800);
100 buf += 0x800;
101 len -= 0x800;
102 }
103 memcpy_fromio(buf, this->IO_ADDR_R, len);
104}
105
106static void cs553x_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
107{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100108 struct nand_chip *this = mtd_to_nand(mtd);
David Woodhouse9d754142006-05-13 04:12:40 +0100109
110 while (unlikely(len > 0x800)) {
111 memcpy_toio(this->IO_ADDR_R, buf, 0x800);
112 buf += 0x800;
113 len -= 0x800;
114 }
115 memcpy_toio(this->IO_ADDR_R, buf, len);
116}
117
Boris Brezillon7e534322018-09-06 14:05:22 +0200118static unsigned char cs553x_read_byte(struct nand_chip *this)
David Woodhouse179fdc32006-05-11 22:35:28 +0100119{
David Woodhouse9d754142006-05-13 04:12:40 +0100120 return readb(this->IO_ADDR_R);
David Woodhouse179fdc32006-05-11 22:35:28 +0100121}
122
123static void cs553x_write_byte(struct mtd_info *mtd, u_char byte)
124{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100125 struct nand_chip *this = mtd_to_nand(mtd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100126 int i = 100000;
127
128 while (i && readb(this->IO_ADDR_R + MM_NAND_STS) & CS_NAND_CTLR_BUSY) {
129 udelay(1);
130 i--;
131 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100132 writeb(byte, this->IO_ADDR_W + 0x801);
David Woodhouse179fdc32006-05-11 22:35:28 +0100133}
134
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200135static void cs553x_hwcontrol(struct mtd_info *mtd, int cmd,
136 unsigned int ctrl)
David Woodhouse179fdc32006-05-11 22:35:28 +0100137{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100138 struct nand_chip *this = mtd_to_nand(mtd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100139 void __iomem *mmio_base = this->IO_ADDR_R;
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200140 if (ctrl & NAND_CTRL_CHANGE) {
141 unsigned char ctl = (ctrl & ~NAND_CTRL_CHANGE ) ^ 0x01;
142 writeb(ctl, mmio_base + MM_NAND_CTL);
David Woodhouse179fdc32006-05-11 22:35:28 +0100143 }
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200144 if (cmd != NAND_CMD_NONE)
145 cs553x_write_byte(mtd, cmd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100146}
147
David Woodhouse179fdc32006-05-11 22:35:28 +0100148static int cs553x_device_ready(struct mtd_info *mtd)
149{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100150 struct nand_chip *this = mtd_to_nand(mtd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100151 void __iomem *mmio_base = this->IO_ADDR_R;
152 unsigned char foo = readb(mmio_base + MM_NAND_STS);
153
David Woodhousee0c7d762006-05-13 18:07:53 +0100154 return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY);
David Woodhouse179fdc32006-05-11 22:35:28 +0100155}
156
Boris Brezillonec476362018-09-06 14:05:17 +0200157static void cs_enable_hwecc(struct nand_chip *this, int mode)
David Woodhouse9d754142006-05-13 04:12:40 +0100158{
David Woodhouse9d754142006-05-13 04:12:40 +0100159 void __iomem *mmio_base = this->IO_ADDR_R;
160
161 writeb(0x07, mmio_base + MM_NAND_ECC_CTL);
162}
163
Boris Brezillonaf37d2c2018-09-06 14:05:18 +0200164static int cs_calculate_ecc(struct nand_chip *this, const u_char *dat,
165 u_char *ecc_code)
David Woodhouse9d754142006-05-13 04:12:40 +0100166{
167 uint32_t ecc;
David Woodhouse9d754142006-05-13 04:12:40 +0100168 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
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530186 pr_notice("Probing CS553x NAND controller CS#%d at %sIO 0x%08lx\n",
187 cs, mmio ? "MM" : "P", adr);
David Woodhouse179fdc32006-05-11 22:35:28 +0100188
189 if (!mmio) {
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530190 pr_notice("PIO mode not yet implemented for CS553X NAND controller\n");
David Woodhouse179fdc32006-05-11 22:35:28 +0100191 return -ENXIO;
192 }
193
194 /* Allocate memory for MTD device structure and private data */
Boris BREZILLON8cd65d1a2015-12-10 08:59:57 +0100195 this = kzalloc(sizeof(struct nand_chip), GFP_KERNEL);
196 if (!this) {
David Woodhouse179fdc32006-05-11 22:35:28 +0100197 err = -ENOMEM;
198 goto out;
199 }
200
Boris BREZILLON8cd65d1a2015-12-10 08:59:57 +0100201 new_mtd = nand_to_mtd(this);
David Woodhouse179fdc32006-05-11 22:35:28 +0100202
David Woodhouse179fdc32006-05-11 22:35:28 +0100203 /* Link the private data with the MTD structure */
David Woodhouse552d9202006-05-14 01:20:46 +0100204 new_mtd->owner = THIS_MODULE;
David Woodhouse179fdc32006-05-11 22:35:28 +0100205
206 /* map physical address */
207 this->IO_ADDR_R = this->IO_ADDR_W = ioremap(adr, 4096);
208 if (!this->IO_ADDR_R) {
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530209 pr_warn("ioremap cs553x NAND @0x%08lx failed\n", adr);
David Woodhouse179fdc32006-05-11 22:35:28 +0100210 err = -EIO;
211 goto out_mtd;
212 }
213
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +0200214 this->cmd_ctrl = cs553x_hwcontrol;
David Woodhouse179fdc32006-05-11 22:35:28 +0100215 this->dev_ready = cs553x_device_ready;
216 this->read_byte = cs553x_read_byte;
David Woodhouse9d754142006-05-13 04:12:40 +0100217 this->read_buf = cs553x_read_buf;
218 this->write_buf = cs553x_write_buf;
David Woodhouse179fdc32006-05-11 22:35:28 +0100219
David Woodhouse9d754142006-05-13 04:12:40 +0100220 this->chip_delay = 0;
David Woodhouse179fdc32006-05-11 22:35:28 +0100221
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200222 this->ecc.mode = NAND_ECC_HW;
223 this->ecc.size = 256;
224 this->ecc.bytes = 3;
225 this->ecc.hwctl = cs_enable_hwecc;
226 this->ecc.calculate = cs_calculate_ecc;
227 this->ecc.correct = nand_correct_data;
Nathan Williamsd1f3b652012-11-22 10:42:52 +1100228 this->ecc.strength = 1;
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200229
David Woodhouse179fdc32006-05-11 22:35:28 +0100230 /* Enable the following for a flash based bad block table */
Brian Norrisbb9ebd42011-05-31 16:31:23 -0700231 this->bbt_options = NAND_BBT_USE_FLASH;
David Woodhouse179fdc32006-05-11 22:35:28 +0100232
Richard Weinbergerbc349da2015-06-01 23:10:51 +0200233 new_mtd->name = kasprintf(GFP_KERNEL, "cs553x_nand_cs%d", cs);
234 if (!new_mtd->name) {
235 err = -ENOMEM;
David Woodhouse179fdc32006-05-11 22:35:28 +0100236 goto out_ior;
237 }
238
Richard Weinbergerbc349da2015-06-01 23:10:51 +0200239 /* Scan to find existence of the device */
Boris Brezillon00ad3782018-09-06 14:05:14 +0200240 err = nand_scan(this, 1);
Masahiro Yamada29453ba2016-11-04 19:42:51 +0900241 if (err)
Richard Weinbergerbc349da2015-06-01 23:10:51 +0200242 goto out_free;
Mart Raudsepp641f4362008-02-09 08:16:36 +0000243
David Woodhouse179fdc32006-05-11 22:35:28 +0100244 cs553x_mtd[cs] = new_mtd;
245 goto out;
246
Richard Weinbergerbc349da2015-06-01 23:10:51 +0200247out_free:
248 kfree(new_mtd->name);
David Woodhouse179fdc32006-05-11 22:35:28 +0100249out_ior:
Al Viroafc12d32006-10-10 22:46:37 +0100250 iounmap(this->IO_ADDR_R);
David Woodhouse179fdc32006-05-11 22:35:28 +0100251out_mtd:
Boris BREZILLON8cd65d1a2015-12-10 08:59:57 +0100252 kfree(this);
David Woodhouse179fdc32006-05-11 22:35:28 +0100253out:
254 return err;
255}
256
David Woodhousee4d222f2006-05-26 02:06:27 +0100257static int is_geode(void)
258{
259 /* These are the CPUs which will have a CS553[56] companion chip */
260 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
261 boot_cpu_data.x86 == 5 &&
262 boot_cpu_data.x86_model == 10)
263 return 1; /* Geode LX */
264
265 if ((boot_cpu_data.x86_vendor == X86_VENDOR_NSC ||
266 boot_cpu_data.x86_vendor == X86_VENDOR_CYRIX) &&
267 boot_cpu_data.x86 == 5 &&
268 boot_cpu_data.x86_model == 5)
269 return 1; /* Geode GX (née GX2) */
270
271 return 0;
272}
273
David Woodhousecead4db2006-05-16 13:54:50 +0100274static int __init cs553x_init(void)
David Woodhouse179fdc32006-05-11 22:35:28 +0100275{
276 int err = -ENXIO;
277 int i;
278 uint64_t val;
Mart Raudsepp641f4362008-02-09 08:16:36 +0000279
David Woodhousee4d222f2006-05-26 02:06:27 +0100280 /* If the CPU isn't a Geode GX or LX, abort */
281 if (!is_geode())
David Woodhouse179fdc32006-05-11 22:35:28 +0100282 return -ENXIO;
283
David Woodhousee4d222f2006-05-26 02:06:27 +0100284 /* If it doesn't have the CS553[56], abort */
285 rdmsrl(MSR_DIVIL_GLD_CAP, val);
286 val &= ~0xFFULL;
287 if (val != CAP_CS5535 && val != CAP_CS5536)
288 return -ENXIO;
289
290 /* If it doesn't have the NAND controller enabled, abort */
David Woodhouse179fdc32006-05-11 22:35:28 +0100291 rdmsrl(MSR_DIVIL_BALL_OPTS, val);
Mart Raudsepp641f4362008-02-09 08:16:36 +0000292 if (val & PIN_OPT_IDE) {
Shreeya Patel63fa37f2018-02-22 22:01:22 +0530293 pr_info("CS553x NAND controller: Flash I/O not enabled in MSR_DIVIL_BALL_OPTS.\n");
David Woodhouse179fdc32006-05-11 22:35:28 +0100294 return -ENXIO;
295 }
296
David Woodhousee0c7d762006-05-13 18:07:53 +0100297 for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
298 rdmsrl(MSR_DIVIL_LBAR_FLSH0 + i, val);
David Woodhouse179fdc32006-05-11 22:35:28 +0100299
300 if ((val & (FLSH_LBAR_EN|FLSH_NOR_NAND)) == (FLSH_LBAR_EN|FLSH_NOR_NAND))
301 err = cs553x_init_one(i, !!(val & FLSH_MEM_IO), val & 0xFFFFFFFF);
302 }
David Woodhousee0c7d762006-05-13 18:07:53 +0100303
David Woodhousec9ac59772006-11-30 08:17:38 +0000304 /* Register all devices together here. This means we can easily hack it to
David Woodhouse179fdc32006-05-11 22:35:28 +0100305 do mtdconcat etc. if we want to. */
David Woodhousee0c7d762006-05-13 18:07:53 +0100306 for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
David Woodhouse179fdc32006-05-11 22:35:28 +0100307 if (cs553x_mtd[i]) {
David Woodhouse179fdc32006-05-11 22:35:28 +0100308 /* If any devices registered, return success. Else the last error. */
Rafał Miłecki29597ca2018-07-13 11:27:31 +0200309 mtd_device_register(cs553x_mtd[i], NULL, 0);
David Woodhouse179fdc32006-05-11 22:35:28 +0100310 err = 0;
311 }
312 }
313
314 return err;
315}
David Woodhousee0c7d762006-05-13 18:07:53 +0100316
David Woodhouse179fdc32006-05-11 22:35:28 +0100317module_init(cs553x_init);
318
David Woodhousee0c7d762006-05-13 18:07:53 +0100319static void __exit cs553x_cleanup(void)
David Woodhouse179fdc32006-05-11 22:35:28 +0100320{
321 int i;
322
David Woodhousee0c7d762006-05-13 18:07:53 +0100323 for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
David Woodhouse179fdc32006-05-11 22:35:28 +0100324 struct mtd_info *mtd = cs553x_mtd[i];
325 struct nand_chip *this;
326 void __iomem *mmio_base;
327
328 if (!mtd)
Mart Raudsepp641f4362008-02-09 08:16:36 +0000329 continue;
David Woodhouse179fdc32006-05-11 22:35:28 +0100330
Boris BREZILLON8cd65d1a2015-12-10 08:59:57 +0100331 this = mtd_to_nand(mtd);
David Woodhouse179fdc32006-05-11 22:35:28 +0100332 mmio_base = this->IO_ADDR_R;
333
334 /* Release resources, unregister device */
Boris Brezillon59ac2762018-09-06 14:05:15 +0200335 nand_release(this);
Boris BREZILLON8cd65d1a2015-12-10 08:59:57 +0100336 kfree(mtd->name);
David Woodhouse179fdc32006-05-11 22:35:28 +0100337 cs553x_mtd[i] = NULL;
338
Joe Perches8e87d782008-02-03 17:22:34 +0200339 /* unmap physical address */
David Woodhouse179fdc32006-05-11 22:35:28 +0100340 iounmap(mmio_base);
341
342 /* Free the MTD device structure */
Boris BREZILLON8cd65d1a2015-12-10 08:59:57 +0100343 kfree(this);
David Woodhouse179fdc32006-05-11 22:35:28 +0100344 }
345}
David Woodhousee0c7d762006-05-13 18:07:53 +0100346
David Woodhouse179fdc32006-05-11 22:35:28 +0100347module_exit(cs553x_cleanup);
348
349MODULE_LICENSE("GPL");
350MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
351MODULE_DESCRIPTION("NAND controller driver for AMD CS5535/CS5536 companion chip");