From patchwork Fri Dec 10 02:27:00 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Caleb Connolly X-Patchwork-Id: 522866 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4E1CEC4332F for ; Fri, 10 Dec 2021 02:27:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235986AbhLJCan (ORCPT ); Thu, 9 Dec 2021 21:30:43 -0500 Received: from mail-0301.mail-europe.com ([188.165.51.139]:52352 "EHLO mail-0301.mail-europe.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235960AbhLJCan (ORCPT ); Thu, 9 Dec 2021 21:30:43 -0500 Date: Fri, 10 Dec 2021 02:27:00 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=connolly.tech; s=protonmail; t=1639103225; bh=HPRTLypqlL1v/oJddAQlru6l2IJfkdXX26COEmhucPs=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:In-Reply-To: References:From:To:Cc; b=FquTi0+w7hGeWMhBOi0z5TdO2ARBGanGJeBTlGYTYZmsXerSlwHDLJ+W9L+erMiD1 ad63z18tpdWlhxo3AdGFd8LbqqXe7U5bNxMhkOeb++0aYNoS2oV/Wytd8GGzqfqWed M5BWmT6B2mmIt8PocbaLZhCp+f5spQKBzb82j+tA= To: caleb@connolly.tech, Andy Gross , Bjorn Andersson , Dmitry Torokhov , Rob Herring , linux-arm-msm@vger.kernel.org, linux-input@vger.kernel.org, devicetree@vger.kernel.org, phone-devel@vger.kernel.org From: Caleb Connolly Cc: Jami Kettunen , Joel Selvaraj Reply-To: Caleb Connolly Subject: [PATCH v4 3/6] arm64: dts: qcom: pmi8998: introduce spmi haptics Message-ID: <20211210022639.2779173-4-caleb@connolly.tech> In-Reply-To: <20211210022639.2779173-1-caleb@connolly.tech> References: <20211210022639.2779173-1-caleb@connolly.tech> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Add bindings for Qualcomm SPMI haptics on platforms using pmi8998. Signed-off-by: Caleb Connolly --- arch/arm64/boot/dts/qcom/pmi8998.dtsi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) -- 2.34.1 diff --git a/arch/arm64/boot/dts/qcom/pmi8998.dtsi b/arch/arm64/boot/dts/qcom/pmi8998.dtsi index 0fef5f113f05..97d993f31ddd 100644 --- a/arch/arm64/boot/dts/qcom/pmi8998.dtsi +++ b/arch/arm64/boot/dts/qcom/pmi8998.dtsi @@ -1,4 +1,5 @@ // SPDX-License-Identifier: GPL-2.0 +#include #include #include @@ -53,5 +54,19 @@ pmi8998_wled: leds@d800 { status = "disabled"; }; + pmi8998_haptics: haptics@c000 { + compatible = "qcom,pmi8998-haptics"; + reg = <0xc000>; + + interrupts = <0x3 0xc0 0x0 IRQ_TYPE_EDGE_BOTH>, + <0x3 0xc0 0x1 IRQ_TYPE_EDGE_BOTH>; + interrupt-names = "short", "play"; + + qcom,wave-shape = ; + qcom,play-mode = ; + qcom,brake-pattern = <0x3 0x3 0x2 0x1>; + + status = "disabled"; + }; }; };