cpu.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /* linux/arch/arm/plat-s3c24xx/cpu.c
  2. *
  3. * Copyright (c) 2004-2005 Simtec Electronics
  4. * http://www.simtec.co.uk/products/SWLINUX/
  5. * Ben Dooks <ben@simtec.co.uk>
  6. *
  7. * S3C24XX CPU Support
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. #include <linux/init.h>
  24. #include <linux/module.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/ioport.h>
  27. #include <linux/serial_core.h>
  28. #include <linux/platform_device.h>
  29. #include <linux/delay.h>
  30. #include <linux/io.h>
  31. #include <mach/hardware.h>
  32. #include <asm/irq.h>
  33. #include <asm/cacheflush.h>
  34. #include <asm/mach/arch.h>
  35. #include <asm/mach/map.h>
  36. #include <mach/regs-gpio.h>
  37. #include <plat/regs-serial.h>
  38. #include <plat/cpu.h>
  39. #include <plat/devs.h>
  40. #include <plat/clock.h>
  41. #include <plat/s3c2410.h>
  42. #include <plat/s3c2412.h>
  43. #include <plat/s3c2416.h>
  44. #include <plat/s3c244x.h>
  45. #include <plat/s3c2443.h>
  46. /* table of supported CPUs */
  47. static const char name_s3c2410[] = "S3C2410";
  48. static const char name_s3c2412[] = "S3C2412";
  49. static const char name_s3c2416[] = "S3C2416/S3C2450";
  50. static const char name_s3c2440[] = "S3C2440";
  51. static const char name_s3c2442[] = "S3C2442";
  52. static const char name_s3c2442b[] = "S3C2442B";
  53. static const char name_s3c2443[] = "S3C2443";
  54. static const char name_s3c2410a[] = "S3C2410A";
  55. static const char name_s3c2440a[] = "S3C2440A";
  56. static struct cpu_table cpu_ids[] __initdata = {
  57. {
  58. .idcode = 0x32410000,
  59. .idmask = 0xffffffff,
  60. .map_io = s3c2410_map_io,
  61. .init_clocks = s3c2410_init_clocks,
  62. .init_uarts = s3c2410_init_uarts,
  63. .init = s3c2410_init,
  64. .name = name_s3c2410
  65. },
  66. {
  67. .idcode = 0x32410002,
  68. .idmask = 0xffffffff,
  69. .map_io = s3c2410_map_io,
  70. .init_clocks = s3c2410_init_clocks,
  71. .init_uarts = s3c2410_init_uarts,
  72. .init = s3c2410a_init,
  73. .name = name_s3c2410a
  74. },
  75. {
  76. .idcode = 0x32440000,
  77. .idmask = 0xffffffff,
  78. .map_io = s3c2440_map_io,
  79. .init_clocks = s3c244x_init_clocks,
  80. .init_uarts = s3c244x_init_uarts,
  81. .init = s3c2440_init,
  82. .name = name_s3c2440
  83. },
  84. {
  85. .idcode = 0x32440001,
  86. .idmask = 0xffffffff,
  87. .map_io = s3c2440_map_io,
  88. .init_clocks = s3c244x_init_clocks,
  89. .init_uarts = s3c244x_init_uarts,
  90. .init = s3c2440_init,
  91. .name = name_s3c2440a
  92. },
  93. {
  94. .idcode = 0x32440aaa,
  95. .idmask = 0xffffffff,
  96. .map_io = s3c2442_map_io,
  97. .init_clocks = s3c244x_init_clocks,
  98. .init_uarts = s3c244x_init_uarts,
  99. .init = s3c2442_init,
  100. .name = name_s3c2442
  101. },
  102. {
  103. .idcode = 0x32440aab,
  104. .idmask = 0xffffffff,
  105. .map_io = s3c2442_map_io,
  106. .init_clocks = s3c244x_init_clocks,
  107. .init_uarts = s3c244x_init_uarts,
  108. .init = s3c2442_init,
  109. .name = name_s3c2442b
  110. },
  111. {
  112. .idcode = 0x32412001,
  113. .idmask = 0xffffffff,
  114. .map_io = s3c2412_map_io,
  115. .init_clocks = s3c2412_init_clocks,
  116. .init_uarts = s3c2412_init_uarts,
  117. .init = s3c2412_init,
  118. .name = name_s3c2412,
  119. },
  120. { /* a newer version of the s3c2412 */
  121. .idcode = 0x32412003,
  122. .idmask = 0xffffffff,
  123. .map_io = s3c2412_map_io,
  124. .init_clocks = s3c2412_init_clocks,
  125. .init_uarts = s3c2412_init_uarts,
  126. .init = s3c2412_init,
  127. .name = name_s3c2412,
  128. },
  129. { /* a strange version of the s3c2416 */
  130. .idcode = 0x32450003,
  131. .idmask = 0xffffffff,
  132. .map_io = s3c2416_map_io,
  133. .init_clocks = s3c2416_init_clocks,
  134. .init_uarts = s3c2416_init_uarts,
  135. .init = s3c2416_init,
  136. .name = name_s3c2416,
  137. },
  138. {
  139. .idcode = 0x32443001,
  140. .idmask = 0xffffffff,
  141. .map_io = s3c2443_map_io,
  142. .init_clocks = s3c2443_init_clocks,
  143. .init_uarts = s3c2443_init_uarts,
  144. .init = s3c2443_init,
  145. .name = name_s3c2443,
  146. },
  147. };
  148. /* minimal IO mapping */
  149. static struct map_desc s3c_iodesc[] __initdata = {
  150. IODESC_ENT(GPIO),
  151. IODESC_ENT(IRQ),
  152. IODESC_ENT(MEMCTRL),
  153. IODESC_ENT(UART)
  154. };
  155. /* read cpu identificaiton code */
  156. static unsigned long s3c24xx_read_idcode_v5(void)
  157. {
  158. #if defined(CONFIG_CPU_S3C2416)
  159. /* s3c2416 is v5, with S3C24XX_GSTATUS1 instead of S3C2412_GSTATUS1 */
  160. u32 gs = __raw_readl(S3C24XX_GSTATUS1);
  161. /* test for s3c2416 or similar device */
  162. if ((gs >> 16) == 0x3245)
  163. return gs;
  164. #endif
  165. #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
  166. return __raw_readl(S3C2412_GSTATUS1);
  167. #else
  168. return 1UL; /* don't look like an 2400 */
  169. #endif
  170. }
  171. static unsigned long s3c24xx_read_idcode_v4(void)
  172. {
  173. return __raw_readl(S3C2410_GSTATUS1);
  174. }
  175. void __init s3c24xx_init_io(struct map_desc *mach_desc, int size)
  176. {
  177. /* initialise the io descriptors we need for initialisation */
  178. iotable_init(mach_desc, size);
  179. iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));
  180. if (cpu_architecture() >= CPU_ARCH_ARMv5) {
  181. samsung_cpu_id = s3c24xx_read_idcode_v5();
  182. } else {
  183. samsung_cpu_id = s3c24xx_read_idcode_v4();
  184. }
  185. s3c24xx_init_cpu();
  186. s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
  187. }