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>
23 #include <video/samsung_fimd.h>
25 #include <mach/regs-gpio.h>
26 #include <mach/gpio-samsung.h>
29 #include <plat/devs.h>
31 #include <plat/gpio-cfg.h>
32 #include <plat/samsung-time.h>
35 #include "mach-smartq.h"
37 static struct gpio_led smartq5_leds
[] = {
39 .name
= "smartq5:green",
41 .gpio
= S3C64XX_GPN(8),
44 .name
= "smartq5:red",
46 .gpio
= S3C64XX_GPN(9),
50 static struct gpio_led_platform_data smartq5_led_data
= {
51 .num_leds
= ARRAY_SIZE(smartq5_leds
),
55 static struct platform_device smartq5_leds_device
= {
58 .dev
.platform_data
= &smartq5_led_data
,
61 /* Labels according to the SmartQ manual */
62 static struct gpio_keys_button smartq5_buttons
[] = {
64 .gpio
= S3C64XX_GPL(14),
68 .debounce_interval
= 5,
72 .gpio
= S3C64XX_GPN(2),
76 .debounce_interval
= 5,
80 .gpio
= S3C64XX_GPN(12),
84 .debounce_interval
= 5,
88 .gpio
= S3C64XX_GPN(15),
92 .debounce_interval
= 5,
97 static struct gpio_keys_platform_data smartq5_buttons_data
= {
98 .buttons
= smartq5_buttons
,
99 .nbuttons
= ARRAY_SIZE(smartq5_buttons
),
102 static struct platform_device smartq5_buttons_device
= {
107 .platform_data
= &smartq5_buttons_data
,
111 static struct s3c_fb_pd_win smartq5_fb_win0
= {
118 static struct fb_videomode smartq5_lcd_timing
= {
130 static struct s3c_fb_platdata smartq5_lcd_pdata __initdata
= {
131 .setup_gpio
= s3c64xx_fb_gpio_setup_24bpp
,
132 .vtiming
= &smartq5_lcd_timing
,
133 .win
[0] = &smartq5_fb_win0
,
134 .vidcon0
= VIDCON0_VIDOUT_RGB
| VIDCON0_PNRMODE_RGB
,
135 .vidcon1
= VIDCON1_INV_HSYNC
| VIDCON1_INV_VSYNC
|
139 static struct platform_device
*smartq5_devices
[] __initdata
= {
140 &smartq5_leds_device
,
141 &smartq5_buttons_device
,
144 static void __init
smartq5_machine_init(void)
146 s3c_fb_set_platdata(&smartq5_lcd_pdata
);
148 smartq_machine_init();
150 platform_add_devices(smartq5_devices
, ARRAY_SIZE(smartq5_devices
));
153 MACHINE_START(SMARTQ5
, "SmartQ 5")
154 /* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */
155 .atag_offset
= 0x100,
156 .init_irq
= s3c6410_init_irq
,
157 .map_io
= smartq_map_io
,
158 .init_machine
= smartq5_machine_init
,
159 .init_time
= samsung_timer_init
,
160 .restart
= s3c64xx_restart
,