summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-uniphier.c
blob: 32a43752790d72ee1c7d0d18730c255d7a191dd7 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * Copyright (C) 2014 Panasonic Corporation
 *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <linux/err.h>
#include <usb.h>
#include <asm/arch/ehci-uniphier.h>
#include "ehci.h"

#ifdef CONFIG_OF_CONTROL
#include <fdtdec.h>
DECLARE_GLOBAL_DATA_PTR;

#define FDT		gd->fdt_blob
#define COMPAT		"panasonic,uniphier-ehci"

static int get_uniphier_ehci_base(int index, struct ehci_hccr **base)
{
	int offset;

	for (offset = fdt_node_offset_by_compatible(FDT, 0, COMPAT);
	     offset >= 0;
	     offset = fdt_node_offset_by_compatible(FDT, offset, COMPAT)) {
		if (index == 0) {
			*base = (struct ehci_hccr *)
					fdtdec_get_addr(FDT, offset, "reg");
			return 0;
		}
		index--;
	}

	return -ENODEV; /* not found */
}
#else
static int get_uniphier_ehci_base(int index, struct ehci_hccr **base)
{
	*base = (struct ehci_hccr *)uniphier_ehci_platdata[index].base;
	return 0;
}
#endif

/*
 * Create the appropriate control structures to manage
 * a new EHCI host controller.
 */
int ehci_hcd_init(int index, enum usb_init_type init, struct ehci_hccr **hccr,
		  struct ehci_hcor **hcor)
{
	int ret;
	struct ehci_hccr *cr;
	struct ehci_hcor *or;

	uniphier_ehci_reset(index, 0);

	ret = get_uniphier_ehci_base(index, &cr);
	if (ret < 0)
		return ret;
	or = (void *)cr + HC_LENGTH(ehci_readl(&cr->cr_capbase));

	*hccr = cr;
	*hcor = or;

	return 0;
}

int ehci_hcd_stop(int index)
{
	uniphier_ehci_reset(index, 1);

	return 0;
}
OpenPOWER on IntegriCloud