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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Map driver for the PXA Cerf.
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License version 2 as
  6.  *  published by the Free Software Foundation.
  7.  */
  8. #include <linux/module.h>
  9. #include <linux/types.h>
  10. #include <linux/kernel.h>
  11. #include <asm/io.h>
  12. #include <linux/mtd/mtd.h>
  13. #include <linux/mtd/map.h>
  14. #include <linux/mtd/partitions.h>
  15. #define WINDOW_ADDR  0
  16. #if defined (CONFIG_PXA_CERF_FLASH_64MB)
  17. #define WINDOW_SIZE  64*1024*1024
  18. #elif defined (CONFIG_PXA_CERF_FLASH_32MB)
  19. #define WINDOW_SIZE  32*1024*1024
  20. #elif defined (CONFIG_PXA_CERF_FLASH_16MB)
  21. #define WINDOW_SIZE  16*1024*1024
  22. #endif
  23. #define BUSWIDTH  4
  24. static __u8 pxa_cerf_read8(struct map_info *map, unsigned long ofs)
  25. {
  26. return *(__u8 *)(map->map_priv_1 + ofs);
  27. }
  28. static __u16 pxa_cerf_read16(struct map_info *map, unsigned long ofs)
  29. {
  30. return *(__u16 *)(map->map_priv_1 + ofs);
  31. }
  32. static __u32 pxa_cerf_read32(struct map_info *map, unsigned long ofs)
  33. {
  34. return *(__u32 *)(map->map_priv_1 + ofs);
  35. }
  36. static void pxa_cerf_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
  37. {
  38. memcpy(to, (void *)(map->map_priv_1 + from), len);
  39. }
  40. static void pxa_cerf_write8(struct map_info *map, __u8 d, unsigned long adr)
  41. {
  42. *(__u8 *)(map->map_priv_1 + adr) = d;
  43. }
  44. static void pxa_cerf_write16(struct map_info *map, __u16 d, unsigned long adr)
  45. {
  46. *(__u16 *)(map->map_priv_1 + adr) = d;
  47. }
  48. static void pxa_cerf_write32(struct map_info *map, __u32 d, unsigned long adr)
  49. {
  50. *(__u32 *)(map->map_priv_1 + adr) = d;
  51. }
  52. static void pxa_cerf_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
  53. {
  54. memcpy((void *)(map->map_priv_1 + to), from, len);
  55. }
  56. static struct map_info pxa_cerf_map = {
  57. name: "PXA Cerf Flash",
  58. size: WINDOW_SIZE,
  59. buswidth: BUSWIDTH,
  60. read8: pxa_cerf_read8,
  61. read16: pxa_cerf_read16,
  62. read32: pxa_cerf_read32,
  63. copy_from: pxa_cerf_copy_from,
  64. write8: pxa_cerf_write8,
  65. write16: pxa_cerf_write16,
  66. write32: pxa_cerf_write32,
  67. copy_to: pxa_cerf_copy_to
  68. };
  69. static struct mtd_partition pxa_cerf_partitions[] = {
  70. {
  71. name: "Bootloader",
  72. size: 0x00040000,
  73. offset: 0,
  74. mask_flags: MTD_WRITEABLE  /* force read-only */
  75. },{
  76. name: "Partition Tables",
  77. size: 0x00080000,
  78. offset: 0x00040000,
  79. },{
  80. name: "Kernel",
  81. size: 0x00100000,
  82. offset: 0x000C0000,
  83. },{
  84. name: "Filesystem",
  85. size: WINDOW_SIZE-0x001C0000, //MTDPART_SIZ_FULL,
  86. offset: 0x001C0000
  87. }
  88. };
  89. #define NB_OF(x)  (sizeof(x)/sizeof(x[0]))
  90. static struct mtd_info *mymtd;
  91. static struct mtd_partition *parsed_parts;
  92. extern int parse_redboot_partitions(struct mtd_info *master, struct mtd_partition **pparts);
  93. static int __init init_pxa_cerf(void)
  94. {
  95. struct mtd_partition *parts;
  96. int nb_parts = 0;
  97. int parsed_nr_parts = 0;
  98. char *part_type = "static";
  99. printk("Probing PXA Cerf flash at physical address 0x%08xn", WINDOW_ADDR);
  100. pxa_cerf_map.map_priv_1 = (unsigned long)__ioremap(WINDOW_ADDR, WINDOW_SIZE, 0);
  101. if (!pxa_cerf_map.map_priv_1) {
  102. printk("Failed to ioremapn");
  103. return -EIO;
  104. }
  105. mymtd = do_map_probe("cfi_probe", &pxa_cerf_map);
  106. if (!mymtd) {
  107. iounmap((void *)pxa_cerf_map.map_priv_1);
  108. return -ENXIO;
  109. }
  110. mymtd->module = THIS_MODULE;
  111. #ifdef CONFIG_MTD_REDBOOT_PARTS
  112. if (parsed_nr_parts == 0) {
  113. int ret = parse_redboot_partitions(mymtd, &parsed_parts);
  114. if (ret > 0) {
  115. part_type = "RedBoot";
  116. parsed_nr_parts = ret;
  117. }
  118. }
  119. #endif
  120. if (parsed_nr_parts > 0) {
  121. parts = parsed_parts;
  122. nb_parts = parsed_nr_parts;
  123. } else {
  124. parts = pxa_cerf_partitions;
  125. nb_parts = NB_OF(pxa_cerf_partitions);
  126. }
  127. if (nb_parts) {
  128. printk(KERN_NOTICE "Using %s partition definitionn", part_type);
  129. add_mtd_partitions(mymtd, parts, nb_parts);
  130. } else {
  131. add_mtd_device(mymtd);
  132. }
  133. return 0;
  134. }
  135. static void __exit cleanup_pxa_cerf(void)
  136. {
  137. if (mymtd) {
  138. del_mtd_partitions(mymtd);
  139. map_destroy(mymtd);
  140. if (parsed_parts)
  141. kfree(parsed_parts);
  142. }
  143. if (pxa_cerf_map.map_priv_1)
  144. iounmap((void *)pxa_cerf_map.map_priv_1);
  145. return;
  146. }
  147. module_init(init_pxa_cerf);
  148. module_exit(cleanup_pxa_cerf);