Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp2188561pxk; Mon, 14 Sep 2020 07:03:58 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxaf2h/oT222aQStHhypO9zK7xVoXhu4ZC8QCtFFIlAVr3akf3JWxlJ+sbL7FBjGpZYMmcG X-Received: by 2002:a17:906:f0cb:: with SMTP id dk11mr4115487ejb.457.1600092238043; Mon, 14 Sep 2020 07:03:58 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600092238; cv=none; d=google.com; s=arc-20160816; b=PB76JJN5VsHxKbIU2cl9PHEKTZrYwbha/oRX2AFIM30pzunhRumtI/fVjIYSxnNu9/ 6ZnSrQjmvFnHq1C6hG3QwV/7x3CaaLX/ONeCjJ2bIJIbCXZVeStvBejVdeRiQsXVn62G KN9acplePqCBhkAzZxoaCpv/iLHE9MraqZlSM4sC0cafX1cLxHGoTxmtnVR8X1xc0ZIh RLupMtpf+Gwx6mdaaCqR5aGdVKoBqOtzg6nqSt+Jz5PoTizu4vDe20v1FWgK9B4pgWe5 QGVrVtMQcPonkyJSdPzjrj7PsN8LFrWTqL8CAPCdu0Mrpdro7Tt8cw3lJ5ag8ffBZVlN DL9Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=ZxVL2+kr0px9mqIDvOly5S77BFgwkAjzR06u2AmOgzM=; b=DeGmDVfHHQR/Obx4raOU45h5eeyZLKB8hwjg/EJQOreVQt0Wmv6aCL/aqLThujPoL0 whxJ1gJyTTp/46roC6iBXs8ArgRkot2cgXQTNzbcX2y15jN9oFvsF5p4mw8ec0HaA1OW 4QRZI9Cd50wtYh8rfFJy+Qq2VoYWbe2p1J6cxOcoXhXQu40kRIzR0Hat7L83j7Ng/Ws0 6EXuw/qpdU61LkM5Z8wTEtGwhvI0YIIM7XPG2uuKz9sh+mw5oxqavJYb3ugXLj49GDR3 1q+yYCJtYupzk/j6XnuqqY21/pwfU930zLnCkp8+aq3bfha+62v4on1DD7t+SskDzsZK 4Tew== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id f19si7076745ejx.348.2020.09.14.07.03.34; Mon, 14 Sep 2020 07:03:58 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726721AbgINOCv (ORCPT + 99 others); Mon, 14 Sep 2020 10:02:51 -0400 Received: from alexa-out.qualcomm.com ([129.46.98.28]:31994 "EHLO alexa-out.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726769AbgINN7Y (ORCPT ); Mon, 14 Sep 2020 09:59:24 -0400 Received: from ironmsg09-lv.qualcomm.com ([10.47.202.153]) by alexa-out.qualcomm.com with ESMTP; 14 Sep 2020 06:59:23 -0700 Received: from ironmsg02-blr.qualcomm.com ([10.86.208.131]) by ironmsg09-lv.qualcomm.com with ESMTP/TLS/AES256-SHA; 14 Sep 2020 06:59:22 -0700 Received: from c-skakit-linux.ap.qualcomm.com (HELO c-skakit-linux.qualcomm.com) ([10.242.51.242]) by ironmsg02-blr.qualcomm.com with ESMTP; 14 Sep 2020 19:28:55 +0530 Received: by c-skakit-linux.qualcomm.com (Postfix, from userid 2344709) id E642444CC; Mon, 14 Sep 2020 19:28:53 +0530 (IST) From: satya priya To: Bjorn Andersson Cc: Matthias Kaehlcke , gregkh@linuxfoundation.org, Andy Gross , Rob Herring , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, akashast@codeaurora.org, rojay@codeaurora.org, msavaliy@qti.qualcomm.com, dianders@chromium.org, satya priya Subject: [PATCH V6 0/4] Add wakeup support over UART RX Date: Mon, 14 Sep 2020 19:28:33 +0530 Message-Id: <1600091917-7464-1-git-send-email-skakit@codeaurora.org> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Changes in V2: - As per Matthias's comment added wakeup support for all the UARTs of SC7180. - Added sleep state in sc7180-idp.dts file. - Modify the if check in set_mctrl API in serial driver to avoid making RFR high during suspend. Changes in V3: - As per Matthias's comments modify the idp dts pin config to keep only the required pin settings. - Remove the extra parentheses from serial driver patch. Changes in V4: - As per Matthias's comments, change the commit text to mention why GPIO function needs to be selected in sleep. - Add separate patch for improvements made in pin conf settings. Changes in V5: - Moved pinctrl and interrupt configuration to board specific files. - Added new patch for trogdor board specific changes. Changes in V6: - As per Doug's comments, fixed nits in patch 2 and 3. - As per Bjorn's comments changed the commit text and rationale for rts, tx and rx in patch 2 and 3. satya priya (4): arm64: dts: qcom: sc7180: Improve the uart3 pin config for sc7180-idp arm64: dts: qcom: sc7180: Add wakeup support for BT UART on sc7180-idp arm64: dts: qcom: sc7180-trogdor: Add wakeup support for BT UART tty: serial: qcom_geni_serial: Fix the UART wakeup issue arch/arm64/boot/dts/qcom/sc7180-idp.dts | 65 +++++++++++++++++++++++++--- arch/arm64/boot/dts/qcom/sc7180-trogdor.dtsi | 54 +++++++++++++++++++++++ drivers/tty/serial/qcom_geni_serial.c | 2 +- 3 files changed, 114 insertions(+), 7 deletions(-) -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation