From: Aaron Kling via B4 Relay <devnull+webgeek1234.gmail.com@kernel.org>
To: JC Kuo <jckuo@nvidia.com>, Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Thierry Reding <thierry.reding@gmail.com>,
Jonathan Hunter <jonathanh@nvidia.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>
Cc: linux-phy@lists.infradead.org, linux-tegra@vger.kernel.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
Aaron Kling <webgeek1234@gmail.com>
Subject: [PATCH v2 2/2] phy: tegra: xusb: Default otg mode to peripheral
Date: Tue, 06 May 2025 12:09:18 -0500 [thread overview]
Message-ID: <20250506-xusb-peripheral-v2-2-bfbe00671389@gmail.com> (raw)
In-Reply-To: <20250506-xusb-peripheral-v2-0-bfbe00671389@gmail.com>
From: Aaron Kling <webgeek1234@gmail.com>
Currently, if usb-role-switch is set and role-switch-default-mode is
not, a xusb port will be inoperable until that port is hotplugged,
because the driver defaults to role none. Instead of requiring all
devices to set the default mode, assume that the port is primarily
intended for use in device mode.
Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
---
drivers/phy/tegra/xusb.c | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/drivers/phy/tegra/xusb.c b/drivers/phy/tegra/xusb.c
index 79d4814d758d5e1f0e8200d61e131606adbb0e2d..22338f3f24a0794c22544a0e16e0fc706c4fb6d7 100644
--- a/drivers/phy/tegra/xusb.c
+++ b/drivers/phy/tegra/xusb.c
@@ -726,18 +726,15 @@ static int tegra_xusb_setup_usb_role_switch(struct tegra_xusb_port *port)
static void tegra_xusb_parse_usb_role_default_mode(struct tegra_xusb_port *port)
{
- enum usb_role role = USB_ROLE_NONE;
+ /* Most switchable usb ports are normally used in device mode */
+ enum usb_role role = USB_ROLE_DEVICE;
enum usb_dr_mode mode = usb_get_role_switch_default_mode(&port->dev);
if (mode == USB_DR_MODE_HOST)
role = USB_ROLE_HOST;
- else if (mode == USB_DR_MODE_PERIPHERAL)
- role = USB_ROLE_DEVICE;
- if (role != USB_ROLE_NONE) {
- usb_role_switch_set_role(port->usb_role_sw, role);
- dev_dbg(&port->dev, "usb role default mode is %s", modes[mode]);
- }
+ usb_role_switch_set_role(port->usb_role_sw, role);
+ dev_dbg(&port->dev, "usb role default mode is %s", modes[mode]);
}
static int tegra_xusb_usb2_port_parse_dt(struct tegra_xusb_usb2_port *usb2)
--
2.48.1
next prev parent reply other threads:[~2025-05-06 17:09 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-06 17:09 [PATCH v2 0/2] phy: tegra: xusb: Default otg mode to peripheral Aaron Kling via B4 Relay
2025-05-06 17:09 ` [PATCH v2 1/2] dt-bindings: phy: tegra-xusb: Document role-switch-default-mode Aaron Kling via B4 Relay
2025-05-06 17:09 ` Aaron Kling via B4 Relay [this message]
2025-05-07 10:48 ` [PATCH v2 0/2] phy: tegra: xusb: Default otg mode to peripheral Jon Hunter
2025-05-13 20:39 ` Aaron Kling
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=20250506-xusb-peripheral-v2-2-bfbe00671389@gmail.com \
--to=devnull+webgeek1234.gmail.com@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jckuo@nvidia.com \
--cc=jonathanh@nvidia.com \
--cc=kishon@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-tegra@vger.kernel.org \
--cc=robh@kernel.org \
--cc=thierry.reding@gmail.com \
--cc=vkoul@kernel.org \
--cc=webgeek1234@gmail.com \
/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;
as well as URLs for NNTP newsgroup(s).