2016-07-14 09:39:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Marvell International Ltd.
|
|
|
|
*
|
|
|
|
* MVEBU USB HOST xHCI Controller
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <fdtdec.h>
|
|
|
|
#include <usb.h>
|
|
|
|
#include <asm/gpio.h>
|
|
|
|
|
|
|
|
#include "xhci.h"
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
struct mvebu_xhci_platdata {
|
|
|
|
fdt_addr_t hcd_base;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains pointers to register base addresses
|
|
|
|
* for the usb controller.
|
|
|
|
*/
|
|
|
|
struct mvebu_xhci {
|
|
|
|
struct xhci_ctrl ctrl; /* Needs to come first in this struct! */
|
|
|
|
struct usb_platdata usb_plat;
|
|
|
|
struct xhci_hccr *hcd;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Dummy implementation that can be overwritten by a board
|
|
|
|
* specific function
|
|
|
|
*/
|
|
|
|
__weak int board_xhci_enable(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xhci_usb_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct mvebu_xhci_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct mvebu_xhci *ctx = dev_get_priv(dev);
|
|
|
|
struct xhci_hcor *hcor;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
ctx->hcd = (struct xhci_hccr *)plat->hcd_base;
|
|
|
|
len = HC_LENGTH(xhci_readl(&ctx->hcd->cr_capbase));
|
|
|
|
hcor = (struct xhci_hcor *)((uintptr_t)ctx->hcd + len);
|
|
|
|
|
|
|
|
/* Enable USB xHCI (VBUS, reset etc) in board specific code */
|
|
|
|
board_xhci_enable();
|
|
|
|
|
|
|
|
return xhci_register(dev, ctx->hcd, hcor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xhci_usb_ofdata_to_platdata(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct mvebu_xhci_platdata *plat = dev_get_platdata(dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the base address for XHCI controller from the device node
|
|
|
|
*/
|
|
|
|
plat->hcd_base = dev_get_addr(dev);
|
|
|
|
if (plat->hcd_base == FDT_ADDR_T_NONE) {
|
|
|
|
debug("Can't get the XHCI register base address\n");
|
|
|
|
return -ENXIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct udevice_id xhci_usb_ids[] = {
|
|
|
|
{ .compatible = "marvell,armada3700-xhci" },
|
2016-08-31 04:48:56 +00:00
|
|
|
{ .compatible = "marvell,armada-8k-xhci" },
|
2016-07-14 09:39:20 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(usb_xhci) = {
|
|
|
|
.name = "xhci_mvebu",
|
|
|
|
.id = UCLASS_USB,
|
|
|
|
.of_match = xhci_usb_ids,
|
|
|
|
.ofdata_to_platdata = xhci_usb_ofdata_to_platdata,
|
|
|
|
.probe = xhci_usb_probe,
|
2016-10-14 01:30:01 +00:00
|
|
|
.remove = xhci_deregister,
|
2016-07-14 09:39:20 +00:00
|
|
|
.ops = &xhci_usb_ops,
|
|
|
|
.platdata_auto_alloc_size = sizeof(struct mvebu_xhci_platdata),
|
|
|
|
.priv_auto_alloc_size = sizeof(struct mvebu_xhci),
|
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|