diff options
author | Peter Chen <peter.chen@nxp.com> | 2019-04-28 10:35:31 +0800 |
---|---|---|
committer | Peter Chen <peter.chen@nxp.com> | 2019-06-14 17:39:43 +0800 |
commit | d1609c312d42f3bdfe7df9d4dd9d5b2c7ace90f4 (patch) | |
tree | a2f1bff97772544cb9586bcac6b6b98acab8dfa2 /drivers/usb/chipidea/usbmisc_imx.c | |
parent | 8ea5b2abd07e2280a332bd9c1a7f4dd15b9b6c13 (diff) | |
download | linux-d1609c312d42f3bdfe7df9d4dd9d5b2c7ace90f4.tar.gz linux-d1609c312d42f3bdfe7df9d4dd9d5b2c7ace90f4.tar.bz2 linux-d1609c312d42f3bdfe7df9d4dd9d5b2c7ace90f4.zip |
usb: chipidea: imx: add imx7ulp support
In this commit, we add CI_HDRC_PMQOS to avoid system entering idle,
at imx7ulp, if the system enters idle, the DMA will stop, so the USB
transfer can't work at this case.
Signed-off-by: Peter Chen <peter.chen@nxp.com>
Diffstat (limited to 'drivers/usb/chipidea/usbmisc_imx.c')
-rw-r--r-- | drivers/usb/chipidea/usbmisc_imx.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/chipidea/usbmisc_imx.c b/drivers/usb/chipidea/usbmisc_imx.c index d8b67e150b12..b7a5727d0c8a 100644 --- a/drivers/usb/chipidea/usbmisc_imx.c +++ b/drivers/usb/chipidea/usbmisc_imx.c @@ -763,6 +763,10 @@ static const struct of_device_id usbmisc_imx_dt_ids[] = { .compatible = "fsl,imx7d-usbmisc", .data = &imx7d_usbmisc_ops, }, + { + .compatible = "fsl,imx7ulp-usbmisc", + .data = &imx7d_usbmisc_ops, + }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, usbmisc_imx_dt_ids); |