setup-sh4-202.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * SH4-202 Setup
  3. *
  4. * Copyright (C) 2006 Paul Mundt
  5. * Copyright (C) 2009 Magnus Damm
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file "COPYING" in the main directory of this archive
  9. * for more details.
  10. */
  11. #include <linux/platform_device.h>
  12. #include <linux/init.h>
  13. #include <linux/serial.h>
  14. #include <linux/serial_sci.h>
  15. #include <linux/sh_timer.h>
  16. #include <linux/sh_intc.h>
  17. #include <linux/io.h>
  18. static struct plat_sci_port scif0_platform_data = {
  19. .flags = UPF_BOOT_AUTOCONF,
  20. .scscr = SCSCR_RE | SCSCR_TE | SCSCR_REIE,
  21. .type = PORT_SCIF,
  22. };
  23. static struct resource scif0_resources[] = {
  24. DEFINE_RES_MEM(0xffe80000, 0x100),
  25. DEFINE_RES_IRQ(evt2irq(0x700)),
  26. DEFINE_RES_IRQ(evt2irq(0x720)),
  27. DEFINE_RES_IRQ(evt2irq(0x760)),
  28. DEFINE_RES_IRQ(evt2irq(0x740)),
  29. };
  30. static struct platform_device scif0_device = {
  31. .name = "sh-sci",
  32. .id = 0,
  33. .resource = scif0_resources,
  34. .num_resources = ARRAY_SIZE(scif0_resources),
  35. .dev = {
  36. .platform_data = &scif0_platform_data,
  37. },
  38. };
  39. static struct sh_timer_config tmu0_platform_data = {
  40. .channels_mask = 7,
  41. };
  42. static struct resource tmu0_resources[] = {
  43. DEFINE_RES_MEM(0xffd80000, 0x30),
  44. DEFINE_RES_IRQ(evt2irq(0x400)),
  45. DEFINE_RES_IRQ(evt2irq(0x420)),
  46. DEFINE_RES_IRQ(evt2irq(0x440)),
  47. };
  48. static struct platform_device tmu0_device = {
  49. .name = "sh-tmu",
  50. .id = 0,
  51. .dev = {
  52. .platform_data = &tmu0_platform_data,
  53. },
  54. .resource = tmu0_resources,
  55. .num_resources = ARRAY_SIZE(tmu0_resources),
  56. };
  57. static struct platform_device *sh4202_devices[] __initdata = {
  58. &scif0_device,
  59. &tmu0_device,
  60. };
  61. static int __init sh4202_devices_setup(void)
  62. {
  63. return platform_add_devices(sh4202_devices,
  64. ARRAY_SIZE(sh4202_devices));
  65. }
  66. arch_initcall(sh4202_devices_setup);
  67. static struct platform_device *sh4202_early_devices[] __initdata = {
  68. &scif0_device,
  69. &tmu0_device,
  70. };
  71. void __init plat_early_device_setup(void)
  72. {
  73. early_platform_add_devices(sh4202_early_devices,
  74. ARRAY_SIZE(sh4202_early_devices));
  75. }
  76. enum {
  77. UNUSED = 0,
  78. /* interrupt sources */
  79. IRL0, IRL1, IRL2, IRL3, /* only IRLM mode supported */
  80. HUDI, TMU0, TMU1, TMU2, RTC, SCIF, WDT,
  81. };
  82. static struct intc_vect vectors[] __initdata = {
  83. INTC_VECT(HUDI, 0x600),
  84. INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420),
  85. INTC_VECT(TMU2, 0x440), INTC_VECT(TMU2, 0x460),
  86. INTC_VECT(RTC, 0x480), INTC_VECT(RTC, 0x4a0),
  87. INTC_VECT(RTC, 0x4c0),
  88. INTC_VECT(SCIF, 0x700), INTC_VECT(SCIF, 0x720),
  89. INTC_VECT(SCIF, 0x740), INTC_VECT(SCIF, 0x760),
  90. INTC_VECT(WDT, 0x560),
  91. };
  92. static struct intc_prio_reg prio_registers[] __initdata = {
  93. { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2, RTC } },
  94. { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT, 0, 0, 0 } },
  95. { 0xffd0000c, 0, 16, 4, /* IPRC */ { 0, 0, SCIF, HUDI } },
  96. { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0, IRL1, IRL2, IRL3 } },
  97. };
  98. static DECLARE_INTC_DESC(intc_desc, "sh4-202", vectors, NULL,
  99. NULL, prio_registers, NULL);
  100. static struct intc_vect vectors_irlm[] __initdata = {
  101. INTC_VECT(IRL0, 0x240), INTC_VECT(IRL1, 0x2a0),
  102. INTC_VECT(IRL2, 0x300), INTC_VECT(IRL3, 0x360),
  103. };
  104. static DECLARE_INTC_DESC(intc_desc_irlm, "sh4-202_irlm", vectors_irlm, NULL,
  105. NULL, prio_registers, NULL);
  106. void __init plat_irq_setup(void)
  107. {
  108. register_intc_controller(&intc_desc);
  109. }
  110. #define INTC_ICR 0xffd00000UL
  111. #define INTC_ICR_IRLM (1<<7)
  112. void __init plat_irq_setup_pins(int mode)
  113. {
  114. switch (mode) {
  115. case IRQ_MODE_IRQ: /* individual interrupt mode for IRL3-0 */
  116. __raw_writew(__raw_readw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
  117. register_intc_controller(&intc_desc_irlm);
  118. break;
  119. default:
  120. BUG();
  121. }
  122. }