blob: 55a62808384dac39473d1adce27fdfe56a3afa65 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Jana Rapavaf93022c2011-12-05 11:07:00 +02002/*
3 * Copyright (C) 2011 Jana Rapava <fermata7@gmail.com>
4 * Copyright (C) 2011 CompuLab, Ltd. <www.compulab.co.il>
5 *
6 * Authors: Jana Rapava <fermata7@gmail.com>
7 * Igor Grinberg <grinberg@compulab.co.il>
8 *
9 * Based on:
10 * linux/drivers/usb/otg/ulpi_viewport.c
11 *
12 * Original Copyright follow:
13 * Copyright (C) 2011 Google, Inc.
Jana Rapavaf93022c2011-12-05 11:07:00 +020014 */
15
16#include <common.h>
17#include <asm/io.h>
Simon Glassc05ed002020-05-10 11:40:11 -060018#include <linux/delay.h>
Jana Rapavaf93022c2011-12-05 11:07:00 +020019#include <usb/ulpi.h>
20
21/* ULPI viewport control bits */
22#define ULPI_SS (1 << 27)
23#define ULPI_RWCTRL (1 << 29)
24#define ULPI_RWRUN (1 << 30)
25#define ULPI_WU (1 << 31)
26
27/*
28 * Wait for the ULPI request to complete
29 *
30 * @ulpi_viewport - the address of the viewport
31 * @mask - expected value to wait for
32 *
33 * returns 0 on mask match, ULPI_ERROR on time out.
34 */
Govindraj.R3e6e8092012-02-06 03:55:31 +000035static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
Jana Rapavaf93022c2011-12-05 11:07:00 +020036{
Tom Rini6e7df1d2023-01-10 11:19:45 -050037 int timeout = CFG_USB_ULPI_TIMEOUT;
Jana Rapavaf93022c2011-12-05 11:07:00 +020038
39 /* Wait for the bits in mask to become zero. */
40 while (--timeout) {
Govindraj.R3e6e8092012-02-06 03:55:31 +000041 if ((readl(ulpi_vp->viewport_addr) & mask) == 0)
Jana Rapavaf93022c2011-12-05 11:07:00 +020042 return 0;
43
44 udelay(1);
45 }
46
47 return ULPI_ERROR;
48}
49
50/*
51 * Wake the ULPI PHY up for communication
52 *
53 * returns 0 on success.
54 */
Govindraj.R3e6e8092012-02-06 03:55:31 +000055static int ulpi_wakeup(struct ulpi_viewport *ulpi_vp)
Jana Rapavaf93022c2011-12-05 11:07:00 +020056{
57 int err;
58
Govindraj.R3e6e8092012-02-06 03:55:31 +000059 if (readl(ulpi_vp->viewport_addr) & ULPI_SS)
Jana Rapavaf93022c2011-12-05 11:07:00 +020060 return 0; /* already awake */
61
Govindraj.R3e6e8092012-02-06 03:55:31 +000062 writel(ULPI_WU, ulpi_vp->viewport_addr);
Jana Rapavaf93022c2011-12-05 11:07:00 +020063
Govindraj.R3e6e8092012-02-06 03:55:31 +000064 err = ulpi_wait(ulpi_vp, ULPI_WU);
Jana Rapavaf93022c2011-12-05 11:07:00 +020065 if (err)
66 printf("ULPI wakeup timed out\n");
67
68 return err;
69}
70
71/*
72 * Issue a ULPI read/write request
73 *
74 * @value - the ULPI request
75 */
Govindraj.R3e6e8092012-02-06 03:55:31 +000076static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
Jana Rapavaf93022c2011-12-05 11:07:00 +020077{
78 int err;
79
Govindraj.R3e6e8092012-02-06 03:55:31 +000080 err = ulpi_wakeup(ulpi_vp);
Jana Rapavaf93022c2011-12-05 11:07:00 +020081 if (err)
82 return err;
83
Govindraj.R3e6e8092012-02-06 03:55:31 +000084 writel(value, ulpi_vp->viewport_addr);
Jana Rapavaf93022c2011-12-05 11:07:00 +020085
Govindraj.R3e6e8092012-02-06 03:55:31 +000086 err = ulpi_wait(ulpi_vp, ULPI_RWRUN);
Jana Rapavaf93022c2011-12-05 11:07:00 +020087 if (err)
88 printf("ULPI request timed out\n");
89
90 return err;
91}
92
Govindraj.R3e6e8092012-02-06 03:55:31 +000093int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
Jana Rapavaf93022c2011-12-05 11:07:00 +020094{
Mateusz Kulikowskid3d844f2016-03-31 23:12:21 +020095 u32 addr = (uintptr_t)reg & 0xFF;
96 u32 val = ULPI_RWRUN | ULPI_RWCTRL | addr << 16 | (value & 0xff);
Jana Rapavaf93022c2011-12-05 11:07:00 +020097
Govindraj.R3e6e8092012-02-06 03:55:31 +000098 val |= (ulpi_vp->port_num & 0x7) << 24;
99 return ulpi_request(ulpi_vp, val);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200100}
101
Govindraj.R3e6e8092012-02-06 03:55:31 +0000102u32 ulpi_read(struct ulpi_viewport *ulpi_vp, u8 *reg)
Jana Rapavaf93022c2011-12-05 11:07:00 +0200103{
Igor Grinberg42561012011-12-12 12:08:33 +0200104 int err;
Mateusz Kulikowskid3d844f2016-03-31 23:12:21 +0200105 u32 val = ULPI_RWRUN | ((uintptr_t)reg & 0xFF) << 16;
Jana Rapavaf93022c2011-12-05 11:07:00 +0200106
Govindraj.R3e6e8092012-02-06 03:55:31 +0000107 val |= (ulpi_vp->port_num & 0x7) << 24;
108 err = ulpi_request(ulpi_vp, val);
Jana Rapavaf93022c2011-12-05 11:07:00 +0200109 if (err)
110 return err;
111
Govindraj.R3e6e8092012-02-06 03:55:31 +0000112 return (readl(ulpi_vp->viewport_addr) >> 8) & 0xff;
Jana Rapavaf93022c2011-12-05 11:07:00 +0200113}