/* SPDX-License-Identifier: GPL-2.0 */ /* * io.h - DesignWare USB3 DRD IO Header * * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com * * Authors: Felipe Balbi <[email protected]>, * Sebastian Andrzej Siewior <[email protected]> */ #ifndef __DRIVERS_USB_DWC3_IO_H #define __DRIVERS_USB_DWC3_IO_H #include <linux/io.h> #include "trace.h" #include "debug.h" #include "core.h" static inline u32 dwc3_readl(void __iomem *base, u32 offset) { … } static inline void dwc3_writel(void __iomem *base, u32 offset, u32 value) { … } #endif /* __DRIVERS_USB_DWC3_IO_H */