Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp212781yba; Mon, 1 Apr 2019 05:06:32 -0700 (PDT) X-Google-Smtp-Source: APXvYqyB7dttFrvf6t6LLY2Fmal578B2AczuyjUzQWgMDmeyfoq/JlgYUxu5trYbXEzqldKTPT2R X-Received: by 2002:a63:1247:: with SMTP id 7mr55549221pgs.352.1554120392320; Mon, 01 Apr 2019 05:06:32 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1554120392; cv=none; d=google.com; s=arc-20160816; b=S+Tq6VQlA8VQPSjK8ebTyRE4CQa4lYaf88zAor6SXEouEgsIv7lY7RnoVgKQwAnGL4 +VzYEaqSwpR21Sg3KQLk1u6GDZTuTFLjjPXmIDIrWmokrzM2Y3izi8mLc1W9cihG6IMn lV4EW73u0gIk6SVr681rwVYnl5Gke+VaCitI9gJ3S6cxVz9Ok6LEge0KT+ELCdoou+mv f6RdRymOgvMtnqYypJkAdyimWLqQHdl4Flslvu9JP7osYRGi6qAj4oQ5SsycuhCMrXpD zmi5wetYVX2S3Dl4G3yIef39UJ9mrS6fwQymOgYhOrY7S1c2ZD0YQujrRbLEENFQlvSZ DqRA== 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=GlgjNY6mDq1mL5s5noBdxygd8ir7HlNB5UewS7rTyB0=; b=tQuN5gACsdqIr6KqPveVquXL4SR7jgsA83vQwfDstveFH1FbIK324SQxtRE1jPiOZT QN2QctFUJaVk4HoqfU0DJiquwAh9/FNggETk5zjY+JdTG5ZYfdwbN6xGxJkdKJsafiMq MZdraYpncrR99PzbK9KF5T+1j+3yiGF4XL7vibHC6UBn5a1amrXmgXbCq2KqV78JQvb5 B//APd7vc+8KXBtWGV0lNd21/bNlVwKGgKL3Cbuo4WPgO8RzD5tTZ209ciXiNs7r1tmq qu+RV508DMgZTXM87CpXVQsVjD6pi4NmMu3tZbtugjsh74DLlWWF7ho7GSKLrJ5lzK5g sRkA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a67si2895189pgc.80.2019.04.01.05.06.16; Mon, 01 Apr 2019 05:06:32 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727025AbfDAMFU (ORCPT + 99 others); Mon, 1 Apr 2019 08:05:20 -0400 Received: from relmlor2.renesas.com ([210.160.252.172]:43566 "EHLO relmlie6.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726436AbfDAMFT (ORCPT ); Mon, 1 Apr 2019 08:05:19 -0400 X-IronPort-AV: E=Sophos;i="5.60,296,1549897200"; d="scan'208";a="11718073" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 01 Apr 2019 21:05:17 +0900 Received: from localhost.localdomain (unknown [10.166.17.210]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 6566E401EA64; Mon, 1 Apr 2019 21:05:17 +0900 (JST) From: Yoshihiro Shimoda To: kishon@ti.com, robh+dt@kernel.org, mark.rutland@arm.com Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Yoshihiro Shimoda Subject: [PATCH 0/3] phy: renesas: rcar-gen3-usb2: enable/disable independent irqs Date: Mon, 1 Apr 2019 21:01:20 +0900 Message-Id: <1554120083-29990-1-git-send-email-yoshihiro.shimoda.uh@renesas.com> 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 Since the previous code enabled/disabled the irqs both OHCI and EHCI, it is possible to cause unexpected interruptions. To avoid this, this patch creates multiple phy instances from phandle and enables/disables independent irqs by the instances. Yoshihiro Shimoda (3): dt-bindings: phy: rcar-gen3-phy-usb2: Revise #phy-cells property phy: renesas: rcar-gen3-usb2: Use pdev's device pointer on dev_vdbg() phy: renesas: rcar-gen3-usb2: enable/disable independent irqs .../devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 7 +- drivers/phy/renesas/phy-rcar-gen3-usb2.c | 191 +++++++++++++++++---- 2 files changed, 168 insertions(+), 30 deletions(-) -- 2.7.4