[RFC] qnap-tsx51: add new driver for leds and button support on QNAP TS-x51 series

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

(please keep me CC'ed in replies, I'm not getting a majordomo
subscription confirmation mail)

I own a QNAP TS-651 NAS enclosure (the 6-drives variant of the TS-x51
product family). It is a regular x86-64, and it can work with vanilla
kernel & generic distro as a replacement to vendor firmware.
ACPI tables do not declare GPIOs used to interface with the enclosure:
- two buttons for input
- one red led per disk slot (for failure events)
- USB activity led
- two-colours status led (for off/green/orange/red result)

I wrote the following platform driver, that I would like to contribute
to the kernel.

Could someone please review below patch ?
It is my first attempt at writing a module from scratch, so watch out
for naive mistakes.

I see drivers using GPIOs should use descriptors instead of gpio
number. I fail to see how I should convert this driver to use
descriptors. Or at least, I like a lot that this module has extremely
little actual code, as I would expect from something which essentially
does the same work as ACPI tables. Is it also achievable with
descriptors ?

About disk leds, there exist 2, 4, 6 and 8-drives versions of this
enclosure. I do not know how to detect which one the module is being
loaded on, so I declare all 8 leds, and userland should drive leds
which match detected drives.
For completeness, I attached udev configuration file (to have device
symlinks correctly mapping SCSI devices to slots - 6 drives version)
and "mdadm --monitor --program"-compatible led control shell script
(which depends on udev disk symlinks and led names being consistent).

Regards,
Vincent Pelletier

From 8c59f4f1c4f0c69b9168979fdf130b301b1be20b Mon Sep 17 00:00:00 2001
Message-Id: <8c59f4f1c4f0c69b9168979fdf130b301b1be20b.1465170970.git.plr.vincent@xxxxxxxxx>
From: Vincent Pelletier <plr.vincent@xxxxxxxxx>
Date: Mon, 17 Aug 2015 18:50:13 +0200
Subject: qnap-tsx51: add new driver for leds and button support on QNAP TS-x51
 series

This adds QNAP TS-x51 driver. It exposes led and buttons present on this NAS
enclosure to userland for convenient access. Ideally, all this driver does
should be declared by ACPI, but even SuperIO GPIO pins are not.
Also, ideally this driver should check DMI strings, but OEM did not initialise
any.

Signed-off-by: Vincent Pelletier <plr.vincent@xxxxxxxxx>
---
 drivers/platform/x86/Kconfig      |   9 ++
 drivers/platform/x86/Makefile     |   1 +
 drivers/platform/x86/qnap-tsx51.c | 168 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 178 insertions(+)
 create mode 100644 drivers/platform/x86/qnap-tsx51.c

diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index ed2004b..4da05bc 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -1001,4 +1001,13 @@ config INTEL_TELEMETRY
 	  used to get various SoC events and parameters
 	  directly via debugfs files. Various tools may use
 	  this interface for SoC state monitoring.
+
+config QNAP_TSX51
+	tristate "QNAP TS-x51 NAS"
+	select LEDS_GPIO
+	select KEYBOARD_GPIO_POLLED
+	select GPIO_F7188X
+	---help---
+	  This driver provides support for QNAP TS-x51 NAS enclosure
+	  leds (drive error, status, usb) and buttons.
 endif # X86_PLATFORM_DEVICES
diff --git a/drivers/platform/x86/Makefile b/drivers/platform/x86/Makefile
index 448443c..e03c507 100644
--- a/drivers/platform/x86/Makefile
+++ b/drivers/platform/x86/Makefile
@@ -69,3 +69,4 @@ obj-$(CONFIG_INTEL_PUNIT_IPC)  += intel_punit_ipc.o
 obj-$(CONFIG_INTEL_TELEMETRY)	+= intel_telemetry_core.o \
 				   intel_telemetry_pltdrv.o \
 				   intel_telemetry_debugfs.o
