From patchwork Tue Feb 16 12:42:58 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Eberlein X-Patchwork-Id: 383518 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C1ED2C433E0 for ; Tue, 16 Feb 2021 12:53:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7738C61606 for ; Tue, 16 Feb 2021 12:53:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229744AbhBPMxj (ORCPT ); Tue, 16 Feb 2021 07:53:39 -0500 Received: from vm146.dmsolutionsonline.de ([84.19.161.165]:44452 "EHLO vm146.dmsolutionsonline.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229713AbhBPMxi (ORCPT ); Tue, 16 Feb 2021 07:53:38 -0500 X-Greylist: delayed 525 seconds by postgrey-1.27 at vger.kernel.org; Tue, 16 Feb 2021 07:53:37 EST Received: from localhost (localhost.localdomain [127.0.0.1]) by vm146.dmsolutionsonline.de (Postfix) with ESMTP id DED051C0833; Tue, 16 Feb 2021 13:44:10 +0100 (CET) Received: from vm146.dmsolutionsonline.de ([127.0.0.1]) by localhost (vm146.dmsolutionsonline.de [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 6qYD_Dt_pprj; Tue, 16 Feb 2021 13:44:09 +0100 (CET) Received: from lubuntu.aeberlein.local (p5b2a2dd1.dip0.t-ipconnect.de [91.42.45.209]) (Authenticated sender: andreas@eberlein.it) by vm146.dmsolutionsonline.de (Postfix) with ESMTPSA; Tue, 16 Feb 2021 13:44:09 +0100 (CET) From: Andreas Eberlein To: Pavel Machek Cc: linux-leds@vger.kernel.org, linux-kernel@vger.kernel.org, Andreas Eberlein Subject: [PATCH] leds: apu: extend support for PC Engines APU1 with newer firmware Date: Tue, 16 Feb 2021 13:42:58 +0100 Message-Id: <20210216124258.3789-1-foodeas@aeberlein.de> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-leds@vger.kernel.org The DMI_PRODUCT_NAME entry on current firmware of PC Engines APU1 changed from "APU" to "apu1" This modification adds the missing DMI data and thereby the LED support for the PC Engines APU1 with firmware versions >= 4.6.8. Signed-off-by: Andreas Eberlein --- drivers/leds/leds-apu.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/drivers/leds/leds-apu.c b/drivers/leds/leds-apu.c index 7fd557ace..6d5dd06b4 100644 --- a/drivers/leds/leds-apu.c +++ b/drivers/leds/leds-apu.c @@ -83,6 +83,7 @@ static const struct apu_led_profile apu1_led_profile[] = { }; static const struct dmi_system_id apu_led_dmi_table[] __initconst = { + /* PC Engines APU with factory bios "SageBios_PCEngines_APU-45" */ { .ident = "apu", .matches = { @@ -90,6 +91,13 @@ static const struct dmi_system_id apu_led_dmi_table[] __initconst = { DMI_MATCH(DMI_PRODUCT_NAME, "APU") } }, + /* PC Engines APU with "Mainline" bios >= 4.6.8 */ + .ident = "apu", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "PC Engines"), + DMI_MATCH(DMI_PRODUCT_NAME, "apu1") + } + }, {} }; MODULE_DEVICE_TABLE(dmi, apu_led_dmi_table); @@ -173,7 +181,7 @@ static int __init apu_led_init(void) int err; if (!(dmi_match(DMI_SYS_VENDOR, "PC Engines") && - dmi_match(DMI_PRODUCT_NAME, "APU"))) { + (dmi_match(DMI_PRODUCT_NAME, "APU") || dmi_match(DMI_PRODUCT_NAME, "apu1")))) { pr_err("No PC Engines APUv1 board detected. For APUv2,3 support, enable CONFIG_PCENGINES_APU2\n"); return -ENODEV; }