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

嵌入式Linux

开发平台:

Unix_Linux

  1. // $Id: vmax301.c,v 1.24 2001/10/02 15:05:14 dwmw2 Exp $
  2. /* ######################################################################
  3.    Tempustech VMAX SBC301 MTD Driver.
  4.   
  5.    The VMAx 301 is a SBC based on . It
  6.    comes with three builtin AMD 29F016B flash chips and a socket for SRAM or
  7.    more flash. Each unit has it's own 8k mapping into a settable region 
  8.    (0xD8000). There are two 8k mappings for each MTD, the first is always set
  9.    to the lower 8k of the device the second is paged. Writing a 16 bit page
  10.    value to anywhere in the first 8k will cause the second 8k to page around.
  11.    To boot the device a bios extension must be installed into the first 8k 
  12.    of flash that is smart enough to copy itself down, page in the rest of 
  13.    itself and begin executing.
  14.    
  15.    ##################################################################### */
  16. #include <linux/module.h>
  17. #include <linux/slab.h>
  18. #include <linux/ioport.h>
  19. #include <linux/init.h>
  20. #include <linux/spinlock.h>
  21. #include <asm/io.h>
  22. #include <linux/mtd/map.h>
  23. #define WINDOW_START 0xd8000
  24. #define WINDOW_LENGTH 0x2000
  25. #define WINDOW_SHIFT 25
  26. #define WINDOW_MASK 0x1FFF
  27. /* Actually we could use two spinlocks, but we'd have to have
  28.    more private space in the struct map_info. We lose a little
  29.    performance like this, but we'd probably lose more by having
  30.    the extra indirection from having one of the map->map_priv 
  31.    fields pointing to yet another private struct.
  32. */
  33. static spinlock_t vmax301_spin = SPIN_LOCK_UNLOCKED;
  34. static void __vmax301_page(struct map_info *map, unsigned long page)
  35. {
  36. writew(page, map->map_priv_2 - WINDOW_LENGTH);
  37. map->map_priv_1 = page;
  38. }
  39. static inline void vmax301_page(struct map_info *map,
  40.   unsigned long ofs)
  41. {
  42. unsigned long page = (ofs >> WINDOW_SHIFT);
  43. if (map->map_priv_1 != page)
  44. __vmax301_page(map, page);
  45. }
  46. static __u8 vmax301_read8(struct map_info *map, unsigned long ofs)
  47. {
  48. __u8 ret;
  49. spin_lock(&vmax301_spin);
  50. vmax301_page(map, ofs);
  51. ret = readb(map->map_priv_2 + (ofs & WINDOW_MASK));
  52. spin_unlock(&vmax301_spin);
  53. return ret;
  54. }
  55. static __u16 vmax301_read16(struct map_info *map, unsigned long ofs)
  56. {
  57. __u16 ret;
  58. spin_lock(&vmax301_spin);
  59. vmax301_page(map, ofs);
  60. ret = readw(map->map_priv_2 + (ofs & WINDOW_MASK));
  61. spin_unlock(&vmax301_spin);
  62. return ret;
  63. }
  64. static __u32 vmax301_read32(struct map_info *map, unsigned long ofs)
  65. {
  66. __u32 ret;
  67. spin_lock(&vmax301_spin);
  68. vmax301_page(map, ofs);
  69. ret =  readl(map->map_priv_2 + (ofs & WINDOW_MASK));
  70. spin_unlock(&vmax301_spin);
  71. return ret;
  72. }
  73. static void vmax301_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
  74. {
  75. while(len) {
  76. unsigned long thislen = len;
  77. if (len > (WINDOW_LENGTH - (from & WINDOW_MASK)))
  78. thislen = WINDOW_LENGTH-(from & WINDOW_MASK);
  79. spin_lock(&vmax301_spin);
  80. vmax301_page(map, from);
  81. memcpy_fromio(to, map->map_priv_2 + from, thislen);
  82. spin_unlock(&vmax301_spin);
  83. to += thislen;
  84. from += thislen;
  85. len -= thislen;
  86. }
  87. }
  88. static void vmax301_write8(struct map_info *map, __u8 d, unsigned long adr)
  89. {
  90. spin_lock(&vmax301_spin);
  91. vmax301_page(map, adr);
  92. writeb(d, map->map_priv_2 + (adr & WINDOW_MASK));
  93. spin_unlock(&vmax301_spin);
  94. }
  95. static void vmax301_write16(struct map_info *map, __u16 d, unsigned long adr)
  96. {
  97. spin_lock(&vmax301_spin);
  98. vmax301_page(map, adr);
  99. writew(d, map->map_priv_2 + (adr & WINDOW_MASK));
  100. spin_unlock(&vmax301_spin);
  101. }
  102. static void vmax301_write32(struct map_info *map, __u32 d, unsigned long adr)
  103. {
  104. spin_lock(&vmax301_spin);
  105. vmax301_page(map, adr);
  106. writel(d, map->map_priv_2 + (adr & WINDOW_MASK));
  107. spin_unlock(&vmax301_spin);
  108. }
  109. static void vmax301_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
  110. {
  111. while(len) {
  112. unsigned long thislen = len;
  113. if (len > (WINDOW_LENGTH - (to & WINDOW_MASK)))
  114. thislen = WINDOW_LENGTH-(to & WINDOW_MASK);
  115. spin_lock(&vmax301_spin);
  116. vmax301_page(map, to);
  117. memcpy_toio(map->map_priv_2 + to, from, thislen);
  118. spin_unlock(&vmax301_spin);
  119. to += thislen;
  120. from += thislen;
  121. len -= thislen;
  122. }
  123. }
  124. static struct map_info vmax_map[2] = {
  125. {
  126. name: "VMAX301 Internal Flash",
  127. size: 3*2*1024*1024,
  128. buswidth: 1,
  129. read8: vmax301_read8,
  130. read16: vmax301_read16,
  131. read32: vmax301_read32,
  132. copy_from: vmax301_copy_from,
  133. write8: vmax301_write8,
  134. write16: vmax301_write16,
  135. write32: vmax301_write32,
  136. copy_to: vmax301_copy_to,
  137. map_priv_1: WINDOW_START + WINDOW_LENGTH,
  138. map_priv_2: 0xFFFFFFFF
  139. },
  140. {
  141. name: "VMAX301 Socket",
  142. size: 0,
  143. buswidth: 1,
  144. read8: vmax301_read8,
  145. read16: vmax301_read16,
  146. read32: vmax301_read32,
  147. copy_from: vmax301_copy_from,
  148. write8: vmax301_write8,
  149. write16: vmax301_write16,
  150. write32: vmax301_write32,
  151. copy_to: vmax301_copy_to,
  152. map_priv_1: WINDOW_START + (3*WINDOW_LENGTH),
  153. map_priv_2: 0xFFFFFFFF
  154. }
  155. };
  156. static struct mtd_info *vmax_mtd[2] = {NULL, NULL};
  157. static void __exit cleanup_vmax301(void)
  158. {
  159. int i;
  160. for (i=0; i<2; i++) {
  161. if (vmax_mtd[i]) {
  162. del_mtd_device(vmax_mtd[i]);
  163. map_destroy(vmax_mtd[i]);
  164. }
  165. }
  166. iounmap((void *)vmax_map[0].map_priv_1 - WINDOW_START);
  167. }
  168. int __init init_vmax301(void)
  169. {
  170. int i;
  171. unsigned long iomapadr;
  172. // Print out our little header..
  173. printk("Tempustech VMAX 301 MEM:0x%x-0x%xn",WINDOW_START,
  174.        WINDOW_START+4*WINDOW_LENGTH);
  175. iomapadr = (unsigned long)ioremap(WINDOW_START, WINDOW_LENGTH*4);
  176. if (!iomapadr) {
  177. printk("Failed to ioremap memory regionn");
  178. return -EIO;
  179. }
  180. /* Put the address in the map's private data area.
  181.    We store the actual MTD IO address rather than the 
  182.    address of the first half, because it's used more
  183.    often. 
  184. */
  185. vmax_map[0].map_priv_1 = iomapadr + WINDOW_START;
  186. vmax_map[1].map_priv_1 = iomapadr + (3*WINDOW_START);
  187. for (i=0; i<2; i++) {
  188. vmax_mtd[i] = do_map_probe("cfi_probe", &vmax_map[i]);
  189. if (!vmax_mtd[i])
  190. vmax_mtd[i] = do_map_probe("jedec", &vmax_map[i]);
  191. if (!vmax_mtd[i])
  192. vmax_mtd[i] = do_map_probe("map_ram", &vmax_map[i]);
  193. if (!vmax_mtd[i])
  194. vmax_mtd[i] = do_map_probe("map_rom", &vmax_map[i]);
  195. if (vmax_mtd[i]) {
  196. vmax_mtd[i]->module = THIS_MODULE;
  197. add_mtd_device(vmax_mtd[i]);
  198. }
  199. }
  200. if (!vmax_mtd[1] && !vmax_mtd[2]) {
  201. iounmap((void *)iomapadr);
  202. return -ENXIO;
  203. }
  204. return 0;
  205. }
  206. module_init(init_vmax301);
  207. module_exit(cleanup_vmax301);
  208. MODULE_LICENSE("GPL");
  209. MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
  210. MODULE_DESCRIPTION("MTD map driver for Tempustech VMAX SBC301 board");