blob: 37bb0c632a5efe1043b2473d053be656b0d38d73 [file] [log] [blame]
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +02001/*
2 * linux/arch/arm/mach-s3c64xx/mach-smartq7.c
3 *
4 * Copyright (C) 2010 Maurus Cuelenaere
5 *
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.
9 *
10 */
11
12#include <linux/fb.h>
13#include <linux/gpio.h>
14#include <linux/gpio_keys.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020015#include <linux/init.h>
16#include <linux/input.h>
17#include <linux/leds.h>
18#include <linux/platform_device.h>
19
20#include <asm/mach-types.h>
21#include <asm/mach/arch.h>
22
Leela Krishna Amudala5a213a52012-08-08 09:44:49 +090023#include <video/samsung_fimd.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020024#include <mach/map.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020025#include <mach/regs-gpio.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020026
27#include <plat/cpu.h>
28#include <plat/devs.h>
29#include <plat/fb.h>
30#include <plat/gpio-cfg.h>
31
Kukjin Kimb024043b2011-12-22 23:27:42 +010032#include "common.h"
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020033#include "mach-smartq.h"
34
Uwe Kleine-König495c7b82010-09-02 09:14:19 +010035static struct gpio_led smartq7_leds[] = {
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020036 {
37 .name = "smartq7:red",
38 .active_low = 1,
39 .gpio = S3C64XX_GPN(8),
40 },
41 {
42 .name = "smartq7:green",
43 .active_low = 1,
44 .gpio = S3C64XX_GPN(9),
45 },
46};
47
48static struct gpio_led_platform_data smartq7_led_data = {
49 .num_leds = ARRAY_SIZE(smartq7_leds),
50 .leds = smartq7_leds,
51};
52
53static struct platform_device smartq7_leds_device = {
54 .name = "leds-gpio",
55 .id = -1,
56 .dev.platform_data = &smartq7_led_data,
57};
58
59/* Labels according to the SmartQ manual */
60static struct gpio_keys_button smartq7_buttons[] = {
61 {
62 .gpio = S3C64XX_GPL(14),
63 .code = KEY_POWER,
64 .desc = "Power",
65 .active_low = 1,
66 .debounce_interval = 5,
67 .type = EV_KEY,
68 },
69 {
70 .gpio = S3C64XX_GPN(2),
71 .code = KEY_FN,
72 .desc = "Function",
73 .active_low = 1,
74 .debounce_interval = 5,
75 .type = EV_KEY,
76 },
77 {
78 .gpio = S3C64XX_GPN(3),
79 .code = KEY_KPMINUS,
80 .desc = "Minus",
81 .active_low = 1,
82 .debounce_interval = 5,
83 .type = EV_KEY,
84 },
85 {
86 .gpio = S3C64XX_GPN(4),
87 .code = KEY_KPPLUS,
88 .desc = "Plus",
89 .active_low = 1,
90 .debounce_interval = 5,
91 .type = EV_KEY,
92 },
93 {
94 .gpio = S3C64XX_GPN(12),
95 .code = KEY_ENTER,
96 .desc = "Enter",
97 .active_low = 1,
98 .debounce_interval = 5,
99 .type = EV_KEY,
100 },
101 {
102 .gpio = S3C64XX_GPN(15),
103 .code = KEY_ESC,
104 .desc = "Cancel",
105 .active_low = 1,
106 .debounce_interval = 5,
107 .type = EV_KEY,
108 },
109};
110
111static struct gpio_keys_platform_data smartq7_buttons_data = {
112 .buttons = smartq7_buttons,
113 .nbuttons = ARRAY_SIZE(smartq7_buttons),
114};
115
116static struct platform_device smartq7_buttons_device = {
117 .name = "gpio-keys",
118 .id = 0,
119 .num_resources = 0,
120 .dev = {
121 .platform_data = &smartq7_buttons_data,
122 }
123};
124
125static struct s3c_fb_pd_win smartq7_fb_win0 = {
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200126 .max_bpp = 32,
127 .default_bpp = 16,
Thomas Abraham79d3c412012-03-24 21:58:48 +0530128 .xres = 800,
129 .yres = 480,
130};
131
132static struct fb_videomode smartq7_lcd_timing = {
133 .left_margin = 3,
134 .right_margin = 5,
135 .upper_margin = 1,
136 .lower_margin = 20,
137 .hsync_len = 10,
138 .vsync_len = 3,
139 .xres = 800,
140 .yres = 480,
141 .refresh = 80,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200142};
143
144static struct s3c_fb_platdata smartq7_lcd_pdata __initdata = {
145 .setup_gpio = s3c64xx_fb_gpio_setup_24bpp,
Thomas Abraham79d3c412012-03-24 21:58:48 +0530146 .vtiming = &smartq7_lcd_timing,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200147 .win[0] = &smartq7_fb_win0,
148 .vidcon0 = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,
149 .vidcon1 = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC |
150 VIDCON1_INV_VCLK,
151};
152
153static struct platform_device *smartq7_devices[] __initdata = {
154 &smartq7_leds_device,
155 &smartq7_buttons_device,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200156};
157
158static void __init smartq7_machine_init(void)
159{
160 s3c_fb_set_platdata(&smartq7_lcd_pdata);
161
162 smartq_machine_init();
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200163
164 platform_add_devices(smartq7_devices, ARRAY_SIZE(smartq7_devices));
165}
166
167MACHINE_START(SMARTQ7, "SmartQ 7")
168 /* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */
Nicolas Pitre170a5902011-07-05 22:38:17 -0400169 .atag_offset = 0x100,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200170 .init_irq = s3c6410_init_irq,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200171 .map_io = smartq_map_io,
172 .init_machine = smartq7_machine_init,
Shawn Guocc8f2522012-04-26 21:08:52 +0800173 .init_late = s3c64xx_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700174 .init_time = s3c24xx_timer_init,
Kukjin Kimff84ded2012-01-03 14:03:30 +0100175 .restart = s3c64xx_restart,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200176MACHINE_END