diff mbox series

[2/2] kernel: Add reset button platform device for APU2/APU3

Message ID 20180809130302.18588-3-fe@dev.tdt.de
State New
Headers show
Series gpio: Add driver for PC Engines APU2/APU3 GPIOs | expand

Commit Message

Florian Eckert Aug. 9, 2018, 1:03 p.m. UTC
This will add a x86 platform device "gpio-keys-polled" which uses the
new gpio-apu drive for APU2 and APU3 boards from PC Engines.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
---
 arch/x86/Kconfig               | 14 ++++++++
 arch/x86/platform/Makefile     |  1 +
 arch/x86/platform/amd/Makefile |  1 +
 arch/x86/platform/amd/apu.c    | 72 ++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 88 insertions(+)
 create mode 100644 arch/x86/platform/amd/Makefile
 create mode 100644 arch/x86/platform/amd/apu.c

Comments

Andy Shevchenko Aug. 9, 2018, 3:53 p.m. UTC | #1
On Thu, 2018-08-09 at 15:03 +0200, Florian Eckert wrote:
> This will add a x86 platform device "gpio-keys-polled" which uses the
> new gpio-apu drive for APU2 and APU3 boards from PC Engines.

>  arch/x86/Kconfig               | 14 ++++++++
>  arch/x86/platform/Makefile     |  1 +
>  arch/x86/platform/amd/Makefile |  1 +
>  arch/x86/platform/amd/apu.c    | 72
> ++++++++++++++++++++++++++++++++++++++++++

And why it's under arch/x86? Is it uncore part?
I suppose it should go under drivers/platform/x86.
Florian Eckert Aug. 10, 2018, 6:16 a.m. UTC | #2
Hello Andy,

first thanks for your review.

> And why it's under arch/x86? Is it uncore part?
> I suppose it should go under drivers/platform/x86.

I am using a "PC Engines" alix6 board. This is the precursor of the new 
APU boards for "PC Engines".
The button device declaration for the alix borads is under 
"arch/platform/x86/geode/alix.c".
So I thought the new one should go there as well.

But I will change this. Thanks for the hint.
Andy Shevchenko Aug. 10, 2018, 10:13 a.m. UTC | #3
+Cc Darren

On Fri, 2018-08-10 at 08:16 +0200, Florian Eckert wrote:
> Hello Andy,
> 
> first thanks for your review.
> 
> > And why it's under arch/x86? Is it uncore part?
> > I suppose it should go under drivers/platform/x86.
> 
> I am using a "PC Engines" alix6 board. This is the precursor of the
> new 
> APU boards for "PC Engines".
> The button device declaration for the alix borads is under 
> "arch/platform/x86/geode/alix.c".
> So I thought the new one should go there as well.
> 
> But I will change this. Thanks for the hint.

Thomas already has discussion with me and others about some platform
drivers under arch/x86. As far as I remember his point is that PDx86
subsystem for platform stuff suits better. We even move couple of
drivers out from arch/x86 (pmc_atom one of them for sure).

Geode is quite old SoC, right? Ideally it maybe even go to
drivers/platform/amd. 

Darren, what's your opinion about location of the new platform code for
AMD platforms?
Darren Hart Aug. 13, 2018, 3:30 a.m. UTC | #4
On Fri, Aug 10, 2018 at 01:13:57PM +0300, Andy Shevchenko wrote:
> +Cc Darren
> 
> On Fri, 2018-08-10 at 08:16 +0200, Florian Eckert wrote:
> > Hello Andy,
> > 
> > first thanks for your review.
> > 
> > > And why it's under arch/x86? Is it uncore part?
> > > I suppose it should go under drivers/platform/x86.
> > 
> > I am using a "PC Engines" alix6 board. This is the precursor of the
> > new 
> > APU boards for "PC Engines".
> > The button device declaration for the alix borads is under 
> > "arch/platform/x86/geode/alix.c".
> > So I thought the new one should go there as well.
> > 
> > But I will change this. Thanks for the hint.
> 
> Thomas already has discussion with me and others about some platform
> drivers under arch/x86. As far as I remember his point is that PDx86
> subsystem for platform stuff suits better. We even move couple of
> drivers out from arch/x86 (pmc_atom one of them for sure).
> 
> Geode is quite old SoC, right? Ideally it maybe even go to
> drivers/platform/amd. 
> 
> Darren, what's your opinion about location of the new platform code for
> AMD platforms?

