From patchwork Fri Feb 14 13:02:47 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Merlijn Wajer X-Patchwork-Id: 11382267 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 526701580 for ; Fri, 14 Feb 2020 13:28:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3150E222C4 for ; Fri, 14 Feb 2020 13:28:58 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=wizzup.org header.i=@wizzup.org header.b="nQGPPlyK" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729020AbgBNN25 (ORCPT ); Fri, 14 Feb 2020 08:28:57 -0500 Received: from a80-127-99-228.adsl.xs4all.nl ([80.127.99.228]:59724 "EHLO hetgrotebos.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727822AbgBNN25 (ORCPT ); Fri, 14 Feb 2020 08:28:57 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=wizzup.org; s=mail; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=J/V7zkHQUUcwpBuxtuCDV4YxrtNB7KF4oGNQiKpJiEw=; b=nQGPPlyKanYjWB0RIjUWLuigHo dAooLceMvbxlBtLfNCvFCN6J5Pf79Wdb+eF/QgO+SpITbvqY8a6OIF02ie3nIrV9BJcDwPJ8kXQCx IC9lpsCXixEfELHoxeHHhxL2CgMB9d3StJKTNFGLF8LRsyhka8S+REvV/xJBobBh3NiTEc4gnybOS gUbZuBkL7qLPuxoL1V5qVCw3e+wIL/PfWkDcSBH12QYFz4wl8o3CNTvAkSluwIKP7o3b8d9Itieve m94MBywHCUiNv0ybq0pKJjsj6Zh4VkPV/vf9fx/UIkZObc7wvYgGsBpPk0k1m5gnC7KvFZoZDjT8A hI3gnZzQ==; Received: from kgpe-d16.fritz.box ([192.168.178.22]) by hetgrotebos.org with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1j2aaY-0002df-8z; Fri, 14 Feb 2020 13:00:58 +0000 From: Merlijn Wajer To: merlijn@wizzup.org Cc: =?utf-8?q?Beno=C3=AEt_Cousson?= , Tony Lindgren , Rob Herring , Mark Rutland , Dmitry Torokhov , Mattias Jacobsson <2pi@mok.nu>, "Darren Hart (VMware)" , linux-omap@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-input@vger.kernel.org Subject: [RFC PATCH 1/2] Input: add `SW_MACHINE_COVER` Date: Fri, 14 Feb 2020 14:02:47 +0100 Message-Id: <20200214130249.6845-2-merlijn@wizzup.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20200214130249.6845-1-merlijn@wizzup.org> References: <20200214130249.6845-1-merlijn@wizzup.org> MIME-Version: 1.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org This event code represents the state of a removable cover of a device. Value 1 means that the cover is open or removed, value 0 means that the cover is closed. This can be used to preempt users removing a removable mmc card or even the battery, allowing userspace to attempt to safely unmount a card. Reviewed-by: Sebastian Reichel --- include/linux/mod_devicetable.h | 2 +- include/uapi/linux/input-event-codes.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 448621c32e4d..4c692cb3cc1d 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -299,7 +299,7 @@ struct pcmcia_device_id { #define INPUT_DEVICE_ID_LED_MAX 0x0f #define INPUT_DEVICE_ID_SND_MAX 0x07 #define INPUT_DEVICE_ID_FF_MAX 0x7f -#define INPUT_DEVICE_ID_SW_MAX 0x0f +#define INPUT_DEVICE_ID_SW_MAX 0x10 #define INPUT_DEVICE_ID_PROP_MAX 0x1f #define INPUT_DEVICE_ID_MATCH_BUS 1 diff --git a/include/uapi/linux/input-event-codes.h b/include/uapi/linux/input-event-codes.h index 64cee116928e..318a6387cdfb 100644 --- a/include/uapi/linux/input-event-codes.h +++ b/include/uapi/linux/input-event-codes.h @@ -807,7 +807,8 @@ #define SW_LINEIN_INSERT 0x0d /* set = inserted */ #define SW_MUTE_DEVICE 0x0e /* set = device disabled */ #define SW_PEN_INSERTED 0x0f /* set = pen inserted */ -#define SW_MAX 0x0f +#define SW_MACHINE_COVER 0x10 /* set = cover closed */ +#define SW_MAX 0x10 #define SW_CNT (SW_MAX+1) /* From patchwork Fri Feb 14 13:02:48 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Merlijn Wajer X-Patchwork-Id: 11382269 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 0281E1580 for ; Fri, 14 Feb 2020 13:29:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CA996222C4 for ; Fri, 14 Feb 2020 13:29:00 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=wizzup.org header.i=@wizzup.org header.b="YyqWrLlO" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728405AbgBNN3A (ORCPT ); Fri, 14 Feb 2020 08:29:00 -0500 Received: from a80-127-99-228.adsl.xs4all.nl ([80.127.99.228]:59728 "EHLO hetgrotebos.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727822AbgBNN3A (ORCPT ); Fri, 14 Feb 2020 08:29:00 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=wizzup.org; s=mail; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=ZstIGWVDJVfKLbnwGou4mM1u+YojrQNl9t84LNG+qvs=; b=YyqWrLlO4Pw1Bo1BPrPfJahbn4 FWoAFeV0G9lBis41bm4fI2izTEumjDwgwRB/TSUFdf3bNpPm8gk6pOp4uoBHRoViSSJEeRxlTorA/ eBLiFr6ERintYnJl+FoeYzms2Y4RRm3YQfn1MwJMSYULlC2inJNlnC5O5tMaT0jBIB8etuBLJwLkH uq7w9nrQf8aaRuLypz/f7QZUfbdPbJBRYelsyR8JS2YfIC82SFao0fl98UJzhaogZhkSu30RtCl6r cKF4IlQq/O9wtG1RBTR7ciSMs83mfD3XXJgFK9rjFYHImTjd129i0VIrqOlhuZKJnZTVijMv7d8yI BujPJoLA==; Received: from kgpe-d16.fritz.box ([192.168.178.22]) by hetgrotebos.org with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1j2aac-0002df-6c; Fri, 14 Feb 2020 13:01:02 +0000 From: Merlijn Wajer To: merlijn@wizzup.org Cc: =?utf-8?q?Beno=C3=AEt_Cousson?= , Tony Lindgren , Rob Herring , Mark Rutland , Dmitry Torokhov , Mattias Jacobsson <2pi@mok.nu>, "Darren Hart (VMware)" , linux-omap@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-input@vger.kernel.org Subject: [RFC PATCH 2/2] ARM: dts: n900: remove mmc1 card detect gpio Date: Fri, 14 Feb 2020 14:02:48 +0100 Message-Id: <20200214130249.6845-3-merlijn@wizzup.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20200214130249.6845-1-merlijn@wizzup.org> References: <20200214130249.6845-1-merlijn@wizzup.org> MIME-Version: 1.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org Instead, expose the key via the input framework, as SW_MACHINE_COVER Reviewed-by: Sebastian Reichel --- arch/arm/boot/dts/omap3-n900.dts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/arch/arm/boot/dts/omap3-n900.dts b/arch/arm/boot/dts/omap3-n900.dts index 7028a7cb2849..ed773e1609a5 100644 --- a/arch/arm/boot/dts/omap3-n900.dts +++ b/arch/arm/boot/dts/omap3-n900.dts @@ -108,6 +108,14 @@ linux,code = ; linux,can-disable; }; + + machine_cover { + label = "Machine Cover"; + gpios = <&gpio6 0 GPIO_ACTIVE_LOW>; /* 160 */ + linux,input-type = ; + linux,code = ; + linux,can-disable; + }; }; isp1707: isp1707 { @@ -805,10 +813,6 @@ pinctrl-0 = <&mmc1_pins>; vmmc-supply = <&vmmc1>; bus-width = <4>; - /* For debugging, it is often good idea to remove this GPIO. - It means you can remove back cover (to reboot by removing - battery) and still use the MMC card. */ - cd-gpios = <&gpio6 0 GPIO_ACTIVE_LOW>; /* 160 */ }; /* most boards use vaux3, only some old versions use vmmc2 instead */