On Tue, Jun 14, 2016 at 6:14 PM, Frank Wang <frank.wang@xxxxxxxxxxxxxx> wrote:
Hi Heiko & Guenter,This would never be NULL. At issue is that you don't assign port_cfg
On 2016/6/14 22:00, Heiko StÃbner wrote:
Am Dienstag, 14. Juni 2016, 06:50:31 schrieb Guenter Roeck:
On Tue, Jun 14, 2016 at 6:27 AM, Heiko StÃbner <heiko@xxxxxxxxx> wrote:[...]
Am Montag, 13. Juni 2016, 10:10:10 schrieb Frank Wang:
The newer SoCs (rk3366, rk3399) take a different usb-phy IP block
than rk3288 and before, and most of phy-related registers are also
different from the past, so a new phy driver is required necessarily.
Signed-off-by: Frank Wang <frank.wang@xxxxxxxxxxxxxx>
---
Ok, that would be the other option - not creating the phy in the driver.Not really, at least not here - that port should not have port_id set+static int rockchip_usb2phy_init(struct phy *phy)if (!rport->port_cfg)
+{
+ struct rockchip_usb2phy_port *rport = phy_get_drvdata(phy);
+ struct rockchip_usb2phy *rphy = dev_get_drvdata(phy->dev.parent);
+ int ret;
+
return 0;
Otherwise the currently empty otg-port will cause null-pointer
dereferences
when it gets assigned in the devicetree already.
to USB2PHY_PORT_HOST.
Does it even make sense to instantiate the otg port ? Is it going to
do anything without port configuration ?
Well, I will put this conditional inside *_host_port_init(), if it is an
empty, the phy-device should not be created.
Something like the following:
--- a/drivers/phy/phy-rockchip-inno-usb2.c
+++ b/drivers/phy/phy-rockchip-inno-usb2.c
@@ -483,9 +483,13 @@ static int rockchip_usb2phy_host_port_init(struct
rockchip_usb2phy *rphy,
{
int ret;
- rport->port_id = USB2PHY_PORT_HOST;
rport->port_cfg = &rphy->phy_cfg->port_cfgs[USB2PHY_PORT_HOST];
+ if (!rport->port_cfg) {
+ dev_err(rphy->dev, "no host port-config provided.\n");
+ return -EINVAL;
+ }
if the port is _not_ a host port.