2 * linux/arch/arm/mach-s3c64xx/mach-smartq5.c
4 * Copyright (C) 2010 Maurus Cuelenaere
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
13 #include <linux/gpio.h>
14 #include <linux/gpio_keys.h>
15 #include <linux/init.h>
16 #include <linux/input.h>
17 #include <linux/leds.h>
18 #include <linux/platform_device.h>
20 #include <asm/mach-types.h>
21 #include <asm/mach/arch.h>
24 #include <mach/regs-fb.h>
25 #include <mach/regs-gpio.h>
26 #include <mach/s3c6410.h>
29 #include <plat/devs.h>
31 #include <plat/gpio-cfg.h>
33 #include "mach-smartq.h"
35 static struct gpio_led smartq5_leds[] __initdata = {
37 .name = "smartq5:green",
39 .gpio = S3C64XX_GPN(8),
42 .name = "smartq5:red",
44 .gpio = S3C64XX_GPN(9),
48 static struct gpio_led_platform_data smartq5_led_data = {
49 .num_leds = ARRAY_SIZE(smartq5_leds),
53 static struct platform_device smartq5_leds_device = {
56 .dev.platform_data = &smartq5_led_data,
59 /* Labels according to the SmartQ manual */
60 static struct gpio_keys_button smartq5_buttons[] = {
62 .gpio = S3C64XX_GPL(14),
66 .debounce_interval = 5,
70 .gpio = S3C64XX_GPN(2),
74 .debounce_interval = 5,
78 .gpio = S3C64XX_GPN(12),
82 .debounce_interval = 5,
86 .gpio = S3C64XX_GPN(15),
90 .debounce_interval = 5,
95 static struct gpio_keys_platform_data smartq5_buttons_data = {
96 .buttons = smartq5_buttons,
97 .nbuttons = ARRAY_SIZE(smartq5_buttons),
100 static struct platform_device smartq5_buttons_device = {
105 .platform_data = &smartq5_buttons_data,
109 static struct s3c_fb_pd_win smartq5_fb_win0 = {
125 static struct s3c_fb_platdata smartq5_lcd_pdata __initdata = {
126 .setup_gpio = s3c64xx_fb_gpio_setup_24bpp,
127 .win[0] = &smartq5_fb_win0,
128 .vidcon0 = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,
129 .vidcon1 = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC |
133 static struct platform_device *smartq5_devices[] __initdata = {
134 &smartq5_leds_device,
135 &smartq5_buttons_device,
138 static void __init smartq5_machine_init(void)
140 s3c_fb_set_platdata(&smartq5_lcd_pdata);
142 smartq_machine_init();
144 platform_add_devices(smartq5_devices, ARRAY_SIZE(smartq5_devices));
147 MACHINE_START(SMARTQ5, "SmartQ 5")
148 /* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */
149 .phys_io = S3C_PA_UART & 0xfff00000,
150 .io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc,
151 .boot_params = S3C64XX_PA_SDRAM + 0x100,
152 .init_irq = s3c6410_init_irq,
153 .map_io = smartq_map_io,
154 .init_machine = smartq5_machine_init,
155 .timer = &s3c24xx_timer,