cs553x_nand.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. /*
  2. * drivers/mtd/nand/cs553x_nand.c
  3. *
  4. * (C) 2005, 2006 Red Hat Inc.
  5. *
  6. * Author: David Woodhouse <dwmw2@infradead.org>
  7. * Tom Sylla <tom.sylla@amd.com>
  8. *
  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. * mtd-id for command line partitioning is cs553x_nand_cs[0-3]
  17. * where 0-3 reflects the chip select for NAND.
  18. *
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/slab.h>
  22. #include <linux/init.h>
  23. #include <linux/module.h>
  24. #include <linux/delay.h>
  25. #include <linux/mtd/mtd.h>
  26. #include <linux/mtd/nand.h>
  27. #include <linux/mtd/nand_ecc.h>
  28. #include <linux/mtd/partitions.h>
  29. #include <asm/msr.h>
  30. #include <asm/io.h>
  31. #define NR_CS553X_CONTROLLERS 4
  32. #define MSR_DIVIL_GLD_CAP 0x51400000 /* DIVIL capabilitiies */
  33. #define CAP_CS5535 0x2df000ULL
  34. #define CAP_CS5536 0x5df500ULL
  35. /* NAND Timing MSRs */
  36. #define MSR_NANDF_DATA 0x5140001b /* NAND Flash Data Timing MSR */
  37. #define MSR_NANDF_CTL 0x5140001c /* NAND Flash Control Timing */
  38. #define MSR_NANDF_RSVD 0x5140001d /* Reserved */
  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. /* Pin function selection MSR (IDE vs. flash on the IDE pins) */
  51. #define MSR_DIVIL_BALL_OPTS 0x51400015
  52. #define PIN_OPT_IDE (1<<0) /* 0 for flash, 1 for IDE */
  53. /* Registers within the NAND flash controller BAR -- memory mapped */
  54. #define MM_NAND_DATA 0x00 /* 0 to 0x7ff, in fact */
  55. #define MM_NAND_CTL 0x800 /* Any even address 0x800-0x80e */
  56. #define MM_NAND_IO 0x801 /* Any odd address 0x801-0x80f */
  57. #define MM_NAND_STS 0x810
  58. #define MM_NAND_ECC_LSB 0x811
  59. #define MM_NAND_ECC_MSB 0x812
  60. #define MM_NAND_ECC_COL 0x813
  61. #define MM_NAND_LAC 0x814
  62. #define MM_NAND_ECC_CTL 0x815
  63. /* Registers within the NAND flash controller BAR -- I/O mapped */
  64. #define IO_NAND_DATA 0x00 /* 0 to 3, in fact */
  65. #define IO_NAND_CTL 0x04
  66. #define IO_NAND_IO 0x05
  67. #define IO_NAND_STS 0x06
  68. #define IO_NAND_ECC_CTL 0x08
  69. #define IO_NAND_ECC_LSB 0x09
  70. #define IO_NAND_ECC_MSB 0x0a
  71. #define IO_NAND_ECC_COL 0x0b
  72. #define IO_NAND_LAC 0x0c
  73. #define CS_NAND_CTL_DIST_EN (1<<4) /* Enable NAND Distract interrupt */
  74. #define CS_NAND_CTL_RDY_INT_MASK (1<<3) /* Enable RDY/BUSY# interrupt */
  75. #define CS_NAND_CTL_ALE (1<<2)
  76. #define CS_NAND_CTL_CLE (1<<1)
  77. #define CS_NAND_CTL_CE (1<<0) /* Keep low; 1 to reset */
  78. #define CS_NAND_STS_FLASH_RDY (1<<3)
  79. #define CS_NAND_CTLR_BUSY (1<<2)
  80. #define CS_NAND_CMD_COMP (1<<1)
  81. #define CS_NAND_DIST_ST (1<<0)
  82. #define CS_NAND_ECC_PARITY (1<<2)
  83. #define CS_NAND_ECC_CLRECC (1<<1)
  84. #define CS_NAND_ECC_ENECC (1<<0)
  85. static void cs553x_read_buf(struct mtd_info *mtd, u_char *buf, int len)
  86. {
  87. struct nand_chip *this = mtd->priv;
  88. while (unlikely(len > 0x800)) {
  89. memcpy_fromio(buf, this->IO_ADDR_R, 0x800);
  90. buf += 0x800;
  91. len -= 0x800;
  92. }
  93. memcpy_fromio(buf, this->IO_ADDR_R, len);
  94. }
  95. static void cs553x_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
  96. {
  97. struct nand_chip *this = mtd->priv;
  98. while (unlikely(len > 0x800)) {
  99. memcpy_toio(this->IO_ADDR_R, buf, 0x800);
  100. buf += 0x800;
  101. len -= 0x800;
  102. }
  103. memcpy_toio(this->IO_ADDR_R, buf, len);
  104. }
  105. static unsigned char cs553x_read_byte(struct mtd_info *mtd)
  106. {
  107. struct nand_chip *this = mtd->priv;
  108. return readb(this->IO_ADDR_R);
  109. }
  110. static void cs553x_write_byte(struct mtd_info *mtd, u_char byte)
  111. {
  112. struct nand_chip *this = mtd->priv;
  113. int i = 100000;
  114. while (i && readb(this->IO_ADDR_R + MM_NAND_STS) & CS_NAND_CTLR_BUSY) {
  115. udelay(1);
  116. i--;
  117. }
  118. writeb(byte, this->IO_ADDR_W + 0x801);
  119. }
  120. static void cs553x_hwcontrol(struct mtd_info *mtd, int cmd,
  121. unsigned int ctrl)
  122. {
  123. struct nand_chip *this = mtd->priv;
  124. void __iomem *mmio_base = this->IO_ADDR_R;
  125. if (ctrl & NAND_CTRL_CHANGE) {
  126. unsigned char ctl = (ctrl & ~NAND_CTRL_CHANGE ) ^ 0x01;
  127. writeb(ctl, mmio_base + MM_NAND_CTL);
  128. }
  129. if (cmd != NAND_CMD_NONE)
  130. cs553x_write_byte(mtd, cmd);
  131. }
  132. static int cs553x_device_ready(struct mtd_info *mtd)
  133. {
  134. struct nand_chip *this = mtd->priv;
  135. void __iomem *mmio_base = this->IO_ADDR_R;
  136. unsigned char foo = readb(mmio_base + MM_NAND_STS);
  137. return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY);
  138. }
  139. static void cs_enable_hwecc(struct mtd_info *mtd, int mode)
  140. {
  141. struct nand_chip *this = mtd->priv;
  142. void __iomem *mmio_base = this->IO_ADDR_R;
  143. writeb(0x07, mmio_base + MM_NAND_ECC_CTL);
  144. }
  145. static int cs_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code)
  146. {
  147. uint32_t ecc;
  148. struct nand_chip *this = mtd->priv;
  149. void __iomem *mmio_base = this->IO_ADDR_R;
  150. ecc = readl(mmio_base + MM_NAND_STS);
  151. ecc_code[1] = ecc >> 8;
  152. ecc_code[0] = ecc >> 16;
  153. ecc_code[2] = ecc >> 24;
  154. return 0;
  155. }
  156. static struct mtd_info *cs553x_mtd[4];
  157. static int __init cs553x_init_one(int cs, int mmio, unsigned long adr)
  158. {
  159. int err = 0;
  160. struct nand_chip *this;
  161. struct mtd_info *new_mtd;
  162. printk(KERN_NOTICE "Probing CS553x NAND controller CS#%d at %sIO 0x%08lx\n", cs, mmio?"MM":"P", adr);
  163. if (!mmio) {
  164. printk(KERN_NOTICE "PIO mode not yet implemented for CS553X NAND controller\n");
  165. return -ENXIO;
  166. }
  167. /* Allocate memory for MTD device structure and private data */
  168. new_mtd = kmalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip), GFP_KERNEL);
  169. if (!new_mtd) {
  170. printk(KERN_WARNING "Unable to allocate CS553X NAND MTD device structure.\n");
  171. err = -ENOMEM;
  172. goto out;
  173. }
  174. /* Get pointer to private data */
  175. this = (struct nand_chip *)(&new_mtd[1]);
  176. /* Initialize structures */
  177. memset(new_mtd, 0, sizeof(struct mtd_info));
  178. memset(this, 0, sizeof(struct nand_chip));
  179. /* Link the private data with the MTD structure */
  180. new_mtd->priv = this;
  181. new_mtd->owner = THIS_MODULE;
  182. /* map physical address */
  183. this->IO_ADDR_R = this->IO_ADDR_W = ioremap(adr, 4096);
  184. if (!this->IO_ADDR_R) {
  185. printk(KERN_WARNING "ioremap cs553x NAND @0x%08lx failed\n", adr);
  186. err = -EIO;
  187. goto out_mtd;
  188. }
  189. this->cmd_ctrl = cs553x_hwcontrol;
  190. this->dev_ready = cs553x_device_ready;
  191. this->read_byte = cs553x_read_byte;
  192. this->read_buf = cs553x_read_buf;
  193. this->write_buf = cs553x_write_buf;
  194. this->chip_delay = 0;
  195. this->ecc.mode = NAND_ECC_HW;
  196. this->ecc.size = 256;
  197. this->ecc.bytes = 3;
  198. this->ecc.hwctl = cs_enable_hwecc;
  199. this->ecc.calculate = cs_calculate_ecc;
  200. this->ecc.correct = nand_correct_data;
  201. /* Enable the following for a flash based bad block table */
  202. this->options = NAND_USE_FLASH_BBT | NAND_NO_AUTOINCR;
  203. /* Scan to find existance of the device */
  204. if (nand_scan(new_mtd, 1)) {
  205. err = -ENXIO;
  206. goto out_ior;
  207. }
  208. new_mtd->name = kasprintf(GFP_KERNEL, "cs553x_nand_cs%d", cs);
  209. cs553x_mtd[cs] = new_mtd;
  210. goto out;
  211. out_ior:
  212. iounmap(this->IO_ADDR_R);
  213. out_mtd:
  214. kfree(new_mtd);
  215. out:
  216. return err;
  217. }
  218. static int is_geode(void)
  219. {
  220. /* These are the CPUs which will have a CS553[56] companion chip */
  221. if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
  222. boot_cpu_data.x86 == 5 &&
  223. boot_cpu_data.x86_model == 10)
  224. return 1; /* Geode LX */
  225. if ((boot_cpu_data.x86_vendor == X86_VENDOR_NSC ||
  226. boot_cpu_data.x86_vendor == X86_VENDOR_CYRIX) &&
  227. boot_cpu_data.x86 == 5 &&
  228. boot_cpu_data.x86_model == 5)
  229. return 1; /* Geode GX (née GX2) */
  230. return 0;
  231. }
  232. #ifdef CONFIG_MTD_PARTITIONS
  233. static const char *part_probes[] = { "cmdlinepart", NULL };
  234. #endif
  235. static int __init cs553x_init(void)
  236. {
  237. int err = -ENXIO;
  238. int i;
  239. uint64_t val;
  240. #ifdef CONFIG_MTD_PARTITIONS
  241. int mtd_parts_nb = 0;
  242. struct mtd_partition *mtd_parts = NULL;
  243. #endif
  244. /* If the CPU isn't a Geode GX or LX, abort */
  245. if (!is_geode())
  246. return -ENXIO;
  247. /* If it doesn't have the CS553[56], abort */
  248. rdmsrl(MSR_DIVIL_GLD_CAP, val);
  249. val &= ~0xFFULL;
  250. if (val != CAP_CS5535 && val != CAP_CS5536)
  251. return -ENXIO;
  252. /* If it doesn't have the NAND controller enabled, abort */
  253. rdmsrl(MSR_DIVIL_BALL_OPTS, val);
  254. if (val & PIN_OPT_IDE) {
  255. printk(KERN_INFO "CS553x NAND controller: Flash I/O not enabled in MSR_DIVIL_BALL_OPTS.\n");
  256. return -ENXIO;
  257. }
  258. for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
  259. rdmsrl(MSR_DIVIL_LBAR_FLSH0 + i, val);
  260. if ((val & (FLSH_LBAR_EN|FLSH_NOR_NAND)) == (FLSH_LBAR_EN|FLSH_NOR_NAND))
  261. err = cs553x_init_one(i, !!(val & FLSH_MEM_IO), val & 0xFFFFFFFF);
  262. }
  263. /* Register all devices together here. This means we can easily hack it to
  264. do mtdconcat etc. if we want to. */
  265. for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
  266. if (cs553x_mtd[i]) {
  267. /* If any devices registered, return success. Else the last error. */
  268. #ifdef CONFIG_MTD_PARTITIONS
  269. mtd_parts_nb = parse_mtd_partitions(cs553x_mtd[i], part_probes, &mtd_parts, 0);
  270. if (mtd_parts_nb > 0) {
  271. printk(KERN_NOTICE "Using command line partition definition\n");
  272. add_mtd_partitions(cs553x_mtd[i], mtd_parts, mtd_parts_nb);
  273. } else {
  274. add_mtd_device(cs553x_mtd[i]);
  275. }
  276. #else
  277. add_mtd_device(cs553x_mtd[i]);
  278. #endif
  279. err = 0;
  280. }
  281. }
  282. return err;
  283. }
  284. module_init(cs553x_init);
  285. static void __exit cs553x_cleanup(void)
  286. {
  287. int i;
  288. for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
  289. struct mtd_info *mtd = cs553x_mtd[i];
  290. struct nand_chip *this;
  291. void __iomem *mmio_base;
  292. if (!mtd)
  293. continue;
  294. this = cs553x_mtd[i]->priv;
  295. mmio_base = this->IO_ADDR_R;
  296. /* Release resources, unregister device */
  297. nand_release(cs553x_mtd[i]);
  298. kfree(cs553x_mtd[i]->name);
  299. cs553x_mtd[i] = NULL;
  300. /* unmap physical address */
  301. iounmap(mmio_base);
  302. /* Free the MTD device structure */
  303. kfree(mtd);
  304. }
  305. }
  306. module_exit(cs553x_cleanup);
  307. MODULE_LICENSE("GPL");
  308. MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
  309. MODULE_DESCRIPTION("NAND controller driver for AMD CS5535/CS5536 companion chip");