2 * linux/arch/arm/mach-s3c64xx/mach-smartq7.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>
24 #include <mach/irqs.h>
26 #include <mach/regs-gpio.h>
27 #include <mach/gpio-samsung.h>
30 #include <plat/devs.h>
32 #include <plat/gpio-cfg.h>
33 #include <plat/samsung-time.h>
36 #include "mach-smartq.h"
38 static struct gpio_led smartq7_leds
[] = {
40 .name
= "smartq7:red",
42 .gpio
= S3C64XX_GPN(8),
45 .name
= "smartq7:green",
47 .gpio
= S3C64XX_GPN(9),
51 static struct gpio_led_platform_data smartq7_led_data
= {
52 .num_leds
= ARRAY_SIZE(smartq7_leds
),
56 static struct platform_device smartq7_leds_device
= {
59 .dev
.platform_data
= &smartq7_led_data
,
62 /* Labels according to the SmartQ manual */
63 static struct gpio_keys_button smartq7_buttons
[] = {
65 .gpio
= S3C64XX_GPL(14),
69 .debounce_interval
= 5,
73 .gpio
= S3C64XX_GPN(2),
77 .debounce_interval
= 5,
81 .gpio
= S3C64XX_GPN(3),
85 .debounce_interval
= 5,
89 .gpio
= S3C64XX_GPN(4),
93 .debounce_interval
= 5,
97 .gpio
= S3C64XX_GPN(12),
101 .debounce_interval
= 5,
105 .gpio
= S3C64XX_GPN(15),
109 .debounce_interval
= 5,
114 static struct gpio_keys_platform_data smartq7_buttons_data
= {
115 .buttons
= smartq7_buttons
,
116 .nbuttons
= ARRAY_SIZE(smartq7_buttons
),
119 static struct platform_device smartq7_buttons_device
= {
124 .platform_data
= &smartq7_buttons_data
,
128 static struct s3c_fb_pd_win smartq7_fb_win0
= {
135 static struct fb_videomode smartq7_lcd_timing
= {
147 static struct s3c_fb_platdata smartq7_lcd_pdata __initdata
= {
148 .setup_gpio
= s3c64xx_fb_gpio_setup_24bpp
,
149 .vtiming
= &smartq7_lcd_timing
,
150 .win
[0] = &smartq7_fb_win0
,
151 .vidcon0
= VIDCON0_VIDOUT_RGB
| VIDCON0_PNRMODE_RGB
,
152 .vidcon1
= VIDCON1_INV_HSYNC
| VIDCON1_INV_VSYNC
|
156 static struct platform_device
*smartq7_devices
[] __initdata
= {
157 &smartq7_leds_device
,
158 &smartq7_buttons_device
,
161 static void __init
smartq7_machine_init(void)
163 s3c_fb_set_platdata(&smartq7_lcd_pdata
);
165 smartq_machine_init();
167 platform_add_devices(smartq7_devices
, ARRAY_SIZE(smartq7_devices
));
170 MACHINE_START(SMARTQ7
, "SmartQ 7")
171 /* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */
172 .atag_offset
= 0x100,
173 .nr_irqs
= S3C64XX_NR_IRQS
,
174 .init_irq
= s3c6410_init_irq
,
175 .map_io
= smartq_map_io
,
176 .init_machine
= smartq7_machine_init
,
177 .init_time
= samsung_timer_init
,
178 .restart
= s3c64xx_restart
,