setup.c 4.5 KB

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