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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2.    Common Flash Interface probe code.
  3.    (C) 2000 Red Hat. GPL'd.
  4.    $Id: cfi_probe.c,v 1.66 2001/10/02 15:05:12 dwmw2 Exp $
  5. */
  6. #include <linux/config.h>
  7. #include <linux/module.h>
  8. #include <linux/types.h>
  9. #include <linux/kernel.h>
  10. #include <asm/io.h>
  11. #include <asm/byteorder.h>
  12. #include <linux/errno.h>
  13. #include <linux/slab.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/mtd/map.h>
  16. #include <linux/mtd/cfi.h>
  17. #include <linux/mtd/gen_probe.h>
  18. //#define DEBUG_CFI 
  19. #ifdef DEBUG_CFI
  20. static void print_cfi_ident(struct cfi_ident *);
  21. #endif
  22. int cfi_jedec_setup(struct cfi_private *p_cfi, int index);
  23. int cfi_jedec_lookup(int index, int mfr_id, int dev_id);
  24. static int cfi_probe_chip(struct map_info *map, __u32 base,
  25.   struct flchip *chips, struct cfi_private *cfi);
  26. static int cfi_chip_setup(struct map_info *map, struct cfi_private *cfi);
  27. struct mtd_info *cfi_probe(struct map_info *map);
  28. /* check for QRY, or search for jedec id.
  29.    in: interleave,type,mode
  30.    ret: table index, <0 for error
  31.  */
  32. static inline int qry_present(struct map_info *map, __u32 base,
  33. struct cfi_private *cfi)
  34. {
  35. int osf = cfi->interleave * cfi->device_type; // scale factor
  36. if (cfi_read(map,base+osf*0x10)==cfi_build_cmd('Q',map,cfi) &&
  37.     cfi_read(map,base+osf*0x11)==cfi_build_cmd('R',map,cfi) &&
  38.     cfi_read(map,base+osf*0x12)==cfi_build_cmd('Y',map,cfi))
  39. return 1; // ok !
  40. return 0;  // nothing found
  41. }
  42. static int cfi_probe_chip(struct map_info *map, __u32 base,
  43.   struct flchip *chips, struct cfi_private *cfi)
  44. {
  45. int i;
  46. cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);
  47. cfi_send_gen_cmd(0x98, 0x55, base, map, cfi, cfi->device_type, NULL);
  48. if (!qry_present(map,base,cfi))
  49. return 0;
  50. if (!cfi->numchips) {
  51. /* This is the first time we're called. Set up the CFI 
  52.    stuff accordingly and return */
  53. return cfi_chip_setup(map, cfi);
  54. }
  55. /* Check each previous chip to see if it's an alias */
  56. for (i=0; i<cfi->numchips; i++) {
  57. /* This chip should be in read mode if it's one
  58.    we've already touched. */
  59. if (qry_present(map,chips[i].start,cfi)) {
  60. /* Eep. This chip also had the QRY marker. 
  61.  * Is it an alias for the new one? */
  62. cfi_send_gen_cmd(0xF0, 0, chips[i].start, map, cfi, cfi->device_type, NULL);
  63. /* If the QRY marker goes away, it's an alias */
  64. if (!qry_present(map, chips[i].start, cfi)) {
  65. printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lxn",
  66.        map->name, base, chips[i].start);
  67. return 0;
  68. }
  69. /* Yes, it's actually got QRY for data. Most 
  70.  * unfortunate. Stick the new chip in read mode
  71.  * too and if it's the same, assume it's an alias. */
  72. /* FIXME: Use other modes to do a proper check */
  73. cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);
  74. if (qry_present(map, base, cfi)) {
  75. printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lxn",
  76.        map->name, base, chips[i].start);
  77. return 0;
  78. }
  79. }
  80. }
  81. /* OK, if we got to here, then none of the previous chips appear to
  82.    be aliases for the current one. */
  83. if (cfi->numchips == MAX_CFI_CHIPS) {
  84. printk(KERN_WARNING"%s: Too many flash chips detected. Increase MAX_CFI_CHIPS from %d.n", map->name, MAX_CFI_CHIPS);
  85. /* Doesn't matter about resetting it to Read Mode - we're not going to talk to it anyway */
  86. return -1;
  87. }
  88. chips[cfi->numchips].start = base;
  89. chips[cfi->numchips].state = FL_READY;
  90. cfi->numchips++;
  91. /* Put it back into Read Mode */
  92. cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);
  93. printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit moden",
  94.        map->name, cfi->interleave, cfi->device_type*8, base,
  95.        map->buswidth*8);
  96. return 1;
  97. }
  98. static int cfi_chip_setup(struct map_info *map, 
  99.    struct cfi_private *cfi)
  100. {
  101. int ofs_factor = cfi->interleave*cfi->device_type;
  102. __u32 base = 0;
  103. int num_erase_regions = cfi_read_query(map, base + (0x10 + 28)*ofs_factor);
  104. int i;
  105. #ifdef DEBUG_CFI
  106. printk("Number of erase regions: %dn", num_erase_regions);
  107. #endif
  108. if (!num_erase_regions)
  109. return 0;
  110. cfi->cfiq = kmalloc(sizeof(struct cfi_ident) + num_erase_regions * 4, GFP_KERNEL);
  111. if (!cfi->cfiq) {
  112. printk(KERN_WARNING "%s: kmalloc failed for CFI ident structuren", map->name);
  113. return 0;
  114. }
  115. memset(cfi->cfiq,0,sizeof(struct cfi_ident));
  116. cfi->cfi_mode = 1;
  117. cfi->fast_prog=1; /* CFI supports fast programming */
  118. /* Read the CFI info structure */
  119. for (i=0; i<(sizeof(struct cfi_ident) + num_erase_regions * 4); i++) {
  120. ((unsigned char *)cfi->cfiq)[i] = cfi_read_query(map,base + (0x10 + i)*ofs_factor);
  121. }
  122. /* Do any necessary byteswapping */
  123. cfi->cfiq->P_ID = le16_to_cpu(cfi->cfiq->P_ID);
  124. cfi->cfiq->P_ADR = le16_to_cpu(cfi->cfiq->P_ADR);
  125. cfi->cfiq->A_ID = le16_to_cpu(cfi->cfiq->A_ID);
  126. cfi->cfiq->A_ADR = le16_to_cpu(cfi->cfiq->A_ADR);
  127. cfi->cfiq->InterfaceDesc = le16_to_cpu(cfi->cfiq->InterfaceDesc);
  128. cfi->cfiq->MaxBufWriteSize = le16_to_cpu(cfi->cfiq->MaxBufWriteSize);
  129. #ifdef DEBUG_CFI
  130. /* Dump the information therein */
  131. print_cfi_ident(cfi->cfiq);
  132. #endif
  133. for (i=0; i<cfi->cfiq->NumEraseRegions; i++) {
  134. cfi->cfiq->EraseRegionInfo[i] = le32_to_cpu(cfi->cfiq->EraseRegionInfo[i]);
  135. #ifdef DEBUG_CFI
  136. printk("  Erase Region #%d: BlockSize 0x%4.4X bytes, %d blocksn",
  137.        i, (cfi->cfiq->EraseRegionInfo[i] >> 8) & ~0xff, 
  138.        (cfi->cfiq->EraseRegionInfo[i] & 0xffff) + 1);
  139. #endif
  140. }
  141. /* Put it back into Read Mode */
  142. cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);
  143. return 1;
  144. }
  145. #ifdef DEBUG_CFI
  146. static char *vendorname(__u16 vendor) 
  147. {
  148. switch (vendor) {
  149. case P_ID_NONE:
  150. return "None";
  151. case P_ID_INTEL_EXT:
  152. return "Intel/Sharp Extended";
  153. case P_ID_AMD_STD:
  154. return "AMD/Fujitsu Standard";
  155. case P_ID_INTEL_STD:
  156. return "Intel/Sharp Standard";
  157. case P_ID_AMD_EXT:
  158. return "AMD/Fujitsu Extended";
  159. case P_ID_MITSUBISHI_STD:
  160. return "Mitsubishi Standard";
  161. case P_ID_MITSUBISHI_EXT:
  162. return "Mitsubishi Extended";
  163. case P_ID_RESERVED:
  164. return "Not Allowed / Reserved for Future Use";
  165. default:
  166. return "Unknown";
  167. }
  168. }
  169. static void print_cfi_ident(struct cfi_ident *cfip)
  170. {
  171. #if 0
  172. if (cfip->qry[0] != 'Q' || cfip->qry[1] != 'R' || cfip->qry[2] != 'Y') {
  173. printk("Invalid CFI ident structure.n");
  174. return;
  175. }
  176. #endif
  177. printk("Primary Vendor Command Set: %4.4X (%s)n", cfip->P_ID, vendorname(cfip->P_ID));
  178. if (cfip->P_ADR)
  179. printk("Primary Algorithm Table at %4.4Xn", cfip->P_ADR);
  180. else
  181. printk("No Primary Algorithm Tablen");
  182. printk("Alternative Vendor Command Set: %4.4X (%s)n", cfip->A_ID, vendorname(cfip->A_ID));
  183. if (cfip->A_ADR)
  184. printk("Alternate Algorithm Table at %4.4Xn", cfip->A_ADR);
  185. else
  186. printk("No Alternate Algorithm Tablen");
  187. printk("Vcc Minimum: %x.%x Vn", cfip->VccMin >> 4, cfip->VccMin & 0xf);
  188. printk("Vcc Maximum: %x.%x Vn", cfip->VccMax >> 4, cfip->VccMax & 0xf);
  189. if (cfip->VppMin) {
  190. printk("Vpp Minimum: %x.%x Vn", cfip->VppMin >> 4, cfip->VppMin & 0xf);
  191. printk("Vpp Maximum: %x.%x Vn", cfip->VppMax >> 4, cfip->VppMax & 0xf);
  192. }
  193. else
  194. printk("No Vpp linen");
  195. printk("Typical byte/word write timeout: %d 祍n", 1<<cfip->WordWriteTimeoutTyp);
  196. printk("Maximum byte/word write timeout: %d 祍n", (1<<cfip->WordWriteTimeoutMax) * (1<<cfip->WordWriteTimeoutTyp));
  197. if (cfip->BufWriteTimeoutTyp || cfip->BufWriteTimeoutMax) {
  198. printk("Typical full buffer write timeout: %d 祍n", 1<<cfip->BufWriteTimeoutTyp);
  199. printk("Maximum full buffer write timeout: %d 祍n", (1<<cfip->BufWriteTimeoutMax) * (1<<cfip->BufWriteTimeoutTyp));
  200. }
  201. else
  202. printk("Full buffer write not supportedn");
  203. printk("Typical block erase timeout: %d 祍n", 1<<cfip->BlockEraseTimeoutTyp);
  204. printk("Maximum block erase timeout: %d 祍n", (1<<cfip->BlockEraseTimeoutMax) * (1<<cfip->BlockEraseTimeoutTyp));
  205. if (cfip->ChipEraseTimeoutTyp || cfip->ChipEraseTimeoutMax) {
  206. printk("Typical chip erase timeout: %d 祍n", 1<<cfip->ChipEraseTimeoutTyp); 
  207. printk("Maximum chip erase timeout: %d 祍n", (1<<cfip->ChipEraseTimeoutMax) * (1<<cfip->ChipEraseTimeoutTyp));
  208. }
  209. else
  210. printk("Chip erase not supportedn");
  211. printk("Device size: 0x%X bytes (%d MiB)n", 1 << cfip->DevSize, 1<< (cfip->DevSize - 20));
  212. printk("Flash Device Interface description: 0x%4.4Xn", cfip->InterfaceDesc);
  213. switch(cfip->InterfaceDesc) {
  214. case 0:
  215. printk("  - x8-only asynchronous interfacen");
  216. break;
  217. case 1:
  218. printk("  - x16-only asynchronous interfacen");
  219. break;
  220. case 2:
  221. printk("  - supports x8 and x16 via BYTE# with asynchronous interfacen");
  222. break;
  223. case 3:
  224. printk("  - x32-only asynchronous interfacen");
  225. break;
  226. case 65535:
  227. printk("  - Not Allowed / Reservedn");
  228. break;
  229. default:
  230. printk("  - Unknownn");
  231. break;
  232. }
  233. printk("Max. bytes in buffer write: 0x%xn", 1<< cfip->MaxBufWriteSize);
  234. printk("Number of Erase Block Regions: %dn", cfip->NumEraseRegions);
  235. }
  236. #endif /* DEBUG_CFI */
  237. static struct chip_probe cfi_chip_probe = {
  238. name: "CFI",
  239. probe_chip: cfi_probe_chip
  240. };
  241. struct mtd_info *cfi_probe(struct map_info *map)
  242. {
  243. /*
  244.  * Just use the generic probe stuff to call our CFI-specific
  245.  * chip_probe routine in all the possible permutations, etc.
  246.  */
  247. return mtd_do_chip_probe(map, &cfi_chip_probe);
  248. }
  249. static struct mtd_chip_driver cfi_chipdrv = {
  250. probe: cfi_probe,
  251. name: "cfi_probe",
  252. module: THIS_MODULE
  253. };
  254. int __init cfi_probe_init(void)
  255. {
  256. register_mtd_chip_driver(&cfi_chipdrv);
  257. return 0;
  258. }
  259. static void __exit cfi_probe_exit(void)
  260. {
  261. unregister_mtd_chip_driver(&cfi_chipdrv);
  262. }
  263. module_init(cfi_probe_init);
  264. module_exit(cfi_probe_exit);
  265. MODULE_LICENSE("GPL");
  266. MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org> et al.");
  267. MODULE_DESCRIPTION("Probe code for CFI-compliant flash chips");