mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Tuomas Tynkkynen <ttynkkynen@nvidia.com>
To: <balbi@ti.com>
Cc: <linux-tegra@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	<linux-usb@vger.kernel.org>, <swarren@wwwdotorg.org>,
	<gregkh@linuxfoundation.org>,
	Tuomas Tynkkynen <ttynkkynen@nvidia.com>
Subject: [PATCH 5/9] usb: phy: tegra: Register as an USB PHY.
Date: Sat, 29 Jun 2013 00:37:03 +0300	[thread overview]
Message-ID: <1372455427-20898-6-git-send-email-ttynkkynen@nvidia.com> (raw)
In-Reply-To: <1372455427-20898-1-git-send-email-ttynkkynen@nvidia.com>

Register the Tegra PHY device instances with the PHY subsystem so that
the Tegra EHCI driver can locate a PHY via the standard APIs.

Signed-off-by: Tuomas Tynkkynen <ttynkkynen@nvidia.com>
---
 drivers/usb/phy/phy-tegra-usb.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/drivers/usb/phy/phy-tegra-usb.c b/drivers/usb/phy/phy-tegra-usb.c
index ddcac0b..b81310d 100644
--- a/drivers/usb/phy/phy-tegra-usb.c
+++ b/drivers/usb/phy/phy-tegra-usb.c
@@ -927,6 +927,12 @@ static int tegra_usb_phy_probe(struct platform_device *pdev)
 	if (err < 0)
 		return err;
 
+	err = usb_add_phy_dev(&tegra_phy->u_phy);
+	if (err < 0) {
+		tegra_usb_phy_close(&tegra_phy->u_phy);
+		return err;
+	}
+
 	tegra_phy->u_phy.shutdown = tegra_usb_phy_close;
 	tegra_phy->u_phy.set_suspend = tegra_usb_phy_suspend;
 
@@ -934,6 +940,14 @@ static int tegra_usb_phy_probe(struct platform_device *pdev)
 	return 0;
 }
 
+static int tegra_usb_phy_remove(struct platform_device *pdev)
+{
+	struct tegra_usb_phy *tegra_phy = platform_get_drvdata(pdev);
+
+	usb_remove_phy(&tegra_phy->u_phy);
+	return 0;
+}
+
 static struct of_device_id tegra_usb_phy_id_table[] = {
 	{ .compatible = "nvidia,tegra20-usb-phy", },
 	{ },
@@ -942,6 +956,7 @@ MODULE_DEVICE_TABLE(of, tegra_usb_phy_id_table);
 
 static struct platform_driver tegra_usb_phy_driver = {
 	.probe		= tegra_usb_phy_probe,
+	.remove		= tegra_usb_phy_remove,
 	.driver		= {
 		.name	= "tegra-phy",
 		.owner	= THIS_MODULE,
-- 
1.8.1.5


  parent reply	other threads:[~2013-06-28 21:38 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-28 21:36 [PATCH 0/9] Tegra USB cleanup series Tuomas Tynkkynen
2013-06-28 21:36 ` [PATCH 1/9] usb: phy: tegra: Remove unnecessary 'dev' field Tuomas Tynkkynen
2013-06-28 21:37 ` [PATCH 2/9] usb: host: tegra: Remove leftover code Tuomas Tynkkynen
2013-06-28 21:37 ` [PATCH 3/9] usb: tegra: host: Remove references to plat data Tuomas Tynkkynen
2013-06-28 21:37 ` [PATCH 4/9] ARM: tegra: Remove USB platform data Tuomas Tynkkynen
2013-07-01 21:51   ` Stephen Warren
2013-06-28 21:37 ` Tuomas Tynkkynen [this message]
2013-07-01 21:53   ` [PATCH 5/9] usb: phy: tegra: Register as an USB PHY Stephen Warren
2013-06-28 21:37 ` [PATCH 6/9] usb: host: tegra: Locate a PHY via standard API Tuomas Tynkkynen
2013-06-28 21:37 ` [PATCH 7/9] usb: phy: tegra: Remove custom PHY locating APIs Tuomas Tynkkynen
2013-06-28 21:37 ` [PATCH 8/9] usb: phy: tegra: Use DT helpers for phy_type Tuomas Tynkkynen
2013-06-28 21:37 ` [PATCH 9/9] usb: phy: tegra: Use DT helpers for dr_mode Tuomas Tynkkynen
2013-07-01 22:02   ` Stephen Warren
2013-07-01 22:03 ` [PATCH 0/9] Tegra USB cleanup series Stephen Warren
2013-07-24 12:32   ` Felipe Balbi
2013-07-24 17:03     ` Stephen Warren

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=1372455427-20898-6-git-send-email-ttynkkynen@nvidia.com \
    --to=ttynkkynen@nvidia.com \
    --cc=balbi@ti.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=swarren@wwwdotorg.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®