layerscape: add 64b/32b target for ls1012ardb device
[openwrt/openwrt.git] / package / boot / uboot-layerscape / patches / 0023-drivers-usb-fsl-add-USB-ULPI-init-code.patch
1 From 271adb5c0546b080fb350a41520c600a16739f1a Mon Sep 17 00:00:00 2001
2 From: Rajesh Bhagat <rajesh.bhagat@nxp.com>
3 Date: Fri, 6 May 2016 09:05:29 +0530
4 Subject: [PATCH 23/93] drivers: usb: fsl: add USB ULPI init code
5
6 This adds the required code to set up a ULPI USB port, for
7 new NXP USB PHY used in QorIQ platforms.
8
9 To use this both CONFIG_USB_ULPI and CONFIG_USB_ULPI_VIEWPORT
10 have to be set in the board configuration file.
11
12 Signed-off-by: Rajesh Bhagat <rajesh.bhagat@nxp.com>
13 ---
14 drivers/usb/host/ehci-fsl.c | 21 +++++++++++++++++++++
15 1 file changed, 21 insertions(+)
16
17 diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c
18 index 97b7f14..3f06345 100644
19 --- a/drivers/usb/host/ehci-fsl.c
20 +++ b/drivers/usb/host/ehci-fsl.c
21 @@ -16,6 +16,9 @@
22 #include <hwconfig.h>
23 #include <fsl_usb.h>
24 #include <fdt_support.h>
25 +#ifdef CONFIG_USB_ULPI
26 +#include <usb/ulpi.h>
27 +#endif
28
29 #include "ehci.h"
30
31 @@ -50,6 +53,10 @@ int ehci_hcd_init(int index, enum usb_init_type init,
32 const char *phy_type = NULL;
33 size_t len;
34 char current_usb_controller[5];
35 +#ifdef CONFIG_USB_ULPI
36 + int ret;
37 + struct ulpi_viewport ulpi_vp;
38 +#endif
39 #ifdef CONFIG_SYS_FSL_USB_INTERNAL_UTMI_PHY
40 char usb_phy[5];
41
42 @@ -126,6 +133,20 @@ int ehci_hcd_init(int index, enum usb_init_type init,
43 udelay(1000); /* delay required for PHY Clk to appear */
44 if (!usb_phy_clk_valid(ehci))
45 return -EINVAL;
46 +
47 +#ifdef CONFIG_USB_ULPI
48 + ulpi_vp.viewport_addr = (u32)&ehci->ulpi_viewpoint;
49 + ulpi_vp.port_num = 0;
50 +
51 + ret = ulpi_init(&ulpi_vp);
52 + if (ret) {
53 + puts("NXP ULPI viewport init failed\n");
54 + return -1;
55 + }
56 +
57 + ulpi_set_vbus(&ulpi_vp, 1, 1);
58 + ulpi_set_vbus_indicator(&ulpi_vp, 1, 1, 1);
59 +#endif
60 out_le32(&(*hcor)->or_portsc[0], PORT_PTS_ULPI);
61 }
62
63 --
64 1.7.9.5
65