tqm8xxl.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Handle mapping of the flash memory access routines 
  3.  * on TQM8xxL based devices.
  4.  *
  5.  * $Id: tqm8xxl.c,v 1.3 2001/10/02 15:05:14 dwmw2 Exp $
  6.  *
  7.  * based on rpxlite.c
  8.  *
  9.  * Copyright(C) 2001 Kirk Lee <kirk@hpc.ee.ntu.edu.tw>
  10.  *
  11.  * This code is GPLed
  12.  * 
  13.  */
  14. /*
  15.  * According to TQM8xxL hardware manual, TQM8xxL series have
  16.  * following flash memory organisations:
  17.  * | capacity | | chip type | | bank0 | | bank1 |
  18.  *     2MiB    512Kx16   2MiB    0
  19.  *     4MiB    1Mx16   4MiB    0
  20.  *     8MiB    1Mx16   4MiB    4MiB
  21.  * Thus, we choose CONFIG_MTD_CFI_I2 & CONFIG_MTD_CFI_B4 at 
  22.  * kernel configuration.
  23.  */
  24. #include <linux/config.h>
  25. #include <linux/module.h>
  26. #include <linux/types.h>
  27. #include <linux/kernel.h>
  28. #include <asm/io.h>
  29. #include <linux/mtd/mtd.h>
  30. #include <linux/mtd/map.h>
  31. #include <linux/mtd/partitions.h>
  32. #define FLASH_ADDR 0x40000000
  33. #define FLASH_SIZE 0x00800000
  34. #define FLASH_BANK_MAX 4
  35. // trivial struct to describe partition information
  36. struct mtd_part_def
  37. {
  38. int nums;
  39. unsigned char *type;
  40. struct mtd_partition* mtd_part;
  41. };
  42. //static struct mtd_info *mymtd;
  43. static struct mtd_info* mtd_banks[FLASH_BANK_MAX];
  44. static struct map_info* map_banks[FLASH_BANK_MAX];
  45. static struct mtd_part_def part_banks[FLASH_BANK_MAX];
  46. static unsigned long num_banks;
  47. static unsigned long start_scan_addr;
  48. __u8 tqm8xxl_read8(struct map_info *map, unsigned long ofs)
  49. {
  50. return *((__u8 *)(map->map_priv_1 + ofs));
  51. }
  52. __u16 tqm8xxl_read16(struct map_info *map, unsigned long ofs)
  53. {
  54. return *((__u16 *)(map->map_priv_1 + ofs));
  55. }
  56. __u32 tqm8xxl_read32(struct map_info *map, unsigned long ofs)
  57. {
  58. return *((__u32 *)(map->map_priv_1 + ofs));
  59. }
  60. void tqm8xxl_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
  61. {
  62. memcpy_fromio(to, (void *)(map->map_priv_1 + from), len);
  63. }
  64. void tqm8xxl_write8(struct map_info *map, __u8 d, unsigned long adr)
  65. {
  66. *((__u8 *)(map->map_priv_1 + adr)) = d;
  67. }
  68. void tqm8xxl_write16(struct map_info *map, __u16 d, unsigned long adr)
  69. {
  70. *((__u16 *)( map->map_priv_1 + adr)) = d;
  71. }
  72. void tqm8xxl_write32(struct map_info *map, __u32 d, unsigned long adr)
  73. {
  74. *((__u32 *)(map->map_priv_1 + adr)) = d;
  75. }
  76. void tqm8xxl_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
  77. {
  78. memcpy_toio((void *)(map->map_priv_1 + to), from, len);
  79. }
  80. struct map_info tqm8xxl_map = {
  81. name: "TQM8xxL",
  82. //size: WINDOW_SIZE,
  83. buswidth: 4,
  84. read8: tqm8xxl_read8,
  85. read16: tqm8xxl_read16,
  86. read32: tqm8xxl_read32,
  87. copy_from: tqm8xxl_copy_from,
  88. write8: tqm8xxl_write8,
  89. write16: tqm8xxl_write16,
  90. write32: tqm8xxl_write32,
  91. copy_to: tqm8xxl_copy_to
  92. };
  93. /*
  94.  * Here are partition information for all known TQM8xxL series devices.
  95.  * See include/linux/mtd/partitions.h for definition of the mtd_partition
  96.  * structure.
  97.  * 
  98.  * The *_max_flash_size is the maximum possible mapped flash size which
  99.  * is not necessarily the actual flash size.  It must correspond to the 
  100.  * value specified in the mapping definition defined by the
  101.  * "struct map_desc *_io_desc" for the corresponding machine.
  102.  */
  103. #ifdef CONFIG_MTD_PARTITIONS
  104. /* Currently, TQM8xxL has upto 8MiB flash */
  105. static unsigned long tqm8xxl_max_flash_size = 0x00800000;
  106. /* partition definition for first flash bank
  107.  * also ref. to "driverscharflash_config.c" 
  108.  */
  109. static struct mtd_partition tqm8xxl_partitions[] = {
  110. {
  111.   name: "ppcboot",
  112.   offset: 0x00000000,
  113.   size: 0x00020000,           /* 128KB           */
  114.   mask_flags: MTD_WRITEABLE,  /* force read-only */
  115. },
  116. {
  117.   name: "kernel",             /* default kernel image */
  118.   offset: 0x00020000,
  119.   size: 0x000e0000,
  120.   mask_flags: MTD_WRITEABLE,  /* force read-only */
  121. },
  122. {
  123.   name: "user",
  124.   offset: 0x00100000,
  125.   size: 0x00100000,
  126. },
  127. {
  128.   name: "initrd",
  129.   offset: 0x00200000,
  130.   size: 0x00200000,
  131. }
  132. };
  133. /* partition definition for second flahs bank */
  134. static struct mtd_partition tqm8xxl_fs_partitions[] = {
  135. {
  136.   name: "cramfs",
  137.   offset: 0x00000000,
  138.   size: 0x00200000,
  139. },
  140. {
  141.   name: "jffs",
  142.   offset: 0x00200000,
  143.   size: 0x00200000,
  144.   //size: MTDPART_SIZ_FULL,
  145. }
  146. };
  147. #endif
  148. #define NB_OF(x)  (sizeof(x)/sizeof(x[0]))
  149. int __init init_tqm_mtd(void)
  150. {
  151. int idx = 0, ret = 0;
  152. unsigned long flash_addr, flash_size, mtd_size = 0;
  153. /* pointer to TQM8xxL board info data */
  154. bd_t *bd = (bd_t *)__res;
  155. flash_addr = bd->bi_flashstart;
  156. flash_size = bd->bi_flashsize;
  157. //request maximum flash size address spzce
  158. start_scan_addr = (unsigned long)ioremap(flash_addr, flash_size);
  159. if (!start_scan_addr) {
  160. //printk("%s:Failed to ioremap address:0x%xn", __FUNCTION__, FLASH_ADDR);
  161. printk("%s:Failed to ioremap address:0x%xn", __FUNCTION__, flash_addr);
  162. return -EIO;
  163. }
  164. for(idx = 0 ; idx < FLASH_BANK_MAX ; idx++)
  165. {
  166. if(mtd_size >= flash_size)
  167. break;
  168. printk("%s: chip probing count %dn", __FUNCTION__, idx);
  169. map_banks[idx] = (struct map_info *)kmalloc(sizeof(struct map_info), GFP_KERNEL);
  170. if(map_banks[idx] == NULL)
  171. {
  172. //return -ENOMEM;
  173. ret = -ENOMEM;
  174. goto error_mem;
  175. }
  176. memset((void *)map_banks[idx], 0, sizeof(struct map_info));
  177. map_banks[idx]->name = (char *)kmalloc(16, GFP_KERNEL);
  178. if(map_banks[idx]->name == NULL)
  179. {
  180. //return -ENOMEM;
  181. ret = -ENOMEM;
  182. goto error_mem;
  183. }
  184. memset((void *)map_banks[idx]->name, 0, 16);
  185. sprintf(map_banks[idx]->name, "TQM8xxL%d", idx);
  186. map_banks[idx]->buswidth = 4;
  187. map_banks[idx]->read8 = tqm8xxl_read8;
  188. map_banks[idx]->read16 = tqm8xxl_read16;
  189. map_banks[idx]->read32 = tqm8xxl_read32;
  190. map_banks[idx]->copy_from = tqm8xxl_copy_from;
  191. map_banks[idx]->write8 = tqm8xxl_write8;
  192. map_banks[idx]->write16 = tqm8xxl_write16;
  193. map_banks[idx]->write32 = tqm8xxl_write32;
  194. map_banks[idx]->copy_to = tqm8xxl_copy_to;
  195. map_banks[idx]->map_priv_1 = 
  196. start_scan_addr + ((idx > 0) ? 
  197. (mtd_banks[idx-1] ? mtd_banks[idx-1]->size : 0) : 0);
  198. //start to probe flash chips
  199. mtd_banks[idx] = do_map_probe("cfi_probe", map_banks[idx]);
  200. if(mtd_banks[idx])
  201. {
  202. mtd_banks[idx]->module = THIS_MODULE;
  203. mtd_size += mtd_banks[idx]->size;
  204. num_banks++;
  205. printk("%s: bank%d, name:%s, size:%dbytes n", __FUNCTION__, num_banks, 
  206. mtd_banks[idx]->name, mtd_banks[idx]->size);
  207. }
  208. }
  209. /* no supported flash chips found */
  210. if(!num_banks)
  211. {
  212. printk("TQM8xxL: No support flash chips found!n");
  213. ret = -ENXIO;
  214. goto error_mem;
  215. }
  216. #ifdef CONFIG_MTD_PARTITIONS
  217. /*
  218.  * Select Static partition definitions
  219.  */
  220. part_banks[0].mtd_part = tqm8xxl_partitions;
  221. part_banks[0].type = "Static image";
  222. part_banks[0].nums = NB_OF(tqm8xxl_partitions);
  223. part_banks[1].mtd_part = tqm8xxl_fs_partitions;
  224. part_banks[1].type = "Static file system";
  225. part_banks[1].nums = NB_OF(tqm8xxl_fs_partitions);
  226. for(idx = 0; idx < num_banks ; idx++)
  227. {
  228. if (part_banks[idx].nums == 0) {
  229. printk(KERN_NOTICE "TQM flash%d: no partition info available, registering whole flash at oncen", idx);
  230. add_mtd_device(mtd_banks[idx]);
  231. } else {
  232. printk(KERN_NOTICE "TQM flash%d: Using %s partition definitionn",
  233. idx, part_banks[idx].type);
  234. add_mtd_partitions(mtd_banks[idx], part_banks[idx].mtd_part, 
  235. part_banks[idx].nums);
  236. }
  237. }
  238. #else
  239. printk(KERN_NOTICE "TQM flash: registering %d whole flash banks at oncen", num_banks);
  240. for(idx = 0 ; idx < num_banks ; idx++)
  241. add_mtd_device(mtd_banks[idx]);
  242. #endif
  243. return 0;
  244. error_mem:
  245. for(idx = 0 ; idx < FLASH_BANK_MAX ; idx++)
  246. {
  247. if(map_banks[idx] != NULL)
  248. {
  249. if(map_banks[idx]->name != NULL)
  250. {
  251. kfree(map_banks[idx]->name);
  252. map_banks[idx]->name = NULL;
  253. }
  254. kfree(map_banks[idx]);
  255. map_banks[idx] = NULL;
  256. }
  257. }
  258. //return -ENOMEM;
  259. error:
  260. iounmap((void *)start_scan_addr);
  261. //return -ENXIO;
  262. return ret;
  263. }
  264. static void __exit cleanup_tqm_mtd(void)
  265. {
  266. unsigned int idx = 0;
  267. for(idx = 0 ; idx < num_banks ; idx++)
  268. {
  269. /* destroy mtd_info previously allocated */
  270. if (mtd_banks[idx]) {
  271. del_mtd_partitions(mtd_banks[idx]);
  272. map_destroy(mtd_banks[idx]);
  273. }
  274. /* release map_info not used anymore */
  275. kfree(map_banks[idx]->name);
  276. kfree(map_banks[idx]);
  277. }
  278. if (start_scan_addr) {
  279. iounmap((void *)start_scan_addr);
  280. start_scan_addr = 0;
  281. }
  282. }
  283. module_init(init_tqm_mtd);
  284. module_exit(cleanup_tqm_mtd);
  285. MODULE_LICENSE("GPL");
  286. MODULE_AUTHOR("Kirk Lee <kirk@hpc.ee.ntu.edu.tw>");
  287. MODULE_DESCRIPTION("MTD map driver for TQM8xxL boards");