e800.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /*
  2. * Hardware definitions for the Toshiba eseries PDAs
  3. *
  4. * Copyright (c) 2003 Ian Molton <spyro@f2s.com>
  5. *
  6. * This file is licensed under
  7. * the terms of the GNU General Public License version 2. This program
  8. * is licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. *
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/init.h>
  14. #include <linux/device.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/fb.h>
  17. #include <linux/mfd/tc6393xb.h>
  18. #include <video/w100fb.h>
  19. #include <asm/setup.h>
  20. #include <asm/mach/arch.h>
  21. #include <asm/mach-types.h>
  22. #include <mach/pxa25x.h>
  23. #include <mach/eseries-gpio.h>
  24. #include <mach/udc.h>
  25. #include <mach/irqs.h>
  26. #include <mach/audio.h>
  27. #include "generic.h"
  28. #include "eseries.h"
  29. #include "clock.h"
  30. /* ------------------------ e800 LCD definitions ------------------------- */
  31. static unsigned long e800_pin_config[] __initdata = {
  32. /* AC97 */
  33. GPIO28_AC97_BITCLK,
  34. GPIO29_AC97_SDATA_IN_0,
  35. GPIO30_AC97_SDATA_OUT,
  36. GPIO31_AC97_SYNC,
  37. };
  38. static struct w100_gen_regs e800_lcd_regs = {
  39. .lcd_format = 0x00008003,
  40. .lcdd_cntl1 = 0x02a00000,
  41. .lcdd_cntl2 = 0x0003ffff,
  42. .genlcd_cntl1 = 0x000ff2a3,
  43. .genlcd_cntl2 = 0x000002a3,
  44. .genlcd_cntl3 = 0x000102aa,
  45. };
  46. static struct w100_mode e800_lcd_mode[2] = {
  47. [0] = {
  48. .xres = 480,
  49. .yres = 640,
  50. .left_margin = 52,
  51. .right_margin = 148,
  52. .upper_margin = 2,
  53. .lower_margin = 6,
  54. .crtc_ss = 0x80350034,
  55. .crtc_ls = 0x802b0026,
  56. .crtc_gs = 0x80160016,
  57. .crtc_vpos_gs = 0x00020003,
  58. .crtc_rev = 0x0040001d,
  59. .crtc_dclk = 0xe0000000,
  60. .crtc_gclk = 0x82a50049,
  61. .crtc_goe = 0x80ee001c,
  62. .crtc_ps1_active = 0x00000000,
  63. .pll_freq = 128,
  64. .pixclk_divider = 4,
  65. .pixclk_divider_rotated = 6,
  66. .pixclk_src = CLK_SRC_PLL,
  67. .sysclk_divider = 0,
  68. .sysclk_src = CLK_SRC_PLL,
  69. },
  70. [1] = {
  71. .xres = 240,
  72. .yres = 320,
  73. .left_margin = 15,
  74. .right_margin = 88,
  75. .upper_margin = 0,
  76. .lower_margin = 7,
  77. .crtc_ss = 0xd010000f,
  78. .crtc_ls = 0x80070003,
  79. .crtc_gs = 0x80000000,
  80. .crtc_vpos_gs = 0x01460147,
  81. .crtc_rev = 0x00400003,
  82. .crtc_dclk = 0xa1700030,
  83. .crtc_gclk = 0x814b0008,
  84. .crtc_goe = 0x80cc0015,
  85. .crtc_ps1_active = 0x00000000,
  86. .pll_freq = 100,
  87. .pixclk_divider = 6, /* Wince uses 14 which gives a */
  88. .pixclk_divider_rotated = 6, /* 7MHz Pclk. We use a 14MHz one */
  89. .pixclk_src = CLK_SRC_PLL,
  90. .sysclk_divider = 0,
  91. .sysclk_src = CLK_SRC_PLL,
  92. }
  93. };
  94. static struct w100_gpio_regs e800_w100_gpio_info = {
  95. .init_data1 = 0xc13fc019,
  96. .gpio_dir1 = 0x3e40df7f,
  97. .gpio_oe1 = 0x003c3000,
  98. .init_data2 = 0x00000000,
  99. .gpio_dir2 = 0x00000000,
  100. .gpio_oe2 = 0x00000000,
  101. };
  102. static struct w100_mem_info e800_w100_mem_info = {
  103. .ext_cntl = 0x09640011,
  104. .sdram_mode_reg = 0x00600021,
  105. .ext_timing_cntl = 0x10001545,
  106. .io_cntl = 0x7ddd7333,
  107. .size = 0x1fffff,
  108. };
  109. static void e800_tg_change(struct w100fb_par *par)
  110. {
  111. unsigned long tmp;
  112. tmp = w100fb_gpio_read(W100_GPIO_PORT_A);
  113. if (par->mode->xres == 480)
  114. tmp |= 0x100;
  115. else
  116. tmp &= ~0x100;
  117. w100fb_gpio_write(W100_GPIO_PORT_A, tmp);
  118. }
  119. static struct w100_tg_info e800_tg_info = {
  120. .change = e800_tg_change,
  121. };
  122. static struct w100fb_mach_info e800_fb_info = {
  123. .modelist = e800_lcd_mode,
  124. .num_modes = 2,
  125. .regs = &e800_lcd_regs,
  126. .gpio = &e800_w100_gpio_info,
  127. .mem = &e800_w100_mem_info,
  128. .tg = &e800_tg_info,
  129. .xtal_freq = 16000000,
  130. };
  131. static struct resource e800_fb_resources[] = {
  132. [0] = {
  133. .start = 0x0c000000,
  134. .end = 0x0cffffff,
  135. .flags = IORESOURCE_MEM,
  136. },
  137. };
  138. static struct platform_device e800_fb_device = {
  139. .name = "w100fb",
  140. .id = -1,
  141. .dev = {
  142. .platform_data = &e800_fb_info,
  143. },
  144. .num_resources = ARRAY_SIZE(e800_fb_resources),
  145. .resource = e800_fb_resources,
  146. };
  147. /* --------------------------- UDC definitions --------------------------- */
  148. static struct pxa2xx_udc_mach_info e800_udc_mach_info = {
  149. .gpio_vbus = GPIO_E800_USB_DISC,
  150. .gpio_pullup = GPIO_E800_USB_PULLUP,
  151. .gpio_pullup_inverted = 1
  152. };
  153. /* ----------------- e800 tc6393xb parameters ------------------ */
  154. static struct tc6393xb_platform_data e800_tc6393xb_info = {
  155. .irq_base = IRQ_BOARD_START,
  156. .scr_pll2cr = 0x0cc1,
  157. .scr_gper = 0,
  158. .gpio_base = -1,
  159. .suspend = &eseries_tmio_suspend,
  160. .resume = &eseries_tmio_resume,
  161. .enable = &eseries_tmio_enable,
  162. .disable = &eseries_tmio_disable,
  163. };
  164. static struct platform_device e800_tc6393xb_device = {
  165. .name = "tc6393xb",
  166. .id = -1,
  167. .dev = {
  168. .platform_data = &e800_tc6393xb_info,
  169. },
  170. .num_resources = 2,
  171. .resource = eseries_tmio_resources,
  172. };
  173. /* ----------------------------------------------------------------------- */
  174. static struct platform_device *devices[] __initdata = {
  175. &e800_fb_device,
  176. &e800_tc6393xb_device,
  177. };
  178. static void __init e800_init(void)
  179. {
  180. pxa2xx_mfp_config(ARRAY_AND_SIZE(e800_pin_config));
  181. pxa_set_ffuart_info(NULL);
  182. pxa_set_btuart_info(NULL);
  183. pxa_set_stuart_info(NULL);
  184. clk_add_alias("CLK_CK3P6MI", e800_tc6393xb_device.name,
  185. "GPIO11_CLK", NULL),
  186. eseries_get_tmio_gpios();
  187. platform_add_devices(devices, ARRAY_SIZE(devices));
  188. pxa_set_udc_info(&e800_udc_mach_info);
  189. pxa_set_ac97_info(NULL);
  190. }
  191. MACHINE_START(E800, "Toshiba e800")
  192. /* Maintainer: Ian Molton (spyro@f2s.com) */
  193. .phys_io = 0x40000000,
  194. .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
  195. .boot_params = 0xa0000100,
  196. .map_io = pxa_map_io,
  197. .init_irq = pxa25x_init_irq,
  198. .fixup = eseries_fixup,
  199. .init_machine = e800_init,
  200. .timer = &pxa_timer,
  201. MACHINE_END