blob: 46fdb0c68a68063f51fd3bff7d8039bce9e90758 [file] [log] [blame]
Steve Birtles3ad09202008-02-09 04:49:55 +01001/*
2 * linux/arch/arm/mach-at91/board-yl-9200.c
3 *
Andrew Victore3ba22d2008-05-24 17:06:45 +01004 * Adapted from various board files in arch/arm/mach-at91
5 *
6 * Modifications for YL-9200 platform:
7 * Copyright (C) 2007 S. Birtles
Steve Birtles3ad09202008-02-09 04:49:55 +01008 *
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
24#include <linux/types.h>
Russell King2f8163b2011-07-26 10:53:52 +010025#include <linux/gpio.h>
Steve Birtles3ad09202008-02-09 04:49:55 +010026#include <linux/init.h>
27#include <linux/mm.h>
28#include <linux/module.h>
Andrew Victore3ba22d2008-05-24 17:06:45 +010029#include <linux/dma-mapping.h>
Steve Birtles3ad09202008-02-09 04:49:55 +010030#include <linux/platform_device.h>
31#include <linux/spi/spi.h>
Steve Birtles3ad09202008-02-09 04:49:55 +010032#include <linux/spi/ads7846.h>
33#include <linux/mtd/physmap.h>
Andrew Victore3ba22d2008-05-24 17:06:45 +010034#include <linux/gpio_keys.h>
35#include <linux/input.h>
Steve Birtles3ad09202008-02-09 04:49:55 +010036
Steve Birtles3ad09202008-02-09 04:49:55 +010037#include <asm/setup.h>
38#include <asm/mach-types.h>
39#include <asm/irq.h>
40
41#include <asm/mach/arch.h>
42#include <asm/mach/map.h>
43#include <asm/mach/irq.h>
44
Andrew Victore5052402008-09-21 21:30:02 +010045#include <mach/hardware.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010046#include <mach/at91rm9200_mc.h>
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +080047#include <mach/at91_ramc.h>
Jean-Christophe PLAGNIOL-VILLARDe57556e32011-04-24 11:40:22 +080048#include <mach/cpu.h>
Steve Birtles3ad09202008-02-09 04:49:55 +010049
Jean-Christophe PLAGNIOL-VILLARDa510b9b2012-10-30 06:41:28 +080050#include "at91_aic.h"
Jean-Christophe PLAGNIOL-VILLARD43d2f532012-10-30 05:14:17 +080051#include "board.h"
Steve Birtles3ad09202008-02-09 04:49:55 +010052#include "generic.h"
Linus Walleijcf2e9332014-03-27 14:18:51 +010053#include "gpio.h"
Steve Birtles3ad09202008-02-09 04:49:55 +010054
Steve Birtles3ad09202008-02-09 04:49:55 +010055
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +080056static void __init yl9200_init_early(void)
Steve Birtles3ad09202008-02-09 04:49:55 +010057{
Jean-Christophe PLAGNIOL-VILLARDe57556e32011-04-24 11:40:22 +080058 /* Set cpu type: PQFP */
59 at91rm9200_set_type(ARCH_REVISON_9200_PQFP);
60
Steve Birtles3ad09202008-02-09 04:49:55 +010061 /* Initialize processor: 18.432 MHz crystal */
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080062 at91_initialize(18432000);
Steve Birtles3ad09202008-02-09 04:49:55 +010063}
64
Steve Birtles3ad09202008-02-09 04:49:55 +010065/*
Andrew Victore3ba22d2008-05-24 17:06:45 +010066 * LEDs
67 */
68static struct gpio_led yl9200_leds[] = {
69 { /* D2 */
70 .name = "led2",
71 .gpio = AT91_PIN_PB17,
72 .active_low = 1,
73 .default_trigger = "timer",
74 },
75 { /* D3 */
76 .name = "led3",
77 .gpio = AT91_PIN_PB16,
78 .active_low = 1,
79 .default_trigger = "heartbeat",
80 },
81 { /* D4 */
82 .name = "led4",
83 .gpio = AT91_PIN_PB15,
84 .active_low = 1,
85 },
86 { /* D5 */
87 .name = "led5",
88 .gpio = AT91_PIN_PB8,
89 .active_low = 1,
90 }
91};
92
93/*
94 * Ethernet
95 */
Jamie Iles84e0cdb2011-03-08 20:17:06 +000096static struct macb_platform_data __initdata yl9200_eth_data = {
Andrew Victore3ba22d2008-05-24 17:06:45 +010097 .phy_irq_pin = AT91_PIN_PB28,
98 .is_rmii = 1,
99};
100
101/*
102 * USB Host
103 */
104static struct at91_usbh_data __initdata yl9200_usbh_data = {
105 .ports = 1, /* PQFP version of AT91RM9200 */
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800106 .vbus_pin = {-EINVAL, -EINVAL},
107 .overcurrent_pin= {-EINVAL, -EINVAL},
Andrew Victore3ba22d2008-05-24 17:06:45 +0100108};
109
110/*
111 * USB Device
112 */
113static 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) */
Steve Birtles3ad09202008-02-09 04:49:55 +0100117
118};
Andrew Victore3ba22d2008-05-24 17:06:45 +0100119
120/*
121 * MMC
122 */
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200123static struct mci_platform_data __initdata yl9200_mci0_data = {
124 .slot[0] = {
125 .bus_width = 4,
126 .detect_pin = AT91_PIN_PB9,
127 .wp_pin = -EINVAL,
128 },
Steve Birtles3ad09202008-02-09 04:49:55 +0100129};
130
Andrew Victore3ba22d2008-05-24 17:06:45 +0100131/*
132 * NAND Flash
133 */
134static struct mtd_partition __initdata yl9200_nand_partition[] = {
Steve Birtles3ad09202008-02-09 04:49:55 +0100135 {
136 .name = "AT91 NAND partition 1, boot",
137 .offset = 0,
Andrew Victore5052402008-09-21 21:30:02 +0100138 .size = SZ_256K
Steve Birtles3ad09202008-02-09 04:49:55 +0100139 },
140 {
141 .name = "AT91 NAND partition 2, kernel",
Andrew Victore5052402008-09-21 21:30:02 +0100142 .offset = MTDPART_OFS_NXTBLK,
143 .size = (2 * SZ_1M) - SZ_256K
Steve Birtles3ad09202008-02-09 04:49:55 +0100144 },
145 {
146 .name = "AT91 NAND partition 3, filesystem",
Andrew Victore5052402008-09-21 21:30:02 +0100147 .offset = MTDPART_OFS_NXTBLK,
Steve Birtles3ad09202008-02-09 04:49:55 +0100148 .size = 14 * SZ_1M
149 },
150 {
151 .name = "AT91 NAND partition 4, storage",
Andrew Victore5052402008-09-21 21:30:02 +0100152 .offset = MTDPART_OFS_NXTBLK,
153 .size = SZ_16M
Steve Birtles3ad09202008-02-09 04:49:55 +0100154 },
155 {
156 .name = "AT91 NAND partition 5, ext-fs",
Andrew Victore5052402008-09-21 21:30:02 +0100157 .offset = MTDPART_OFS_NXTBLK,
158 .size = SZ_32M
Andrew Victore3ba22d2008-05-24 17:06:45 +0100159 }
Steve Birtles3ad09202008-02-09 04:49:55 +0100160};
161
David Woodhouseff877ea2008-07-25 10:40:14 -0400162static struct atmel_nand_data __initdata yl9200_nand_data = {
Andrew Victore3ba22d2008-05-24 17:06:45 +0100163 .ale = 6,
164 .cle = 7,
Jean-Christophe PLAGNIOL-VILLARD63b4c292011-11-25 01:51:06 +0800165 .det_pin = -EINVAL,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100166 .rdy_pin = AT91_PIN_PC14, /* R/!B (Sheet10) */
167 .enable_pin = AT91_PIN_PC15, /* !CE (Sheet10) */
Jean-Christophe PLAGNIOL-VILLARDbf4289c2011-12-29 14:43:24 +0800168 .ecc_mode = NAND_ECC_SOFT,
Dmitry Eremin-Solenikov1754aab2011-05-29 17:49:22 +0400169 .parts = yl9200_nand_partition,
170 .num_parts = ARRAY_SIZE(yl9200_nand_partition),
Steve Birtles3ad09202008-02-09 04:49:55 +0100171};
172
Steve Birtles3ad09202008-02-09 04:49:55 +0100173/*
Andrew Victore3ba22d2008-05-24 17:06:45 +0100174 * NOR Flash
175 */
176#define YL9200_FLASH_BASE AT91_CHIPSELECT_0
Andrew Victore5052402008-09-21 21:30:02 +0100177#define YL9200_FLASH_SIZE SZ_16M
Steve Birtles3ad09202008-02-09 04:49:55 +0100178
Andrew Victore3ba22d2008-05-24 17:06:45 +0100179static struct mtd_partition yl9200_flash_partitions[] = {
Steve Birtles3ad09202008-02-09 04:49:55 +0100180 {
Andrew Victore3ba22d2008-05-24 17:06:45 +0100181 .name = "Bootloader",
Andrew Victore3ba22d2008-05-24 17:06:45 +0100182 .offset = 0,
Andrew Victore5052402008-09-21 21:30:02 +0100183 .size = SZ_256K,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100184 .mask_flags = MTD_WRITEABLE, /* force read-only */
185 },
186 {
187 .name = "Kernel",
Andrew Victore5052402008-09-21 21:30:02 +0100188 .offset = MTDPART_OFS_NXTBLK,
189 .size = (2 * SZ_1M) - SZ_256K
Andrew Victore3ba22d2008-05-24 17:06:45 +0100190 },
191 {
192 .name = "Filesystem",
Andrew Victore5052402008-09-21 21:30:02 +0100193 .offset = MTDPART_OFS_NXTBLK,
194 .size = MTDPART_SIZ_FULL
Steve Birtles3ad09202008-02-09 04:49:55 +0100195 }
196};
197
Andrew Victore3ba22d2008-05-24 17:06:45 +0100198static struct physmap_flash_data yl9200_flash_data = {
199 .width = 2,
200 .parts = yl9200_flash_partitions,
201 .nr_parts = ARRAY_SIZE(yl9200_flash_partitions),
202};
203
204static struct resource yl9200_flash_resources[] = {
205 {
206 .start = YL9200_FLASH_BASE,
207 .end = YL9200_FLASH_BASE + YL9200_FLASH_SIZE - 1,
208 .flags = IORESOURCE_MEM,
209 }
210};
211
212static struct platform_device yl9200_flash = {
Steve Birtles3ad09202008-02-09 04:49:55 +0100213 .name = "physmap-flash",
214 .id = 0,
215 .dev = {
Andrew Victore3ba22d2008-05-24 17:06:45 +0100216 .platform_data = &yl9200_flash_data,
Steve Birtles3ad09202008-02-09 04:49:55 +0100217 },
Andrew Victore3ba22d2008-05-24 17:06:45 +0100218 .resource = yl9200_flash_resources,
219 .num_resources = ARRAY_SIZE(yl9200_flash_resources),
Steve Birtles3ad09202008-02-09 04:49:55 +0100220};
221
Andrew Victore3ba22d2008-05-24 17:06:45 +0100222/*
223 * I2C (TWI)
Steve Birtles3ad09202008-02-09 04:49:55 +0100224 */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100225static struct i2c_board_info __initdata yl9200_i2c_devices[] = {
226 { /* EEPROM */
227 I2C_BOARD_INFO("24c128", 0x50),
228 }
229};
230
231/*
232 * GPIO Buttons
233*/
Steve Birtles3ad09202008-02-09 04:49:55 +0100234#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
Andrew Victore3ba22d2008-05-24 17:06:45 +0100235static struct gpio_keys_button yl9200_buttons[] = {
Steve Birtles3ad09202008-02-09 04:49:55 +0100236 {
237 .gpio = AT91_PIN_PA24,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100238 .code = BTN_2,
Steve Birtles3ad09202008-02-09 04:49:55 +0100239 .desc = "SW2",
240 .active_low = 1,
241 .wakeup = 1,
242 },
243 {
244 .gpio = AT91_PIN_PB1,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100245 .code = BTN_3,
Steve Birtles3ad09202008-02-09 04:49:55 +0100246 .desc = "SW3",
247 .active_low = 1,
248 .wakeup = 1,
249 },
250 {
251 .gpio = AT91_PIN_PB2,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100252 .code = BTN_4,
Steve Birtles3ad09202008-02-09 04:49:55 +0100253 .desc = "SW4",
254 .active_low = 1,
255 .wakeup = 1,
256 },
257 {
258 .gpio = AT91_PIN_PB6,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100259 .code = BTN_5,
Steve Birtles3ad09202008-02-09 04:49:55 +0100260 .desc = "SW5",
261 .active_low = 1,
262 .wakeup = 1,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100263 }
Steve Birtles3ad09202008-02-09 04:49:55 +0100264};
265
Andrew Victore3ba22d2008-05-24 17:06:45 +0100266static struct gpio_keys_platform_data yl9200_button_data = {
267 .buttons = yl9200_buttons,
268 .nbuttons = ARRAY_SIZE(yl9200_buttons),
Steve Birtles3ad09202008-02-09 04:49:55 +0100269};
270
Andrew Victore3ba22d2008-05-24 17:06:45 +0100271static struct platform_device yl9200_button_device = {
Steve Birtles3ad09202008-02-09 04:49:55 +0100272 .name = "gpio-keys",
273 .id = -1,
274 .num_resources = 0,
275 .dev = {
Andrew Victore3ba22d2008-05-24 17:06:45 +0100276 .platform_data = &yl9200_button_data,
Steve Birtles3ad09202008-02-09 04:49:55 +0100277 }
278};
279
Andrew Victore3ba22d2008-05-24 17:06:45 +0100280static void __init yl9200_add_device_buttons(void)
Steve Birtles3ad09202008-02-09 04:49:55 +0100281{
Andrew Victore3ba22d2008-05-24 17:06:45 +0100282 at91_set_gpio_input(AT91_PIN_PA24, 1); /* SW2 */
Steve Birtles3ad09202008-02-09 04:49:55 +0100283 at91_set_deglitch(AT91_PIN_PA24, 1);
Andrew Victore3ba22d2008-05-24 17:06:45 +0100284 at91_set_gpio_input(AT91_PIN_PB1, 1); /* SW3 */
Steve Birtles3ad09202008-02-09 04:49:55 +0100285 at91_set_deglitch(AT91_PIN_PB1, 1);
Andrew Victore3ba22d2008-05-24 17:06:45 +0100286 at91_set_gpio_input(AT91_PIN_PB2, 1); /* SW4 */
Steve Birtles3ad09202008-02-09 04:49:55 +0100287 at91_set_deglitch(AT91_PIN_PB2, 1);
Andrew Victore3ba22d2008-05-24 17:06:45 +0100288 at91_set_gpio_input(AT91_PIN_PB6, 1); /* SW5 */
Steve Birtles3ad09202008-02-09 04:49:55 +0100289 at91_set_deglitch(AT91_PIN_PB6, 1);
290
Andrew Victore3ba22d2008-05-24 17:06:45 +0100291 /* Enable buttons (Sheet 5) */
292 at91_set_gpio_output(AT91_PIN_PB7, 1);
Steve Birtles3ad09202008-02-09 04:49:55 +0100293
Andrew Victore3ba22d2008-05-24 17:06:45 +0100294 platform_device_register(&yl9200_button_device);
Steve Birtles3ad09202008-02-09 04:49:55 +0100295}
296#else
Andrew Victore3ba22d2008-05-24 17:06:45 +0100297static void __init yl9200_add_device_buttons(void) {}
Steve Birtles3ad09202008-02-09 04:49:55 +0100298#endif
299
Andrew Victore3ba22d2008-05-24 17:06:45 +0100300/*
301 * Touchscreen
302 */
303#if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
304static int ads7843_pendown_state(void)
305{
306 return !at91_get_gpio_value(AT91_PIN_PB11); /* Touchscreen PENIRQ */
307}
308
309static struct ads7846_platform_data ads_info = {
310 .model = 7843,
311 .x_min = 150,
312 .x_max = 3830,
313 .y_min = 190,
314 .y_max = 3830,
315 .vref_delay_usecs = 100,
316
317 /* For a 8" touch-screen */
318 // .x_plate_ohms = 603,
319 // .y_plate_ohms = 332,
320
321 /* For a 10.4" touch-screen */
322 // .x_plate_ohms = 611,
323 // .y_plate_ohms = 325,
324
325 .x_plate_ohms = 576,
326 .y_plate_ohms = 366,
327
328 .pressure_max = 15000, /* generally nonsense on the 7843 */
329 .debounce_max = 1,
330 .debounce_rep = 0,
331 .debounce_tol = (~0),
332 .get_pendown_state = ads7843_pendown_state,
333};
334
335static void __init yl9200_add_device_ts(void)
336{
337 at91_set_gpio_input(AT91_PIN_PB11, 1); /* Touchscreen interrupt pin */
338 at91_set_gpio_input(AT91_PIN_PB10, 1); /* Touchscreen BUSY signal - not used! */
339}
340#else
341static void __init yl9200_add_device_ts(void) {}
342#endif
343
344/*
345 * SPI devices
346 */
347static struct spi_board_info yl9200_spi_devices[] = {
348#if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
349 { /* Touchscreen */
350 .modalias = "ads7846",
351 .chip_select = 0,
352 .max_speed_hz = 5000 * 26,
353 .platform_data = &ads_info,
354 .irq = AT91_PIN_PB11,
355 },
356#endif
357 { /* CAN */
358 .modalias = "mcp2510",
359 .chip_select = 1,
360 .max_speed_hz = 25000 * 26,
361 .irq = AT91_PIN_PC0,
362 }
363};
364
365/*
366 * LCD / VGA
367 *
368 * EPSON S1D13806 FB (discontinued chip)
369 * EPSON S1D13506 FB
370 */
Jean-Christophe PLAGNIOL-VILLARD3b24f092010-11-21 11:24:07 +0800371#if defined(CONFIG_FB_S1D13XXX) || defined(CONFIG_FB_S1D13XXX_MODULE)
Steve Birtles3ad09202008-02-09 04:49:55 +0100372#include <video/s1d13xxxfb.h>
373
Steve Birtles3ad09202008-02-09 04:49:55 +0100374
Jean-Christophe PLAGNIOL-VILLARDb2eb5302011-09-19 19:26:52 +0800375static void yl9200_init_video(void)
Steve Birtles3ad09202008-02-09 04:49:55 +0100376{
Andrew Victore3ba22d2008-05-24 17:06:45 +0100377 /* NWAIT Signal */
378 at91_set_A_periph(AT91_PIN_PC6, 0);
Steve Birtles3ad09202008-02-09 04:49:55 +0100379
Andrew Victore3ba22d2008-05-24 17:06:45 +0100380 /* Initialization of the Static Memory Controller for Chip Select 2 */
Jean-Christophe PLAGNIOL-VILLARDf363c402012-02-13 12:58:53 +0800381 at91_ramc_write(0, AT91_SMC_CSR(2), AT91_SMC_DBW_16 /* 16 bit */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100382 | AT91_SMC_WSEN | AT91_SMC_NWS_(0x4) /* wait states */
383 | AT91_SMC_TDF_(0x100) /* float time */
Steve Birtles3ad09202008-02-09 04:49:55 +0100384 );
Steve Birtles3ad09202008-02-09 04:49:55 +0100385}
386
Andrew Victore3ba22d2008-05-24 17:06:45 +0100387static struct s1d13xxxfb_regval yl9200_s1dfb_initregs[] =
Steve Birtles3ad09202008-02-09 04:49:55 +0100388{
Andrew Victore3ba22d2008-05-24 17:06:45 +0100389 {S1DREG_MISC, 0x00}, /* Miscellaneous Register*/
390 {S1DREG_COM_DISP_MODE, 0x01}, /* Display Mode Register, LCD only*/
391 {S1DREG_GPIO_CNF0, 0x00}, /* General IO Pins Configuration Register*/
392 {S1DREG_GPIO_CTL0, 0x00}, /* General IO Pins Control Register*/
393 {S1DREG_CLK_CNF, 0x11}, /* Memory Clock Configuration Register*/
394 {S1DREG_LCD_CLK_CNF, 0x10}, /* LCD Pixel Clock Configuration Register*/
395 {S1DREG_CRT_CLK_CNF, 0x12}, /* CRT/TV Pixel Clock Configuration Register*/
396 {S1DREG_MPLUG_CLK_CNF, 0x01}, /* MediaPlug Clock Configuration Register*/
397 {S1DREG_CPU2MEM_WST_SEL, 0x02}, /* CPU To Memory Wait State Select Register*/
398 {S1DREG_MEM_CNF, 0x00}, /* Memory Configuration Register*/
399 {S1DREG_SDRAM_REF_RATE, 0x04}, /* DRAM Refresh Rate Register, MCLK source*/
400 {S1DREG_SDRAM_TC0, 0x12}, /* DRAM Timings Control Register 0*/
401 {S1DREG_SDRAM_TC1, 0x02}, /* DRAM Timings Control Register 1*/
402 {S1DREG_PANEL_TYPE, 0x25}, /* Panel Type Register*/
403 {S1DREG_MOD_RATE, 0x00}, /* MOD Rate Register*/
404 {S1DREG_LCD_DISP_HWIDTH, 0x4F}, /* LCD Horizontal Display Width Register*/
405 {S1DREG_LCD_NDISP_HPER, 0x13}, /* LCD Horizontal Non-Display Period Register*/
406 {S1DREG_TFT_FPLINE_START, 0x01}, /* TFT FPLINE Start Position Register*/
407 {S1DREG_TFT_FPLINE_PWIDTH, 0x0c}, /* TFT FPLINE Pulse Width Register*/
408 {S1DREG_LCD_DISP_VHEIGHT0, 0xDF}, /* LCD Vertical Display Height Register 0*/
409 {S1DREG_LCD_DISP_VHEIGHT1, 0x01}, /* LCD Vertical Display Height Register 1*/
410 {S1DREG_LCD_NDISP_VPER, 0x2c}, /* LCD Vertical Non-Display Period Register*/
411 {S1DREG_TFT_FPFRAME_START, 0x0a}, /* TFT FPFRAME Start Position Register*/
412 {S1DREG_TFT_FPFRAME_PWIDTH, 0x02}, /* TFT FPFRAME Pulse Width Register*/
413 {S1DREG_LCD_DISP_MODE, 0x05}, /* LCD Display Mode Register*/
414 {S1DREG_LCD_MISC, 0x01}, /* LCD Miscellaneous Register*/
415 {S1DREG_LCD_DISP_START0, 0x00}, /* LCD Display Start Address Register 0*/
416 {S1DREG_LCD_DISP_START1, 0x00}, /* LCD Display Start Address Register 1*/
417 {S1DREG_LCD_DISP_START2, 0x00}, /* LCD Display Start Address Register 2*/
418 {S1DREG_LCD_MEM_OFF0, 0x80}, /* LCD Memory Address Offset Register 0*/
419 {S1DREG_LCD_MEM_OFF1, 0x02}, /* LCD Memory Address Offset Register 1*/
420 {S1DREG_LCD_PIX_PAN, 0x03}, /* LCD Pixel Panning Register*/
421 {S1DREG_LCD_DISP_FIFO_HTC, 0x00}, /* LCD Display FIFO High Threshold Control Register*/
422 {S1DREG_LCD_DISP_FIFO_LTC, 0x00}, /* LCD Display FIFO Low Threshold Control Register*/
423 {S1DREG_CRT_DISP_HWIDTH, 0x4F}, /* CRT/TV Horizontal Display Width Register*/
424 {S1DREG_CRT_NDISP_HPER, 0x13}, /* CRT/TV Horizontal Non-Display Period Register*/
425 {S1DREG_CRT_HRTC_START, 0x01}, /* CRT/TV HRTC Start Position Register*/
426 {S1DREG_CRT_HRTC_PWIDTH, 0x0B}, /* CRT/TV HRTC Pulse Width Register*/
427 {S1DREG_CRT_DISP_VHEIGHT0, 0xDF}, /* CRT/TV Vertical Display Height Register 0*/
428 {S1DREG_CRT_DISP_VHEIGHT1, 0x01}, /* CRT/TV Vertical Display Height Register 1*/
429 {S1DREG_CRT_NDISP_VPER, 0x2B}, /* CRT/TV Vertical Non-Display Period Register*/
430 {S1DREG_CRT_VRTC_START, 0x09}, /* CRT/TV VRTC Start Position Register*/
431 {S1DREG_CRT_VRTC_PWIDTH, 0x01}, /* CRT/TV VRTC Pulse Width Register*/
432 {S1DREG_TV_OUT_CTL, 0x18}, /* TV Output Control Register */
433 {S1DREG_CRT_DISP_MODE, 0x05}, /* CRT/TV Display Mode Register, 16BPP*/
434 {S1DREG_CRT_DISP_START0, 0x00}, /* CRT/TV Display Start Address Register 0*/
435 {S1DREG_CRT_DISP_START1, 0x00}, /* CRT/TV Display Start Address Register 1*/
436 {S1DREG_CRT_DISP_START2, 0x00}, /* CRT/TV Display Start Address Register 2*/
437 {S1DREG_CRT_MEM_OFF0, 0x80}, /* CRT/TV Memory Address Offset Register 0*/
438 {S1DREG_CRT_MEM_OFF1, 0x02}, /* CRT/TV Memory Address Offset Register 1*/
439 {S1DREG_CRT_PIX_PAN, 0x00}, /* CRT/TV Pixel Panning Register*/
440 {S1DREG_CRT_DISP_FIFO_HTC, 0x00}, /* CRT/TV Display FIFO High Threshold Control Register*/
441 {S1DREG_CRT_DISP_FIFO_LTC, 0x00}, /* CRT/TV Display FIFO Low Threshold Control Register*/
442 {S1DREG_LCD_CUR_CTL, 0x00}, /* LCD Ink/Cursor Control Register*/
443 {S1DREG_LCD_CUR_START, 0x01}, /* LCD Ink/Cursor Start Address Register*/
444 {S1DREG_LCD_CUR_XPOS0, 0x00}, /* LCD Cursor X Position Register 0*/
445 {S1DREG_LCD_CUR_XPOS1, 0x00}, /* LCD Cursor X Position Register 1*/
446 {S1DREG_LCD_CUR_YPOS0, 0x00}, /* LCD Cursor Y Position Register 0*/
447 {S1DREG_LCD_CUR_YPOS1, 0x00}, /* LCD Cursor Y Position Register 1*/
448 {S1DREG_LCD_CUR_BCTL0, 0x00}, /* LCD Ink/Cursor Blue Color 0 Register*/
449 {S1DREG_LCD_CUR_GCTL0, 0x00}, /* LCD Ink/Cursor Green Color 0 Register*/
450 {S1DREG_LCD_CUR_RCTL0, 0x00}, /* LCD Ink/Cursor Red Color 0 Register*/
451 {S1DREG_LCD_CUR_BCTL1, 0x1F}, /* LCD Ink/Cursor Blue Color 1 Register*/
452 {S1DREG_LCD_CUR_GCTL1, 0x3F}, /* LCD Ink/Cursor Green Color 1 Register*/
453 {S1DREG_LCD_CUR_RCTL1, 0x1F}, /* LCD Ink/Cursor Red Color 1 Register*/
454 {S1DREG_LCD_CUR_FIFO_HTC, 0x00}, /* LCD Ink/Cursor FIFO Threshold Register*/
455 {S1DREG_CRT_CUR_CTL, 0x00}, /* CRT/TV Ink/Cursor Control Register*/
456 {S1DREG_CRT_CUR_START, 0x01}, /* CRT/TV Ink/Cursor Start Address Register*/
457 {S1DREG_CRT_CUR_XPOS0, 0x00}, /* CRT/TV Cursor X Position Register 0*/
458 {S1DREG_CRT_CUR_XPOS1, 0x00}, /* CRT/TV Cursor X Position Register 1*/
459 {S1DREG_CRT_CUR_YPOS0, 0x00}, /* CRT/TV Cursor Y Position Register 0*/
460 {S1DREG_CRT_CUR_YPOS1, 0x00}, /* CRT/TV Cursor Y Position Register 1*/
461 {S1DREG_CRT_CUR_BCTL0, 0x00}, /* CRT/TV Ink/Cursor Blue Color 0 Register*/
462 {S1DREG_CRT_CUR_GCTL0, 0x00}, /* CRT/TV Ink/Cursor Green Color 0 Register*/
463 {S1DREG_CRT_CUR_RCTL0, 0x00}, /* CRT/TV Ink/Cursor Red Color 0 Register*/
464 {S1DREG_CRT_CUR_BCTL1, 0x1F}, /* CRT/TV Ink/Cursor Blue Color 1 Register*/
465 {S1DREG_CRT_CUR_GCTL1, 0x3F}, /* CRT/TV Ink/Cursor Green Color 1 Register*/
466 {S1DREG_CRT_CUR_RCTL1, 0x1F}, /* CRT/TV Ink/Cursor Red Color 1 Register*/
467 {S1DREG_CRT_CUR_FIFO_HTC, 0x00}, /* CRT/TV Ink/Cursor FIFO Threshold Register*/
468 {S1DREG_BBLT_CTL0, 0x00}, /* BitBlt Control Register 0*/
469 {S1DREG_BBLT_CTL1, 0x01}, /* BitBlt Control Register 1*/
470 {S1DREG_BBLT_CC_EXP, 0x00}, /* BitBlt ROP Code/Color Expansion Register*/
471 {S1DREG_BBLT_OP, 0x00}, /* BitBlt Operation Register*/
472 {S1DREG_BBLT_SRC_START0, 0x00}, /* BitBlt Source Start Address Register 0*/
473 {S1DREG_BBLT_SRC_START1, 0x00}, /* BitBlt Source Start Address Register 1*/
474 {S1DREG_BBLT_SRC_START2, 0x00}, /* BitBlt Source Start Address Register 2*/
475 {S1DREG_BBLT_DST_START0, 0x00}, /* BitBlt Destination Start Address Register 0*/
476 {S1DREG_BBLT_DST_START1, 0x00}, /* BitBlt Destination Start Address Register 1*/
477 {S1DREG_BBLT_DST_START2, 0x00}, /* BitBlt Destination Start Address Register 2*/
478 {S1DREG_BBLT_MEM_OFF0, 0x00}, /* BitBlt Memory Address Offset Register 0*/
479 {S1DREG_BBLT_MEM_OFF1, 0x00}, /* BitBlt Memory Address Offset Register 1*/
480 {S1DREG_BBLT_WIDTH0, 0x00}, /* BitBlt Width Register 0*/
481 {S1DREG_BBLT_WIDTH1, 0x00}, /* BitBlt Width Register 1*/
482 {S1DREG_BBLT_HEIGHT0, 0x00}, /* BitBlt Height Register 0*/
483 {S1DREG_BBLT_HEIGHT1, 0x00}, /* BitBlt Height Register 1*/
484 {S1DREG_BBLT_BGC0, 0x00}, /* BitBlt Background Color Register 0*/
485 {S1DREG_BBLT_BGC1, 0x00}, /* BitBlt Background Color Register 1*/
486 {S1DREG_BBLT_FGC0, 0x00}, /* BitBlt Foreground Color Register 0*/
487 {S1DREG_BBLT_FGC1, 0x00}, /* BitBlt Foreground Color Register 1*/
488 {S1DREG_LKUP_MODE, 0x00}, /* Look-Up Table Mode Register*/
489 {S1DREG_LKUP_ADDR, 0x00}, /* Look-Up Table Address Register*/
490 {S1DREG_PS_CNF, 0x00}, /* Power Save Configuration Register*/
491 {S1DREG_PS_STATUS, 0x00}, /* Power Save Status Register*/
492 {S1DREG_CPU2MEM_WDOGT, 0x00}, /* CPU-to-Memory Access Watchdog Timer Register*/
493 {S1DREG_COM_DISP_MODE, 0x01}, /* Display Mode Register, LCD only*/
Steve Birtles3ad09202008-02-09 04:49:55 +0100494};
495
Andrew Victore3ba22d2008-05-24 17:06:45 +0100496static struct s1d13xxxfb_pdata yl9200_s1dfb_pdata = {
497 .initregs = yl9200_s1dfb_initregs,
498 .initregssize = ARRAY_SIZE(yl9200_s1dfb_initregs),
499 .platform_init_video = yl9200_init_video,
Steve Birtles3ad09202008-02-09 04:49:55 +0100500};
501
Andrew Victore5052402008-09-21 21:30:02 +0100502#define YL9200_FB_REG_BASE AT91_CHIPSELECT_7
503#define YL9200_FB_VMEM_BASE YL9200_FB_REG_BASE + SZ_2M
504#define YL9200_FB_VMEM_SIZE SZ_2M
505
Andrew Victore3ba22d2008-05-24 17:06:45 +0100506static struct resource yl9200_s1dfb_resource[] = {
Steve Birtles3ad09202008-02-09 04:49:55 +0100507 [0] = { /* video mem */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100508 .name = "s1d13xxxfb memory",
Andrew Victore5052402008-09-21 21:30:02 +0100509 .start = YL9200_FB_VMEM_BASE,
510 .end = YL9200_FB_VMEM_BASE + YL9200_FB_VMEM_SIZE -1,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100511 .flags = IORESOURCE_MEM,
Steve Birtles3ad09202008-02-09 04:49:55 +0100512 },
513 [1] = { /* video registers */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100514 .name = "s1d13xxxfb registers",
Andrew Victore5052402008-09-21 21:30:02 +0100515 .start = YL9200_FB_REG_BASE,
516 .end = YL9200_FB_REG_BASE + SZ_512 -1,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100517 .flags = IORESOURCE_MEM,
Steve Birtles3ad09202008-02-09 04:49:55 +0100518 },
519};
520
Andrew Victore5052402008-09-21 21:30:02 +0100521static u64 s1dfb_dmamask = DMA_BIT_MASK(32);
522
Andrew Victore3ba22d2008-05-24 17:06:45 +0100523static struct platform_device yl9200_s1dfb_device = {
524 .name = "s1d13806fb",
525 .id = -1,
526 .dev = {
Steve Birtles3ad09202008-02-09 04:49:55 +0100527 .dma_mask = &s1dfb_dmamask,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100528 .coherent_dma_mask = DMA_BIT_MASK(32),
529 .platform_data = &yl9200_s1dfb_pdata,
Steve Birtles3ad09202008-02-09 04:49:55 +0100530 },
Andrew Victore3ba22d2008-05-24 17:06:45 +0100531 .resource = yl9200_s1dfb_resource,
532 .num_resources = ARRAY_SIZE(yl9200_s1dfb_resource),
Steve Birtles3ad09202008-02-09 04:49:55 +0100533};
534
Andrew Victore3ba22d2008-05-24 17:06:45 +0100535void __init yl9200_add_device_video(void)
Steve Birtles3ad09202008-02-09 04:49:55 +0100536{
Andrew Victore3ba22d2008-05-24 17:06:45 +0100537 platform_device_register(&yl9200_s1dfb_device);
Steve Birtles3ad09202008-02-09 04:49:55 +0100538}
539#else
Andrew Victore3ba22d2008-05-24 17:06:45 +0100540void __init yl9200_add_device_video(void) {}
Steve Birtles3ad09202008-02-09 04:49:55 +0100541#endif
542
Andrew Victore3ba22d2008-05-24 17:06:45 +0100543
544static void __init yl9200_board_init(void)
Steve Birtles3ad09202008-02-09 04:49:55 +0100545{
546 /* Serial */
Jean-Christophe PLAGNIOL-VILLARD71b149b2012-04-05 14:14:28 +0800547 /* DBGU on ttyS0. (Rx & Tx only) */
548 at91_register_uart(0, 0, 0);
549
550 /* USART1 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
551 at91_register_uart(AT91RM9200_ID_US1, 1, ATMEL_UART_CTS | ATMEL_UART_RTS
552 | ATMEL_UART_DTR | ATMEL_UART_DSR | ATMEL_UART_DCD
553 | ATMEL_UART_RI);
554
555 /* USART0 on ttyS2. (Rx & Tx only to JP3) */
556 at91_register_uart(AT91RM9200_ID_US0, 2, 0);
557
558 /* USART3 on ttyS3. (Rx, Tx, RTS - RS485 interface) */
559 at91_register_uart(AT91RM9200_ID_US3, 3, ATMEL_UART_RTS);
Steve Birtles3ad09202008-02-09 04:49:55 +0100560 at91_add_device_serial();
561 /* Ethernet */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100562 at91_add_device_eth(&yl9200_eth_data);
Steve Birtles3ad09202008-02-09 04:49:55 +0100563 /* USB Host */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100564 at91_add_device_usbh(&yl9200_usbh_data);
Steve Birtles3ad09202008-02-09 04:49:55 +0100565 /* USB Device */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100566 at91_add_device_udc(&yl9200_udc_data);
Steve Birtles3ad09202008-02-09 04:49:55 +0100567 /* I2C */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100568 at91_add_device_i2c(yl9200_i2c_devices, ARRAY_SIZE(yl9200_i2c_devices));
569 /* MMC */
Ludovic Desroches4cf33262012-05-21 12:23:27 +0200570 at91_add_device_mci(0, &yl9200_mci0_data);
Steve Birtles3ad09202008-02-09 04:49:55 +0100571 /* NAND */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100572 at91_add_device_nand(&yl9200_nand_data);
Steve Birtles3ad09202008-02-09 04:49:55 +0100573 /* NOR Flash */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100574 platform_device_register(&yl9200_flash);
575#if defined(CONFIG_SPI_ATMEL) || defined(CONFIG_SPI_ATMEL_MODULE)
576 /* SPI */
577 at91_add_device_spi(yl9200_spi_devices, ARRAY_SIZE(yl9200_spi_devices));
578 /* Touchscreen */
579 yl9200_add_device_ts();
580#endif
581 /* LEDs. */
582 at91_gpio_leds(yl9200_leds, ARRAY_SIZE(yl9200_leds));
Steve Birtles3ad09202008-02-09 04:49:55 +0100583 /* Push Buttons */
Andrew Victore3ba22d2008-05-24 17:06:45 +0100584 yl9200_add_device_buttons();
585 /* VGA */
586 yl9200_add_device_video();
Steve Birtles3ad09202008-02-09 04:49:55 +0100587}
588
589MACHINE_START(YL9200, "uCdragon YL-9200")
Andrew Victore3ba22d2008-05-24 17:06:45 +0100590 /* Maintainer: S.Birtles */
Stephen Warren6bb27d72012-11-08 12:40:59 -0700591 .init_time = at91rm9200_timer_init,
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +0800592 .map_io = at91_map_io,
Ludovic Desroches3e135462012-06-11 15:38:03 +0200593 .handle_irq = at91_aic_handle_irq,
Jean-Christophe PLAGNIOL-VILLARD1b021a32011-04-28 20:19:32 +0800594 .init_early = yl9200_init_early,
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +0800595 .init_irq = at91_init_irq_default,
Andrew Victore3ba22d2008-05-24 17:06:45 +0100596 .init_machine = yl9200_board_init,
Steve Birtles3ad09202008-02-09 04:49:55 +0100597MACHINE_END