1 index dc5f1d3..a24bf8c 100644
2 --- a/arch/x86/platform/geode/alix.c
3 +++ b/arch/x86/platform/geode/alix.c
6 * Copyright (C) 2008 Constantin Baranov <const@mimas.ru>
7 * Copyright (C) 2011 Ed Wildgoose <kernel@wildgooses.com>
8 + * and Philip Prindeville <philipp@redfish-solutions.com>
10 * TODO: There are large similarities with leds-net5501.c
11 * by Alessandro Zummo <a.zummo@towertech.it>
13 #include <linux/leds.h>
14 #include <linux/platform_device.h>
15 #include <linux/gpio.h>
16 +#include <linux/input.h>
17 +#include <linux/gpio_keys.h>
18 +#include <linux/dmi.h>
20 #include <asm/geode.h>
22 +#define BIOS_SIGNATURE_TINYBIOS 0xf0000
23 +#define BIOS_SIGNATURE_COREBOOT 0x500
24 +#define BIOS_REGION_SIZE 0x10000
26 static bool force = 0;
27 module_param(force, bool, 0444);
28 /* FIXME: Award bios is not automatically detected as Alix platform */
29 MODULE_PARM_DESC(force, "Force detection as ALIX.2/ALIX.3 platform");
31 +static struct gpio_keys_button alix_gpio_buttons[] = {
33 + .code = KEY_RESTART,
36 + .desc = "Reset button",
39 + .debounce_interval = 100,
43 +static struct gpio_keys_platform_data alix_buttons_data = {
44 + .buttons = alix_gpio_buttons,
45 + .nbuttons = ARRAY_SIZE(alix_gpio_buttons),
46 + .poll_interval = 20,
49 +static struct platform_device alix_buttons_dev = {
50 + .name = "gpio-keys-polled",
53 + .platform_data = &alix_buttons_data,
57 static struct gpio_led alix_leds[] = {
60 @@ -64,17 +98,22 @@ static struct platform_device alix_leds_
61 .dev.platform_data = &alix_leds_data,
64 +static struct __initdata platform_device *alix_devs[] = {
69 static void __init register_alix(void)
71 /* Setup LED control through leds-gpio driver */
72 - platform_device_register(&alix_leds_dev);
73 + platform_add_devices(alix_devs, ARRAY_SIZE(alix_devs));
76 static int __init alix_present(unsigned long bios_phys,
80 - const size_t bios_len = 0x00010000;
81 + const size_t bios_len = BIOS_REGION_SIZE;
82 const char *bios_virt;
85 @@ -109,7 +148,8 @@ static int __init alix_present(unsigned
88 tail = p + alix_sig_len;
89 - if ((tail[0] == '2' || tail[0] == '3')) {
90 + if ((tail[0] == '2' || tail[0] == '3' || tail[0] == '6')) {
93 "%s: system is recognized as \"%s\"\n",
94 KBUILD_MODNAME, name);
95 @@ -120,6 +160,24 @@ static int __init alix_present(unsigned
99 +static bool __init alix_present_dmi(void)
101 + const char *vendor, *product;
103 + vendor = dmi_get_system_info(DMI_SYS_VENDOR);
104 + if (!vendor || strcmp(vendor, "PC Engines"))
107 + product = dmi_get_system_info(DMI_PRODUCT_NAME);
108 + if (!product || (strcmp(product, "ALIX.2D") && strcmp(product, "ALIX.6")))
111 + printk(KERN_INFO "%s: system is recognized as \"%s %s\"\n",
112 + KBUILD_MODNAME, vendor, product);
117 static int __init alix_init(void)
119 const char tinybios_sig[] = "PC Engines ALIX.";
120 @@ -128,8 +186,9 @@ static int __init alix_init(void)
124 - if (alix_present(0xf0000, tinybios_sig, sizeof(tinybios_sig) - 1) ||
125 - alix_present(0x500, coreboot_sig, sizeof(coreboot_sig) - 1))
126 + if (alix_present(BIOS_SIGNATURE_TINYBIOS, tinybios_sig, sizeof(tinybios_sig) - 1) ||
127 + alix_present(BIOS_SIGNATURE_COREBOOT, coreboot_sig, sizeof(coreboot_sig) - 1) ||
128 + alix_present_dmi())