1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (C) 2010 Maurus Cuelenaere
6 #include <linux/gpio.h>
7 #include <linux/gpio_keys.h>
8 #include <linux/init.h>
9 #include <linux/input.h>
10 #include <linux/leds.h>
11 #include <linux/platform_device.h>
13 #include <asm/mach-types.h>
14 #include <asm/mach/arch.h>
16 #include <video/samsung_fimd.h>
17 #include <mach/irqs.h>
19 #include <mach/regs-gpio.h>
20 #include <mach/gpio-samsung.h>
23 #include <plat/devs.h>
25 #include <plat/gpio-cfg.h>
26 #include <plat/samsung-time.h>
29 #include "mach-smartq.h"
31 static struct gpio_led smartq7_leds
[] = {
33 .name
= "smartq7:red",
35 .gpio
= S3C64XX_GPN(8),
38 .name
= "smartq7:green",
40 .gpio
= S3C64XX_GPN(9),
44 static struct gpio_led_platform_data smartq7_led_data
= {
45 .num_leds
= ARRAY_SIZE(smartq7_leds
),
49 static struct platform_device smartq7_leds_device
= {
52 .dev
.platform_data
= &smartq7_led_data
,
55 /* Labels according to the SmartQ manual */
56 static struct gpio_keys_button smartq7_buttons
[] = {
58 .gpio
= S3C64XX_GPL(14),
62 .debounce_interval
= 5,
66 .gpio
= S3C64XX_GPN(2),
70 .debounce_interval
= 5,
74 .gpio
= S3C64XX_GPN(3),
78 .debounce_interval
= 5,
82 .gpio
= S3C64XX_GPN(4),
86 .debounce_interval
= 5,
90 .gpio
= S3C64XX_GPN(12),
94 .debounce_interval
= 5,
98 .gpio
= S3C64XX_GPN(15),
102 .debounce_interval
= 5,
107 static struct gpio_keys_platform_data smartq7_buttons_data
= {
108 .buttons
= smartq7_buttons
,
109 .nbuttons
= ARRAY_SIZE(smartq7_buttons
),
112 static struct platform_device smartq7_buttons_device
= {
117 .platform_data
= &smartq7_buttons_data
,
121 static struct s3c_fb_pd_win smartq7_fb_win0
= {
128 static struct fb_videomode smartq7_lcd_timing
= {
140 static struct s3c_fb_platdata smartq7_lcd_pdata __initdata
= {
141 .setup_gpio
= s3c64xx_fb_gpio_setup_24bpp
,
142 .vtiming
= &smartq7_lcd_timing
,
143 .win
[0] = &smartq7_fb_win0
,
144 .vidcon0
= VIDCON0_VIDOUT_RGB
| VIDCON0_PNRMODE_RGB
,
145 .vidcon1
= VIDCON1_INV_HSYNC
| VIDCON1_INV_VSYNC
|
149 static struct platform_device
*smartq7_devices
[] __initdata
= {
150 &smartq7_leds_device
,
151 &smartq7_buttons_device
,
154 static void __init
smartq7_machine_init(void)
156 s3c_fb_set_platdata(&smartq7_lcd_pdata
);
158 smartq_machine_init();
160 platform_add_devices(smartq7_devices
, ARRAY_SIZE(smartq7_devices
));
163 MACHINE_START(SMARTQ7
, "SmartQ 7")
164 /* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */
165 .atag_offset
= 0x100,
166 .nr_irqs
= S3C64XX_NR_IRQS
,
167 .init_irq
= s3c6410_init_irq
,
168 .map_io
= smartq_map_io
,
169 .init_machine
= smartq7_machine_init
,
170 .init_time
= samsung_timer_init
,
171 .restart
= s3c64xx_restart
,