mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 11:43:59 +01:00
6f14b22b33
Basic working implementation, WIP - Modularize clevo_keyboard, allowing interfaces to "register" themselves - Add clevo_acpi interface to clevo_keyboard - Prefer acpi interface - Fixed some previously still coupled features on uniwill_keyboard side to allow for the structure change
142 lines
4.3 KiB
C
142 lines
4.3 KiB
C
/*
|
|
* tuxedo_keyboard_common.h
|
|
*
|
|
* Copyright (C) 2018-2020 TUXEDO Computers GmbH <tux@tuxedocomputers.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
#ifndef TUXEDO_KEYBOARD_COMMON_H
|
|
#define TUXEDO_KEYBOARD_COMMON_H
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/acpi.h>
|
|
#include <linux/dmi.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/input.h>
|
|
#include <linux/input/sparse-keymap.h>
|
|
|
|
/* :::: Module specific Constants and simple Macros :::: */
|
|
#define __TUXEDO_PR(lvl, fmt, ...) do { pr_##lvl(fmt, ##__VA_ARGS__); } while (0)
|
|
#define TUXEDO_INFO(fmt, ...) __TUXEDO_PR(info, fmt, ##__VA_ARGS__)
|
|
#define TUXEDO_ERROR(fmt, ...) __TUXEDO_PR(err, fmt, ##__VA_ARGS__)
|
|
#define TUXEDO_DEBUG(fmt, ...) __TUXEDO_PR(debug, "[%s:%u] " fmt, __func__, __LINE__, ##__VA_ARGS__)
|
|
|
|
#ifndef DRIVER_NAME
|
|
#define DRIVER_NAME "tuxedo_keyboard"
|
|
#endif
|
|
|
|
struct tuxedo_keyboard_driver {
|
|
// Platform driver provided by driver
|
|
struct platform_driver *platform_driver;
|
|
// Probe method provided by driver
|
|
int (*probe)(struct platform_device *);
|
|
// Keymap provided by driver
|
|
struct key_entry *key_map;
|
|
// Input device reference filled in on module init after probe success
|
|
struct input_dev *input_device;
|
|
};
|
|
|
|
// Global module devices
|
|
static struct platform_device *tuxedo_platform_device = NULL;
|
|
static struct input_dev *tuxedo_input_device = NULL;
|
|
|
|
// Currently chosen driver
|
|
static struct tuxedo_keyboard_driver *current_driver = NULL;
|
|
|
|
struct platform_device *tuxedo_keyboard_init_driver(struct tuxedo_keyboard_driver *tk_driver);
|
|
|
|
/**
|
|
* Basically a copy of the existing report event but doesn't report unknown events
|
|
*/
|
|
bool sparse_keymap_report_known_event(struct input_dev *dev, unsigned int code,
|
|
unsigned int value, bool autorelease)
|
|
{
|
|
const struct key_entry *ke =
|
|
sparse_keymap_entry_from_scancode(dev, code);
|
|
|
|
if (ke) {
|
|
sparse_keymap_report_entry(dev, ke, value, autorelease);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
struct color_t {
|
|
u32 code;
|
|
char* name;
|
|
};
|
|
|
|
struct color_list_t {
|
|
uint size;
|
|
struct color_t colors[];
|
|
};
|
|
|
|
/**
|
|
* Commonly used standard colors
|
|
*/
|
|
static struct color_list_t color_list = {
|
|
.size = 8,
|
|
.colors = {
|
|
{ .name = "BLACK", .code = 0x000000 }, // 0
|
|
{ .name = "RED", .code = 0xFF0000 }, // 1
|
|
{ .name = "GREEN", .code = 0x00FF00 }, // 2
|
|
{ .name = "BLUE", .code = 0x0000FF }, // 3
|
|
{ .name = "YELLOW", .code = 0xFFFF00 }, // 4
|
|
{ .name = "MAGENTA", .code = 0xFF00FF }, // 5
|
|
{ .name = "CYAN", .code = 0x00FFFF }, // 6
|
|
{ .name = "WHITE", .code = 0xFFFFFF }, // 7
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Looks up a color in the color_list
|
|
*
|
|
* Returns found color value, or 0xffffffff if string did not match
|
|
*/
|
|
static u32 color_lookup(const struct color_list_t *color_list, const char *color_name)
|
|
{
|
|
u32 found_color = 0xffffffff;
|
|
int i;
|
|
for (i = 0; i < color_list->size; ++i) {
|
|
if (strcmp(color_list->colors[i].name, color_name) == 0) {
|
|
found_color = color_list->colors[i].code;
|
|
}
|
|
}
|
|
|
|
return found_color;
|
|
}
|
|
|
|
// Common parameters
|
|
|
|
static int brightness_validator(const char *val,
|
|
const struct kernel_param *brightness_param);
|
|
static const struct kernel_param_ops param_ops_brightness_ops = {
|
|
.set = brightness_validator,
|
|
.get = param_get_int,
|
|
};
|
|
|
|
static ushort param_brightness = 0xffff; // Default unset value (higher than max)
|
|
module_param_cb(brightness, ¶m_ops_brightness_ops, ¶m_brightness,
|
|
S_IRUSR);
|
|
MODULE_PARM_DESC(brightness, "Set the Keyboard Brightness");
|
|
|
|
#define COLOR_STRING_LEN 20
|
|
static char param_color[COLOR_STRING_LEN];
|
|
module_param_string(color, param_color, COLOR_STRING_LEN, S_IRUSR);
|
|
MODULE_PARM_DESC(color, "Preset color for the keyboard backlight as string");
|
|
|
|
#endif |