[PATCH v2 03/22] usb: ulpi: Support device discovery via device properties
From: Stephen Boyd <hidden>
Date: 2016-08-26 18:54:02
Also in:
linux-arm-msm, linux-devicetree
From: Stephen Boyd <hidden>
Date: 2016-08-26 18:54:02
Also in:
linux-arm-msm, linux-devicetree
Quoting Heikki Krogerus (2016-08-24 00:31:34)
On Tue, Aug 23, 2016 at 12:58:07PM -0700, Stephen Boyd wrote:quoted
On Fri, Aug 5, 2016 at 2:27 PM, Stephen Boyd [off-list ref] wrote:quoted
Quoting Peter Chen (2016-07-08 02:04:58)quoted
On Thu, Jul 07, 2016 at 03:20:54PM -0700, Stephen Boyd wrote:quoted
@@ -39,6 +42,10 @@ static int ulpi_match(struct device *dev, struct device_driver *driver) struct ulpi *ulpi = to_ulpi_dev(dev); const struct ulpi_device_id *id; + /* Some ULPI devices don't have a product id so rely on OF match */ + if (ulpi->id.product == 0) + return of_driver_match_device(dev, driver); +How about using vendor id? It can't be 0, but pid may be 0. See: http://www.linux-usb.org/usb.idsHeikki suggested a product id of 0 would mean we need to use DT matching. Should it be changed to vendor id instead?Any comments here?It makes sense. I don't have any problem with that.
Ok. Having pid equal to 0 in DT/device properties seems wrong, so I think I'll be dropping those properties that this patch introduced and go back to always attempting to read the hardware when the device is populated. That will bring back the power sequencing problem though, so I have to think of some way to solve that. For now I'll just set the pid and vid to 0 when the power is off and we try to read and see how it goes.