1 // SPDX-License-Identifier: GPL-2.0-only
3 * System Specific setup for PCEngines ALIX.
4 * At the moment this means setup of GPIO control of LEDs
5 * on Alix.2/3/6 boards.
11 * TODO: There are large similarities with leds-net5501.c
13 * In the future leds-net5501.c should be migrated over to platform
16 #include <linux/kernel.h>
17 #include <linux/init.h>
19 #include <linux/string.h>
20 #include <linux/moduleparam.h>
21 #include <linux/leds.h>
22 #include <linux/platform_device.h>
23 #include <linux/input.h>
24 #include <linux/gpio_keys.h>
25 #include <linux/gpio/machine.h>
26 #include <linux/dmi.h>
28 #include <asm/geode.h>
30 #define BIOS_SIGNATURE_TINYBIOS 0xf0000
31 #define BIOS_SIGNATURE_COREBOOT 0x500
32 #define BIOS_REGION_SIZE 0x10000
35 * This driver is not modular, but to keep back compatibility
36 * with existing use cases, continuing with module_param is
37 * the easiest way forward.
39 static bool force = 0;
40 module_param(force, bool, 0444);
41 /* FIXME: Award bios is not automatically detected as Alix platform */
42 MODULE_PARM_DESC(force, "Force detection as ALIX.2/ALIX.3 platform");
44 static struct gpio_keys_button alix_gpio_buttons[] = {
49 .desc = "Reset button",
52 .debounce_interval = 100,
56 static struct gpio_keys_platform_data alix_buttons_data = {
57 .buttons = alix_gpio_buttons,
58 .nbuttons = ARRAY_SIZE(alix_gpio_buttons),
62 static struct platform_device alix_buttons_dev = {
63 .name = "gpio-keys-polled",
66 .platform_data = &alix_buttons_data,
70 static struct gpio_led alix_leds[] = {
73 .default_trigger = "default-on",
77 .default_trigger = "default-off",
81 .default_trigger = "default-off",
85 static struct gpio_led_platform_data alix_leds_data = {
86 .num_leds = ARRAY_SIZE(alix_leds),
90 static struct gpiod_lookup_table alix_leds_gpio_table = {
91 .dev_id = "leds-gpio",
93 /* The Geode GPIOs should be on the CS5535 companion chip */
94 GPIO_LOOKUP_IDX("cs5535-gpio", 6, NULL, 0, GPIO_ACTIVE_LOW),
95 GPIO_LOOKUP_IDX("cs5535-gpio", 25, NULL, 1, GPIO_ACTIVE_LOW),
96 GPIO_LOOKUP_IDX("cs5535-gpio", 27, NULL, 2, GPIO_ACTIVE_LOW),
101 static struct platform_device alix_leds_dev = {
104 .dev.platform_data = &alix_leds_data,
107 static struct platform_device *alix_devs[] __initdata = {
112 static void __init register_alix(void)
114 /* Setup LED control through leds-gpio driver */
115 gpiod_add_lookup_table(&alix_leds_gpio_table);
116 platform_add_devices(alix_devs, ARRAY_SIZE(alix_devs));
119 static bool __init alix_present(unsigned long bios_phys,
120 const char *alix_sig,
123 const size_t bios_len = BIOS_REGION_SIZE;
124 const char *bios_virt;
125 const char *scan_end;
130 printk(KERN_NOTICE "%s: forced to skip BIOS test, "
131 "assume system is ALIX.2/ALIX.3\n",
136 bios_virt = phys_to_virt(bios_phys);
137 scan_end = bios_virt + bios_len - (alix_sig_len + 2);
138 for (p = bios_virt; p < scan_end; p++) {
142 if (memcmp(p, alix_sig, alix_sig_len) != 0)
145 memcpy(name, p, sizeof(name));
147 /* remove the first \0 character from string */
148 a = strchr(name, '\0');
152 /* cut the string at a newline */
153 a = strchr(name, '\r');
157 tail = p + alix_sig_len;
158 if ((tail[0] == '2' || tail[0] == '3' || tail[0] == '6')) {
160 "%s: system is recognized as \"%s\"\n",
161 KBUILD_MODNAME, name);
169 static bool __init alix_present_dmi(void)
171 const char *vendor, *product;
173 vendor = dmi_get_system_info(DMI_SYS_VENDOR);
174 if (!vendor || strcmp(vendor, "PC Engines"))
177 product = dmi_get_system_info(DMI_PRODUCT_NAME);
178 if (!product || (strcmp(product, "ALIX.2D") && strcmp(product, "ALIX.6")))
181 printk(KERN_INFO "%s: system is recognized as \"%s %s\"\n",
182 KBUILD_MODNAME, vendor, product);
187 static int __init alix_init(void)
189 const char tinybios_sig[] = "PC Engines ALIX.";
190 const char coreboot_sig[] = "PC Engines\0ALIX.";
195 if (alix_present(BIOS_SIGNATURE_TINYBIOS, tinybios_sig, sizeof(tinybios_sig) - 1) ||
196 alix_present(BIOS_SIGNATURE_COREBOOT, coreboot_sig, sizeof(coreboot_sig) - 1) ||
202 device_initcall(alix_init);