1 // SPDX-License-Identifier: GPL-2.0
3 * OMAP ulpi viewport support
4 * Based on drivers/usb/ulpi/ulpi-viewport.c
6 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
7 * Author: Govindraj R <govindraj.raja@ti.com>
14 #define OMAP_ULPI_WR_OPSEL (2 << 22)
15 #define OMAP_ULPI_RD_OPSEL (3 << 22)
16 #define OMAP_ULPI_START (1 << 31)
19 * Wait for having ulpi in done state
21 static int ulpi_wait(struct ulpi_viewport *ulpi_vp, u32 mask)
23 int timeout = CONFIG_USB_ULPI_TIMEOUT;
26 if (!(readl(ulpi_vp->viewport_addr) & mask))
36 * Issue a ULPI read/write request
38 static int ulpi_request(struct ulpi_viewport *ulpi_vp, u32 value)
42 writel(value, ulpi_vp->viewport_addr);
44 err = ulpi_wait(ulpi_vp, OMAP_ULPI_START);
46 debug("ULPI request timed out\n");
51 int ulpi_write(struct ulpi_viewport *ulpi_vp, u8 *reg, u32 value)
53 u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
54 OMAP_ULPI_WR_OPSEL | ((u32)reg << 16) | (value & 0xff);
56 return ulpi_request(ulpi_vp, val);
59 u32 ulpi_read(struct ulpi_viewport *ulpi_vp, u8 *reg)
62 u32 val = OMAP_ULPI_START | (((ulpi_vp->port_num + 1) & 0xf) << 24) |
63 OMAP_ULPI_RD_OPSEL | ((u32)reg << 16);
65 err = ulpi_request(ulpi_vp, val);
69 return readl(ulpi_vp->viewport_addr) & 0xff;