mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Kishon Vijay Abraham I <kishon@ti.com>
To: <gregkh@linuxfoundation.org>
Cc: <kishon@ti.com>, <linux-kernel@vger.kernel.org>
Subject: [PATCH 01/11] phy: omap-usb2: Use generic clock names "wkupclk" and "refclk"
Date: Fri, 16 May 2014 18:32:56 +0530	[thread overview]
Message-ID: <1400245387-14445-2-git-send-email-kishon@ti.com> (raw)
In-Reply-To: <1400245387-14445-1-git-send-email-kishon@ti.com>

From: Roger Quadros <rogerq@ti.com>

As clocks might be named differently on multiple platforms, use a generic
name in the driver and allow device tree node to specify the platform
specific clock name.

Reviewed-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
---
 drivers/phy/phy-omap-usb2.c |   30 +++++++++++++++++++++++-------
 1 file changed, 23 insertions(+), 7 deletions(-)

diff --git a/drivers/phy/phy-omap-usb2.c b/drivers/phy/phy-omap-usb2.c
index a2205a8..7007c11 100644
--- a/drivers/phy/phy-omap-usb2.c
+++ b/drivers/phy/phy-omap-usb2.c
@@ -275,18 +275,34 @@ static int omap_usb2_probe(struct platform_device *pdev)
 	if (IS_ERR(phy_provider))
 		return PTR_ERR(phy_provider);
 
-	phy->wkupclk = devm_clk_get(phy->dev, "usb_phy_cm_clk32k");
+	phy->wkupclk = devm_clk_get(phy->dev, "wkupclk");
 	if (IS_ERR(phy->wkupclk)) {
-		dev_err(&pdev->dev, "unable to get usb_phy_cm_clk32k\n");
-		return PTR_ERR(phy->wkupclk);
+		dev_warn(&pdev->dev, "unable to get wkupclk, trying old name\n");
+		phy->wkupclk = devm_clk_get(phy->dev, "usb_phy_cm_clk32k");
+		if (IS_ERR(phy->wkupclk)) {
+			dev_err(&pdev->dev, "unable to get usb_phy_cm_clk32k\n");
+			return PTR_ERR(phy->wkupclk);
+		} else {
+			dev_warn(&pdev->dev,
+				 "found usb_phy_cm_clk32k, please fix DTS\n");
+		}
 	}
 	clk_prepare(phy->wkupclk);
 
-	phy->optclk = devm_clk_get(phy->dev, "usb_otg_ss_refclk960m");
-	if (IS_ERR(phy->optclk))
-		dev_vdbg(&pdev->dev, "unable to get refclk960m\n");
-	else
+	phy->optclk = devm_clk_get(phy->dev, "refclk");
+	if (IS_ERR(phy->optclk)) {
+		dev_dbg(&pdev->dev, "unable to get refclk, trying old name\n");
+		phy->optclk = devm_clk_get(phy->dev, "usb_otg_ss_refclk960m");
+		if (IS_ERR(phy->optclk)) {
+			dev_dbg(&pdev->dev,
+				"unable to get usb_otg_ss_refclk960m\n");
+		} else {
+			dev_warn(&pdev->dev,
+				 "found usb_otg_ss_refclk960m, please fix DTS\n");
+		}
+	} else {
 		clk_prepare(phy->optclk);
+	}
 
 	usb_add_phy_dev(&phy->phy);
 
-- 
1.7.9.5


  reply	other threads:[~2014-05-16 13:06 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-16 13:02 [GIT PULL 00/11] PHY: for 3.16 Kishon Vijay Abraham I
2014-05-16 13:02 ` Kishon Vijay Abraham I [this message]
2014-05-16 13:02 ` [PATCH 02/11] phy: omap-usb2: Add clock names to Documentation binding Kishon Vijay Abraham I
2014-05-16 13:02 ` [PATCH 03/11] PHY: Exynos: fix SATA phy license typo Kishon Vijay Abraham I
2014-05-16 13:02 ` [PATCH 04/11] phy: exynos-mipi-video: fix check on array index Kishon Vijay Abraham I
2014-05-16 13:03 ` [PATCH 05/11] phy: kona2: use 'select GENERIC_PHY' in Kconfig Kishon Vijay Abraham I
2014-05-16 13:03 ` [PATCH 06/11] Documentation: Document Exynos5 USB 3.0 DRD PHY Kishon Vijay Abraham I
2014-05-16 13:03 ` [PATCH 07/11] phy: Add new Exynos5 USB 3.0 PHY driver Kishon Vijay Abraham I
2014-05-16 13:03 ` [PATCH 08/11] phy: exynos5-usbdrd: Add facility for VBUS supply Kishon Vijay Abraham I
2014-05-16 13:03 ` [PATCH 09/11] phy: sunxi: Rework phy initialization Kishon Vijay Abraham I
2014-05-16 13:03 ` [PATCH 10/11] Documentation: dt: Add new compatible for the A31 USB Phy Kishon Vijay Abraham I
2014-05-16 13:03 ` [PATCH 11/11] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support Kishon Vijay Abraham I
2014-05-20  0:57 ` [GIT PULL 00/11] PHY: for 3.16 Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1400245387-14445-2-git-send-email-kishon@ti.com \
    --to=kishon@ti.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®