|
@@ -30,8 +30,12 @@
|
|
|
#include <linux/irq.h>
|
|
|
#include <linux/gpio.h>
|
|
|
|
|
|
+#include <mach/gumstix.h>
|
|
|
+#include <mach/mfp-pxa25x.h>
|
|
|
#include <mach/pxafb.h>
|
|
|
|
|
|
+#include "generic.h"
|
|
|
+
|
|
|
#include <video/metronomefb.h>
|
|
|
|
|
|
static unsigned int panel_type = 6;
|
|
@@ -331,6 +335,15 @@ static struct metronome_board am200_board = {
|
|
|
.cleanup = am200_cleanup,
|
|
|
};
|
|
|
|
|
|
+static unsigned long am200_pin_config[] __initdata = {
|
|
|
+ GPIO51_GPIO,
|
|
|
+ GPIO49_GPIO,
|
|
|
+ GPIO48_GPIO,
|
|
|
+ GPIO32_GPIO,
|
|
|
+ GPIO17_GPIO,
|
|
|
+ GPIO16_GPIO,
|
|
|
+};
|
|
|
+
|
|
|
static int __init am200_init(void)
|
|
|
{
|
|
|
int ret;
|
|
@@ -339,6 +352,8 @@ static int __init am200_init(void)
|
|
|
* creation events */
|
|
|
fb_register_client(&am200_fb_notif);
|
|
|
|
|
|
+ pxa2xx_mfp_config(ARRAY_AND_SIZE(am200_pin_config));
|
|
|
+
|
|
|
/* request our platform independent driver */
|
|
|
request_module("metronomefb");
|
|
|
|