blob: 44e9edb144fa5283507dd86441d4a47dbcf3a9bc [file] [log] [blame]
Krzysztof Kozlowski28a196f2017-12-25 20:54:33 +01001// SPDX-License-Identifier: GPL-2.0
2//
3// Copyright (C) 2010 Maurus Cuelenaere
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +02004
5#include <linux/fb.h>
6#include <linux/gpio.h>
7#include <linux/gpio_keys.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +02008#include <linux/init.h>
9#include <linux/input.h>
10#include <linux/leds.h>
11#include <linux/platform_device.h>
12
13#include <asm/mach-types.h>
14#include <asm/mach/arch.h>
15
Leela Krishna Amudala5a213a52012-08-08 09:44:49 +090016#include <video/samsung_fimd.h>
Arnd Bergmannba279042015-02-27 22:06:58 +010017#include <mach/irqs.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020018#include <mach/map.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020019#include <mach/regs-gpio.h>
Linus Walleijb0161ca2014-01-14 14:24:24 +010020#include <mach/gpio-samsung.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020021
22#include <plat/cpu.h>
23#include <plat/devs.h>
24#include <plat/fb.h>
25#include <plat/gpio-cfg.h>
Romain Naour04a49b72013-01-09 18:47:04 -080026#include <plat/samsung-time.h>
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020027
Kukjin Kimb024043b2011-12-22 23:27:42 +010028#include "common.h"
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020029#include "mach-smartq.h"
30
Uwe Kleine-Königd684f642010-09-02 09:14:22 +010031static struct gpio_led smartq5_leds[] = {
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +020032 {
33 .name = "smartq5:green",
34 .active_low = 1,
35 .gpio = S3C64XX_GPN(8),
36 },
37 {
38 .name = "smartq5:red",
39 .active_low = 1,
40 .gpio = S3C64XX_GPN(9),
41 },
42};
43
44static struct gpio_led_platform_data smartq5_led_data = {
45 .num_leds = ARRAY_SIZE(smartq5_leds),
46 .leds = smartq5_leds,
47};
48
49static struct platform_device smartq5_leds_device = {
50 .name = "leds-gpio",
51 .id = -1,
52 .dev.platform_data = &smartq5_led_data,
53};
54
55/* Labels according to the SmartQ manual */
56static struct gpio_keys_button smartq5_buttons[] = {
57 {
58 .gpio = S3C64XX_GPL(14),
59 .code = KEY_POWER,
60 .desc = "Power",
61 .active_low = 1,
62 .debounce_interval = 5,
63 .type = EV_KEY,
64 },
65 {
66 .gpio = S3C64XX_GPN(2),
67 .code = KEY_KPMINUS,
68 .desc = "Minus",
69 .active_low = 1,
70 .debounce_interval = 5,
71 .type = EV_KEY,
72 },
73 {
74 .gpio = S3C64XX_GPN(12),
75 .code = KEY_KPPLUS,
76 .desc = "Plus",
77 .active_low = 1,
78 .debounce_interval = 5,
79 .type = EV_KEY,
80 },
81 {
82 .gpio = S3C64XX_GPN(15),
83 .code = KEY_ENTER,
84 .desc = "Move",
85 .active_low = 1,
86 .debounce_interval = 5,
87 .type = EV_KEY,
88 },
89};
90
91static struct gpio_keys_platform_data smartq5_buttons_data = {
92 .buttons = smartq5_buttons,
93 .nbuttons = ARRAY_SIZE(smartq5_buttons),
94};
95
96static struct platform_device smartq5_buttons_device = {
97 .name = "gpio-keys",
98 .id = 0,
99 .num_resources = 0,
100 .dev = {
101 .platform_data = &smartq5_buttons_data,
102 }
103};
104
105static struct s3c_fb_pd_win smartq5_fb_win0 = {
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200106 .max_bpp = 32,
107 .default_bpp = 16,
Thomas Abraham79d3c412012-03-24 21:58:48 +0530108 .xres = 800,
109 .yres = 480,
110};
111
112static struct fb_videomode smartq5_lcd_timing = {
113 .left_margin = 216,
114 .right_margin = 40,
115 .upper_margin = 35,
116 .lower_margin = 10,
117 .hsync_len = 1,
118 .vsync_len = 1,
119 .xres = 800,
120 .yres = 480,
121 .refresh = 80,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200122};
123
124static struct s3c_fb_platdata smartq5_lcd_pdata __initdata = {
125 .setup_gpio = s3c64xx_fb_gpio_setup_24bpp,
Thomas Abraham79d3c412012-03-24 21:58:48 +0530126 .vtiming = &smartq5_lcd_timing,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200127 .win[0] = &smartq5_fb_win0,
128 .vidcon0 = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,
129 .vidcon1 = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC |
130 VIDCON1_INV_VDEN,
131};
132
133static struct platform_device *smartq5_devices[] __initdata = {
134 &smartq5_leds_device,
135 &smartq5_buttons_device,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200136};
137
138static void __init smartq5_machine_init(void)
139{
140 s3c_fb_set_platdata(&smartq5_lcd_pdata);
141
142 smartq_machine_init();
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200143
144 platform_add_devices(smartq5_devices, ARRAY_SIZE(smartq5_devices));
145}
146
147MACHINE_START(SMARTQ5, "SmartQ 5")
148 /* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */
Nicolas Pitre170a5902011-07-05 22:38:17 -0400149 .atag_offset = 0x100,
Arnd Bergmannba279042015-02-27 22:06:58 +0100150 .nr_irqs = S3C64XX_NR_IRQS,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200151 .init_irq = s3c6410_init_irq,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200152 .map_io = smartq_map_io,
153 .init_machine = smartq5_machine_init,
Romain Naour04a49b72013-01-09 18:47:04 -0800154 .init_time = samsung_timer_init,
Kukjin Kimff84ded2012-01-03 14:03:30 +0100155 .restart = s3c64xx_restart,
Maurus Cuelenaerea2f7bff2010-05-20 11:35:50 +0200156MACHINE_END