setup.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /*
  2. * linux/arch/sh/boards/se/7722/setup.c
  3. *
  4. * Copyright (C) 2007 Nobuhiro Iwamatsu
  5. *
  6. * Hitachi UL SolutionEngine 7722 Support.
  7. *
  8. * This file is subject to the terms and conditions of the GNU General Public
  9. * License. See the file "COPYING" in the main directory of this archive
  10. * for more details.
  11. *
  12. */
  13. #include <linux/init.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/ata_platform.h>
  16. #include <linux/input.h>
  17. #include <linux/smc91x.h>
  18. #include <mach-se/mach/se7722.h>
  19. #include <mach-se/mach/mrshpc.h>
  20. #include <asm/machvec.h>
  21. #include <asm/clock.h>
  22. #include <asm/io.h>
  23. #include <asm/heartbeat.h>
  24. #include <asm/sh_keysc.h>
  25. /* Heartbeat */
  26. static struct heartbeat_data heartbeat_data = {
  27. .regsize = 16,
  28. };
  29. static struct resource heartbeat_resources[] = {
  30. [0] = {
  31. .start = PA_LED,
  32. .end = PA_LED,
  33. .flags = IORESOURCE_MEM,
  34. },
  35. };
  36. static struct platform_device heartbeat_device = {
  37. .name = "heartbeat",
  38. .id = -1,
  39. .dev = {
  40. .platform_data = &heartbeat_data,
  41. },
  42. .num_resources = ARRAY_SIZE(heartbeat_resources),
  43. .resource = heartbeat_resources,
  44. };
  45. /* SMC91x */
  46. static struct smc91x_platdata smc91x_info = {
  47. .flags = SMC91X_USE_16BIT,
  48. };
  49. static struct resource smc91x_eth_resources[] = {
  50. [0] = {
  51. .name = "smc91x-regs" ,
  52. .start = PA_LAN + 0x300,
  53. .end = PA_LAN + 0x300 + 0x10 ,
  54. .flags = IORESOURCE_MEM,
  55. },
  56. [1] = {
  57. .start = SMC_IRQ,
  58. .end = SMC_IRQ,
  59. .flags = IORESOURCE_IRQ,
  60. },
  61. };
  62. static struct platform_device smc91x_eth_device = {
  63. .name = "smc91x",
  64. .id = 0,
  65. .dev = {
  66. .dma_mask = NULL, /* don't use dma */
  67. .coherent_dma_mask = 0xffffffff,
  68. .platform_data = &smc91x_info,
  69. },
  70. .num_resources = ARRAY_SIZE(smc91x_eth_resources),
  71. .resource = smc91x_eth_resources,
  72. };
  73. static struct resource cf_ide_resources[] = {
  74. [0] = {
  75. .start = PA_MRSHPC_IO + 0x1f0,
  76. .end = PA_MRSHPC_IO + 0x1f0 + 8 ,
  77. .flags = IORESOURCE_IO,
  78. },
  79. [1] = {
  80. .start = PA_MRSHPC_IO + 0x1f0 + 0x206,
  81. .end = PA_MRSHPC_IO + 0x1f0 +8 + 0x206 + 8,
  82. .flags = IORESOURCE_IO,
  83. },
  84. [2] = {
  85. .start = MRSHPC_IRQ0,
  86. .end = MRSHPC_IRQ0,
  87. .flags = IORESOURCE_IRQ,
  88. },
  89. };
  90. static struct platform_device cf_ide_device = {
  91. .name = "pata_platform",
  92. .id = -1,
  93. .num_resources = ARRAY_SIZE(cf_ide_resources),
  94. .resource = cf_ide_resources,
  95. };
  96. static struct sh_keysc_info sh_keysc_info = {
  97. .mode = SH_KEYSC_MODE_1, /* KEYOUT0->5, KEYIN0->4 */
  98. .scan_timing = 3,
  99. .delay = 5,
  100. .keycodes = { /* SW1 -> SW30 */
  101. KEY_A, KEY_B, KEY_C, KEY_D, KEY_E,
  102. KEY_F, KEY_G, KEY_H, KEY_I, KEY_J,
  103. KEY_K, KEY_L, KEY_M, KEY_N, KEY_O,
  104. KEY_P, KEY_Q, KEY_R, KEY_S, KEY_T,
  105. KEY_U, KEY_V, KEY_W, KEY_X, KEY_Y,
  106. KEY_Z,
  107. KEY_HOME, KEY_SLEEP, KEY_WAKEUP, KEY_COFFEE, /* life */
  108. },
  109. };
  110. static struct resource sh_keysc_resources[] = {
  111. [0] = {
  112. .start = 0x044b0000,
  113. .end = 0x044b000f,
  114. .flags = IORESOURCE_MEM,
  115. },
  116. [1] = {
  117. .start = 79,
  118. .flags = IORESOURCE_IRQ,
  119. },
  120. };
  121. static struct platform_device sh_keysc_device = {
  122. .name = "sh_keysc",
  123. .id = 0, /* "keysc0" clock */
  124. .num_resources = ARRAY_SIZE(sh_keysc_resources),
  125. .resource = sh_keysc_resources,
  126. .dev = {
  127. .platform_data = &sh_keysc_info,
  128. },
  129. };
  130. static struct platform_device *se7722_devices[] __initdata = {
  131. &heartbeat_device,
  132. &smc91x_eth_device,
  133. &cf_ide_device,
  134. &sh_keysc_device,
  135. };
  136. static int __init se7722_devices_setup(void)
  137. {
  138. mrshpc_setup_windows();
  139. return platform_add_devices(se7722_devices, ARRAY_SIZE(se7722_devices));
  140. }
  141. device_initcall(se7722_devices_setup);
  142. static void __init se7722_setup(char **cmdline_p)
  143. {
  144. ctrl_outw(0x010D, FPGA_OUT); /* FPGA */
  145. ctrl_outw(0x0000, PORT_PECR); /* PORT E 1 = IRQ5 ,E 0 = BS */
  146. ctrl_outw(0x1000, PORT_PJCR); /* PORT J 1 = IRQ1,J 0 =IRQ0 */
  147. /* LCDC I/O */
  148. ctrl_outw(0x0020, PORT_PSELD);
  149. /* SIOF1*/
  150. ctrl_outw(0x0003, PORT_PSELB);
  151. ctrl_outw(0xe000, PORT_PSELC);
  152. ctrl_outw(0x0000, PORT_PKCR);
  153. /* LCDC */
  154. ctrl_outw(0x4020, PORT_PHCR);
  155. ctrl_outw(0x0000, PORT_PLCR);
  156. ctrl_outw(0x0000, PORT_PMCR);
  157. ctrl_outw(0x0002, PORT_PRCR);
  158. ctrl_outw(0x0000, PORT_PXCR); /* LCDC,CS6A */
  159. /* KEYSC */
  160. ctrl_outw(0x0A10, PORT_PSELA); /* BS,SHHID2 */
  161. ctrl_outw(0x0000, PORT_PYCR);
  162. ctrl_outw(0x0000, PORT_PZCR);
  163. ctrl_outw(ctrl_inw(PORT_HIZCRA) & ~0x4000, PORT_HIZCRA);
  164. ctrl_outw(ctrl_inw(PORT_HIZCRC) & ~0xc000, PORT_HIZCRC);
  165. }
  166. /*
  167. * The Machine Vector
  168. */
  169. static struct sh_machine_vector mv_se7722 __initmv = {
  170. .mv_name = "Solution Engine 7722" ,
  171. .mv_setup = se7722_setup ,
  172. .mv_nr_irqs = SE7722_FPGA_IRQ_BASE + SE7722_FPGA_IRQ_NR,
  173. .mv_init_irq = init_se7722_IRQ,
  174. };