summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-uniphier/include/mach/ehci-uniphier.h
blob: 3ba31833c3db952a0b910800b48d5d4e054a13f7 (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
/*
 * Copyright (C) 2014-2015 Panasonic Corporation
 *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#ifndef __PLAT_UNIPHIER_EHCI_H
#define __PLAT_UNIPHIER_EHCI_H

#include <linux/types.h>
#include <asm/io.h>
#include "mio-regs.h"

static inline void uniphier_ehci_reset(int index, int on)
{
	u32 tmp;

	tmp = readl(MIO_USB_RSTCTRL(index));
	if (on)
		tmp &= ~MIO_USB_RSTCTRL_XRST;
	else
		tmp |= MIO_USB_RSTCTRL_XRST;
	writel(tmp, MIO_USB_RSTCTRL(index));
}

#endif /* __PLAT_UNIPHIER_EHCI_H */
OpenPOWER on IntegriCloud