blob: f660d53231bb739f6377e2d8344206e4464285fe [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +05302/**
3 * io.h - DesignWare USB3 DRD IO Header
4 *
Kishon Vijay Abraham I30c31d52015-02-23 18:39:52 +05305 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +05306 *
7 * Authors: Felipe Balbi <balbi@ti.com>,
8 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
9 *
Kishon Vijay Abraham I30c31d52015-02-23 18:39:52 +053010 * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/io.h) and ported
11 * to uboot.
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053012 *
Kishon Vijay Abraham I30c31d52015-02-23 18:39:52 +053013 * commit 2c4cbe6e5a : usb: dwc3: add tracepoints to aid debugging
14 *
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053015 */
16
17#ifndef __DRIVERS_USB_DWC3_IO_H
18#define __DRIVERS_USB_DWC3_IO_H
19
Kishon Vijay Abraham I9848e572015-02-23 18:39:54 +053020#include <asm/io.h>
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053021
Kishon Vijay Abraham I526a50f2015-02-23 18:40:13 +053022#define CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053023static inline u32 dwc3_readl(void __iomem *base, u32 offset)
24{
Michal Simek01c94c42015-10-30 16:24:06 +010025 unsigned long offs = offset - DWC3_GLOBALS_REGS_START;
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053026 u32 value;
27
28 /*
29 * We requested the mem region starting from the Globals address
30 * space, see dwc3_probe in core.c.
31 * However, the offsets are given starting from xHCI address space.
32 */
33 value = readl(base + offs);
34
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053035 return value;
36}
37
38static inline void dwc3_writel(void __iomem *base, u32 offset, u32 value)
39{
Michal Simek01c94c42015-10-30 16:24:06 +010040 unsigned long offs = offset - DWC3_GLOBALS_REGS_START;
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053041
42 /*
43 * We requested the mem region starting from the Globals address
44 * space, see dwc3_probe in core.c.
45 * However, the offsets are given starting from xHCI address space.
46 */
47 writel(value, base + offs);
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053048}
49
Philipp Tomsichb7bf4a92017-04-06 16:58:52 +020050static inline void dwc3_flush_cache(uintptr_t addr, int length)
Kishon Vijay Abraham I526a50f2015-02-23 18:40:13 +053051{
52 flush_dcache_range(addr, addr + ROUND(length, CACHELINE_SIZE));
53}
Kishon Vijay Abraham I85d5e702015-02-23 18:39:50 +053054#endif /* __DRIVERS_USB_DWC3_IO_H */