Krzysztof Kozlowski | 28a196f | 2017-12-25 20:54:33 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | // |
| 3 | // Copyright (C) 2010 Maurus Cuelenaere |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 4 | |
| 5 | #include <linux/fb.h> |
| 6 | #include <linux/gpio.h> |
| 7 | #include <linux/gpio_keys.h> |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 8 | #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 Amudala | 5a213a5 | 2012-08-08 09:44:49 +0900 | [diff] [blame] | 16 | #include <video/samsung_fimd.h> |
Arnd Bergmann | ba27904 | 2015-02-27 22:06:58 +0100 | [diff] [blame] | 17 | #include <mach/irqs.h> |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 18 | #include <mach/map.h> |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 19 | #include <mach/regs-gpio.h> |
Linus Walleij | b0161ca | 2014-01-14 14:24:24 +0100 | [diff] [blame] | 20 | #include <mach/gpio-samsung.h> |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 21 | |
| 22 | #include <plat/cpu.h> |
| 23 | #include <plat/devs.h> |
| 24 | #include <plat/fb.h> |
| 25 | #include <plat/gpio-cfg.h> |
Romain Naour | 04a49b7 | 2013-01-09 18:47:04 -0800 | [diff] [blame] | 26 | #include <plat/samsung-time.h> |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 27 | |
Kukjin Kim | b024043b | 2011-12-22 23:27:42 +0100 | [diff] [blame] | 28 | #include "common.h" |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 29 | #include "mach-smartq.h" |
| 30 | |
Uwe Kleine-König | 495c7b8 | 2010-09-02 09:14:19 +0100 | [diff] [blame] | 31 | static struct gpio_led smartq7_leds[] = { |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 32 | { |
| 33 | .name = "smartq7:red", |
| 34 | .active_low = 1, |
| 35 | .gpio = S3C64XX_GPN(8), |
| 36 | }, |
| 37 | { |
| 38 | .name = "smartq7:green", |
| 39 | .active_low = 1, |
| 40 | .gpio = S3C64XX_GPN(9), |
| 41 | }, |
| 42 | }; |
| 43 | |
| 44 | static struct gpio_led_platform_data smartq7_led_data = { |
| 45 | .num_leds = ARRAY_SIZE(smartq7_leds), |
| 46 | .leds = smartq7_leds, |
| 47 | }; |
| 48 | |
| 49 | static struct platform_device smartq7_leds_device = { |
| 50 | .name = "leds-gpio", |
| 51 | .id = -1, |
| 52 | .dev.platform_data = &smartq7_led_data, |
| 53 | }; |
| 54 | |
| 55 | /* Labels according to the SmartQ manual */ |
| 56 | static struct gpio_keys_button smartq7_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_FN, |
| 68 | .desc = "Function", |
| 69 | .active_low = 1, |
| 70 | .debounce_interval = 5, |
| 71 | .type = EV_KEY, |
| 72 | }, |
| 73 | { |
| 74 | .gpio = S3C64XX_GPN(3), |
| 75 | .code = KEY_KPMINUS, |
| 76 | .desc = "Minus", |
| 77 | .active_low = 1, |
| 78 | .debounce_interval = 5, |
| 79 | .type = EV_KEY, |
| 80 | }, |
| 81 | { |
| 82 | .gpio = S3C64XX_GPN(4), |
| 83 | .code = KEY_KPPLUS, |
| 84 | .desc = "Plus", |
| 85 | .active_low = 1, |
| 86 | .debounce_interval = 5, |
| 87 | .type = EV_KEY, |
| 88 | }, |
| 89 | { |
| 90 | .gpio = S3C64XX_GPN(12), |
| 91 | .code = KEY_ENTER, |
| 92 | .desc = "Enter", |
| 93 | .active_low = 1, |
| 94 | .debounce_interval = 5, |
| 95 | .type = EV_KEY, |
| 96 | }, |
| 97 | { |
| 98 | .gpio = S3C64XX_GPN(15), |
| 99 | .code = KEY_ESC, |
| 100 | .desc = "Cancel", |
| 101 | .active_low = 1, |
| 102 | .debounce_interval = 5, |
| 103 | .type = EV_KEY, |
| 104 | }, |
| 105 | }; |
| 106 | |
| 107 | static struct gpio_keys_platform_data smartq7_buttons_data = { |
| 108 | .buttons = smartq7_buttons, |
| 109 | .nbuttons = ARRAY_SIZE(smartq7_buttons), |
| 110 | }; |
| 111 | |
| 112 | static struct platform_device smartq7_buttons_device = { |
| 113 | .name = "gpio-keys", |
| 114 | .id = 0, |
| 115 | .num_resources = 0, |
| 116 | .dev = { |
| 117 | .platform_data = &smartq7_buttons_data, |
| 118 | } |
| 119 | }; |
| 120 | |
| 121 | static struct s3c_fb_pd_win smartq7_fb_win0 = { |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 122 | .max_bpp = 32, |
| 123 | .default_bpp = 16, |
Thomas Abraham | 79d3c41 | 2012-03-24 21:58:48 +0530 | [diff] [blame] | 124 | .xres = 800, |
| 125 | .yres = 480, |
| 126 | }; |
| 127 | |
| 128 | static struct fb_videomode smartq7_lcd_timing = { |
| 129 | .left_margin = 3, |
| 130 | .right_margin = 5, |
| 131 | .upper_margin = 1, |
| 132 | .lower_margin = 20, |
| 133 | .hsync_len = 10, |
| 134 | .vsync_len = 3, |
| 135 | .xres = 800, |
| 136 | .yres = 480, |
| 137 | .refresh = 80, |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 138 | }; |
| 139 | |
| 140 | static struct s3c_fb_platdata smartq7_lcd_pdata __initdata = { |
| 141 | .setup_gpio = s3c64xx_fb_gpio_setup_24bpp, |
Thomas Abraham | 79d3c41 | 2012-03-24 21:58:48 +0530 | [diff] [blame] | 142 | .vtiming = &smartq7_lcd_timing, |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 143 | .win[0] = &smartq7_fb_win0, |
| 144 | .vidcon0 = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB, |
| 145 | .vidcon1 = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC | |
| 146 | VIDCON1_INV_VCLK, |
| 147 | }; |
| 148 | |
| 149 | static struct platform_device *smartq7_devices[] __initdata = { |
| 150 | &smartq7_leds_device, |
| 151 | &smartq7_buttons_device, |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 152 | }; |
| 153 | |
| 154 | static void __init smartq7_machine_init(void) |
| 155 | { |
| 156 | s3c_fb_set_platdata(&smartq7_lcd_pdata); |
| 157 | |
| 158 | smartq_machine_init(); |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 159 | |
| 160 | platform_add_devices(smartq7_devices, ARRAY_SIZE(smartq7_devices)); |
| 161 | } |
| 162 | |
| 163 | MACHINE_START(SMARTQ7, "SmartQ 7") |
| 164 | /* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */ |
Nicolas Pitre | 170a590 | 2011-07-05 22:38:17 -0400 | [diff] [blame] | 165 | .atag_offset = 0x100, |
Arnd Bergmann | ba27904 | 2015-02-27 22:06:58 +0100 | [diff] [blame] | 166 | .nr_irqs = S3C64XX_NR_IRQS, |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 167 | .init_irq = s3c6410_init_irq, |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 168 | .map_io = smartq_map_io, |
| 169 | .init_machine = smartq7_machine_init, |
Romain Naour | 04a49b7 | 2013-01-09 18:47:04 -0800 | [diff] [blame] | 170 | .init_time = samsung_timer_init, |
Kukjin Kim | ff84ded | 2012-01-03 14:03:30 +0100 | [diff] [blame] | 171 | .restart = s3c64xx_restart, |
Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 172 | MACHINE_END |