|
@@ -458,3 +458,90 @@ static void at91_lcdc_tft_power_control(int on)
|
|
at91_set_gpio_value(AT91_PIN_PA12, 0); /* power up */
|
|
at91_set_gpio_value(AT91_PIN_PA12, 0); /* power up */
|
|
else
|
|
else
|
|
at91_set_gpio_value(AT91_PIN_PA12, 1); /* power down */
|
|
at91_set_gpio_value(AT91_PIN_PA12, 1); /* power down */
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct atmel_lcdfb_info __initdata ek_lcdc_data = {
|
|
|
|
+ .lcdcon_is_backlight = true,
|
|
|
|
+ .default_bpp = 16,
|
|
|
|
+ .default_dmacon = ATMEL_LCDC_DMAEN,
|
|
|
|
+ .default_lcdcon2 = AT91SAM9261_DEFAULT_TFT_LCDCON2,
|
|
|
|
+ .default_monspecs = &at91fb_default_tft_monspecs,
|
|
|
|
+ .atmel_lcdfb_power_control = at91_lcdc_tft_power_control,
|
|
|
|
+ .guard_time = 1,
|
|
|
|
+#if defined(CONFIG_MACH_AT91SAM9G10EK)
|
|
|
|
+ .lcd_wiring_mode = ATMEL_LCDC_WIRING_RGB,
|
|
|
|
+#endif
|
|
|
|
+};
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#else
|
|
|
|
+static struct atmel_lcdfb_info __initdata ek_lcdc_data;
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * GPIO Buttons
|
|
|
|
+ */
|
|
|
|
+#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
|
|
|
+static struct gpio_keys_button ek_buttons[] = {
|
|
|
|
+ {
|
|
|
|
+ .gpio = AT91_PIN_PA27,
|
|
|
|
+ .code = BTN_0,
|
|
|
|
+ .desc = "Button 0",
|
|
|
|
+ .active_low = 1,
|
|
|
|
+ .wakeup = 1,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ .gpio = AT91_PIN_PA26,
|
|
|
|
+ .code = BTN_1,
|
|
|
|
+ .desc = "Button 1",
|
|
|
|
+ .active_low = 1,
|
|
|
|
+ .wakeup = 1,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ .gpio = AT91_PIN_PA25,
|
|
|
|
+ .code = BTN_2,
|
|
|
|
+ .desc = "Button 2",
|
|
|
|
+ .active_low = 1,
|
|
|
|
+ .wakeup = 1,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ .gpio = AT91_PIN_PA24,
|
|
|
|
+ .code = BTN_3,
|
|
|
|
+ .desc = "Button 3",
|
|
|
|
+ .active_low = 1,
|
|
|
|
+ .wakeup = 1,
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct gpio_keys_platform_data ek_button_data = {
|
|
|
|
+ .buttons = ek_buttons,
|
|
|
|
+ .nbuttons = ARRAY_SIZE(ek_buttons),
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct platform_device ek_button_device = {
|
|
|
|
+ .name = "gpio-keys",
|
|
|
|
+ .id = -1,
|
|
|
|
+ .num_resources = 0,
|
|
|
|
+ .dev = {
|
|
|
|
+ .platform_data = &ek_button_data,
|
|
|
|
+ }
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static void __init ek_add_device_buttons(void)
|
|
|
|
+{
|
|
|
|
+ at91_set_gpio_input(AT91_PIN_PA27, 1); /* btn0 */
|
|
|
|
+ at91_set_deglitch(AT91_PIN_PA27, 1);
|
|
|
|
+ at91_set_gpio_input(AT91_PIN_PA26, 1); /* btn1 */
|
|
|
|
+ at91_set_deglitch(AT91_PIN_PA26, 1);
|
|
|
|
+ at91_set_gpio_input(AT91_PIN_PA25, 1); /* btn2 */
|
|
|
|
+ at91_set_deglitch(AT91_PIN_PA25, 1);
|
|
|
|
+ at91_set_gpio_input(AT91_PIN_PA24, 1); /* btn3 */
|
|
|
|
+ at91_set_deglitch(AT91_PIN_PA24, 1);
|
|
|
|
+
|
|
|
|
+ platform_device_register(&ek_button_device);
|
|
|
|
+}
|
|
|
|
+#else
|
|
|
|
+static void __init ek_add_device_buttons(void) {}
|
|
|
|
+#endif
|
|
|
|
+
|