2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2015-02-23 13:09:50 +00:00
|
|
|
/**
|
|
|
|
* io.h - DesignWare USB3 DRD IO Header
|
|
|
|
*
|
2015-02-23 13:09:52 +00:00
|
|
|
* Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
|
2015-02-23 13:09:50 +00:00
|
|
|
*
|
|
|
|
* Authors: Felipe Balbi <balbi@ti.com>,
|
|
|
|
* Sebastian Andrzej Siewior <bigeasy@linutronix.de>
|
|
|
|
*
|
2015-02-23 13:09:52 +00:00
|
|
|
* Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/io.h) and ported
|
|
|
|
* to uboot.
|
|
|
|
*
|
|
|
|
* commit 2c4cbe6e5a : usb: dwc3: add tracepoints to aid debugging
|
|
|
|
*
|
2015-02-23 13:09:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DRIVERS_USB_DWC3_IO_H
|
|
|
|
#define __DRIVERS_USB_DWC3_IO_H
|
|
|
|
|
2019-11-14 19:57:39 +00:00
|
|
|
#include <cpu_func.h>
|
2015-02-23 13:09:54 +00:00
|
|
|
#include <asm/io.h>
|
2015-02-23 13:09:50 +00:00
|
|
|
|
2015-02-23 13:10:13 +00:00
|
|
|
#define CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE
|
2015-02-23 13:09:50 +00:00
|
|
|
static inline u32 dwc3_readl(void __iomem *base, u32 offset)
|
|
|
|
{
|
2015-10-30 15:24:06 +00:00
|
|
|
unsigned long offs = offset - DWC3_GLOBALS_REGS_START;
|
2015-02-23 13:09:50 +00:00
|
|
|
u32 value;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We requested the mem region starting from the Globals address
|
|
|
|
* space, see dwc3_probe in core.c.
|
|
|
|
* However, the offsets are given starting from xHCI address space.
|
|
|
|
*/
|
|
|
|
value = readl(base + offs);
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dwc3_writel(void __iomem *base, u32 offset, u32 value)
|
|
|
|
{
|
2015-10-30 15:24:06 +00:00
|
|
|
unsigned long offs = offset - DWC3_GLOBALS_REGS_START;
|
2015-02-23 13:09:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We requested the mem region starting from the Globals address
|
|
|
|
* space, see dwc3_probe in core.c.
|
|
|
|
* However, the offsets are given starting from xHCI address space.
|
|
|
|
*/
|
|
|
|
writel(value, base + offs);
|
|
|
|
}
|
|
|
|
|
2017-04-06 14:58:52 +00:00
|
|
|
static inline void dwc3_flush_cache(uintptr_t addr, int length)
|
2015-02-23 13:10:13 +00:00
|
|
|
{
|
|
|
|
flush_dcache_range(addr, addr + ROUND(length, CACHELINE_SIZE));
|
|
|
|
}
|
2015-02-23 13:09:50 +00:00
|
|
|
#endif /* __DRIVERS_USB_DWC3_IO_H */
|