+obj-$(CONFIG_QNAP_TSX51)	+= qnap-tsx51.o
diff --git a/drivers/platform/x86/qnap-tsx51.c b/drivers/platform/x86/qnap-tsx51.c
new file mode 100644
index 0000000..c6304b9
--- /dev/null
+++ b/drivers/platform/x86/qnap-tsx51.c
@@ -0,0 +1,168 @@
+/*
+ * Support for LEDs and buttons available on the QNAP TS-x51 NAS.
+ *
+ * Copyright (C) 2015 Vincent Pelletier <plr.vincent@xxxxxxxxx>
+ */
+
+#include <linux/leds.h>
+#include <linux/module.h>
+#include <linux/platform_device.h>
+#include <linux/input.h>
+#include <linux/gpio_keys.h>
+
+static void qnap_tsx51_device_pdev_release(struct device *dev);
+
+static struct gpio_led qnap_tsx51_led[] = {
+	{
+		.name = "qnap_tsx51:green:status",
+		.gpio = 62,
+		.active_low = 1,
+		.default_state = LEDS_GPIO_DEFSTATE_ON,
+	},
+	{
+		.name = "qnap_tsx51:red:status",
+		.gpio = 63,
+		.active_low = 1,
+	},
+	{
+		.name = "qnap_tsx51:blue:usb",
+		.default_trigger = "usb-host",
+		.gpio = 17,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd1:red:sata",
+		.gpio = 70,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd2:red:sata",
+		.gpio = 71,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd3:red:sata",
+		.gpio = 72,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd4:red:sata",
+		.gpio = 73,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd5:red:sata",
+		.gpio = 74,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd6:red:sata",
+		.gpio = 75,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd7:red:sata",
+		.gpio = 76,
+		.active_low = 1,
+	},
+	{
+		.name = "hdd8:red:sata",
+		.gpio = 77,
+		.active_low = 1,
+	},
+};
+
+static struct gpio_led_platform_data qnap_tsx51_led_data = {
+	.num_leds = ARRAY_SIZE(qnap_tsx51_led),
+	.leds = qnap_tsx51_led,
+};
+
+static struct platform_device qnap_tsx51_leds_dev = {
+	.name = "leds-gpio",
+	.id = -1,
+	.dev = {
+		.release = qnap_tsx51_device_pdev_release,
+		.platform_data = &qnap_tsx51_led_data,
+	},
+};
+
+static struct gpio_keys_button qnap_tsx51_gpio_buttons[] = {
+	{
+		.code = KEY_COPY,
+		.gpio = 12,
+		.active_low = 1,
+		.desc = "Copy button",
+		.type = EV_KEY,
+		.wakeup = 0,
+		.debounce_interval = 100,
+		.can_disable = 0,
+	},
+	{
+		.code = KEY_RESTART,
+		.gpio = 61,
+		.active_low = 1,
+		.desc = "Reset button",
+		.type = EV_KEY,
+		.wakeup = 0,
+		.debounce_interval = 100,
+		.can_disable = 0,
+	},
+};
+
+static struct gpio_keys_platform_data qnap_tsx51_buttons_data = {
+	.buttons = qnap_tsx51_gpio_buttons,
+	.nbuttons = ARRAY_SIZE(qnap_tsx51_gpio_buttons),
+	.poll_interval = 20,
+};
+
+static struct platform_device qnap_tsx51_buttons_dev = {
+	.name = "gpio-keys-polled",
+	.id = -1,
+	.dev = {
+		.release = qnap_tsx51_device_pdev_release,
+		.platform_data = &qnap_tsx51_buttons_data,
+	},
+};
+
+static struct platform_device *qnap_tsx51_devs[] = {
+	&qnap_tsx51_buttons_dev,
+	&qnap_tsx51_leds_dev,
+};
+
+static void qnap_tsx51_device_pdev_release(struct device *dev)
+{
+/*
+ * Needed to silence this message:
+ * Device 'xxx' does not have a release() function, it is broken and must be
+ * fixed.
+ */
+}
+
+static int __init qnap_tsx51_init(void)
+{
+	int ret;
+
+	ret = request_module("gpio_f7188x");
+	if (ret)
+		return ret;
+
+	return platform_add_devices(
+		qnap_tsx51_devs,
+		ARRAY_SIZE(qnap_tsx51_devs)
+	);
+
+}
+
+static void __exit qnap_tsx51_exit(void)
+{
+	int i;
+	for (i = 0; i < ARRAY_SIZE(qnap_tsx51_devs); i++)
+		platform_device_unregister(qnap_tsx51_devs[i]);
+}
+
+module_init(qnap_tsx51_init);
+module_exit(qnap_tsx51_exit);
+
+MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("QNAP TS-x51 NAS");
+MODULE_AUTHOR("Vincent Pelletier <plr.vincent@xxxxxxxxx>");
-- 
2.8.1

Attachment: hdd.rules
Description: Binary data

Attachment: mdadm2leds
Description: Binary data


[Index of Archives]     [Linux SPI]     [Linux Kernel]     [Linux ARM (vger)]     [Linux ARM MSM]     [Linux Omap]     [Linux Arm]     [Linux Tegra]     [Fedora ARM]     [Linux for Samsung SOC]     [eCos]     [Linux Fastboot]     [Gcc Help]     [Git]     [DCCP]     [IETF Announce]     [Security]     [Linux MIPS]     [Yosemite Campsites]

  Powered by Linux