[PATCH AUTOSEL 6.19-5.15] phy: mvebu-cp110-utmi: fix dr_mode property read from dts
From: Sasha Levin
Date: Wed Feb 18 2026 - 21:23:51 EST
From: Aleksandar Gerasimovski <aleksandar.gerasimovski@xxxxxxxxxx>
[ Upstream commit e2ce913452ab56b3330539cc443b97b7ea8c3a1a ]
The problem with the current implementation is that it does not consider
that the USB controller can have multiple PHY handles with different
arguments count, as for example we have in our cn9131 based platform:
"phys = <&cp0_comphy1 0>, <&cp0_utmi0>;".
In such case calling "of_usb_get_dr_mode_by_phy" with -1 (no phy-cells)
leads to not proper phy detection, taking the "marvell,cp110-utmi-phy"
dts definition we can call the "of_usb_get_dr_mode_by_phy" with 0
(#phy-cells = <0>) and safely look for that phy.
Signed-off-by: Aleksandar Gerasimovski <aleksandar.gerasimovski@xxxxxxxxxx>
Link: https://patch.msgid.link/20260106150643.922110-1-aleksandar.gerasimovski@xxxxxxxxxx
Signed-off-by: Vinod Koul <vkoul@xxxxxxxxxx>
Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>
---
LLM Generated explanations, may be completely bogus:
Now I have a clear understanding of the bug. Let me verify the behavior
difference more carefully:
## Understanding the Bug
When `arg0 = -1`:
- The function uses `of_parse_phandle()` (line 303-306), which simply
returns the nth phandle node **without** parsing `#phy-cells`. It sets
`args.args_count = 0`.
- The matching at line 316-317: `args.np == np && (args.args_count == 0
|| args.args[0] == arg0)` — since `args_count = 0`, it matches on the
`np` comparison alone.
The problem: When the controller has `phys = <&cp0_comphy1 0>,
<&cp0_utmi0>;`, there are two phandle entries. The first (`cp0_comphy1`)
has `#phy-cells = <1>` (it takes argument `0`), and the second
(`cp0_utmi0`) has `#phy-cells = <0>`.
With `arg0 = -1`, `of_parse_phandle()` is used, which doesn't understand
`#phy-cells`. It simply iterates through raw phandle entries. Since
`cp0_comphy1` has an extra cell (`0`), `of_parse_phandle()` at index 0
returns `cp0_comphy1`, at index 1 it might return the `0` argument cell
(not a valid phandle) rather than `cp0_utmi0`. This leads to incorrect
PHY matching — the function can't properly find the UTMI PHY when mixed
`#phy-cells` counts are present.
With `arg0 = 0`:
- The function uses `of_parse_phandle_with_args()` (line 307-312), which
correctly parses `#phy-cells` for each phandle and properly skips over
argument cells. This means index 0 correctly refers to `cp0_comphy1`
(with its argument `0`) and index 1 correctly refers to `cp0_utmi0`.
- At line 316-317: for `cp0_utmi0`, `args.args_count = 0` (since `#phy-
cells = <0>`), so the match succeeds correctly.
This is a real functional bug fix — on platforms with mixed PHY types,
the UTMI PHY won't be correctly identified for its dual-role mode,
potentially causing the USB port to be configured incorrectly
(defaulting to HOST mode with a warning instead of detecting the correct
mode).
## Stable Kernel Criteria Assessment
1. **Fixes a real bug**: Yes — on cn9131-based platforms (and likely
others) with mixed PHY types, the UTMI PHY dr_mode detection fails,
leading to incorrect USB configuration.
2. **Obviously correct and tested**: The fix is a one-line change from
`-1` to `0`. The commit author is from Belden (likely has the
hardware). The change matches the documented `#phy-cells = <0>` for
this PHY type. Using `of_parse_phandle_with_args()` (triggered by
arg0 >= 0) is the correct approach when different PHYs have different
`#phy-cells` counts.
3. **Small and contained**: Single character change in one file. Minimal
risk.
4. **No new features**: This is purely a bug fix.
5. **User impact**: Without this fix, USB dual-role mode detection fails
on affected platforms. The PHY defaults to HOST mode when it might
need to be PERIPHERAL mode (or vice versa), which means USB
functionality is broken for those configurations.
## Risk Assessment
- **Risk**: Extremely low. The change from `-1` to `0` for a PHY with
`#phy-cells = <0>` is semantically equivalent for single-PHY
configurations. For multi-PHY configurations with mixed `#phy-cells`,
it's a correctness fix.
- **Regression potential**: Very low. The `of_parse_phandle_with_args()`
path is well-tested across the kernel. The only behavior change is
that mixed-PHY configurations now work correctly.
- **Scope**: Single driver, single line, Marvell ARM platform specific.
## Verification
- **Function `of_usb_get_dr_mode_by_phy` analyzed**: Read the
implementation at `drivers/usb/common/common.c:290-331`. Verified that
`arg0 = -1` uses `of_parse_phandle()` (no `#phy-cells` awareness)
while `arg0 >= 0` uses `of_parse_phandle_with_args()` (proper `#phy-
cells` parsing).
- **Device tree binding confirmed**: The Explore agent verified that
`Documentation/devicetree/bindings/phy/marvell,armada-cp110-utmi-
phy.yaml` specifies `#phy-cells: const: 0`, meaning arg0 = 0 is the
correct semantic match.
- **Driver history verified**: `git log` shows the driver was introduced
in commit `2fc989f74b8da` ("drivers: phy: add support for Armada CP110
UTMI PHY"), and the `-1` argument has been there since inception. The
file has had only 3 subsequent commits before this fix, none related
to dr_mode.
- **Matching logic verified**: At line 316-317, when `args.args_count ==
0` (which is the case for `#phy-cells = <0>`), the match succeeds on
`args.np == np` alone, so the value `0` doesn't cause a spurious
mismatch.
- **Bug mechanism verified**: With mixed `#phy-cells` (e.g., `phys =
<&cp0_comphy1 0>, <&cp0_utmi0>`), `of_parse_phandle()` (used with
arg0=-1) doesn't account for the argument cell `0` after
`cp0_comphy1`, leading to incorrect phandle indexing.
## Conclusion
This is a clear, minimal, one-line bug fix for incorrect device tree PHY
matching on Marvell CP110 UTMI platforms. It fixes a real functional
issue (incorrect USB dual-role mode detection) that affects users with
mixed-PHY configurations. The fix is obviously correct, has near-zero
regression risk, and follows the established pattern used by other PHY
drivers.
**YES**
drivers/phy/marvell/phy-mvebu-cp110-utmi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/phy/marvell/phy-mvebu-cp110-utmi.c b/drivers/phy/marvell/phy-mvebu-cp110-utmi.c
index 59903f86b13f5..dd3e515a8e865 100644
--- a/drivers/phy/marvell/phy-mvebu-cp110-utmi.c
+++ b/drivers/phy/marvell/phy-mvebu-cp110-utmi.c
@@ -338,7 +338,7 @@ static int mvebu_cp110_utmi_phy_probe(struct platform_device *pdev)
return -ENOMEM;
}
- port->dr_mode = of_usb_get_dr_mode_by_phy(child, -1);
+ port->dr_mode = of_usb_get_dr_mode_by_phy(child, 0);
if ((port->dr_mode != USB_DR_MODE_HOST) &&
(port->dr_mode != USB_DR_MODE_PERIPHERAL)) {
dev_err(&pdev->dev,
--
2.51.0