synchronousMemoryDatabase.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*
  2. * linux/arch/arm/mach-pxa/zylonite.c
  3. *
  4. * Support for the PXA3xx Development Platform (aka Zylonite)
  5. *
  6. * Copyright (C) 2006 Marvell International Ltd.
  7. *
  8. * 2007-09-04: eric miao <eric.miao@marvell.com>
  9. * rewrite to align with latest kernel
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. */
  15. #include <linux/module.h>
  16. #include <linux/kernel.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/init.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/gpio.h>
  21. #include <linux/pwm_backlight.h>
  22. #include <linux/smc91x.h>
  23. #include <asm/mach-types.h>
  24. #include <asm/mach/arch.h>
  25. #include <mach/pxa3xx.h>
  26. #include <mach/audio.h>
  27. #include <linux/platform_data/video-pxafb.h>
  28. #include <mach/zylonite.h>
  29. #include <linux/platform_data/mmc-pxamci.h>
  30. #include <linux/platform_data/usb-ohci-pxa27x.h>
  31. #include <linux/platform_data/keypad-pxa27x.h>
  32. #include <linux/platform_data/mtd-nand-pxa3xx.h>
  33. #include "devices.h"
  34. #include "generic.h"
  35. int gpio_eth_irq;
  36. int gpio_debug_led1;
  37. int gpio_debug_led2;
  38. int wm9713_irq;
  39. int lcd_id;
  40. int lcd_orientation;
  41. struct platform_device pxa_device_wm9713_audio = {
  42. .name = "wm9713-codec",
  43. .id = -1,
  44. };
  45. static void __init zylonite_init_wm9713_audio(void)
  46. {
  47. platform_device_register(&pxa_device_wm9713_audio);
  48. }
  49. static struct resource smc91x_resources[] = {
  50. [0] = {
  51. .start = ZYLONITE_ETH_PHYS + 0x300,
  52. .end = ZYLONITE_ETH_PHYS + 0xfffff,
  53. .flags = IORESOURCE_MEM,
  54. },
  55. [1] = {
  56. .start = -1, /* for run-time assignment */
  57. .end = -1,
  58. .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
  59. }
  60. };
  61. static struct smc91x_platdata zylonite_smc91x_info = {
  62. .flags = SMC91X_USE_8BIT | SMC91X_USE_16BIT |
  63. SMC91X_NOWAIT | SMC91X_USE_DMA,
  64. };
  65. static struct platform_device smc91x_device = {
  66. .name = "smc91x",
  67. .id = 0,
  68. .num_resources = ARRAY_SIZE(smc91x_resources),
  69. .resource = smc91x_resources,
  70. .dev = {
  71. .platform_data = &zylonite_smc91x_info,
  72. },
  73. };
  74. #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
  75. static struct gpio_led zylonite_debug_leds[] = {
  76. [0] = {
  77. .name = "zylonite:yellow:1",
  78. .default_trigger = "heartbeat",
  79. },
  80. [1] = {
  81. .name = "zylonite:yellow:2",
  82. .default_trigger = "default-on",
  83. },
  84. };
  85. static struct gpio_led_platform_data zylonite_debug_leds_info = {
  86. .leds = zylonite_debug_leds,
  87. .num_leds = ARRAY_SIZE(zylonite_debug_leds),
  88. };
  89. static struct platform_device zylonite_device_leds = {
  90. .name = "leds-gpio",
  91. .id = -1,
  92. .dev = {
  93. .platform_data = &zylonite_debug_leds_info,
  94. }
  95. };
  96. static void __init zylonite_init_leds(void)
  97. {
  98. zylonite_debug_leds[0].gpio = gpio_debug_led1;
  99. zylonite_debug_leds[1].gpio = gpio_debug_led2;
  100. platform_device_register(&zylonite_device_leds);
  101. }
  102. #else
  103. static inline void zylonite_init_leds(void) {}
  104. #endif
  105. #if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
  106. static struct platform_pwm_backlight_data zylonite_backlight_data = {
  107. .pwm_id = 3,
  108. .max_brightness = 100,
  109. .dft_brightness = 100,
  110. .pwm_period_ns = 10000,
  111. };
  112. static struct platform_device zylonite_backlight_device = {
  113. .name = "pwm-backlight",
  114. .dev = {
  115. .parent = &pxa27x_device_pwm1.dev,
  116. .platform_data = &zylonite_backlight_data,
  117. },
  118. };
  119. static struct pxafb_mode_info toshiba_ltm035a776c_mode = {
  120. .pixclock = 110000,
  121. .xres = 240,
  122. .yres = 320,
  123. .bpp = 16,
  124. .hsync_len = 4,
  125. .left_margin = 6,
  126. .right_margin = 4,
  127. .vsync_len = 2,
  128. .upper_margin = 2,
  129. .lower_margin = 3,
  130. .sync = FB_SYNC_VERT_HIGH_ACT,
  131. };
  132. static struct pxafb_mode_info toshiba_ltm04c380k_mode = {
  133. .pixclock = 50000,
  134. .xres = 640,
  135. .yres = 480,
  136. .bpp = 16,
  137. .hsync_len = 1,
  138. .left_margin = 0x9f,
  139. .right_margin = 1,
  140. .vsync_len = 44,
  141. .upper_margin = 0,
  142. .lower_margin = 0,
  143. .sync = FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
  144. };
  145. static struct pxafb_mach_info zylonite_toshiba_lcd_info = {
  146. .num_modes = 1,
  147. .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
  148. };