Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

usb: phy: mxs: add imx6sx support

Add imx6sx support

Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>

authored by

Peter Chen and committed by
Felipe Balbi
43f3634f 6d5c1c77

+7 -1
+7 -1
drivers/usb/phy/phy-mxs-usb.c
··· 1 1 /* 2 - * Copyright 2012-2013 Freescale Semiconductor, Inc. 2 + * Copyright 2012-2014 Freescale Semiconductor, Inc. 3 3 * Copyright (C) 2012 Marek Vasut <marex@denx.de> 4 4 * on behalf of DENX Software Engineering GmbH 5 5 * ··· 125 125 MXS_PHY_NEED_IP_FIX, 126 126 }; 127 127 128 + static const struct mxs_phy_data imx6sx_phy_data = { 129 + .flags = MXS_PHY_DISCONNECT_LINE_WITHOUT_VBUS | 130 + MXS_PHY_NEED_IP_FIX, 131 + }; 132 + 128 133 static const struct of_device_id mxs_phy_dt_ids[] = { 134 + { .compatible = "fsl,imx6sx-usbphy", .data = &imx6sx_phy_data, }, 129 135 { .compatible = "fsl,imx6sl-usbphy", .data = &imx6sl_phy_data, }, 130 136 { .compatible = "fsl,imx6q-usbphy", .data = &imx6q_phy_data, }, 131 137 { .compatible = "fsl,imx23-usbphy", .data = &imx23_phy_data, },