board-yl-9200.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. /*
  2. * linux/arch/arm/mach-at91/board-yl-9200.c
  3. *
  4. * Adapted from various board files in arch/arm/mach-at91
  5. *
  6. * Modifications for YL-9200 platform:
  7. * Copyright (C) 2007 S. Birtles
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. #include <linux/types.h>
  24. #include <linux/gpio.h>
  25. #include <linux/init.h>
  26. #include <linux/mm.h>
  27. #include <linux/module.h>
  28. #include <linux/dma-mapping.h>
  29. #include <linux/platform_device.h>
  30. #include <linux/spi/spi.h>
  31. #include <linux/spi/ads7846.h>
  32. #include <linux/mtd/physmap.h>
  33. #include <linux/gpio_keys.h>
  34. #include <linux/input.h>
  35. #include <asm/setup.h>
  36. #include <asm/mach-types.h>
  37. #include <asm/irq.h>
  38. #include <asm/mach/arch.h>
  39. #include <asm/mach/map.h>
  40. #include <asm/mach/irq.h>
  41. #include <mach/hardware.h>
  42. #include <mach/board.h>
  43. #include <mach/at91rm9200_mc.h>
  44. #include <mach/at91_ramc.h>
  45. #include <mach/cpu.h>
  46. #include "generic.h"
  47. static void __init yl9200_init_early(void)
  48. {
  49. /* Set cpu type: PQFP */
  50. at91rm9200_set_type(ARCH_REVISON_9200_PQFP);
  51. /* Initialize processor: 18.432 MHz crystal */
  52. at91_initialize(18432000);
  53. /* Setup the LEDs D2=PB17 (timer), D3=PB16 (cpu) */
  54. at91_init_leds(AT91_PIN_PB16, AT91_PIN_PB17);
  55. /* DBGU on ttyS0. (Rx & Tx only) */
  56. at91_register_uart(0, 0, 0);
  57. /* USART1 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
  58. at91_register_uart(AT91RM9200_ID_US1, 1, ATMEL_UART_CTS | ATMEL_UART_RTS
  59. | ATMEL_UART_DTR | ATMEL_UART_DSR | ATMEL_UART_DCD
  60. | ATMEL_UART_RI);
  61. /* USART0 on ttyS2. (Rx & Tx only to JP3) */
  62. at91_register_uart(AT91RM9200_ID_US0, 2, 0);
  63. /* USART3 on ttyS3. (Rx, Tx, RTS - RS485 interface) */
  64. at91_register_uart(AT91RM9200_ID_US3, 3, ATMEL_UART_RTS);
  65. /* set serial console to ttyS0 (ie, DBGU) */
  66. at91_set_serial_console(0);
  67. }
  68. /*
  69. * LEDs
  70. */
  71. static struct gpio_led yl9200_leds[] = {
  72. { /* D2 */
  73. .name = "led2",
  74. .gpio = AT91_PIN_PB17,
  75. .active_low = 1,
  76. .default_trigger = "timer",
  77. },
  78. { /* D3 */
  79. .name = "led3",
  80. .gpio = AT91_PIN_PB16,
  81. .active_low = 1,
  82. .default_trigger = "heartbeat",
  83. },
  84. { /* D4 */
  85. .name = "led4",
  86. .gpio = AT91_PIN_PB15,
  87. .active_low = 1,
  88. },
  89. { /* D5 */
  90. .name = "led5",
  91. .gpio = AT91_PIN_PB8,
  92. .active_low = 1,
  93. }
  94. };
  95. /*
  96. * Ethernet
  97. */
  98. static struct macb_platform_data __initdata yl9200_eth_data = {
  99. .phy_irq_pin = AT91_PIN_PB28,
  100. .is_rmii = 1,
  101. };
  102. /*
  103. * USB Host
  104. */
  105. static struct at91_usbh_data __initdata yl9200_usbh_data = {
  106. .ports = 1, /* PQFP version of AT91RM9200 */
  107. .vbus_pin = {-EINVAL, -EINVAL},
  108. .overcurrent_pin= {-EINVAL, -EINVAL},
  109. };
  110. /*
  111. * USB Device
  112. */
  113. static struct at91_udc_data __initdata yl9200_udc_data = {
  114. .pullup_pin = AT91_PIN_PC4,
  115. .vbus_pin = AT91_PIN_PC5,
  116. .pullup_active_low = 1, /* Active Low due to PNP transistor (pg 7) */
  117. };
  118. /*
  119. * MMC
  120. */
  121. static struct at91_mmc_data __initdata yl9200_mmc_data = {
  122. .det_pin = AT91_PIN_PB9,
  123. .wire4 = 1,
  124. .wp_pin = -EINVAL,
  125. .vcc_pin = -EINVAL,
  126. };
  127. /*
  128. * NAND Flash
  129. */
  130. static struct mtd_partition __initdata yl9200_nand_partition[] = {
  131. {
  132. .name = "AT91 NAND partition 1, boot",
  133. .offset = 0,
  134. .size = SZ_256K
  135. },
  136. {
  137. .name = "AT91 NAND partition 2, kernel",
  138. .offset = MTDPART_OFS_NXTBLK,
  139. .size = (2 * SZ_1M) - SZ_256K
  140. },
  141. {
  142. .name = "AT91 NAND partition 3, filesystem",
  143. .offset = MTDPART_OFS_NXTBLK,
  144. .size = 14 * SZ_1M
  145. },
  146. {
  147. .name = "AT91 NAND partition 4, storage",
  148. .offset = MTDPART_OFS_NXTBLK,
  149. .size = SZ_16M
  150. },
  151. {
  152. .name = "AT91 NAND partition 5, ext-fs",
  153. .offset = MTDPART_OFS_NXTBLK,
  154. .size = SZ_32M
  155. }
  156. };
  157. static struct atmel_nand_data __initdata yl9200_nand_data = {
  158. .ale = 6,
  159. .cle = 7,
  160. .det_pin = -EINVAL,
  161. .rdy_pin = AT91_PIN_PC14, /* R/!B (Sheet10) */
  162. .enable_pin = AT91_PIN_PC15, /* !CE (Sheet10) */
  163. .ecc_mode = NAND_ECC_SOFT,
  164. .parts = yl9200_nand_partition,
  165. .num_parts = ARRAY_SIZE(yl9200_nand_partition),
  166. };
  167. /*
  168. * NOR Flash
  169. */
  170. #define YL9200_FLASH_BASE AT91_CHIPSELECT_0
  171. #define YL9200_FLASH_SIZE SZ_16M
  172. static struct mtd_partition yl9200_flash_partitions[] = {
  173. {
  174. .name = "Bootloader",
  175. .offset = 0,
  176. .size = SZ_256K,
  177. .mask_flags = MTD_WRITEABLE, /* force read-only */
  178. },
  179. {
  180. .name = "Kernel",
  181. .offset = MTDPART_OFS_NXTBLK,
  182. .size = (2 * SZ_1M) - SZ_256K
  183. },
  184. {
  185. .name = "Filesystem",
  186. .offset = MTDPART_OFS_NXTBLK,
  187. .size = MTDPART_SIZ_FULL
  188. }
  189. };
  190. static struct physmap_flash_data yl9200_flash_data = {
  191. .width = 2,
  192. .parts = yl9200_flash_partitions,
  193. .nr_parts = ARRAY_SIZE(yl9200_flash_partitions),
  194. };
  195. static struct resource yl9200_flash_resources[] = {
  196. {
  197. .start = YL9200_FLASH_BASE,
  198. .end = YL9200_FLASH_BASE + YL9200_FLASH_SIZE - 1,
  199. .flags = IORESOURCE_MEM,
  200. }
  201. };
  202. static struct platform_device yl9200_flash = {
  203. .name = "physmap-flash",
  204. .id = 0,
  205. .dev = {
  206. .platform_data = &yl9200_flash_data,
  207. },
  208. .resource = yl9200_flash_resources,
  209. .num_resources = ARRAY_SIZE(yl9200_flash_resources),
  210. };
  211. /*
  212. * I2C (TWI)
  213. */
  214. static struct i2c_board_info __initdata yl9200_i2c_devices[] = {
  215. { /* EEPROM */
  216. I2C_BOARD_INFO("24c128", 0x50),
  217. }
  218. };
  219. /*
  220. * GPIO Buttons
  221. */
  222. #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
  223. static struct gpio_keys_button yl9200_buttons[] = {
  224. {
  225. .gpio = AT91_PIN_PA24,
  226. .code = BTN_2,
  227. .desc = "SW2",
  228. .active_low = 1,
  229. .wakeup = 1,
  230. },
  231. {
  232. .gpio = AT91_PIN_PB1,
  233. .code = BTN_3,
  234. .desc = "SW3",
  235. .active_low = 1,
  236. .wakeup = 1,
  237. },
  238. {
  239. .gpio = AT91_PIN_PB2,
  240. .code = BTN_4,
  241. .desc = "SW4",
  242. .active_low = 1,
  243. .wakeup = 1,
  244. },
  245. {
  246. .gpio = AT91_PIN_PB6,
  247. .code = BTN_5,
  248. .desc = "SW5",
  249. .active_low = 1,
  250. .wakeup = 1,
  251. }
  252. };
  253. static struct gpio_keys_platform_data yl9200_button_data = {
  254. .buttons = yl9200_buttons,
  255. .nbuttons = ARRAY_SIZE(yl9200_buttons),
  256. };
  257. static struct platform_device yl9200_button_device = {
  258. .name = "gpio-keys",
  259. .id = -1,
  260. .num_resources = 0,
  261. .dev = {
  262. .platform_data = &yl9200_button_data,
  263. }
  264. };
  265. static void __init yl9200_add_device_buttons(void)
  266. {
  267. at91_set_gpio_input(AT91_PIN_PA24, 1); /* SW2 */
  268. at91_set_deglitch(AT91_PIN_PA24, 1);
  269. at91_set_gpio_input(AT91_PIN_PB1, 1); /* SW3 */
  270. at91_set_deglitch(AT91_PIN_PB1, 1);
  271. at91_set_gpio_input(AT91_PIN_PB2, 1); /* SW4 */
  272. at91_set_deglitch(AT91_PIN_PB2, 1);
  273. at91_set_gpio_input(AT91_PIN_PB6, 1); /* SW5 */
  274. at91_set_deglitch(AT91_PIN_PB6, 1);
  275. /* Enable buttons (Sheet 5) */
  276. at91_set_gpio_output(AT91_PIN_PB7, 1);
  277. platform_device_register(&yl9200_button_device);
  278. }
  279. #else
  280. static void __init yl9200_add_device_buttons(void) {}
  281. #endif
  282. /*
  283. * Touchscreen
  284. */
  285. #if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
  286. static int ads7843_pendown_state(void)
  287. {
  288. return !at91_get_gpio_value(AT91_PIN_PB11); /* Touchscreen PENIRQ */
  289. }
  290. static struct ads7846_platform_data ads_info = {
  291. .model = 7843,
  292. .x_min = 150,
  293. .x_max = 3830,
  294. .y_min = 190,
  295. .y_max = 3830,
  296. .vref_delay_usecs = 100,
  297. /* For a 8" touch-screen */
  298. // .x_plate_ohms = 603,
  299. // .y_plate_ohms = 332,
  300. /* For a 10.4" touch-screen */
  301. // .x_plate_ohms = 611,
  302. // .y_plate_ohms = 325,
  303. .x_plate_ohms = 576,
  304. .y_plate_ohms = 366,
  305. .pressure_max = 15000, /* generally nonsense on the 7843 */
  306. .debounce_max = 1,
  307. .debounce_rep = 0,
  308. .debounce_tol = (~0),
  309. .get_pendown_state = ads7843_pendown_state,
  310. };
  311. static void __init yl9200_add_device_ts(void)
  312. {
  313. at91_set_gpio_input(AT91_PIN_PB11, 1); /* Touchscreen interrupt pin */
  314. at91_set_gpio_input(AT91_PIN_PB10, 1); /* Touchscreen BUSY signal - not used! */
  315. }
  316. #else
  317. static void __init yl9200_add_device_ts(void) {}
  318. #endif
  319. /*
  320. * SPI devices
  321. */
  322. static struct spi_board_info yl9200_spi_devices[] = {
  323. #if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
  324. { /* Touchscreen */
  325. .modalias = "ads7846",
  326. .chip_select = 0,
  327. .max_speed_hz = 5000 * 26,
  328. .platform_data = &ads_info,
  329. .irq = AT91_PIN_PB11,
  330. },
  331. #endif
  332. { /* CAN */
  333. .modalias = "mcp2510",
  334. .chip_select = 1,
  335. .max_speed_hz = 25000 * 26,
  336. .irq = AT91_PIN_PC0,
  337. }
  338. };
  339. /*
  340. * LCD / VGA
  341. *
  342. * EPSON S1D13806 FB (discontinued chip)
  343. * EPSON S1D13506 FB
  344. */
  345. #if defined(CONFIG_FB_S1D13XXX) || defined(CONFIG_FB_S1D13XXX_MODULE)
  346. #include <video/s1d13xxxfb.h>
  347. static void yl9200_init_video(void)
  348. {
  349. /* NWAIT Signal */
  350. at91_set_A_periph(AT91_PIN_PC6, 0);
  351. /* Initialization of the Static Memory Controller for Chip Select 2 */
  352. at91_ramc_write(0, AT91_SMC_CSR(2), AT91_SMC_DBW_16 /* 16 bit */
  353. | AT91_SMC_WSEN | AT91_SMC_NWS_(0x4) /* wait states */
  354. | AT91_SMC_TDF_(0x100) /* float time */
  355. );
  356. }
  357. static struct s1d13xxxfb_regval yl9200_s1dfb_initregs[] =
  358. {
  359. {S1DREG_MISC, 0x00}, /* Miscellaneous Register*/
  360. {S1DREG_COM_DISP_MODE, 0x01}, /* Display Mode Register, LCD only*/
  361. {S1DREG_GPIO_CNF0, 0x00}, /* General IO Pins Configuration Register*/
  362. {S1DREG_GPIO_CTL0, 0x00}, /* General IO Pins Control Register*/
  363. {S1DREG_CLK_CNF, 0x11}, /* Memory Clock Configuration Register*/
  364. {S1DREG_LCD_CLK_CNF, 0x10}, /* LCD Pixel Clock Configuration Register*/
  365. {S1DREG_CRT_CLK_CNF, 0x12}, /* CRT/TV Pixel Clock Configuration Register*/
  366. {S1DREG_MPLUG_CLK_CNF, 0x01}, /* MediaPlug Clock Configuration Register*/
  367. {S1DREG_CPU2MEM_WST_SEL, 0x02}, /* CPU To Memory Wait State Select Register*/
  368. {S1DREG_MEM_CNF, 0x00}, /* Memory Configuration Register*/
  369. {S1DREG_SDRAM_REF_RATE, 0x04}, /* DRAM Refresh Rate Register, MCLK source*/
  370. {S1DREG_SDRAM_TC0, 0x12}, /* DRAM Timings Control Register 0*/
  371. {S1DREG_SDRAM_TC1, 0x02}, /* DRAM Timings Control Register 1*/
  372. {S1DREG_PANEL_TYPE, 0x25}, /* Panel Type Register*/
  373. {S1DREG_MOD_RATE, 0x00}, /* MOD Rate Register*/
  374. {S1DREG_LCD_DISP_HWIDTH, 0x4F}, /* LCD Horizontal Display Width Register*/
  375. {S1DREG_LCD_NDISP_HPER, 0x13}, /* LCD Horizontal Non-Display Period Register*/
  376. {S1DREG_TFT_FPLINE_START, 0x01}, /* TFT FPLINE Start Position Register*/
  377. {S1DREG_TFT_FPLINE_PWIDTH, 0x0c}, /* TFT FPLINE Pulse Width Register*/
  378. {S1DREG_LCD_DISP_VHEIGHT0, 0xDF}, /* LCD Vertical Display Height Register 0*/
  379. {S1DREG_LCD_DISP_VHEIGHT1, 0x01}, /* LCD Vertical Display Height Register 1*/
  380. {S1DREG_LCD_NDISP_VPER, 0x2c}, /* LCD Vertical Non-Display Period Register*/
  381. {S1DREG_TFT_FPFRAME_START, 0x0a}, /* TFT FPFRAME Start Position Register*/
  382. {S1DREG_TFT_FPFRAME_PWIDTH, 0x02}, /* TFT FPFRAME Pulse Width Register*/
  383. {S1DREG_LCD_DISP_MODE, 0x05}, /* LCD Display Mode Register*/
  384. {S1DREG_LCD_MISC, 0x01}, /* LCD Miscellaneous Register*/
  385. {S1DREG_LCD_DISP_START0, 0x00}, /* LCD Display Start Address Register 0*/
  386. {S1DREG_LCD_DISP_START1, 0x00}, /* LCD Display Start Address Register 1*/
  387. {S1DREG_LCD_DISP_START2, 0x00}, /* LCD Display Start Address Register 2*/
  388. {S1DREG_LCD_MEM_OFF0, 0x80}, /* LCD Memory Address Offset Register 0*/
  389. {S1DREG_LCD_MEM_OFF1, 0x02}, /* LCD Memory Address Offset Register 1*/
  390. {S1DREG_LCD_PIX_PAN, 0x03}, /* LCD Pixel Panning Register*/
  391. {S1DREG_LCD_DISP_FIFO_HTC, 0x00}, /* LCD Display FIFO High Threshold Control Register*/
  392. {S1DREG_LCD_DISP_FIFO_LTC, 0x00}, /* LCD Display FIFO Low Threshold Control Register*/
  393. {S1DREG_CRT_DISP_HWIDTH, 0x4F}, /* CRT/TV Horizontal Display Width Register*/
  394. {S1DREG_CRT_NDISP_HPER, 0x13}, /* CRT/TV Horizontal Non-Display Period Register*/
  395. {S1DREG_CRT_HRTC_START, 0x01}, /* CRT/TV HRTC Start Position Register*/
  396. {S1DREG_CRT_HRTC_PWIDTH, 0x0B}, /* CRT/TV HRTC Pulse Width Register*/
  397. {S1DREG_CRT_DISP_VHEIGHT0, 0xDF}, /* CRT/TV Vertical Display Height Register 0*/
  398. {S1DREG_CRT_DISP_VHEIGHT1, 0x01}, /* CRT/TV Vertical Display Height Register 1*/
  399. {S1DREG_CRT_NDISP_VPER, 0x2B}, /* CRT/TV Vertical Non-Display Period Register*/
  400. {S1DREG_CRT_VRTC_START, 0x09}, /* CRT/TV VRTC Start Position Register*/
  401. {S1DREG_CRT_VRTC_PWIDTH, 0x01}, /* CRT/TV VRTC Pulse Width Register*/
  402. {S1DREG_TV_OUT_CTL, 0x18}, /* TV Output Control Register */
  403. {S1DREG_CRT_DISP_MODE, 0x05}, /* CRT/TV Display Mode Register, 16BPP*/
  404. {S1DREG_CRT_DISP_START0, 0x00}, /* CRT/TV Display Start Address Register 0*/
  405. {S1DREG_CRT_DISP_START1, 0x00}, /* CRT/TV Display Start Address Register 1*/
  406. {S1DREG_CRT_DISP_START2, 0x00}, /* CRT/TV Display Start Address Register 2*/
  407. {S1DREG_CRT_MEM_OFF0, 0x80}, /* CRT/TV Memory Address Offset Register 0*/
  408. {S1DREG_CRT_MEM_OFF1, 0x02}, /* CRT/TV Memory Address Offset Register 1*/
  409. {S1DREG_CRT_PIX_PAN, 0x00}, /* CRT/TV Pixel Panning Register*/
  410. {S1DREG_CRT_DISP_FIFO_HTC, 0x00}, /* CRT/TV Display FIFO High Threshold Control Register*/
  411. {S1DREG_CRT_DISP_FIFO_LTC, 0x00}, /* CRT/TV Display FIFO Low Threshold Control Register*/
  412. {S1DREG_LCD_CUR_CTL, 0x00}, /* LCD Ink/Cursor Control Register*/
  413. {S1DREG_LCD_CUR_START, 0x01}, /* LCD Ink/Cursor Start Address Register*/
  414. {S1DREG_LCD_CUR_XPOS0, 0x00}, /* LCD Cursor X Position Register 0*/
  415. {S1DREG_LCD_CUR_XPOS1, 0x00}, /* LCD Cursor X Position Register 1*/
  416. {S1DREG_LCD_CUR_YPOS0, 0x00}, /* LCD Cursor Y Position Register 0*/
  417. {S1DREG_LCD_CUR_YPOS1, 0x00}, /* LCD Cursor Y Position Register 1*/
  418. {S1DREG_LCD_CUR_BCTL0, 0x00}, /* LCD Ink/Cursor Blue Color 0 Register*/
  419. {S1DREG_LCD_CUR_GCTL0, 0x00}, /* LCD Ink/Cursor Green Color 0 Register*/
  420. {S1DREG_LCD_CUR_RCTL0, 0x00}, /* LCD Ink/Cursor Red Color 0 Register*/
  421. {S1DREG_LCD_CUR_BCTL1, 0x1F}, /* LCD Ink/Cursor Blue Color 1 Register*/
  422. {S1DREG_LCD_CUR_GCTL1, 0x3F}, /* LCD Ink/Cursor Green Color 1 Register*/
  423. {S1DREG_LCD_CUR_RCTL1, 0x1F}, /* LCD Ink/Cursor Red Color 1 Register*/
  424. {S1DREG_LCD_CUR_FIFO_HTC, 0x00}, /* LCD Ink/Cursor FIFO Threshold Register*/
  425. {S1DREG_CRT_CUR_CTL, 0x00}, /* CRT/TV Ink/Cursor Control Register*/
  426. {S1DREG_CRT_CUR_START, 0x01}, /* CRT/TV Ink/Cursor Start Address Register*/
  427. {S1DREG_CRT_CUR_XPOS0, 0x00}, /* CRT/TV Cursor X Position Register 0*/
  428. {S1DREG_CRT_CUR_XPOS1, 0x00}, /* CRT/TV Cursor X Position Register 1*/
  429. {S1DREG_CRT_CUR_YPOS0, 0x00}, /* CRT/TV Cursor Y Position Register 0*/
  430. {S1DREG_CRT_CUR_YPOS1, 0x00}, /* CRT/TV Cursor Y Position Register 1*/
  431. {S1DREG_CRT_CUR_BCTL0, 0x00}, /* CRT/TV Ink/Cursor Blue Color 0 Register*/
  432. {S1DREG_CRT_CUR_GCTL0, 0x00}, /* CRT/TV Ink/Cursor Green Color 0 Register*/
  433. {S1DREG_CRT_CUR_RCTL0, 0x00}, /* CRT/TV Ink/Cursor Red Color 0 Register*/
  434. {S1DREG_CRT_CUR_BCTL1, 0x1F}, /* CRT/TV Ink/Cursor Blue Color 1 Register*/
  435. {S1DREG_CRT_CUR_GCTL1, 0x3F}, /* CRT/TV Ink/Cursor Green Color 1 Register*/
  436. {S1DREG_CRT_CUR_RCTL1, 0x1F}, /* CRT/TV Ink/Cursor Red Color 1 Register*/
  437. {S1DREG_CRT_CUR_FIFO_HTC, 0x00}, /* CRT/TV Ink/Cursor FIFO Threshold Register*/
  438. {S1DREG_BBLT_CTL0, 0x00}, /* BitBlt Control Register 0*/
  439. {S1DREG_BBLT_CTL1, 0x01}, /* BitBlt Control Register 1*/
  440. {S1DREG_BBLT_CC_EXP, 0x00}, /* BitBlt ROP Code/Color Expansion Register*/
  441. {S1DREG_BBLT_OP, 0x00}, /* BitBlt Operation Register*/
  442. {S1DREG_BBLT_SRC_START0, 0x00}, /* BitBlt Source Start Address Register 0*/
  443. {S1DREG_BBLT_SRC_START1, 0x00}, /* BitBlt Source Start Address Register 1*/
  444. {S1DREG_BBLT_SRC_START2, 0x00}, /* BitBlt Source Start Address Register 2*/
  445. {S1DREG_BBLT_DST_START0, 0x00}, /* BitBlt Destination Start Address Register 0*/
  446. {S1DREG_BBLT_DST_START1, 0x00}, /* BitBlt Destination Start Address Register 1*/
  447. {S1DREG_BBLT_DST_START2, 0x00}, /* BitBlt Destination Start Address Register 2*/
  448. {S1DREG_BBLT_MEM_OFF0, 0x00}, /* BitBlt Memory Address Offset Register 0*/
  449. {S1DREG_BBLT_MEM_OFF1, 0x00}, /* BitBlt Memory Address Offset Register 1*/
  450. {S1DREG_BBLT_WIDTH0, 0x00}, /* BitBlt Width Register 0*/
  451. {S1DREG_BBLT_WIDTH1, 0x00}, /* BitBlt Width Register 1*/
  452. {S1DREG_BBLT_HEIGHT0, 0x00}, /* BitBlt Height Register 0*/
  453. {S1DREG_BBLT_HEIGHT1, 0x00}, /* BitBlt Height Register 1*/
  454. {S1DREG_BBLT_BGC0, 0x00}, /* BitBlt Background Color Register 0*/
  455. {S1DREG_BBLT_BGC1, 0x00}, /* BitBlt Background Color Register 1*/
  456. {S1DREG_BBLT_FGC0, 0x00}, /* BitBlt Foreground Color Register 0*/
  457. {S1DREG_BBLT_FGC1, 0x00}, /* BitBlt Foreground Color Register 1*/
  458. {S1DREG_LKUP_MODE, 0x00}, /* Look-Up Table Mode Register*/
  459. {S1DREG_LKUP_ADDR, 0x00}, /* Look-Up Table Address Register*/
  460. {S1DREG_PS_CNF, 0x00}, /* Power Save Configuration Register*/
  461. {S1DREG_PS_STATUS, 0x00}, /* Power Save Status Register*/
  462. {S1DREG_CPU2MEM_WDOGT, 0x00}, /* CPU-to-Memory Access Watchdog Timer Register*/
  463. {S1DREG_COM_DISP_MODE, 0x01}, /* Display Mode Register, LCD only*/
  464. };
  465. static struct s1d13xxxfb_pdata yl9200_s1dfb_pdata = {
  466. .initregs = yl9200_s1dfb_initregs,
  467. .initregssize = ARRAY_SIZE(yl9200_s1dfb_initregs),
  468. .platform_init_video = yl9200_init_video,
  469. };
  470. #define YL9200_FB_REG_BASE AT91_CHIPSELECT_7
  471. #define YL9200_FB_VMEM_BASE YL9200_FB_REG_BASE + SZ_2M
  472. #define YL9200_FB_VMEM_SIZE SZ_2M
  473. static struct resource yl9200_s1dfb_resource[] = {
  474. [0] = { /* video mem */
  475. .name = "s1d13xxxfb memory",
  476. .start = YL9200_FB_VMEM_BASE,
  477. .end = YL9200_FB_VMEM_BASE + YL9200_FB_VMEM_SIZE -1,
  478. .flags = IORESOURCE_MEM,
  479. },
  480. [1] = { /* video registers */
  481. .name = "s1d13xxxfb registers",
  482. .start = YL9200_FB_REG_BASE,
  483. .end = YL9200_FB_REG_BASE + SZ_512 -1,
  484. .flags = IORESOURCE_MEM,
  485. },
  486. };
  487. static u64 s1dfb_dmamask = DMA_BIT_MASK(32);
  488. static struct platform_device yl9200_s1dfb_device = {
  489. .name = "s1d13806fb",
  490. .id = -1,
  491. .dev = {
  492. .dma_mask = &s1dfb_dmamask,
  493. .coherent_dma_mask = DMA_BIT_MASK(32),
  494. .platform_data = &yl9200_s1dfb_pdata,
  495. },
  496. .resource = yl9200_s1dfb_resource,
  497. .num_resources = ARRAY_SIZE(yl9200_s1dfb_resource),
  498. };
  499. void __init yl9200_add_device_video(void)
  500. {
  501. platform_device_register(&yl9200_s1dfb_device);
  502. }
  503. #else
  504. void __init yl9200_add_device_video(void) {}
  505. #endif
  506. static void __init yl9200_board_init(void)
  507. {
  508. /* Serial */
  509. at91_add_device_serial();
  510. /* Ethernet */
  511. at91_add_device_eth(&yl9200_eth_data);
  512. /* USB Host */
  513. at91_add_device_usbh(&yl9200_usbh_data);
  514. /* USB Device */
  515. at91_add_device_udc(&yl9200_udc_data);
  516. /* I2C */
  517. at91_add_device_i2c(yl9200_i2c_devices, ARRAY_SIZE(yl9200_i2c_devices));
  518. /* MMC */
  519. at91_add_device_mmc(0, &yl9200_mmc_data);
  520. /* NAND */
  521. at91_add_device_nand(&yl9200_nand_data);
  522. /* NOR Flash */
  523. platform_device_register(&yl9200_flash);
  524. #if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
  525. /* SPI */
  526. at91_add_device_spi(yl9200_spi_devices, ARRAY_SIZE(yl9200_spi_devices));
  527. /* Touchscreen */
  528. yl9200_add_device_ts();
  529. #endif
  530. /* LEDs. */
  531. at91_gpio_leds(yl9200_leds, ARRAY_SIZE(yl9200_leds));
  532. /* Push Buttons */
  533. yl9200_add_device_buttons();
  534. /* VGA */
  535. yl9200_add_device_video();
  536. }
  537. MACHINE_START(YL9200, "uCdragon YL-9200")
  538. /* Maintainer: S.Birtles */
  539. .timer = &at91rm9200_timer,
  540. .map_io = at91_map_io,
  541. .init_early = yl9200_init_early,
  542. .init_irq = at91_init_irq_default,
  543. .init_machine = yl9200_board_init,
  544. MACHINE_END