dmv182.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * drivers/mtd/maps/dmv182.c
  3. *
  4. * Flash map driver for the Dy4 SVME182 board
  5. *
  6. * $Id: dmv182.c,v 1.6 2005/11/07 11:14:26 gleixner Exp $
  7. *
  8. * Copyright 2003-2004, TimeSys Corporation
  9. *
  10. * Based on the SVME181 flash map, by Tom Nelson, Dot4, Inc. for TimeSys Corp.
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the
  14. * Free Software Foundation; either version 2 of the License, or (at your
  15. * option) any later version.
  16. */
  17. #include <linux/module.h>
  18. #include <linux/init.h>
  19. #include <linux/types.h>
  20. #include <linux/kernel.h>
  21. #include <asm/io.h>
  22. #include <linux/mtd/mtd.h>
  23. #include <linux/mtd/map.h>
  24. #include <linux/mtd/partitions.h>
  25. #include <linux/errno.h>
  26. /*
  27. * This driver currently handles only the 16MiB user flash bank 1 on the
  28. * board. It does not provide access to bank 0 (contains the Dy4 FFW), bank 2
  29. * (VxWorks boot), or the optional 48MiB expansion flash.
  30. *
  31. * scott.wood@timesys.com: On the newer boards with 128MiB flash, it
  32. * now supports the first 96MiB (the boot flash bank containing FFW
  33. * is excluded). The VxWorks loader is in partition 1.
  34. */
  35. #define FLASH_BASE_ADDR 0xf0000000
  36. #define FLASH_BANK_SIZE (128*1024*1024)
  37. MODULE_AUTHOR("Scott Wood, TimeSys Corporation <scott.wood@timesys.com>");
  38. MODULE_DESCRIPTION("User-programmable flash device on the Dy4 SVME182 board");
  39. MODULE_LICENSE("GPL");
  40. static struct map_info svme182_map = {
  41. .name = "Dy4 SVME182",
  42. .bankwidth = 32,
  43. .size = 128 * 1024 * 1024
  44. };
  45. #define BOOTIMAGE_PART_SIZE ((6*1024*1024)-RESERVED_PART_SIZE)
  46. // Allow 6MiB for the kernel
  47. #define NEW_BOOTIMAGE_PART_SIZE (6 * 1024 * 1024)
  48. // Allow 1MiB for the bootloader
  49. #define NEW_BOOTLOADER_PART_SIZE (1024 * 1024)
  50. // Use the remaining 9MiB at the end of flash for the RFS
  51. #define NEW_RFS_PART_SIZE (0x01000000 - NEW_BOOTLOADER_PART_SIZE - \
  52. NEW_BOOTIMAGE_PART_SIZE)
  53. static struct mtd_partition svme182_partitions[] = {
  54. // The Lower PABS is only 128KiB, but the partition code doesn't
  55. // like partitions that don't end on the largest erase block
  56. // size of the device, even if all of the erase blocks in the
  57. // partition are small ones. The hardware should prevent
  58. // writes to the actual PABS areas.
  59. {
  60. name: "Lower PABS and CPU 0 bootloader or kernel",
  61. size: 6*1024*1024,
  62. offset: 0,
  63. },
  64. {
  65. name: "Root Filesystem",
  66. size: 10*1024*1024,
  67. offset: MTDPART_OFS_NXTBLK
  68. },
  69. {
  70. name: "CPU1 Bootloader",
  71. size: 1024*1024,
  72. offset: MTDPART_OFS_NXTBLK,
  73. },
  74. {
  75. name: "Extra",
  76. size: 110*1024*1024,
  77. offset: MTDPART_OFS_NXTBLK
  78. },
  79. {
  80. name: "Foundation Firmware and Upper PABS",
  81. size: 1024*1024,
  82. offset: MTDPART_OFS_NXTBLK,
  83. mask_flags: MTD_WRITEABLE // read-only
  84. }
  85. };
  86. static struct mtd_info *this_mtd;
  87. static int __init init_svme182(void)
  88. {
  89. struct mtd_partition *partitions;
  90. int num_parts = ARRAY_SIZE(svme182_partitions);
  91. partitions = svme182_partitions;
  92. svme182_map.virt = ioremap(FLASH_BASE_ADDR, svme182_map.size);
  93. if (svme182_map.virt == 0) {
  94. printk("Failed to ioremap FLASH memory area.\n");
  95. return -EIO;
  96. }
  97. simple_map_init(&svme182_map);
  98. this_mtd = do_map_probe("cfi_probe", &svme182_map);
  99. if (!this_mtd)
  100. {
  101. iounmap((void *)svme182_map.virt);
  102. return -ENXIO;
  103. }
  104. printk(KERN_NOTICE "SVME182 flash device: %dMiB at 0x%08x\n",
  105. this_mtd->size >> 20, FLASH_BASE_ADDR);
  106. this_mtd->owner = THIS_MODULE;
  107. add_mtd_partitions(this_mtd, partitions, num_parts);
  108. return 0;
  109. }
  110. static void __exit cleanup_svme182(void)
  111. {
  112. if (this_mtd)
  113. {
  114. del_mtd_partitions(this_mtd);
  115. map_destroy(this_mtd);
  116. }
  117. if (svme182_map.virt)
  118. {
  119. iounmap((void *)svme182_map.virt);
  120. svme182_map.virt = 0;
  121. }
  122. return;
  123. }
  124. module_init(init_svme182);
  125. module_exit(cleanup_svme182);