// SPDX-License-Identifier: GPL-2.0-only /* * System Specific setup for Traverse Technologies GEOS. * At the moment this means setup of GPIO control of LEDs. * * Copyright (C) 2008 Constantin Baranov * Copyright (C) 2011 Ed Wildgoose * and Philip Prindeville * * TODO: There are large similarities with leds-net5501.c * by Alessandro Zummo * In the future leds-net5501.c should be migrated over to platform */ #include #include #include #include #include #include #include "geode-common.h" static const struct geode_led geos_leds[] __initconst = { { 6, true }, { 25, false }, { 27, false }, }; static void __init register_geos(void) { geode_create_restart_key(3); geode_create_leds("geos", geos_leds, ARRAY_SIZE(geos_leds)); } static int __init geos_init(void) { const char *vendor, *product; if (!is_geode()) return 0; vendor = dmi_get_system_info(DMI_SYS_VENDOR); if (!vendor || strcmp(vendor, "Traverse Technologies")) return 0; product = dmi_get_system_info(DMI_PRODUCT_NAME); if (!product || strcmp(product, "Geos")) return 0; printk(KERN_INFO "%s: system is recognized as \"%s %s\"\n", KBUILD_MODNAME, vendor, product); register_geos(); return 0; } device_initcall(geos_init);