summaryrefslogtreecommitdiff
path: root/drivers/usb/cdns3/io.h
blob: c16edbf54b8bd8649f4bcf5d4c8144915f79ac78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
 * io.h - Cadence USB3 IO Header
 *
 * Copyright (C) 2016 Cadence Design Systems - https://www.cadence.com/
 *
 * Authors: Rafal Ozieblo <rafalo@cadence.com>,
 *
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */

#ifndef __DRIVERS_USB_CDNS_IO_H
#define __DRIVERS_USB_CDNS_IO_H

#include <linux/io.h>

static inline u32 cdns_readl(uint32_t __iomem *reg)
{
	u32 value = 0;

	value = readl(reg);
	return value;
}

static inline void cdns_writel(uint32_t __iomem *reg, u32 value)
{
	writel(value, reg);
}


#endif /* __DRIVERS_USB_CDNS_IO_H */