setup-sh7377.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /*
  2. * sh7377 processor support
  3. *
  4. * Copyright (C) 2010 Magnus Damm
  5. * Copyright (C) 2008 Yoshihiro Shimoda
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/init.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/irq.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/delay.h>
  26. #include <linux/input.h>
  27. #include <linux/io.h>
  28. #include <linux/serial_sci.h>
  29. #include <linux/sh_intc.h>
  30. #include <linux/sh_timer.h>
  31. #include <mach/hardware.h>
  32. #include <asm/mach-types.h>
  33. #include <asm/mach/arch.h>
  34. /* SCIFA0 */
  35. static struct plat_sci_port scif0_platform_data = {
  36. .mapbase = 0xe6c40000,
  37. .flags = UPF_BOOT_AUTOCONF,
  38. .scscr = SCSCR_RE | SCSCR_TE,
  39. .scbrr_algo_id = SCBRR_ALGO_4,
  40. .type = PORT_SCIF,
  41. .irqs = { evt2irq(0xc00), evt2irq(0xc00),
  42. evt2irq(0xc00), evt2irq(0xc00) },
  43. };
  44. static struct platform_device scif0_device = {
  45. .name = "sh-sci",
  46. .id = 0,
  47. .dev = {
  48. .platform_data = &scif0_platform_data,
  49. },
  50. };
  51. /* SCIFA1 */
  52. static struct plat_sci_port scif1_platform_data = {
  53. .mapbase = 0xe6c50000,
  54. .flags = UPF_BOOT_AUTOCONF,
  55. .scscr = SCSCR_RE | SCSCR_TE,
  56. .scbrr_algo_id = SCBRR_ALGO_4,
  57. .type = PORT_SCIF,
  58. .irqs = { evt2irq(0xc20), evt2irq(0xc20),
  59. evt2irq(0xc20), evt2irq(0xc20) },
  60. };
  61. static struct platform_device scif1_device = {
  62. .name = "sh-sci",
  63. .id = 1,
  64. .dev = {
  65. .platform_data = &scif1_platform_data,
  66. },
  67. };
  68. /* SCIFA2 */
  69. static struct plat_sci_port scif2_platform_data = {
  70. .mapbase = 0xe6c60000,
  71. .flags = UPF_BOOT_AUTOCONF,
  72. .scscr = SCSCR_RE | SCSCR_TE,
  73. .scbrr_algo_id = SCBRR_ALGO_4,
  74. .type = PORT_SCIF,
  75. .irqs = { evt2irq(0xc40), evt2irq(0xc40),
  76. evt2irq(0xc40), evt2irq(0xc40) },
  77. };
  78. static struct platform_device scif2_device = {
  79. .name = "sh-sci",
  80. .id = 2,
  81. .dev = {
  82. .platform_data = &scif2_platform_data,
  83. },
  84. };
  85. /* SCIFA3 */
  86. static struct plat_sci_port scif3_platform_data = {
  87. .mapbase = 0xe6c70000,
  88. .flags = UPF_BOOT_AUTOCONF,
  89. .scscr = SCSCR_RE | SCSCR_TE,
  90. .scbrr_algo_id = SCBRR_ALGO_4,
  91. .type = PORT_SCIF,
  92. .irqs = { evt2irq(0xc60), evt2irq(0xc60),
  93. evt2irq(0xc60), evt2irq(0xc60) },
  94. };
  95. static struct platform_device scif3_device = {
  96. .name = "sh-sci",
  97. .id = 3,
  98. .dev = {
  99. .platform_data = &scif3_platform_data,
  100. },
  101. };
  102. /* SCIFA4 */
  103. static struct plat_sci_port scif4_platform_data = {
  104. .mapbase = 0xe6c80000,
  105. .flags = UPF_BOOT_AUTOCONF,
  106. .scscr = SCSCR_RE | SCSCR_TE,
  107. .scbrr_algo_id = SCBRR_ALGO_4,
  108. .type = PORT_SCIF,
  109. .irqs = { evt2irq(0xd20), evt2irq(0xd20),
  110. evt2irq(0xd20), evt2irq(0xd20) },
  111. };
  112. static struct platform_device scif4_device = {
  113. .name = "sh-sci",
  114. .id = 4,
  115. .dev = {
  116. .platform_data = &scif4_platform_data,
  117. },
  118. };
  119. /* SCIFA5 */
  120. static struct plat_sci_port scif5_platform_data = {
  121. .mapbase = 0xe6cb0000,
  122. .flags = UPF_BOOT_AUTOCONF,
  123. .scscr = SCSCR_RE | SCSCR_TE,
  124. .scbrr_algo_id = SCBRR_ALGO_4,
  125. .type = PORT_SCIF,
  126. .irqs = { evt2irq(0xd40), evt2irq(0xd40),
  127. evt2irq(0xd40), evt2irq(0xd40) },
  128. };
  129. static struct platform_device scif5_device = {
  130. .name = "sh-sci",
  131. .id = 5,
  132. .dev = {
  133. .platform_data = &scif5_platform_data,
  134. },
  135. };
  136. /* SCIFA6 */
  137. static struct plat_sci_port scif6_platform_data = {
  138. .mapbase = 0xe6cc0000,
  139. .flags = UPF_BOOT_AUTOCONF,
  140. .scscr = SCSCR_RE | SCSCR_TE,
  141. .scbrr_algo_id = SCBRR_ALGO_4,
  142. .type = PORT_SCIF,
  143. .irqs = { intcs_evt2irq(0x1a80), intcs_evt2irq(0x1a80),
  144. intcs_evt2irq(0x1a80), intcs_evt2irq(0x1a80) },
  145. };
  146. static struct platform_device scif6_device = {
  147. .name = "sh-sci",
  148. .id = 6,
  149. .dev = {
  150. .platform_data = &scif6_platform_data,
  151. },
  152. };
  153. /* SCIFB */
  154. static struct plat_sci_port scif7_platform_data = {
  155. .mapbase = 0xe6c30000,
  156. .flags = UPF_BOOT_AUTOCONF,
  157. .scscr = SCSCR_RE | SCSCR_TE,
  158. .scbrr_algo_id = SCBRR_ALGO_4,
  159. .type = PORT_SCIF,
  160. .irqs = { evt2irq(0xd60), evt2irq(0xd60),
  161. evt2irq(0xd60), evt2irq(0xd60) },
  162. };
  163. static struct platform_device scif7_device = {
  164. .name = "sh-sci",
  165. .id = 7,
  166. .dev = {
  167. .platform_data = &scif7_platform_data,
  168. },
  169. };
  170. static struct sh_timer_config cmt10_platform_data = {
  171. .name = "CMT10",
  172. .channel_offset = 0x10,
  173. .timer_bit = 0,
  174. .clockevent_rating = 125,
  175. .clocksource_rating = 125,
  176. };
  177. static struct resource cmt10_resources[] = {
  178. [0] = {
  179. .name = "CMT10",
  180. .start = 0xe6138010,
  181. .end = 0xe613801b,
  182. .flags = IORESOURCE_MEM,
  183. },
  184. [1] = {
  185. .start = evt2irq(0xb00), /* CMT1_CMT10 */
  186. .flags = IORESOURCE_IRQ,
  187. },
  188. };
  189. static struct platform_device cmt10_device = {
  190. .name = "sh_cmt",
  191. .id = 10,
  192. .dev = {
  193. .platform_data = &cmt10_platform_data,
  194. },
  195. .resource = cmt10_resources,
  196. .num_resources = ARRAY_SIZE(cmt10_resources),
  197. };
  198. static struct platform_device *sh7377_early_devices[] __initdata = {
  199. &scif0_device,
  200. &scif1_device,
  201. &scif2_device,
  202. &scif3_device,
  203. &scif4_device,
  204. &scif5_device,
  205. &scif6_device,
  206. &scif7_device,
  207. &cmt10_device,
  208. };
  209. void __init sh7377_add_standard_devices(void)
  210. {
  211. platform_add_devices(sh7377_early_devices,
  212. ARRAY_SIZE(sh7377_early_devices));
  213. }
  214. #define SMSTPCR3 0xe615013c
  215. #define SMSTPCR3_CMT1 (1 << 29)
  216. void __init sh7377_add_early_devices(void)
  217. {
  218. /* enable clock to CMT1 */
  219. __raw_writel(__raw_readl(SMSTPCR3) & ~SMSTPCR3_CMT1, SMSTPCR3);
  220. early_platform_add_devices(sh7377_early_devices,
  221. ARRAY_SIZE(sh7377_early_devices));
  222. }