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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * MTD map driver for flash on the DC21285 (the StrongARM-110 companion chip)
  3.  *
  4.  * (C) 2000  Nicolas Pitre <nico@cam.org>
  5.  *
  6.  * This code is GPL
  7.  * 
  8.  * $Id: dc21285.c,v 1.7 2001/10/11 16:17:51 nico Exp $
  9.  */
  10. #include <linux/module.h>
  11. #include <linux/types.h>
  12. #include <linux/kernel.h>
  13. #include <linux/mtd/mtd.h>
  14. #include <linux/mtd/map.h>
  15. #include <linux/mtd/partitions.h>
  16. #include <asm/io.h>
  17. #include <asm/hardware/dec21285.h>
  18. static struct mtd_info *mymtd;
  19. __u8 dc21285_read8(struct map_info *map, unsigned long ofs)
  20. {
  21. return *(__u8*)(map->map_priv_1 + ofs);
  22. }
  23. __u16 dc21285_read16(struct map_info *map, unsigned long ofs)
  24. {
  25. return *(__u16*)(map->map_priv_1 + ofs);
  26. }
  27. __u32 dc21285_read32(struct map_info *map, unsigned long ofs)
  28. {
  29. return *(__u32*)(map->map_priv_1 + ofs);
  30. }
  31. void dc21285_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
  32. {
  33. memcpy(to, (void*)(map->map_priv_1 + from), len);
  34. }
  35. void dc21285_write8(struct map_info *map, __u8 d, unsigned long adr)
  36. {
  37. *CSR_ROMWRITEREG = adr & 3;
  38. adr &= ~3;
  39. *(__u8*)(map->map_priv_1 + adr) = d;
  40. }
  41. void dc21285_write16(struct map_info *map, __u16 d, unsigned long adr)
  42. {
  43. *CSR_ROMWRITEREG = adr & 3;
  44. adr &= ~3;
  45. *(__u16*)(map->map_priv_1 + adr) = d;
  46. }
  47. void dc21285_write32(struct map_info *map, __u32 d, unsigned long adr)
  48. {
  49. *(__u32*)(map->map_priv_1 + adr) = d;
  50. }
  51. void dc21285_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
  52. {
  53. switch (map->buswidth) {
  54. case 4:
  55. while (len > 0) {
  56. __u32 d = *((__u32*)from)++;
  57. dc21285_write32(map, d, to);
  58. to += 4;
  59. len -= 4;
  60. }
  61. break;
  62. case 2:
  63. while (len > 0) {
  64. __u16 d = *((__u16*)from)++;
  65. dc21285_write16(map, d, to);
  66. to += 2;
  67. len -= 2;
  68. }
  69. break;
  70. case 1:
  71. while (len > 0) {
  72. __u8 d = *((__u8*)from)++;
  73. dc21285_write8(map, d, to);
  74. to++;
  75. len--;
  76. }
  77. break;
  78. }
  79. }
  80. struct map_info dc21285_map = {
  81. name: "DC21285 flash",
  82. size: 16*1024*1024,
  83. read8: dc21285_read8,
  84. read16: dc21285_read16,
  85. read32: dc21285_read32,
  86. copy_from: dc21285_copy_from,
  87. write8: dc21285_write8,
  88. write16: dc21285_write16,
  89. write32: dc21285_write32,
  90. copy_to: dc21285_copy_to
  91. };
  92. /* Partition stuff */
  93. static struct mtd_partition *dc21285_parts;
  94.       
  95. extern int parse_redboot_partitions(struct mtd_info *, struct mtd_partition **);
  96. int __init init_dc21285(void)
  97. {
  98. /* Determine buswidth */
  99. switch (*CSR_SA110_CNTL & (3<<14)) {
  100. case SA110_CNTL_ROMWIDTH_8: 
  101. dc21285_map.buswidth = 1;
  102. break;
  103. case SA110_CNTL_ROMWIDTH_16: 
  104. dc21285_map.buswidth = 2; 
  105. break;
  106. case SA110_CNTL_ROMWIDTH_32: 
  107. dc21285_map.buswidth = 4; 
  108. break;
  109. default:
  110. printk (KERN_ERR "DC21285 flash: undefined buswidthn");
  111. return -ENXIO;
  112. }
  113. printk (KERN_NOTICE "DC21285 flash support (%d-bit buswidth)n",
  114. dc21285_map.buswidth*8);
  115. /* Let's map the flash area */
  116. dc21285_map.map_priv_1 = (unsigned long)__ioremap(DC21285_FLASH, 16*1024*1024, 0);
  117. if (!dc21285_map.map_priv_1) {
  118. printk("Failed to ioremapn");
  119. return -EIO;
  120. }
  121. mymtd = do_map_probe("cfi_probe", &dc21285_map);
  122. if (mymtd) {
  123. int nrparts;
  124. mymtd->module = THIS_MODULE;
  125. /* partition fixup */
  126. nrparts = parse_redboot_partitions(mymtd, &dc21285_parts);
  127. if (nrparts <=0) {
  128. printk(KERN_NOTICE "RedBoot partition table failedn");
  129. iounmap((void *)dc21285_map.map_priv_1);
  130. return -ENXIO;
  131. }
  132. add_mtd_partitions(mymtd, dc21285_parts, nrparts);
  133. /* 
  134.  * Flash timing is determined with bits 19-16 of the
  135.  * CSR_SA110_CNTL.  The value is the number of wait cycles, or
  136.  * 0 for 16 cycles (the default).  Cycles are 20 ns.
  137.  * Here we use 7 for 140 ns flash chips.
  138.  */
  139. /* access time */
  140. *CSR_SA110_CNTL = ((*CSR_SA110_CNTL & ~0x000f0000) | (7 << 16));
  141. /* burst time */
  142. *CSR_SA110_CNTL = ((*CSR_SA110_CNTL & ~0x00f00000) | (7 << 20));
  143. /* tristate time */
  144. *CSR_SA110_CNTL = ((*CSR_SA110_CNTL & ~0x0f000000) | (7 << 24));
  145. return 0;
  146. }
  147. iounmap((void *)dc21285_map.map_priv_1);
  148. return -ENXIO;
  149. }
  150. static void __exit cleanup_dc21285(void)
  151. {
  152. if (mymtd) {
  153. del_mtd_device(mymtd);
  154. map_destroy(mymtd);
  155. mymtd = NULL;
  156. }
  157. if (dc21285_map.map_priv_1) {
  158. iounmap((void *)dc21285_map.map_priv_1);
  159. dc21285_map.map_priv_1 = 0;
  160. }
  161. if(dc21285_parts)
  162. kfree(dc21285_parts);
  163. }
  164. module_init(init_dc21285);
  165. module_exit(cleanup_dc21285);
  166. MODULE_LICENSE("GPL");
  167. MODULE_AUTHOR("Nicolas Pitre <nico@cam.org>");
  168. MODULE_DESCRIPTION("MTD map driver for DC21285 boards");