| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 1 | /* | 
 | 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 Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 15 | #include <linux/init.h> | 
 | 16 | #include <linux/input.h> | 
 | 17 | #include <linux/leds.h> | 
 | 18 | #include <linux/platform_device.h> | 
 | 19 |  | 
| Jamie Iles | 774b51f | 2011-11-04 01:10:04 +0000 | [diff] [blame] | 20 | #include <asm/hardware/vic.h> | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 21 | #include <asm/mach-types.h> | 
 | 22 | #include <asm/mach/arch.h> | 
 | 23 |  | 
 | 24 | #include <mach/map.h> | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 25 | #include <mach/regs-gpio.h> | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 26 |  | 
 | 27 | #include <plat/cpu.h> | 
 | 28 | #include <plat/devs.h> | 
 | 29 | #include <plat/fb.h> | 
 | 30 | #include <plat/gpio-cfg.h> | 
| Ajay Kumar | 49965e6 | 2011-07-21 01:23:19 +0900 | [diff] [blame] | 31 | #include <plat/regs-fb-v4.h> | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 32 |  | 
| Kukjin Kim | b024043b | 2011-12-22 23:27:42 +0100 | [diff] [blame] | 33 | #include "common.h" | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 34 | #include "mach-smartq.h" | 
 | 35 |  | 
| Uwe Kleine-König | 495c7b8 | 2010-09-02 09:14:19 +0100 | [diff] [blame] | 36 | static struct gpio_led smartq7_leds[] = { | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 37 | 	{ | 
 | 38 | 		.name			= "smartq7:red", | 
 | 39 | 		.active_low		= 1, | 
 | 40 | 		.gpio			= S3C64XX_GPN(8), | 
 | 41 | 	}, | 
 | 42 | 	{ | 
 | 43 | 		.name			= "smartq7:green", | 
 | 44 | 		.active_low		= 1, | 
 | 45 | 		.gpio			= S3C64XX_GPN(9), | 
 | 46 | 	}, | 
 | 47 | }; | 
 | 48 |  | 
 | 49 | static struct gpio_led_platform_data smartq7_led_data = { | 
 | 50 | 	.num_leds = ARRAY_SIZE(smartq7_leds), | 
 | 51 | 	.leds = smartq7_leds, | 
 | 52 | }; | 
 | 53 |  | 
 | 54 | static struct platform_device smartq7_leds_device = { | 
 | 55 | 	.name			= "leds-gpio", | 
 | 56 | 	.id			= -1, | 
 | 57 | 	.dev.platform_data	= &smartq7_led_data, | 
 | 58 | }; | 
 | 59 |  | 
 | 60 | /* Labels according to the SmartQ manual */ | 
 | 61 | static struct gpio_keys_button smartq7_buttons[] = { | 
 | 62 | 	{ | 
 | 63 | 		.gpio			= S3C64XX_GPL(14), | 
 | 64 | 		.code			= KEY_POWER, | 
 | 65 | 		.desc			= "Power", | 
 | 66 | 		.active_low		= 1, | 
 | 67 | 		.debounce_interval	= 5, | 
 | 68 | 		.type                   = EV_KEY, | 
 | 69 | 	}, | 
 | 70 | 	{ | 
 | 71 | 		.gpio			= S3C64XX_GPN(2), | 
 | 72 | 		.code			= KEY_FN, | 
 | 73 | 		.desc			= "Function", | 
 | 74 | 		.active_low		= 1, | 
 | 75 | 		.debounce_interval	= 5, | 
 | 76 | 		.type                   = EV_KEY, | 
 | 77 | 	}, | 
 | 78 | 	{ | 
 | 79 | 		.gpio			= S3C64XX_GPN(3), | 
 | 80 | 		.code			= KEY_KPMINUS, | 
 | 81 | 		.desc			= "Minus", | 
 | 82 | 		.active_low		= 1, | 
 | 83 | 		.debounce_interval	= 5, | 
 | 84 | 		.type                   = EV_KEY, | 
 | 85 | 	}, | 
 | 86 | 	{ | 
 | 87 | 		.gpio			= S3C64XX_GPN(4), | 
 | 88 | 		.code			= KEY_KPPLUS, | 
 | 89 | 		.desc			= "Plus", | 
 | 90 | 		.active_low		= 1, | 
 | 91 | 		.debounce_interval	= 5, | 
 | 92 | 		.type                   = EV_KEY, | 
 | 93 | 	}, | 
 | 94 | 	{ | 
 | 95 | 		.gpio			= S3C64XX_GPN(12), | 
 | 96 | 		.code			= KEY_ENTER, | 
 | 97 | 		.desc			= "Enter", | 
 | 98 | 		.active_low		= 1, | 
 | 99 | 		.debounce_interval	= 5, | 
 | 100 | 		.type                   = EV_KEY, | 
 | 101 | 	}, | 
 | 102 | 	{ | 
 | 103 | 		.gpio			= S3C64XX_GPN(15), | 
 | 104 | 		.code			= KEY_ESC, | 
 | 105 | 		.desc			= "Cancel", | 
 | 106 | 		.active_low		= 1, | 
 | 107 | 		.debounce_interval	= 5, | 
 | 108 | 		.type                   = EV_KEY, | 
 | 109 | 	}, | 
 | 110 | }; | 
 | 111 |  | 
 | 112 | static struct gpio_keys_platform_data smartq7_buttons_data  = { | 
 | 113 | 	.buttons	= smartq7_buttons, | 
 | 114 | 	.nbuttons	= ARRAY_SIZE(smartq7_buttons), | 
 | 115 | }; | 
 | 116 |  | 
 | 117 | static struct platform_device smartq7_buttons_device  = { | 
 | 118 | 	.name		= "gpio-keys", | 
 | 119 | 	.id		= 0, | 
 | 120 | 	.num_resources	= 0, | 
 | 121 | 	.dev		= { | 
 | 122 | 		.platform_data	= &smartq7_buttons_data, | 
 | 123 | 	} | 
 | 124 | }; | 
 | 125 |  | 
 | 126 | static struct s3c_fb_pd_win smartq7_fb_win0 = { | 
 | 127 | 	.win_mode	= { | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 128 | 		.left_margin	= 3, | 
 | 129 | 		.right_margin	= 5, | 
 | 130 | 		.upper_margin	= 1, | 
 | 131 | 		.lower_margin	= 20, | 
 | 132 | 		.hsync_len	= 10, | 
 | 133 | 		.vsync_len	= 3, | 
 | 134 | 		.xres		= 800, | 
 | 135 | 		.yres		= 480, | 
| Maurus Cuelenaere | daf695f | 2010-08-10 18:02:44 -0700 | [diff] [blame] | 136 | 		.refresh	= 80, | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 137 | 	}, | 
 | 138 | 	.max_bpp	= 32, | 
 | 139 | 	.default_bpp	= 16, | 
 | 140 | }; | 
 | 141 |  | 
 | 142 | static struct s3c_fb_platdata smartq7_lcd_pdata __initdata = { | 
 | 143 | 	.setup_gpio	= s3c64xx_fb_gpio_setup_24bpp, | 
 | 144 | 	.win[0]		= &smartq7_fb_win0, | 
 | 145 | 	.vidcon0	= VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB, | 
 | 146 | 	.vidcon1	= VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC | | 
 | 147 | 			  VIDCON1_INV_VCLK, | 
 | 148 | }; | 
 | 149 |  | 
 | 150 | static struct platform_device *smartq7_devices[] __initdata = { | 
 | 151 | 	&smartq7_leds_device, | 
 | 152 | 	&smartq7_buttons_device, | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 153 | }; | 
 | 154 |  | 
 | 155 | static void __init smartq7_machine_init(void) | 
 | 156 | { | 
 | 157 | 	s3c_fb_set_platdata(&smartq7_lcd_pdata); | 
 | 158 |  | 
 | 159 | 	smartq_machine_init(); | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 160 |  | 
 | 161 | 	platform_add_devices(smartq7_devices, ARRAY_SIZE(smartq7_devices)); | 
 | 162 | } | 
 | 163 |  | 
 | 164 | MACHINE_START(SMARTQ7, "SmartQ 7") | 
 | 165 | 	/* Maintainer: Maurus Cuelenaere <mcuelenaere AT gmail DOT com> */ | 
| Nicolas Pitre | 170a590 | 2011-07-05 22:38:17 -0400 | [diff] [blame] | 166 | 	.atag_offset	= 0x100, | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 167 | 	.init_irq	= s3c6410_init_irq, | 
| Jamie Iles | 774b51f | 2011-11-04 01:10:04 +0000 | [diff] [blame] | 168 | 	.handle_irq	= vic_handle_irq, | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 169 | 	.map_io		= smartq_map_io, | 
 | 170 | 	.init_machine	= smartq7_machine_init, | 
 | 171 | 	.timer		= &s3c24xx_timer, | 
| Kukjin Kim | ff84ded | 2012-01-03 14:03:30 +0100 | [diff] [blame] | 172 | 	.restart	= s3c64xx_restart, | 
| Maurus Cuelenaere | a2f7bff | 2010-05-20 11:35:50 +0200 | [diff] [blame] | 173 | MACHINE_END |