autcpu12-nvram.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * NV-RAM memory access on autcpu12
  3. * (C) 2002 Thomas Gleixner (gleixner@autronix.de)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. */
  20. #include <linux/module.h>
  21. #include <linux/types.h>
  22. #include <linux/kernel.h>
  23. #include <linux/ioport.h>
  24. #include <linux/init.h>
  25. #include <asm/io.h>
  26. #include <asm/sizes.h>
  27. #include <mach/hardware.h>
  28. #include <mach/autcpu12.h>
  29. #include <linux/mtd/mtd.h>
  30. #include <linux/mtd/map.h>
  31. #include <linux/mtd/partitions.h>
  32. static struct mtd_info *sram_mtd;
  33. struct map_info autcpu12_sram_map = {
  34. .name = "SRAM",
  35. .size = 32768,
  36. .bankwidth = 4,
  37. .phys = 0x12000000,
  38. };
  39. static int __init init_autcpu12_sram (void)
  40. {
  41. map_word tmp, save0, save1;
  42. int err;
  43. autcpu12_sram_map.virt = ioremap(0x12000000, SZ_128K);
  44. if (!autcpu12_sram_map.virt) {
  45. printk("Failed to ioremap autcpu12 NV-RAM space\n");
  46. err = -EIO;
  47. goto out;
  48. }
  49. simple_map_init(&autcpu12_sram_map);
  50. /*
  51. * Check for 32K/128K
  52. * read ofs 0
  53. * read ofs 0x10000
  54. * Write complement to ofs 0x100000
  55. * Read and check result on ofs 0x0
  56. * Restore contents
  57. */
  58. save0 = map_read(&autcpu12_sram_map, 0);
  59. save1 = map_read(&autcpu12_sram_map, 0x10000);
  60. tmp.x[0] = ~save0.x[0];
  61. map_write(&autcpu12_sram_map, tmp, 0x10000);
  62. /* if we find this pattern on 0x0, we have 32K size
  63. * restore contents and exit
  64. */
  65. tmp = map_read(&autcpu12_sram_map, 0);
  66. if (!map_word_equal(&autcpu12_sram_map, tmp, save0)) {
  67. map_write(&autcpu12_sram_map, save0, 0x0);
  68. goto map;
  69. }
  70. /* We have a 128K found, restore 0x10000 and set size
  71. * to 128K
  72. */
  73. map_write(&autcpu12_sram_map, save1, 0x10000);
  74. autcpu12_sram_map.size = SZ_128K;
  75. map:
  76. sram_mtd = do_map_probe("map_ram", &autcpu12_sram_map);
  77. if (!sram_mtd) {
  78. printk("NV-RAM probe failed\n");
  79. err = -ENXIO;
  80. goto out_ioremap;
  81. }
  82. sram_mtd->owner = THIS_MODULE;
  83. sram_mtd->erasesize = 16;
  84. if (mtd_device_register(sram_mtd, NULL, 0)) {
  85. printk("NV-RAM device addition failed\n");
  86. err = -ENOMEM;
  87. goto out_probe;
  88. }
  89. printk("NV-RAM device size %ldKiB registered on AUTCPU12\n",autcpu12_sram_map.size/SZ_1K);
  90. return 0;
  91. out_probe:
  92. map_destroy(sram_mtd);
  93. sram_mtd = 0;
  94. out_ioremap:
  95. iounmap((void *)autcpu12_sram_map.virt);
  96. out:
  97. return err;
  98. }
  99. static void __exit cleanup_autcpu12_maps(void)
  100. {
  101. if (sram_mtd) {
  102. mtd_device_unregister(sram_mtd);
  103. map_destroy(sram_mtd);
  104. iounmap((void *)autcpu12_sram_map.virt);
  105. }
  106. }
  107. module_init(init_autcpu12_sram);
  108. module_exit(cleanup_autcpu12_maps);
  109. MODULE_AUTHOR("Thomas Gleixner");
  110. MODULE_DESCRIPTION("autcpu12 NV-RAM map driver");
  111. MODULE_LICENSE("GPL");