board-g4evm.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. /*
  2. * G4EVM board 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/mtd/mtd.h>
  27. #include <linux/mtd/partitions.h>
  28. #include <linux/mtd/physmap.h>
  29. #include <linux/usb/r8a66597.h>
  30. #include <linux/io.h>
  31. #include <linux/input.h>
  32. #include <linux/input/sh_keysc.h>
  33. #include <linux/mmc/host.h>
  34. #include <linux/mmc/sh_mobile_sdhi.h>
  35. #include <linux/gpio.h>
  36. #include <linux/dma-mapping.h>
  37. #include <mach/sh7377.h>
  38. #include <mach/common.h>
  39. #include <asm/mach-types.h>
  40. #include <asm/mach/arch.h>
  41. #include <asm/mach/map.h>
  42. #include <asm/mach/time.h>
  43. /*
  44. * SDHI
  45. *
  46. * SDHI0 : card detection is possible
  47. * SDHI1 : card detection is impossible
  48. *
  49. * [G4-MAIN-BOARD]
  50. * JP74 : short # DBG_2V8A for SDHI0
  51. * JP75 : NC # DBG_3V3A for SDHI0
  52. * JP76 : NC # DBG_3V3A_SD for SDHI0
  53. * JP77 : NC # 3V3A_SDIO for SDHI1
  54. * JP78 : short # DBG_2V8A for SDHI1
  55. * JP79 : NC # DBG_3V3A for SDHI1
  56. * JP80 : NC # DBG_3V3A_SD for SDHI1
  57. *
  58. * [G4-CORE-BOARD]
  59. * S32 : all off # to dissever from G3-CORE_DBG board
  60. * S33 : all off # to dissever from G3-CORE_DBG board
  61. *
  62. * [G3-CORE_DBG-BOARD]
  63. * S1 : all off # to dissever from G3-CORE_DBG board
  64. * S3 : all off # to dissever from G3-CORE_DBG board
  65. * S4 : all off # to dissever from G3-CORE_DBG board
  66. */
  67. static struct mtd_partition nor_flash_partitions[] = {
  68. {
  69. .name = "loader",
  70. .offset = 0x00000000,
  71. .size = 512 * 1024,
  72. },
  73. {
  74. .name = "bootenv",
  75. .offset = MTDPART_OFS_APPEND,
  76. .size = 512 * 1024,
  77. },
  78. {
  79. .name = "kernel_ro",
  80. .offset = MTDPART_OFS_APPEND,
  81. .size = 8 * 1024 * 1024,
  82. .mask_flags = MTD_WRITEABLE,
  83. },
  84. {
  85. .name = "kernel",
  86. .offset = MTDPART_OFS_APPEND,
  87. .size = 8 * 1024 * 1024,
  88. },
  89. {
  90. .name = "data",
  91. .offset = MTDPART_OFS_APPEND,
  92. .size = MTDPART_SIZ_FULL,
  93. },
  94. };
  95. static struct physmap_flash_data nor_flash_data = {
  96. .width = 2,
  97. .parts = nor_flash_partitions,
  98. .nr_parts = ARRAY_SIZE(nor_flash_partitions),
  99. };
  100. static struct resource nor_flash_resources[] = {
  101. [0] = {
  102. .start = 0x00000000,
  103. .end = 0x08000000 - 1,
  104. .flags = IORESOURCE_MEM,
  105. }
  106. };
  107. static struct platform_device nor_flash_device = {
  108. .name = "physmap-flash",
  109. .dev = {
  110. .platform_data = &nor_flash_data,
  111. },
  112. .num_resources = ARRAY_SIZE(nor_flash_resources),
  113. .resource = nor_flash_resources,
  114. };
  115. /* USBHS */
  116. static void usb_host_port_power(int port, int power)
  117. {
  118. if (!power) /* only power-on supported for now */
  119. return;
  120. /* set VBOUT/PWEN and EXTLP0 in DVSTCTR */
  121. __raw_writew(__raw_readw(0xe6890008) | 0x600, 0xe6890008);
  122. }
  123. static struct r8a66597_platdata usb_host_data = {
  124. .on_chip = 1,
  125. .port_power = usb_host_port_power,
  126. };
  127. static struct resource usb_host_resources[] = {
  128. [0] = {
  129. .name = "USBHS",
  130. .start = 0xe6890000,
  131. .end = 0xe68900e5,
  132. .flags = IORESOURCE_MEM,
  133. },
  134. [1] = {
  135. .start = evt2irq(0x0a20), /* USBHS_USHI0 */
  136. .flags = IORESOURCE_IRQ,
  137. },
  138. };
  139. static struct platform_device usb_host_device = {
  140. .name = "r8a66597_hcd",
  141. .id = 0,
  142. .dev = {
  143. .platform_data = &usb_host_data,
  144. .dma_mask = NULL,
  145. .coherent_dma_mask = 0xffffffff,
  146. },
  147. .num_resources = ARRAY_SIZE(usb_host_resources),
  148. .resource = usb_host_resources,
  149. };
  150. /* KEYSC */
  151. static struct sh_keysc_info keysc_info = {
  152. .mode = SH_KEYSC_MODE_5,
  153. .scan_timing = 3,
  154. .delay = 100,
  155. .keycodes = {
  156. KEY_A, KEY_B, KEY_C, KEY_D, KEY_E, KEY_F,
  157. KEY_G, KEY_H, KEY_I, KEY_J, KEY_K, KEY_L,
  158. KEY_M, KEY_N, KEY_U, KEY_P, KEY_Q, KEY_R,
  159. KEY_S, KEY_T, KEY_U, KEY_V, KEY_W, KEY_X,
  160. KEY_Y, KEY_Z, KEY_HOME, KEY_SLEEP, KEY_WAKEUP, KEY_COFFEE,
  161. KEY_0, KEY_1, KEY_2, KEY_3, KEY_4, KEY_5,
  162. KEY_6, KEY_7, KEY_8, KEY_9, KEY_STOP, KEY_COMPUTER,
  163. },
  164. };
  165. static struct resource keysc_resources[] = {
  166. [0] = {
  167. .name = "KEYSC",
  168. .start = 0xe61b0000,
  169. .end = 0xe61b000f,
  170. .flags = IORESOURCE_MEM,
  171. },
  172. [1] = {
  173. .start = evt2irq(0x0be0), /* KEYSC_KEY */
  174. .flags = IORESOURCE_IRQ,
  175. },
  176. };
  177. static struct platform_device keysc_device = {
  178. .name = "sh_keysc",
  179. .id = 0, /* keysc0 clock */
  180. .num_resources = ARRAY_SIZE(keysc_resources),
  181. .resource = keysc_resources,
  182. .dev = {
  183. .platform_data = &keysc_info,
  184. },
  185. };
  186. /* SDHI */
  187. static struct sh_mobile_sdhi_info sdhi0_info = {
  188. .tmio_caps = MMC_CAP_SDIO_IRQ,
  189. };
  190. static struct resource sdhi0_resources[] = {
  191. [0] = {
  192. .name = "SDHI0",
  193. .start = 0xe6d50000,
  194. .end = 0xe6d500ff,
  195. .flags = IORESOURCE_MEM,
  196. },
  197. [1] = {
  198. .start = evt2irq(0x0e00), /* SDHI0 */
  199. .flags = IORESOURCE_IRQ,
  200. },
  201. };
  202. static struct platform_device sdhi0_device = {
  203. .name = "sh_mobile_sdhi",
  204. .num_resources = ARRAY_SIZE(sdhi0_resources),
  205. .resource = sdhi0_resources,
  206. .id = 0,
  207. .dev = {
  208. .platform_data = &sdhi0_info,
  209. },
  210. };
  211. static struct sh_mobile_sdhi_info sdhi1_info = {
  212. .tmio_caps = MMC_CAP_NONREMOVABLE | MMC_CAP_SDIO_IRQ,
  213. };
  214. static struct resource sdhi1_resources[] = {
  215. [0] = {
  216. .name = "SDHI1",
  217. .start = 0xe6d60000,
  218. .end = 0xe6d600ff,
  219. .flags = IORESOURCE_MEM,
  220. },
  221. [1] = {
  222. .start = evt2irq(0x0e80), /* SDHI1 */
  223. .flags = IORESOURCE_IRQ,
  224. },
  225. };
  226. static struct platform_device sdhi1_device = {
  227. .name = "sh_mobile_sdhi",
  228. .num_resources = ARRAY_SIZE(sdhi1_resources),
  229. .resource = sdhi1_resources,
  230. .id = 1,
  231. .dev = {
  232. .platform_data = &sdhi1_info,
  233. },
  234. };
  235. static struct platform_device *g4evm_devices[] __initdata = {
  236. &nor_flash_device,
  237. &usb_host_device,
  238. &keysc_device,
  239. &sdhi0_device,
  240. &sdhi1_device,
  241. };
  242. static struct map_desc g4evm_io_desc[] __initdata = {
  243. /* create a 1:1 entity map for 0xe6xxxxxx
  244. * used by CPGA, INTC and PFC.
  245. */
  246. {
  247. .virtual = 0xe6000000,
  248. .pfn = __phys_to_pfn(0xe6000000),
  249. .length = 256 << 20,
  250. .type = MT_DEVICE_NONSHARED
  251. },
  252. };
  253. static void __init g4evm_map_io(void)
  254. {
  255. iotable_init(g4evm_io_desc, ARRAY_SIZE(g4evm_io_desc));
  256. /* setup early devices and console here as well */
  257. sh7377_add_early_devices();
  258. shmobile_setup_console();
  259. }
  260. #define GPIO_SDHID0_D0 0xe60520fc
  261. #define GPIO_SDHID0_D1 0xe60520fd
  262. #define GPIO_SDHID0_D2 0xe60520fe
  263. #define GPIO_SDHID0_D3 0xe60520ff
  264. #define GPIO_SDHICMD0 0xe6052100
  265. #define GPIO_SDHID1_D0 0xe6052103
  266. #define GPIO_SDHID1_D1 0xe6052104
  267. #define GPIO_SDHID1_D2 0xe6052105
  268. #define GPIO_SDHID1_D3 0xe6052106
  269. #define GPIO_SDHICMD1 0xe6052107
  270. /*
  271. * FIXME !!
  272. *
  273. * gpio_pull_up is quick_hack.
  274. *
  275. * current gpio frame work doesn't have
  276. * the method to control only pull up/down/free.
  277. * this function should be replaced by correct gpio function
  278. */
  279. static void __init gpio_pull_up(u32 addr)
  280. {
  281. u8 data = __raw_readb(addr);
  282. data &= 0x0F;
  283. data |= 0xC0;
  284. __raw_writeb(data, addr);
  285. }
  286. static void __init g4evm_init(void)
  287. {
  288. sh7377_pinmux_init();
  289. /* Lit DS14 LED */
  290. gpio_request(GPIO_PORT109, NULL);
  291. gpio_direction_output(GPIO_PORT109, 1);
  292. gpio_export(GPIO_PORT109, 1);
  293. /* Lit DS15 LED */
  294. gpio_request(GPIO_PORT110, NULL);
  295. gpio_direction_output(GPIO_PORT110, 1);
  296. gpio_export(GPIO_PORT110, 1);
  297. /* Lit DS16 LED */
  298. gpio_request(GPIO_PORT112, NULL);
  299. gpio_direction_output(GPIO_PORT112, 1);
  300. gpio_export(GPIO_PORT112, 1);
  301. /* Lit DS17 LED */
  302. gpio_request(GPIO_PORT113, NULL);
  303. gpio_direction_output(GPIO_PORT113, 1);
  304. gpio_export(GPIO_PORT113, 1);
  305. /* USBHS */
  306. gpio_request(GPIO_FN_VBUS_0, NULL);
  307. gpio_request(GPIO_FN_PWEN, NULL);
  308. gpio_request(GPIO_FN_OVCN, NULL);
  309. gpio_request(GPIO_FN_OVCN2, NULL);
  310. gpio_request(GPIO_FN_EXTLP, NULL);
  311. gpio_request(GPIO_FN_IDIN, NULL);
  312. /* setup USB phy */
  313. __raw_writew(0x0200, 0xe605810a); /* USBCR1 */
  314. __raw_writew(0x00e0, 0xe60581c0); /* CPFCH */
  315. __raw_writew(0x6010, 0xe60581c6); /* CGPOSR */
  316. __raw_writew(0x8a0a, 0xe605810c); /* USBCR2 */
  317. /* KEYSC @ CN31 */
  318. gpio_request(GPIO_FN_PORT60_KEYOUT5, NULL);
  319. gpio_request(GPIO_FN_PORT61_KEYOUT4, NULL);
  320. gpio_request(GPIO_FN_PORT62_KEYOUT3, NULL);
  321. gpio_request(GPIO_FN_PORT63_KEYOUT2, NULL);
  322. gpio_request(GPIO_FN_PORT64_KEYOUT1, NULL);
  323. gpio_request(GPIO_FN_PORT65_KEYOUT0, NULL);
  324. gpio_request(GPIO_FN_PORT66_KEYIN0_PU, NULL);
  325. gpio_request(GPIO_FN_PORT67_KEYIN1_PU, NULL);
  326. gpio_request(GPIO_FN_PORT68_KEYIN2_PU, NULL);
  327. gpio_request(GPIO_FN_PORT69_KEYIN3_PU, NULL);
  328. gpio_request(GPIO_FN_PORT70_KEYIN4_PU, NULL);
  329. gpio_request(GPIO_FN_PORT71_KEYIN5_PU, NULL);
  330. gpio_request(GPIO_FN_PORT72_KEYIN6_PU, NULL);
  331. /* SDHI0 */
  332. gpio_request(GPIO_FN_SDHICLK0, NULL);
  333. gpio_request(GPIO_FN_SDHICD0, NULL);
  334. gpio_request(GPIO_FN_SDHID0_0, NULL);
  335. gpio_request(GPIO_FN_SDHID0_1, NULL);
  336. gpio_request(GPIO_FN_SDHID0_2, NULL);
  337. gpio_request(GPIO_FN_SDHID0_3, NULL);
  338. gpio_request(GPIO_FN_SDHICMD0, NULL);
  339. gpio_request(GPIO_FN_SDHIWP0, NULL);
  340. gpio_pull_up(GPIO_SDHID0_D0);
  341. gpio_pull_up(GPIO_SDHID0_D1);
  342. gpio_pull_up(GPIO_SDHID0_D2);
  343. gpio_pull_up(GPIO_SDHID0_D3);
  344. gpio_pull_up(GPIO_SDHICMD0);
  345. /* SDHI1 */
  346. gpio_request(GPIO_FN_SDHICLK1, NULL);
  347. gpio_request(GPIO_FN_SDHID1_0, NULL);
  348. gpio_request(GPIO_FN_SDHID1_1, NULL);
  349. gpio_request(GPIO_FN_SDHID1_2, NULL);
  350. gpio_request(GPIO_FN_SDHID1_3, NULL);
  351. gpio_request(GPIO_FN_SDHICMD1, NULL);
  352. gpio_pull_up(GPIO_SDHID1_D0);
  353. gpio_pull_up(GPIO_SDHID1_D1);
  354. gpio_pull_up(GPIO_SDHID1_D2);
  355. gpio_pull_up(GPIO_SDHID1_D3);
  356. gpio_pull_up(GPIO_SDHICMD1);
  357. sh7377_add_standard_devices();
  358. platform_add_devices(g4evm_devices, ARRAY_SIZE(g4evm_devices));
  359. }
  360. static void __init g4evm_timer_init(void)
  361. {
  362. sh7377_clock_init();
  363. shmobile_timer.init();
  364. }
  365. static struct sys_timer g4evm_timer = {
  366. .init = g4evm_timer_init,
  367. };
  368. MACHINE_START(G4EVM, "g4evm")
  369. .map_io = g4evm_map_io,
  370. .init_irq = sh7377_init_irq,
  371. .handle_irq = shmobile_handle_irq_intc,
  372. .init_machine = g4evm_init,
  373. .timer = &g4evm_timer,
  374. MACHINE_END