cs553x_nand.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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. *
  17. */
  18. #include <linux/slab.h>
  19. #include <linux/init.h>
  20. #include <linux/module.h>
  21. #include <linux/delay.h>
  22. #include <linux/pci.h>
  23. #include <linux/mtd/mtd.h>
  24. #include <linux/mtd/nand.h>
  25. #include <linux/mtd/nand_ecc.h>
  26. #include <linux/mtd/partitions.h>
  27. #include <asm/msr.h>
  28. #include <asm/io.h>
  29. #define NR_CS553X_CONTROLLERS 4
  30. /* NAND Timing MSRs */
  31. #define MSR_NANDF_DATA 0x5140001b /* NAND Flash Data Timing MSR */
  32. #define MSR_NANDF_CTL 0x5140001c /* NAND Flash Control Timing */
  33. #define MSR_NANDF_RSVD 0x5140001d /* Reserved */
  34. /* NAND BAR MSRs */
  35. #define MSR_DIVIL_LBAR_FLSH0 0x51400010 /* Flash Chip Select 0 */
  36. #define MSR_DIVIL_LBAR_FLSH1 0x51400011 /* Flash Chip Select 1 */
  37. #define MSR_DIVIL_LBAR_FLSH2 0x51400012 /* Flash Chip Select 2 */
  38. #define MSR_DIVIL_LBAR_FLSH3 0x51400013 /* Flash Chip Select 3 */
  39. /* Each made up of... */
  40. #define FLSH_LBAR_EN (1ULL<<32)
  41. #define FLSH_NOR_NAND (1ULL<<33) /* 1 for NAND */
  42. #define FLSH_MEM_IO (1ULL<<34) /* 1 for MMIO */
  43. /* I/O BARs have BASE_ADDR in bits 15:4, IO_MASK in 47:36 */
  44. /* MMIO BARs have BASE_ADDR in bits 31:12, MEM_MASK in 63:44 */
  45. /* Pin function selection MSR (IDE vs. flash on the IDE pins) */
  46. #define MSR_DIVIL_BALL_OPTS 0x51400015
  47. #define PIN_OPT_IDE (1<<0) /* 0 for flash, 1 for IDE */
  48. /* Registers within the NAND flash controller BAR -- memory mapped */
  49. #define MM_NAND_DATA 0x00 /* 0 to 0x7ff, in fact */
  50. #define MM_NAND_CTL 0x800 /* Any even address 0x800-0x80e */
  51. #define MM_NAND_IO 0x801 /* Any odd address 0x801-0x80f */
  52. #define MM_NAND_STS 0x810
  53. #define MM_NAND_ECC_LSB 0x811
  54. #define MM_NAND_ECC_MSB 0x812
  55. #define MM_NAND_ECC_COL 0x813
  56. #define MM_NAND_LAC 0x814
  57. #define MM_NAND_ECC_CTL 0x815
  58. /* Registers within the NAND flash controller BAR -- I/O mapped */
  59. #define IO_NAND_DATA 0x00 /* 0 to 3, in fact */
  60. #define IO_NAND_CTL 0x04
  61. #define IO_NAND_IO 0x05
  62. #define IO_NAND_STS 0x06
  63. #define IO_NAND_ECC_CTL 0x08
  64. #define IO_NAND_ECC_LSB 0x09
  65. #define IO_NAND_ECC_MSB 0x0a
  66. #define IO_NAND_ECC_COL 0x0b
  67. #define IO_NAND_LAC 0x0c
  68. #define CS_NAND_CTL_DIST_EN (1<<4) /* Enable NAND Distract interrupt */
  69. #define CS_NAND_CTL_RDY_INT_MASK (1<<3) /* Enable RDY/BUSY# interrupt */
  70. #define CS_NAND_CTL_ALE (1<<2)
  71. #define CS_NAND_CTL_CLE (1<<1)
  72. #define CS_NAND_CTL_CE (1<<0) /* Keep low; 1 to reset */
  73. #define CS_NAND_STS_FLASH_RDY (1<<3)
  74. #define CS_NAND_CTLR_BUSY (1<<2)
  75. #define CS_NAND_CMD_COMP (1<<1)
  76. #define CS_NAND_DIST_ST (1<<0)
  77. #define CS_NAND_ECC_PARITY (1<<2)
  78. #define CS_NAND_ECC_CLRECC (1<<1)
  79. #define CS_NAND_ECC_ENECC (1<<0)
  80. static void cs553x_read_buf(struct mtd_info *mtd, u_char *buf, int len)
  81. {
  82. struct nand_chip *this = mtd->priv;
  83. while (unlikely(len > 0x800)) {
  84. memcpy_fromio(buf, this->IO_ADDR_R, 0x800);
  85. buf += 0x800;
  86. len -= 0x800;
  87. }
  88. memcpy_fromio(buf, this->IO_ADDR_R, len);
  89. }
  90. static void cs553x_write_buf(struct mtd_info *mtd, const u_char *buf, int len)
  91. {
  92. struct nand_chip *this = mtd->priv;
  93. while (unlikely(len > 0x800)) {
  94. memcpy_toio(this->IO_ADDR_R, buf, 0x800);
  95. buf += 0x800;
  96. len -= 0x800;
  97. }
  98. memcpy_toio(this->IO_ADDR_R, buf, len);
  99. }
  100. static unsigned char cs553x_read_byte(struct mtd_info *mtd)
  101. {
  102. struct nand_chip *this = mtd->priv;
  103. return readb(this->IO_ADDR_R);
  104. }
  105. static void cs553x_write_byte(struct mtd_info *mtd, u_char byte)
  106. {
  107. struct nand_chip *this = mtd->priv;
  108. int i = 100000;
  109. while (i && readb(this->IO_ADDR_R + MM_NAND_STS) & CS_NAND_CTLR_BUSY) {
  110. udelay(1);
  111. i--;
  112. }
  113. writeb(byte, this->IO_ADDR_W + 0x801);
  114. }
  115. static void cs553x_hwcontrol(struct mtd_info *mtd, int cmd,
  116. unsigned int ctrl)
  117. {
  118. struct nand_chip *this = mtd->priv;
  119. void __iomem *mmio_base = this->IO_ADDR_R;
  120. if (ctrl & NAND_CTRL_CHANGE) {
  121. unsigned char ctl = (ctrl & ~NAND_CTRL_CHANGE ) ^ 0x01;
  122. writeb(ctl, mmio_base + MM_NAND_CTL);
  123. }
  124. if (cmd != NAND_CMD_NONE)
  125. cs553x_write_byte(mtd, cmd);
  126. }
  127. static int cs553x_device_ready(struct mtd_info *mtd)
  128. {
  129. struct nand_chip *this = mtd->priv;
  130. void __iomem *mmio_base = this->IO_ADDR_R;
  131. unsigned char foo = readb(mmio_base + MM_NAND_STS);
  132. return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY);
  133. }
  134. static void cs_enable_hwecc(struct mtd_info *mtd, int mode)
  135. {
  136. struct nand_chip *this = mtd->priv;
  137. void __iomem *mmio_base = this->IO_ADDR_R;
  138. writeb(0x07, mmio_base + MM_NAND_ECC_CTL);
  139. }
  140. static int cs_calculate_ecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code)
  141. {
  142. uint32_t ecc;
  143. struct nand_chip *this = mtd->priv;
  144. void __iomem *mmio_base = this->IO_ADDR_R;
  145. ecc = readl(mmio_base + MM_NAND_STS);
  146. ecc_code[1] = ecc >> 8;
  147. ecc_code[0] = ecc >> 16;
  148. ecc_code[2] = ecc >> 24;
  149. return 0;
  150. }
  151. static struct mtd_info *cs553x_mtd[4];
  152. static int __init cs553x_init_one(int cs, int mmio, unsigned long adr)
  153. {
  154. int err = 0;
  155. struct nand_chip *this;
  156. struct mtd_info *new_mtd;
  157. printk(KERN_NOTICE "Probing CS553x NAND controller CS#%d at %sIO 0x%08lx\n", cs, mmio?"MM":"P", adr);
  158. if (!mmio) {
  159. printk(KERN_NOTICE "PIO mode not yet implemented for CS553X NAND controller\n");
  160. return -ENXIO;
  161. }
  162. /* Allocate memory for MTD device structure and private data */
  163. new_mtd = kmalloc(sizeof(struct mtd_info) + sizeof(struct nand_chip), GFP_KERNEL);
  164. if (!new_mtd) {
  165. printk(KERN_WARNING "Unable to allocate CS553X NAND MTD device structure.\n");
  166. err = -ENOMEM;
  167. goto out;
  168. }
  169. /* Get pointer to private data */
  170. this = (struct nand_chip *)(&new_mtd[1]);
  171. /* Initialize structures */
  172. memset(new_mtd, 0, sizeof(struct mtd_info));
  173. memset(this, 0, sizeof(struct nand_chip));
  174. /* Link the private data with the MTD structure */
  175. new_mtd->priv = this;
  176. new_mtd->owner = THIS_MODULE;
  177. /* map physical address */
  178. this->IO_ADDR_R = this->IO_ADDR_W = ioremap(adr, 4096);
  179. if (!this->IO_ADDR_R) {
  180. printk(KERN_WARNING "ioremap cs553x NAND @0x%08lx failed\n", adr);
  181. err = -EIO;
  182. goto out_mtd;
  183. }
  184. this->cmd_ctrl = cs553x_hwcontrol;
  185. this->dev_ready = cs553x_device_ready;
  186. this->read_byte = cs553x_read_byte;
  187. this->write_byte = cs553x_write_byte;
  188. this->read_buf = cs553x_read_buf;
  189. this->write_buf = cs553x_write_buf;
  190. this->chip_delay = 0;
  191. this->ecc.mode = NAND_ECC_HW;
  192. this->ecc.size = 256;
  193. this->ecc.bytes = 3;
  194. this->ecc.hwctl = cs_enable_hwecc;
  195. this->ecc.calculate = cs_calculate_ecc;
  196. this->ecc.correct = nand_correct_data;
  197. /* Enable the following for a flash based bad block table */
  198. this->options = NAND_USE_FLASH_BBT | NAND_NO_AUTOINCR;
  199. /* Scan to find existance of the device */
  200. if (nand_scan(new_mtd, 1)) {
  201. err = -ENXIO;
  202. goto out_ior;
  203. }
  204. cs553x_mtd[cs] = new_mtd;
  205. goto out;
  206. out_ior:
  207. iounmap((void *)this->IO_ADDR_R);
  208. out_mtd:
  209. kfree(new_mtd);
  210. out:
  211. return err;
  212. }
  213. static int __init cs553x_init(void)
  214. {
  215. int err = -ENXIO;
  216. int i;
  217. uint64_t val;
  218. /* Check whether we actually have a CS5535 or CS5536 */
  219. if (!pci_find_device(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA, NULL) &&
  220. !pci_find_device(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_ISA, NULL))
  221. return -ENXIO;
  222. rdmsrl(MSR_DIVIL_BALL_OPTS, val);
  223. if (val & 1) {
  224. printk(KERN_INFO "CS553x NAND controller: Flash I/O not enabled in MSR_DIVIL_BALL_OPTS.\n");
  225. return -ENXIO;
  226. }
  227. for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
  228. rdmsrl(MSR_DIVIL_LBAR_FLSH0 + i, val);
  229. if ((val & (FLSH_LBAR_EN|FLSH_NOR_NAND)) == (FLSH_LBAR_EN|FLSH_NOR_NAND))
  230. err = cs553x_init_one(i, !!(val & FLSH_MEM_IO), val & 0xFFFFFFFF);
  231. }
  232. /* Register all devices together here. This means we can easily hack it to
  233. do mtdconcat etc. if we want to. */
  234. for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
  235. if (cs553x_mtd[i]) {
  236. add_mtd_device(cs553x_mtd[i]);
  237. /* If any devices registered, return success. Else the last error. */
  238. err = 0;
  239. }
  240. }
  241. return err;
  242. }
  243. module_init(cs553x_init);
  244. static void __exit cs553x_cleanup(void)
  245. {
  246. int i;
  247. for (i = 0; i < NR_CS553X_CONTROLLERS; i++) {
  248. struct mtd_info *mtd = cs553x_mtd[i];
  249. struct nand_chip *this;
  250. void __iomem *mmio_base;
  251. if (!mtd)
  252. break;
  253. this = cs553x_mtd[i]->priv;
  254. mmio_base = this->IO_ADDR_R;
  255. /* Release resources, unregister device */
  256. nand_release(cs553x_mtd[i]);
  257. cs553x_mtd[i] = NULL;
  258. /* unmap physical adress */
  259. iounmap(mmio_base);
  260. /* Free the MTD device structure */
  261. kfree(mtd);
  262. }
  263. }
  264. module_exit(cs553x_cleanup);
  265. MODULE_LICENSE("GPL");
  266. MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
  267. MODULE_DESCRIPTION("NAND controller driver for AMD CS5535/CS5536 companion chip");