summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-sunxi.c
blob: eda9f698d9bc767f1d4a67b48d57d5288a002afa (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
36
37
38
39
40
41
42
43
44
45
46
/*
 * Copyright (C) 2014 Roman Byshko
 *
 * Roman Byshko <rbyshko@gmail.com>
 *
 * Based on code from
 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <asm/arch/usbc.h>
#include <common.h>
#include "ehci.h"

int ehci_hcd_init(int index, enum usb_init_type init, struct ehci_hccr **hccr,
		struct ehci_hcor **hcor)
{
	int err;

	err = sunxi_usbc_request_resources(index + 1);
	if (err)
		return err;

	sunxi_usbc_enable(index + 1);
	sunxi_usbc_vbus_enable(index + 1);

	*hccr = sunxi_usbc_get_io_base(index + 1);

	*hcor = (struct ehci_hcor *)((uint32_t) *hccr
				+ HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));

	debug("sunxi-ehci: init hccr %x and hcor %x hc_length %d\n",
	      (uint32_t)*hccr, (uint32_t)*hcor,
	      (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));

	return 0;
}

int ehci_hcd_stop(int index)
{
	sunxi_usbc_vbus_disable(index + 1);
	sunxi_usbc_disable(index + 1);

	return sunxi_usbc_free_resources(index + 1);
}
OpenPOWER on IntegriCloud