setup.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /*
  2. * linux/arch/sh/boards/renesas/sh7763rdp/setup.c
  3. *
  4. * Renesas Solutions sh7763rdp board
  5. *
  6. * Copyright (C) 2008 Renesas Solutions Corp.
  7. * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
  8. *
  9. * This file is subject to the terms and conditions of the GNU General Public
  10. * License. See the file "COPYING" in the main directory of this archive
  11. * for more details.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/input.h>
  17. #include <linux/mtd/physmap.h>
  18. #include <linux/fb.h>
  19. #include <linux/io.h>
  20. #include <linux/sh_eth.h>
  21. #include <linux/sh_intc.h>
  22. #include <mach/sh7763rdp.h>
  23. #include <asm/sh7760fb.h>
  24. /* NOR Flash */
  25. static struct mtd_partition sh7763rdp_nor_flash_partitions[] = {
  26. {
  27. .name = "U-Boot",
  28. .offset = 0,
  29. .size = (2 * 128 * 1024),
  30. .mask_flags = MTD_WRITEABLE, /* Read-only */
  31. }, {
  32. .name = "Linux-Kernel",
  33. .offset = MTDPART_OFS_APPEND,
  34. .size = (20 * 128 * 1024),
  35. }, {
  36. .name = "Root Filesystem",
  37. .offset = MTDPART_OFS_APPEND,
  38. .size = MTDPART_SIZ_FULL,
  39. },
  40. };
  41. static struct physmap_flash_data sh7763rdp_nor_flash_data = {
  42. .width = 2,
  43. .parts = sh7763rdp_nor_flash_partitions,
  44. .nr_parts = ARRAY_SIZE(sh7763rdp_nor_flash_partitions),
  45. };
  46. static struct resource sh7763rdp_nor_flash_resources[] = {
  47. [0] = {
  48. .name = "NOR Flash",
  49. .start = 0,
  50. .end = (64 * 1024 * 1024),
  51. .flags = IORESOURCE_MEM,
  52. },
  53. };
  54. static struct platform_device sh7763rdp_nor_flash_device = {
  55. .name = "physmap-flash",
  56. .resource = sh7763rdp_nor_flash_resources,
  57. .num_resources = ARRAY_SIZE(sh7763rdp_nor_flash_resources),
  58. .dev = {
  59. .platform_data = &sh7763rdp_nor_flash_data,
  60. },
  61. };
  62. /*
  63. * SH-Ether
  64. *
  65. * SH Ether of SH7763 has multi IRQ handling.
  66. * (0x920,0x940,0x960 -> 0x920)
  67. */
  68. static struct resource sh_eth_resources[] = {
  69. {
  70. .start = 0xFEE00800, /* use eth1 */
  71. .end = 0xFEE00F7C - 1,
  72. .flags = IORESOURCE_MEM,
  73. }, {
  74. .start = 0xFEE01800, /* TSU */
  75. .end = 0xFEE01FFF,
  76. .flags = IORESOURCE_MEM,
  77. }, {
  78. .start = evt2irq(0x920), /* irq number */
  79. .flags = IORESOURCE_IRQ,
  80. },
  81. };
  82. static struct sh_eth_plat_data sh7763_eth_pdata = {
  83. .phy = 1,
  84. .edmac_endian = EDMAC_LITTLE_ENDIAN,
  85. .register_type = SH_ETH_REG_GIGABIT,
  86. .phy_interface = PHY_INTERFACE_MODE_MII,
  87. };
  88. static struct platform_device sh7763rdp_eth_device = {
  89. .name = "sh-eth",
  90. .resource = sh_eth_resources,
  91. .num_resources = ARRAY_SIZE(sh_eth_resources),
  92. .dev = {
  93. .platform_data = &sh7763_eth_pdata,
  94. },
  95. };
  96. /* SH7763 LCDC */
  97. static struct resource sh7763rdp_fb_resources[] = {
  98. {
  99. .start = 0xFFE80000,
  100. .end = 0xFFE80442 - 1,
  101. .flags = IORESOURCE_MEM,
  102. },
  103. };
  104. static struct fb_videomode sh7763fb_videomode = {
  105. .refresh = 60,
  106. .name = "VGA Monitor",
  107. .xres = 640,
  108. .yres = 480,
  109. .pixclock = 10000,
  110. .left_margin = 80,
  111. .right_margin = 24,
  112. .upper_margin = 30,
  113. .lower_margin = 1,
  114. .hsync_len = 96,
  115. .vsync_len = 1,
  116. .sync = 0,
  117. .vmode = FB_VMODE_NONINTERLACED,
  118. .flag = FBINFO_FLAG_DEFAULT,
  119. };
  120. static struct sh7760fb_platdata sh7763fb_def_pdata = {
  121. .def_mode = &sh7763fb_videomode,
  122. .ldmtr = (LDMTR_TFT_COLOR_16|LDMTR_MCNT),
  123. .lddfr = LDDFR_16BPP_RGB565,
  124. .ldpmmr = 0x0000,
  125. .ldpspr = 0xFFFF,
  126. .ldaclnr = 0x0001,
  127. .ldickr = 0x1102,
  128. .rotate = 0,
  129. .novsync = 0,
  130. .blank = NULL,
  131. };
  132. static struct platform_device sh7763rdp_fb_device = {
  133. .name = "sh7760-lcdc",
  134. .resource = sh7763rdp_fb_resources,
  135. .num_resources = ARRAY_SIZE(sh7763rdp_fb_resources),
  136. .dev = {
  137. .platform_data = &sh7763fb_def_pdata,
  138. },
  139. };
  140. static struct platform_device *sh7763rdp_devices[] __initdata = {
  141. &sh7763rdp_nor_flash_device,
  142. &sh7763rdp_eth_device,
  143. &sh7763rdp_fb_device,
  144. };
  145. static int __init sh7763rdp_devices_setup(void)
  146. {
  147. return platform_add_devices(sh7763rdp_devices,
  148. ARRAY_SIZE(sh7763rdp_devices));
  149. }
  150. device_initcall(sh7763rdp_devices_setup);
  151. static void __init sh7763rdp_setup(char **cmdline_p)
  152. {
  153. /* Board version check */
  154. if (__raw_readw(CPLD_BOARD_ID_ERV_REG) == 0xECB1)
  155. printk(KERN_INFO "RTE Standard Configuration\n");
  156. else
  157. printk(KERN_INFO "RTA Standard Configuration\n");
  158. /* USB pin select bits (clear bit 5-2 to 0) */
  159. __raw_writew((__raw_readw(PORT_PSEL2) & 0xFFC3), PORT_PSEL2);
  160. /* USBH setup port I controls to other (clear bits 4-9 to 0) */
  161. __raw_writew(__raw_readw(PORT_PICR) & 0xFC0F, PORT_PICR);
  162. /* Select USB Host controller */
  163. __raw_writew(0x00, USB_USBHSC);
  164. /* For LCD */
  165. /* set PTJ7-1, bits 15-2 of PJCR to 0 */
  166. __raw_writew(__raw_readw(PORT_PJCR) & 0x0003, PORT_PJCR);
  167. /* set PTI5, bits 11-10 of PICR to 0 */
  168. __raw_writew(__raw_readw(PORT_PICR) & 0xF3FF, PORT_PICR);
  169. __raw_writew(0, PORT_PKCR);
  170. __raw_writew(0, PORT_PLCR);
  171. /* set PSEL2 bits 14-8, 5-4, of PSEL2 to 0 */
  172. __raw_writew((__raw_readw(PORT_PSEL2) & 0x00C0), PORT_PSEL2);
  173. /* set PSEL3 bits 14-12, 6-4, 2-0 of PSEL3 to 0 */
  174. __raw_writew((__raw_readw(PORT_PSEL3) & 0x0700), PORT_PSEL3);
  175. /* For HAC */
  176. /* bit3-0 0100:HAC & SSI1 enable */
  177. __raw_writew((__raw_readw(PORT_PSEL1) & 0xFFF0) | 0x0004, PORT_PSEL1);
  178. /* bit14 1:SSI_HAC_CLK enable */
  179. __raw_writew(__raw_readw(PORT_PSEL4) | 0x4000, PORT_PSEL4);
  180. /* SH-Ether */
  181. __raw_writew((__raw_readw(PORT_PSEL1) & ~0xff00) | 0x2400, PORT_PSEL1);
  182. __raw_writew(0x0, PORT_PFCR);
  183. __raw_writew(0x0, PORT_PFCR);
  184. __raw_writew(0x0, PORT_PFCR);
  185. /* MMC */
  186. /*selects SCIF and MMC other functions */
  187. __raw_writew(0x0001, PORT_PSEL0);
  188. /* MMC clock operates */
  189. __raw_writel(__raw_readl(MSTPCR1) & ~0x8, MSTPCR1);
  190. __raw_writew(__raw_readw(PORT_PACR) & ~0x3000, PORT_PACR);
  191. __raw_writew(__raw_readw(PORT_PCCR) & ~0xCFC3, PORT_PCCR);
  192. }
  193. static struct sh_machine_vector mv_sh7763rdp __initmv = {
  194. .mv_name = "sh7763drp",
  195. .mv_setup = sh7763rdp_setup,
  196. .mv_init_irq = init_sh7763rdp_IRQ,
  197. };