From mboxrd@z Thu Jan 1 00:00:00 1970 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=-5.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 94F4BC4338F for ; Wed, 4 Aug 2021 02:37:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 763126056B for ; Wed, 4 Aug 2021 02:37:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234635AbhHDCh7 (ORCPT ); Tue, 3 Aug 2021 22:37:59 -0400 Received: from m43-7.mailgun.net ([69.72.43.7]:18939 "EHLO m43-7.mailgun.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234506AbhHDCh7 (ORCPT ); Tue, 3 Aug 2021 22:37:59 -0400 DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=mg.codeaurora.org; q=dns/txt; s=smtp; t=1628044667; h=Content-Transfer-Encoding: Content-Type: In-Reply-To: MIME-Version: Date: Message-ID: From: References: Cc: To: Subject: Sender; bh=AdSZAOo3QXrorQizvhdg24/idcUVBek6kZg6Gp4D9Vc=; b=gdqkbvH2sAPM3pRUJZmazNGON9Ba6PJftX3dsiiuHHxwdMXKGK1aGW/Z1pMCV8VkGty7sUv4 E3lRVKjP0m50i76Kf7KWrBAKbaInV8VBdNXNmV/nvP0ASXv0OqPECf0SuyAFwEXuiqVaWJ5a 3sQeGcaV5YSmW6Wv1YnGq33AZDk= X-Mailgun-Sending-Ip: 69.72.43.7 X-Mailgun-Sid: WyI1MzIzYiIsICJsaW51eC1hcm0tbXNtQHZnZXIua2VybmVsLm9yZyIsICJiZTllNGEiXQ== Received: from smtp.codeaurora.org (ec2-35-166-182-171.us-west-2.compute.amazonaws.com [35.166.182.171]) by smtp-out-n05.prod.us-west-2.postgun.com with SMTP id 6109fd64ebcbc9cec91f3964 (version=TLS1.2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256); Wed, 04 Aug 2021 02:37:24 GMT Sender: luoj=codeaurora.org@mg.codeaurora.org Received: by smtp.codeaurora.org (Postfix, from userid 1001) id 4CAB6C43144; Wed, 4 Aug 2021 02:37:24 +0000 (UTC) Received: from [10.253.66.187] (unknown [180.166.53.21]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: luoj) by smtp.codeaurora.org (Postfix) with ESMTPSA id 8E5D9C433F1; Wed, 4 Aug 2021 02:37:20 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 8E5D9C433F1 Authentication-Results: aws-us-west-2-caf-mail-1.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: aws-us-west-2-caf-mail-1.web.codeaurora.org; spf=fail smtp.mailfrom=luoj@codeaurora.org Subject: Re: [PATCH 3/3] dt-bindings: net: rename Qualcomm IPQ MDIO bindings To: Andrew Lunn Cc: Rob Herring , Heiner Kallweit , David Miller , Jakub Kicinski , Philipp Zabel , "Gross, Andy" , Bjorn Andersson , Robert Marko , netdev , linux-kernel@vger.kernel.org, linux-arm-msm , devicetree@vger.kernel.org, Sricharan References: <20210729125358.5227-1-luoj@codeaurora.org> <20210729125358.5227-3-luoj@codeaurora.org> <7873e70dcf4fe749521bd9c985571742@codeaurora.org> From: Jie Luo Message-ID: <0eb8f82a-c03c-8ec5-7ac4-7835dd935c73@codeaurora.org> Date: Wed, 4 Aug 2021 10:37:18 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.12.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On 8/2/2021 9:39 PM, Andrew Lunn wrote: >>> since the phylib code can't satisfy resetting PHY in IPQ chipset, phylib >>> resets phy by >>> configuring GPIO output value to 1, then to 0. however the PHY reset in >>> IPQ chipset need >>> to configuring GPIO output value to 0, then to 1 for the PHY reset, so i >>> put the phy-reset-gpios here. > Look at the active low DT property of a GPIO. > > Andrew > thanks Andrew, will update it in the next patch set.