diff mbox

[1/2] usb: chipidea: add CI_HDRC_TURN_VBUS_EARLY_ON for imx23

Message ID 1451407269-14905-1-git-send-email-stefan.wahren@i2se.com (mailing list archive)
State New, archived
Headers show

Commit Message

Stefan Wahren Dec. 29, 2015, 4:41 p.m. UTC
Until now the imx23 uses the imx27 platform flag. But the
imx23 needs the flag CI_HDRC_TURN_VBUS_EARLY_ON, too. So
fix this by adding a separate platform flag.

Suggested-by: Peter Chen <peter.chen@nxp.com>
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
---
 drivers/usb/chipidea/ci_hdrc_imx.c |    6 ++++++
 1 file changed, 6 insertions(+)

Comments

Stefan Wahren Jan. 17, 2016, 6:56 p.m. UTC | #1
Hi Peter,

> Stefan Wahren <stefan.wahren@i2se.com> hat am 29. Dezember 2015 um 17:41
> geschrieben:
>
>
> Until now the imx23 uses the imx27 platform flag. But the
> imx23 needs the flag CI_HDRC_TURN_VBUS_EARLY_ON, too. So
> fix this by adding a separate platform flag.
>
> Suggested-by: Peter Chen <peter.chen@nxp.com>
> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
> ---
> drivers/usb/chipidea/ci_hdrc_imx.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>

is the series okay?

Regards
Stefan
Peter Chen Jan. 18, 2016, 2:07 a.m. UTC | #2
On Sun, Jan 17, 2016 at 07:56:31PM +0100, Stefan Wahren wrote:
> Hi Peter,
> 
> > Stefan Wahren <stefan.wahren@i2se.com> hat am 29. Dezember 2015 um 17:41
> > geschrieben:
> >
> >
> > Until now the imx23 uses the imx27 platform flag. But the
> > imx23 needs the flag CI_HDRC_TURN_VBUS_EARLY_ON, too. So
> > fix this by adding a separate platform flag.
> >
> > Suggested-by: Peter Chen <peter.chen@nxp.com>
> > Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
> > ---
> > drivers/usb/chipidea/ci_hdrc_imx.c | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> 
> is the series okay?

Yes, it is ok, already at my patch queue
diff mbox

Patch

diff --git a/drivers/usb/chipidea/ci_hdrc_imx.c b/drivers/usb/chipidea/ci_hdrc_imx.c
index f14f4ab..b4605dd 100644
--- a/drivers/usb/chipidea/ci_hdrc_imx.c
+++ b/drivers/usb/chipidea/ci_hdrc_imx.c
@@ -28,6 +28,11 @@  struct ci_hdrc_imx_platform_flag {
 	bool runtime_pm;
 };
 
+static const struct ci_hdrc_imx_platform_flag imx23_usb_data = {
+	.flags = CI_HDRC_TURN_VBUS_EARLY_ON |
+		CI_HDRC_DISABLE_STREAMING,
+};
+
 static const struct ci_hdrc_imx_platform_flag imx27_usb_data = {
 		CI_HDRC_DISABLE_STREAMING,
 };
@@ -66,6 +71,7 @@  static const struct ci_hdrc_imx_platform_flag imx7d_usb_data = {
 };
 
 static const struct of_device_id ci_hdrc_imx_dt_ids[] = {
+	{ .compatible = "fsl,imx23-usb", .data = &imx23_usb_data},
 	{ .compatible = "fsl,imx28-usb", .data = &imx28_usb_data},
 	{ .compatible = "fsl,imx27-usb", .data = &imx27_usb_data},
 	{ .compatible = "fsl,imx6q-usb", .data = &imx6q_usb_data},