Agree. We have a todo to move non architectural platform drivers to
drivers/platform/*.  The new ones should go to drivers/platform/*, and
as we can, we should be migrating the old ones.
diff mbox series

Patch

diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 887d3a7bb646..31a5416f3ba0 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -2820,6 +2820,20 @@  config TS5500
 
 endif # X86_32
 
+if X86_64
+config APU
+	bool "PCEngines APU System Support"
+	---help---
+	  This option enables system support for the PCEngines APU platform.
+	  At present this just sets up the reset button control on
+	  APU2/APU3 boards.  However, other system specific setup should
+	  get added here.
+
+	  Note: You must still enable the drivers for GPIO and LED support
+	  (GPIO_APU & LEDS_APU) to actually use the LEDs and the GPIOs
+
+endif # X86_64
+
 config AMD_NB
 	def_bool y
 	depends on CPU_SUP_AMD && PCI
diff --git a/arch/x86/platform/Makefile b/arch/x86/platform/Makefile
index d0e835470d01..a95d18810c29 100644
--- a/arch/x86/platform/Makefile
+++ b/arch/x86/platform/Makefile
@@ -1,6 +1,7 @@ 
 # SPDX-License-Identifier: GPL-2.0
 # Platform specific code goes here
 obj-y	+= atom/
+obj-y	+= amd/
 obj-y	+= ce4100/
 obj-y	+= efi/
 obj-y	+= geode/
diff --git a/arch/x86/platform/amd/Makefile b/arch/x86/platform/amd/Makefile
new file mode 100644
index 000000000000..bf04c5799d7f
--- /dev/null
+++ b/arch/x86/platform/amd/Makefile
@@ -0,0 +1 @@ 
+obj-$(CONFIG_APU)		+=apu.o
diff --git a/arch/x86/platform/amd/apu.c b/arch/x86/platform/amd/apu.c
new file mode 100644
index 000000000000..a4b695881177
--- /dev/null
+++ b/arch/x86/platform/amd/apu.c
@@ -0,0 +1,72 @@ 
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * System Specific setup for PC-Engines APU2/APU3 devices
+ *
+ * Copyright (C) 2018 Florian Eckert <fe@dev.tdt.de>
+ */
+
+#include <linux/platform_device.h>
+#include <linux/gpio.h>
+#include <linux/input.h>
+#include <linux/gpio_keys.h>
+#include <linux/dmi.h>
+
+static struct gpio_keys_button apu_gpio_buttons[] = {
+	{
+		.code			= KEY_RESTART,
+		.gpio			= 20,
+		.active_low		= 1,
+		.desc			= "Reset button",
+		.type			= EV_KEY,
+		.debounce_interval	= 60,
+	}
+};
+
+static struct gpio_keys_platform_data apu_buttons_data = {
+	.buttons		= apu_gpio_buttons,
+	.nbuttons		= ARRAY_SIZE(apu_gpio_buttons),
+	.poll_interval		= 20,
+};
+
+static struct platform_device apu_buttons_dev = {
+	.name			= "gpio-keys-polled",
+	.id			= 1,
+	.dev = {
+		.platform_data		= &apu_buttons_data,
+	}
+};
+
+static struct platform_device *apu_devs[] __initdata = {
+		&apu_buttons_dev,
+};
+
+static void __init register_apu(void)
+{
+	/* Setup push button control through gpio-apu driver */
+	platform_add_devices(apu_devs, ARRAY_SIZE(apu_devs));
+}
+
+static int __init apu_init(void)
+{
+	if (!dmi_match(DMI_SYS_VENDOR, "PC Engines")) {
+		pr_err("No PC Engines board detected\n");
+		return -ENODEV;
+	}
+
+	if (!(dmi_match(DMI_PRODUCT_NAME, "APU2") ||
+	      dmi_match(DMI_PRODUCT_NAME, "apu2") ||
+	      dmi_match(DMI_PRODUCT_NAME, "PC Engines apu2") ||
+	      dmi_match(DMI_PRODUCT_NAME, "APU3") ||
+	      dmi_match(DMI_PRODUCT_NAME, "apu3") ||
+	      dmi_match(DMI_PRODUCT_NAME, "PC Engines apu3"))) {
+		pr_err("Unknown PC Engines board: %s\n",
+			dmi_get_system_info(DMI_PRODUCT_NAME));
+		return -ENODEV;
+	}
+
+	register_apu();
+
+	return 0;
+}
+
+device_initcall(apu_init);