diff options
Diffstat (limited to 'drivers/usb/phy/phy-mxs-usb.c')
-rw-r--r-- | drivers/usb/phy/phy-mxs-usb.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/usb/phy/phy-mxs-usb.c b/drivers/usb/phy/phy-mxs-usb.c index 00972eca04e7..0e0c41587a08 100644 --- a/drivers/usb/phy/phy-mxs-usb.c +++ b/drivers/usb/phy/phy-mxs-usb.c | |||
@@ -125,6 +125,11 @@ static const struct mxs_phy_data imx6sl_phy_data = { | |||
125 | MXS_PHY_NEED_IP_FIX, | 125 | MXS_PHY_NEED_IP_FIX, |
126 | }; | 126 | }; |
127 | 127 | ||
128 | static const struct mxs_phy_data vf610_phy_data = { | ||
129 | .flags = MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS | | ||
130 | MXS_PHY_NEED_IP_FIX, | ||
131 | }; | ||
132 | |||
128 | static const struct mxs_phy_data imx6sx_phy_data = { | 133 | static const struct mxs_phy_data imx6sx_phy_data = { |
129 | .flags = MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS | | 134 | .flags = MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS | |
130 | MXS_PHY_NEED_IP_FIX, | 135 | MXS_PHY_NEED_IP_FIX, |
@@ -135,6 +140,7 @@ static const struct of_device_id mxs_phy_dt_ids[] = { | |||
135 | { .compatible = "fsl,imx6sl-usbphy", .data = &imx6sl_phy_data, }, | 140 | { .compatible = "fsl,imx6sl-usbphy", .data = &imx6sl_phy_data, }, |
136 | { .compatible = "fsl,imx6q-usbphy", .data = &imx6q_phy_data, }, | 141 | { .compatible = "fsl,imx6q-usbphy", .data = &imx6q_phy_data, }, |
137 | { .compatible = "fsl,imx23-usbphy", .data = &imx23_phy_data, }, | 142 | { .compatible = "fsl,imx23-usbphy", .data = &imx23_phy_data, }, |
143 | { .compatible = "fsl,vf610-usbphy", .data = &vf610_phy_data, }, | ||
138 | { /* sentinel */ } | 144 | { /* sentinel */ } |
139 | }; | 145 | }; |
140 | MODULE_DEVICE_TABLE(of, mxs_phy_dt_ids); | 146 | MODULE_DEVICE_TABLE(of, mxs_phy_dt_ids); |