diff options
author | Li Jun <jun.li@nxp.com> | 2019-03-21 09:00:10 +0800 |
---|---|---|
committer | Li Jun <jun.li@nxp.com> | 2019-03-21 17:48:42 +0800 |
commit | 4dad5065f1088197884de992be9adfed228197d9 (patch) | |
tree | dbca4435eb610e41bc2104c971ea7a841411c51f /drivers/usb/chipidea | |
parent | 04f7ee7c9e9b9e0aad42001c0bae54af3997297c (diff) |
Revert "MLK-20177-3 usb: chipidea: imx: disable stream mode for imx8mm"
This reverts commit ae7756f53980f6d6bde1a72ea0798c5341c764fb.
Root cause identified, the issue of stream mode only happens
on imx8mm DDR4 board, because the DDR QoS setting is not correct.
After the Qos setting change to be default value on imx8mm DDR4
board, we can enable stream mode for USB device mode now.
Acked-by: Peter Chen <peter.chen@nxp.com>
Signed-off-by: Li Jun <jun.li@nxp.com>
Diffstat (limited to 'drivers/usb/chipidea')
-rw-r--r-- | drivers/usb/chipidea/ci_hdrc_imx.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/usb/chipidea/ci_hdrc_imx.c b/drivers/usb/chipidea/ci_hdrc_imx.c index fb596ea19c0c..483e89ce1800 100644 --- a/drivers/usb/chipidea/ci_hdrc_imx.c +++ b/drivers/usb/chipidea/ci_hdrc_imx.c @@ -93,11 +93,6 @@ static const struct ci_hdrc_imx_platform_flag imx8qm_usb_data = { .flags = CI_HDRC_SUPPORTS_RUNTIME_PM, }; -static const struct ci_hdrc_imx_platform_flag imx8mm_usb_data = { - .flags = CI_HDRC_SUPPORTS_RUNTIME_PM | - CI_HDRC_DISABLE_DEVICE_STREAMING, -}; - 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}, @@ -109,7 +104,6 @@ static const struct of_device_id ci_hdrc_imx_dt_ids[] = { { .compatible = "fsl,imx7d-usb", .data = &imx7d_usb_data}, { .compatible = "fsl,imx7ulp-usb", .data = &imx7ulp_usb_data}, { .compatible = "fsl,imx8qm-usb", .data = &imx8qm_usb_data}, - { .compatible = "fsl,imx8mm-usb", .data = &imx8mm_usb_data}, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, ci_hdrc_imx_dt_ids); |