scb2_flash.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*
  2. * MTD map driver for BIOS Flash on Intel SCB2 boards
  3. * Copyright (C) 2002 Sun Microsystems, Inc.
  4. * Tim Hockin <thockin@sun.com>
  5. *
  6. * A few notes on this MTD map:
  7. *
  8. * This was developed with a small number of SCB2 boards to test on.
  9. * Hopefully, Intel has not introducted too many unaccounted variables in the
  10. * making of this board.
  11. *
  12. * The BIOS marks its own memory region as 'reserved' in the e820 map. We
  13. * try to request it here, but if it fails, we carry on anyway.
  14. *
  15. * This is how the chip is attached, so said the schematic:
  16. * * a 4 MiB (32 Mib) 16 bit chip
  17. * * a 1 MiB memory region
  18. * * A20 and A21 pulled up
  19. * * D8-D15 ignored
  20. * What this means is that, while we are addressing bytes linearly, we are
  21. * really addressing words, and discarding the other byte. This means that
  22. * the chip MUST BE at least 2 MiB. This also means that every block is
  23. * actually half as big as the chip reports. It also means that accesses of
  24. * logical address 0 hit higher-address sections of the chip, not physical 0.
  25. * One can only hope that these 4MiB x16 chips were a lot cheaper than 1MiB x8
  26. * chips.
  27. *
  28. * This driver assumes the chip is not write-protected by an external signal.
  29. * As of the this writing, that is true, but may change, just to spite me.
  30. *
  31. * The actual BIOS layout has been mostly reverse engineered. Intel BIOS
  32. * updates for this board include 10 related (*.bio - &.bi9) binary files and
  33. * another separate (*.bbo) binary file. The 10 files are 64k of data + a
  34. * small header. If the headers are stripped off, the 10 64k files can be
  35. * concatenated into a 640k image. This is your BIOS image, proper. The
  36. * separate .bbo file also has a small header. It is the 'Boot Block'
  37. * recovery BIOS. Once the header is stripped, no further prep is needed.
  38. * As best I can tell, the BIOS is arranged as such:
  39. * offset 0x00000 to 0x4ffff (320k): unknown - SCSI BIOS, etc?
  40. * offset 0x50000 to 0xeffff (640k): BIOS proper
  41. * offset 0xf0000 ty 0xfffff (64k): Boot Block region
  42. *
  43. * Intel's BIOS update program flashes the BIOS and Boot Block in separate
  44. * steps. Probably a wise thing to do.
  45. */
  46. #include <linux/module.h>
  47. #include <linux/types.h>
  48. #include <linux/kernel.h>
  49. #include <linux/init.h>
  50. #include <asm/io.h>
  51. #include <linux/mtd/mtd.h>
  52. #include <linux/mtd/map.h>
  53. #include <linux/mtd/cfi.h>
  54. #include <linux/pci.h>
  55. #include <linux/pci_ids.h>
  56. #define MODNAME "scb2_flash"
  57. #define SCB2_ADDR 0xfff00000
  58. #define SCB2_WINDOW 0x00100000
  59. static void __iomem *scb2_ioaddr;
  60. static struct mtd_info *scb2_mtd;
  61. static struct map_info scb2_map = {
  62. .name = "SCB2 BIOS Flash",
  63. .size = 0,
  64. .bankwidth = 1,
  65. };
  66. static int region_fail;
  67. static int __devinit
  68. scb2_fixup_mtd(struct mtd_info *mtd)
  69. {
  70. int i;
  71. int done = 0;
  72. struct map_info *map = mtd->priv;
  73. struct cfi_private *cfi = map->fldrv_priv;
  74. /* barf if this doesn't look right */
  75. if (cfi->cfiq->InterfaceDesc != CFI_INTERFACE_X16_ASYNC) {
  76. printk(KERN_ERR MODNAME ": unsupported InterfaceDesc: %#x\n",
  77. cfi->cfiq->InterfaceDesc);
  78. return -1;
  79. }
  80. /* I wasn't here. I didn't see. dwmw2. */
  81. /* the chip is sometimes bigger than the map - what a waste */
  82. mtd->size = map->size;
  83. /*
  84. * We only REALLY get half the chip, due to the way it is
  85. * wired up - D8-D15 are tossed away. We read linear bytes,
  86. * but in reality we are getting 1/2 of each 16-bit read,
  87. * which LOOKS linear to us. Because CFI code accounts for
  88. * things like lock/unlock/erase by eraseregions, we need to
  89. * fudge them to reflect this. Erases go like this:
  90. * * send an erase to an address
  91. * * the chip samples the address and erases the block
  92. * * add the block erasesize to the address and repeat
  93. * -- the problem is that addresses are 16-bit addressable
  94. * -- we end up erasing every-other block
  95. */
  96. mtd->erasesize /= 2;
  97. for (i = 0; i < mtd->numeraseregions; i++) {
  98. struct mtd_erase_region_info *region = &mtd->eraseregions[i];
  99. region->erasesize /= 2;
  100. }
  101. /*
  102. * If the chip is bigger than the map, it is wired with the high
  103. * address lines pulled up. This makes us access the top portion of
  104. * the chip, so all our erase-region info is wrong. Start cutting from
  105. * the bottom.
  106. */
  107. for (i = 0; !done && i < mtd->numeraseregions; i++) {
  108. struct mtd_erase_region_info *region = &mtd->eraseregions[i];
  109. if (region->numblocks * region->erasesize > mtd->size) {
  110. region->numblocks = ((unsigned long)mtd->size /
  111. region->erasesize);
  112. done = 1;
  113. } else {
  114. region->numblocks = 0;
  115. }
  116. region->offset = 0;
  117. }
  118. return 0;
  119. }
  120. /* CSB5's 'Function Control Register' has bits for decoding @ >= 0xffc00000 */
  121. #define CSB5_FCR 0x41
  122. #define CSB5_FCR_DECODE_ALL 0x0e
  123. static int __devinit
  124. scb2_flash_probe(struct pci_dev *dev, const struct pci_device_id *ent)
  125. {
  126. u8 reg;
  127. /* enable decoding of the flash region in the south bridge */
  128. pci_read_config_byte(dev, CSB5_FCR, &reg);
  129. pci_write_config_byte(dev, CSB5_FCR, reg | CSB5_FCR_DECODE_ALL);
  130. if (!request_mem_region(SCB2_ADDR, SCB2_WINDOW, scb2_map.name)) {
  131. /*
  132. * The BIOS seems to mark the flash region as 'reserved'
  133. * in the e820 map. Warn and go about our business.
  134. */
  135. printk(KERN_WARNING MODNAME
  136. ": warning - can't reserve rom window, continuing\n");
  137. region_fail = 1;
  138. }
  139. /* remap the IO window (w/o caching) */
  140. scb2_ioaddr = ioremap_nocache(SCB2_ADDR, SCB2_WINDOW);
  141. if (!scb2_ioaddr) {
  142. printk(KERN_ERR MODNAME ": Failed to ioremap window!\n");
  143. if (!region_fail)
  144. release_mem_region(SCB2_ADDR, SCB2_WINDOW);
  145. return -ENOMEM;
  146. }
  147. scb2_map.phys = SCB2_ADDR;
  148. scb2_map.virt = scb2_ioaddr;
  149. scb2_map.size = SCB2_WINDOW;
  150. simple_map_init(&scb2_map);
  151. /* try to find a chip */
  152. scb2_mtd = do_map_probe("cfi_probe", &scb2_map);
  153. if (!scb2_mtd) {
  154. printk(KERN_ERR MODNAME ": flash probe failed!\n");
  155. iounmap(scb2_ioaddr);
  156. if (!region_fail)
  157. release_mem_region(SCB2_ADDR, SCB2_WINDOW);
  158. return -ENODEV;
  159. }
  160. scb2_mtd->owner = THIS_MODULE;
  161. if (scb2_fixup_mtd(scb2_mtd) < 0) {
  162. mtd_device_unregister(scb2_mtd);
  163. map_destroy(scb2_mtd);
  164. iounmap(scb2_ioaddr);
  165. if (!region_fail)
  166. release_mem_region(SCB2_ADDR, SCB2_WINDOW);
  167. return -ENODEV;
  168. }
  169. printk(KERN_NOTICE MODNAME ": chip size 0x%llx at offset 0x%llx\n",
  170. (unsigned long long)scb2_mtd->size,
  171. (unsigned long long)(SCB2_WINDOW - scb2_mtd->size));
  172. mtd_device_register(scb2_mtd, NULL, 0);
  173. return 0;
  174. }
  175. static void __devexit
  176. scb2_flash_remove(struct pci_dev *dev)
  177. {
  178. if (!scb2_mtd)
  179. return;
  180. /* disable flash writes */
  181. mtd_lock(scb2_mtd, 0, scb2_mtd->size);
  182. mtd_device_unregister(scb2_mtd);
  183. map_destroy(scb2_mtd);
  184. iounmap(scb2_ioaddr);
  185. scb2_ioaddr = NULL;
  186. if (!region_fail)
  187. release_mem_region(SCB2_ADDR, SCB2_WINDOW);
  188. pci_set_drvdata(dev, NULL);
  189. }
  190. static struct pci_device_id scb2_flash_pci_ids[] = {
  191. {
  192. .vendor = PCI_VENDOR_ID_SERVERWORKS,
  193. .device = PCI_DEVICE_ID_SERVERWORKS_CSB5,
  194. .subvendor = PCI_ANY_ID,
  195. .subdevice = PCI_ANY_ID
  196. },
  197. { 0, }
  198. };
  199. static struct pci_driver scb2_flash_driver = {
  200. .name = "Intel SCB2 BIOS Flash",
  201. .id_table = scb2_flash_pci_ids,
  202. .probe = scb2_flash_probe,
  203. .remove = __devexit_p(scb2_flash_remove),
  204. };
  205. static int __init
  206. scb2_flash_init(void)
  207. {
  208. return pci_register_driver(&scb2_flash_driver);
  209. }
  210. static void __exit
  211. scb2_flash_exit(void)
  212. {
  213. pci_unregister_driver(&scb2_flash_driver);
  214. }
  215. module_init(scb2_flash_init);
  216. module_exit(scb2_flash_exit);
  217. MODULE_LICENSE("GPL");
  218. MODULE_AUTHOR("Tim Hockin <thockin@sun.com>");
  219. MODULE_DESCRIPTION("MTD map driver for Intel SCB2 BIOS Flash");
  220. MODULE_DEVICE_TABLE(pci, scb2_flash_pci_ids);