blob: b9201a5a6a3fd0c6e8f109c85311bfda3cc1680e [file] [log] [blame]
Stefan Roese81c1f6f2016-07-14 11:39:20 +02001/*
2 * Copyright (C) 2015 Marvell International Ltd.
3 *
4 * MVEBU USB HOST xHCI Controller
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <dm.h>
11#include <fdtdec.h>
12#include <usb.h>
Konstantin Porotchkin81192b72017-02-12 11:10:30 +020013#include <power/regulator.h>
Stefan Roese81c1f6f2016-07-14 11:39:20 +020014#include <asm/gpio.h>
15
16#include "xhci.h"
17
18DECLARE_GLOBAL_DATA_PTR;
19
20struct mvebu_xhci_platdata {
21 fdt_addr_t hcd_base;
22};
23
24/**
25 * Contains pointers to register base addresses
26 * for the usb controller.
27 */
28struct mvebu_xhci {
29 struct xhci_ctrl ctrl; /* Needs to come first in this struct! */
30 struct usb_platdata usb_plat;
31 struct xhci_hccr *hcd;
32};
33
34/*
35 * Dummy implementation that can be overwritten by a board
36 * specific function
37 */
38__weak int board_xhci_enable(void)
39{
40 return 0;
41}
42
43static int xhci_usb_probe(struct udevice *dev)
44{
45 struct mvebu_xhci_platdata *plat = dev_get_platdata(dev);
46 struct mvebu_xhci *ctx = dev_get_priv(dev);
47 struct xhci_hcor *hcor;
Konstantin Porotchkin81192b72017-02-12 11:10:30 +020048 int len, ret;
49 struct udevice *regulator;
Stefan Roese81c1f6f2016-07-14 11:39:20 +020050
51 ctx->hcd = (struct xhci_hccr *)plat->hcd_base;
52 len = HC_LENGTH(xhci_readl(&ctx->hcd->cr_capbase));
53 hcor = (struct xhci_hcor *)((uintptr_t)ctx->hcd + len);
54
Konstantin Porotchkin81192b72017-02-12 11:10:30 +020055 ret = device_get_supply_regulator(dev, "vbus-supply", &regulator);
56 if (!ret) {
57 ret = regulator_set_enable(regulator, true);
58 if (ret) {
59 printf("Failed to turn ON the VBUS regulator\n");
60 return ret;
61 }
62 }
63
Stefan Roese81c1f6f2016-07-14 11:39:20 +020064 /* Enable USB xHCI (VBUS, reset etc) in board specific code */
65 board_xhci_enable();
66
67 return xhci_register(dev, ctx->hcd, hcor);
68}
69
Stefan Roese81c1f6f2016-07-14 11:39:20 +020070static int xhci_usb_ofdata_to_platdata(struct udevice *dev)
71{
72 struct mvebu_xhci_platdata *plat = dev_get_platdata(dev);
73
74 /*
75 * Get the base address for XHCI controller from the device node
76 */
Simon Glassa821c4a2017-05-17 17:18:05 -060077 plat->hcd_base = devfdt_get_addr(dev);
Stefan Roese81c1f6f2016-07-14 11:39:20 +020078 if (plat->hcd_base == FDT_ADDR_T_NONE) {
79 debug("Can't get the XHCI register base address\n");
80 return -ENXIO;
81 }
82
83 return 0;
84}
85
86static const struct udevice_id xhci_usb_ids[] = {
87 { .compatible = "marvell,armada3700-xhci" },
Stefan Roesed36277e2016-08-31 06:48:56 +020088 { .compatible = "marvell,armada-8k-xhci" },
Stefan Roese81c1f6f2016-07-14 11:39:20 +020089 { }
90};
91
92U_BOOT_DRIVER(usb_xhci) = {
93 .name = "xhci_mvebu",
94 .id = UCLASS_USB,
95 .of_match = xhci_usb_ids,
96 .ofdata_to_platdata = xhci_usb_ofdata_to_platdata,
97 .probe = xhci_usb_probe,
Masahiro Yamada9eea45f2016-10-14 10:30:01 +090098 .remove = xhci_deregister,
Stefan Roese81c1f6f2016-07-14 11:39:20 +020099 .ops = &xhci_usb_ops,
100 .platdata_auto_alloc_size = sizeof(struct mvebu_xhci_platdata),
101 .priv_auto_alloc_size = sizeof(struct mvebu_xhci),
102 .flags = DM_FLAG_ALLOC_PRIV_DMA,
103};