integrator-flash.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     drivers/mtd/maps/armflash.c: ARM Flash Layout/Partitioning
  3.   
  4.     Copyright (C) 2000 ARM Limited
  5.   
  6.    This program is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 2 of the License, or
  9.    (at your option) any later version.
  10.   
  11.    This program is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.   
  16.    You should have received a copy of the GNU General Public License
  17.    along with this program; if not, write to the Free Software
  18.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.   
  20.    This is access code for flashes using ARM's flash partitioning 
  21.    standards.
  22.    $Id: integrator-flash.c,v 1.7 2001/11/01 20:55:47 rmk Exp $
  23. ======================================================================*/
  24. #include <linux/config.h>
  25. #include <linux/module.h>
  26. #include <linux/types.h>
  27. #include <linux/kernel.h>
  28. #include <linux/slab.h>
  29. #include <linux/ioport.h>
  30. #include <linux/init.h>
  31. #include <linux/mtd/mtd.h>
  32. #include <linux/mtd/map.h>
  33. #include <linux/mtd/partitions.h>
  34. #include <asm/hardware.h>
  35. #include <asm/io.h>
  36. #include <asm/system.h>
  37. extern int parse_afs_partitions(struct mtd_info *, struct mtd_partition **);
  38. // board specific stuff - sorry, it should be in arch/arm/mach-*.
  39. #ifdef CONFIG_ARCH_INTEGRATOR
  40. #define FLASH_BASE INTEGRATOR_FLASH_BASE
  41. #define FLASH_SIZE INTEGRATOR_FLASH_SIZE
  42. #define FLASH_PART_SIZE 0x400000
  43. #define SC_CTRLC (IO_ADDRESS(INTEGRATOR_SC_BASE) + INTEGRATOR_SC_CTRLC_OFFSET)
  44. #define SC_CTRLS (IO_ADDRESS(INTEGRATOR_SC_BASE) + INTEGRATOR_SC_CTRLS_OFFSET)
  45. #define EBI_CSR1 (IO_ADDRESS(INTEGRATOR_EBI_BASE) + INTEGRATOR_EBI_CSR1_OFFSET)
  46. #define EBI_LOCK (IO_ADDRESS(INTEGRATOR_EBI_BASE) + INTEGRATOR_EBI_LOCK_OFFSET)
  47. /*
  48.  * Initialise the flash access systems:
  49.  *  - Disable VPP
  50.  *  - Assert WP
  51.  *  - Set write enable bit in EBI reg
  52.  */
  53. static void armflash_flash_init(void)
  54. {
  55. unsigned int tmp;
  56. __raw_writel(INTEGRATOR_SC_CTRL_nFLVPPEN | INTEGRATOR_SC_CTRL_nFLWP, SC_CTRLC);
  57. tmp = __raw_readl(EBI_CSR1) | INTEGRATOR_EBI_WRITE_ENABLE;
  58. __raw_writel(tmp, EBI_CSR1);
  59. if (!(__raw_readl(EBI_CSR1) & INTEGRATOR_EBI_WRITE_ENABLE)) {
  60. __raw_writel(0xa05f, EBI_LOCK);
  61. __raw_writel(tmp, EBI_CSR1);
  62. __raw_writel(0, EBI_LOCK);
  63. }
  64. }
  65. /*
  66.  * Shutdown the flash access systems:
  67.  *  - Disable VPP
  68.  *  - Assert WP
  69.  *  - Clear write enable bit in EBI reg
  70.  */
  71. static void armflash_flash_exit(void)
  72. {
  73. unsigned int tmp;
  74. __raw_writel(INTEGRATOR_SC_CTRL_nFLVPPEN | INTEGRATOR_SC_CTRL_nFLWP, SC_CTRLC);
  75. /*
  76.  * Clear the write enable bit in system controller EBI register.
  77.  */
  78. tmp = __raw_readl(EBI_CSR1) & ~INTEGRATOR_EBI_WRITE_ENABLE;
  79. __raw_writel(tmp, EBI_CSR1);
  80. if (__raw_readl(EBI_CSR1) & INTEGRATOR_EBI_WRITE_ENABLE) {
  81. __raw_writel(0xa05f, EBI_LOCK);
  82. __raw_writel(tmp, EBI_CSR1);
  83. __raw_writel(0, EBI_LOCK);
  84. }
  85. }
  86. static void armflash_flash_wp(int on)
  87. {
  88. unsigned int reg;
  89. if (on)
  90. reg = SC_CTRLC;
  91. else
  92. reg = SC_CTRLS;
  93. __raw_writel(INTEGRATOR_SC_CTRL_nFLWP, reg);
  94. }
  95. static void armflash_set_vpp(struct map_info *map, int on)
  96. {
  97. unsigned int reg;
  98. if (on)
  99. reg = SC_CTRLS;
  100. else
  101. reg = SC_CTRLC;
  102. __raw_writel(INTEGRATOR_SC_CTRL_nFLVPPEN, reg);
  103. }
  104. #endif
  105. #ifdef CONFIG_ARCH_P720T
  106. #define FLASH_BASE (0x04000000)
  107. #define FLASH_SIZE (64*1024*1024)
  108. #define FLASH_PART_SIZE  (4*1024*1024)
  109. #define FLASH_BLOCK_SIZE (128*1024)
  110. static void armflash_flash_init(void)
  111. {
  112. }
  113. static void armflash_flash_exit(void)
  114. {
  115. }
  116. static void armflash_flash_wp(int on)
  117. {
  118. }
  119. static void armflash_set_vpp(struct map_info *map, int on)
  120. {
  121. }
  122. #endif
  123. static __u8 armflash_read8(struct map_info *map, unsigned long ofs)
  124. {
  125. return readb(ofs + map->map_priv_2);
  126. }
  127. static __u16 armflash_read16(struct map_info *map, unsigned long ofs)
  128. {
  129. return readw(ofs + map->map_priv_2);
  130. }
  131. static __u32 armflash_read32(struct map_info *map, unsigned long ofs)
  132. {
  133. return readl(ofs + map->map_priv_2);
  134. }
  135. static void armflash_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
  136. {
  137. memcpy(to, (void *) (from + map->map_priv_2), len);
  138. }
  139. static void armflash_write8(struct map_info *map, __u8 d, unsigned long adr)
  140. {
  141. writeb(d, adr + map->map_priv_2);
  142. }
  143. static void armflash_write16(struct map_info *map, __u16 d, unsigned long adr)
  144. {
  145. writew(d, adr + map->map_priv_2);
  146. }
  147. static void armflash_write32(struct map_info *map, __u32 d, unsigned long adr)
  148. {
  149. writel(d, adr + map->map_priv_2);
  150. }
  151. static void armflash_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
  152. {
  153. memcpy((void *) (to + map->map_priv_2), from, len);
  154. }
  155. static struct map_info armflash_map =
  156. {
  157. name: "AFS",
  158. read8: armflash_read8,
  159. read16: armflash_read16,
  160. read32: armflash_read32,
  161. copy_from: armflash_copy_from,
  162. write8: armflash_write8,
  163. write16: armflash_write16,
  164. write32: armflash_write32,
  165. copy_to: armflash_copy_to,
  166. set_vpp: armflash_set_vpp,
  167. };
  168. static struct mtd_info *mtd;
  169. static struct mtd_partition *parts;
  170. static int __init armflash_cfi_init(void *base, u_int size)
  171. {
  172. int ret;
  173. armflash_flash_init();
  174. armflash_flash_wp(1);
  175. /*
  176.  * look for CFI based flash parts fitted to this board
  177.  */
  178. armflash_map.size       = size;
  179. armflash_map.buswidth   = 4;
  180. armflash_map.map_priv_2 = (unsigned long) base;
  181. /*
  182.  * Also, the CFI layer automatically works out what size
  183.  * of chips we have, and does the necessary identification
  184.  * for us automatically.
  185.  */
  186. mtd = do_map_probe("cfi_probe", &armflash_map);
  187. if (!mtd)
  188. return -ENXIO;
  189. mtd->module = THIS_MODULE;
  190. ret = parse_afs_partitions(mtd, &parts);
  191. if (ret > 0) {
  192. ret = add_mtd_partitions(mtd, parts, ret);
  193. if (ret)
  194. printk(KERN_ERR "mtd partition registration "
  195. "failed: %dn", ret);
  196. }
  197. /*
  198.  * If we got an error, free all resources.
  199.  */
  200. if (ret < 0) {
  201. del_mtd_partitions(mtd);
  202. map_destroy(mtd);
  203. }
  204. return ret;
  205. }
  206. static void armflash_cfi_exit(void)
  207. {
  208. if (mtd) {
  209. del_mtd_partitions(mtd);
  210. map_destroy(mtd);
  211. }
  212. if (parts)
  213. kfree(parts);
  214. }
  215. static int __init armflash_init(void)
  216. {
  217. int err = -EBUSY;
  218. void *base;
  219. if (request_mem_region(FLASH_BASE, FLASH_SIZE, "flash") == NULL)
  220. goto out;
  221. base = ioremap(FLASH_BASE, FLASH_SIZE);
  222. err = -ENOMEM;
  223. if (base == NULL)
  224. goto release;
  225. err = armflash_cfi_init(base, FLASH_SIZE);
  226. if (err) {
  227. iounmap(base);
  228. release:
  229. release_mem_region(FLASH_BASE, FLASH_SIZE);
  230. }
  231. out:
  232. return err;
  233. }
  234. static void __exit armflash_exit(void)
  235. {
  236. armflash_cfi_exit();
  237. iounmap((void *)armflash_map.map_priv_2);
  238. release_mem_region(FLASH_BASE, FLASH_SIZE);
  239. armflash_flash_exit();
  240. }
  241. module_init(armflash_init);
  242. module_exit(armflash_exit);
  243. MODULE_AUTHOR("ARM Ltd");
  244. MODULE_DESCRIPTION("ARM Integrator CFI map driver");
  245. MODULE_LICENSE("GPL");