2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2008-12-31 09:32:41 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2007-2008, Juniper Networks, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2015-07-06 22:47:53 +00:00
|
|
|
#include <dm.h>
|
2012-12-14 06:58:27 +00:00
|
|
|
#include <errno.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2008-12-31 09:32:41 +00:00
|
|
|
#include <pci.h>
|
|
|
|
#include <usb.h>
|
2017-06-05 07:19:26 +00:00
|
|
|
#include <asm/io.h>
|
2009-04-03 10:46:58 +00:00
|
|
|
|
|
|
|
#include "ehci.h"
|
2008-12-31 09:32:41 +00:00
|
|
|
|
2015-07-06 22:47:53 +00:00
|
|
|
/* Information about a USB port */
|
|
|
|
struct ehci_pci_priv {
|
|
|
|
struct ehci_ctrl ehci;
|
2018-08-07 10:27:10 +00:00
|
|
|
struct phy phy;
|
2015-07-06 22:47:53 +00:00
|
|
|
};
|
|
|
|
|
2018-11-21 07:43:56 +00:00
|
|
|
#if CONFIG_IS_ENABLED(DM_USB)
|
2018-08-07 10:27:10 +00:00
|
|
|
static int ehci_pci_init(struct udevice *dev, struct ehci_hccr **ret_hccr,
|
2015-11-29 20:18:07 +00:00
|
|
|
struct ehci_hcor **ret_hcor)
|
2015-07-06 22:47:53 +00:00
|
|
|
{
|
2018-08-07 10:27:10 +00:00
|
|
|
struct ehci_pci_priv *priv = dev_get_priv(dev);
|
2015-07-06 22:47:53 +00:00
|
|
|
struct ehci_hccr *hccr;
|
|
|
|
struct ehci_hcor *hcor;
|
2018-08-07 10:27:10 +00:00
|
|
|
int ret;
|
2015-11-29 20:18:07 +00:00
|
|
|
u32 cmd;
|
2015-07-06 22:47:53 +00:00
|
|
|
|
2018-08-07 10:27:10 +00:00
|
|
|
ret = ehci_setup_phy(dev, &priv->phy, 0);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-11-29 20:18:07 +00:00
|
|
|
hccr = (struct ehci_hccr *)dm_pci_map_bar(dev,
|
2015-07-06 22:47:53 +00:00
|
|
|
PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
|
2015-11-29 20:18:07 +00:00
|
|
|
hcor = (struct ehci_hcor *)((uintptr_t) hccr +
|
2015-07-06 22:47:53 +00:00
|
|
|
HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
|
|
|
|
|
2016-09-26 03:33:21 +00:00
|
|
|
debug("EHCI-PCI init hccr %#lx and hcor %#lx hc_length %d\n",
|
|
|
|
(ulong)hccr, (ulong)hcor,
|
2015-11-29 20:18:07 +00:00
|
|
|
(u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
|
2015-07-06 22:47:53 +00:00
|
|
|
|
|
|
|
*ret_hccr = hccr;
|
|
|
|
*ret_hcor = hcor;
|
|
|
|
|
|
|
|
/* enable busmaster */
|
2015-11-29 20:18:07 +00:00
|
|
|
dm_pci_read_config32(dev, PCI_COMMAND, &cmd);
|
2015-07-06 22:47:53 +00:00
|
|
|
cmd |= PCI_COMMAND_MASTER;
|
2015-11-29 20:18:07 +00:00
|
|
|
dm_pci_write_config32(dev, PCI_COMMAND, cmd);
|
2018-08-07 10:27:10 +00:00
|
|
|
|
|
|
|
return 0;
|
2015-07-06 22:47:53 +00:00
|
|
|
}
|
|
|
|
|
2015-11-29 20:18:07 +00:00
|
|
|
#else
|
2015-07-06 22:47:53 +00:00
|
|
|
|
2008-12-31 09:32:41 +00:00
|
|
|
#ifdef CONFIG_PCI_EHCI_DEVICE
|
|
|
|
static struct pci_device_id ehci_pci_ids[] = {
|
|
|
|
/* Please add supported PCI EHCI controller ids here */
|
2011-03-31 16:46:47 +00:00
|
|
|
{0x1033, 0x00E0}, /* NEC */
|
2011-04-05 10:24:20 +00:00
|
|
|
{0x10B9, 0x5239}, /* ULI1575 PCI EHCI module ids */
|
2011-03-31 16:46:47 +00:00
|
|
|
{0x12D8, 0x400F}, /* Pericom */
|
2008-12-31 09:32:41 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2015-11-29 20:18:07 +00:00
|
|
|
static void ehci_pci_legacy_init(pci_dev_t pdev, struct ehci_hccr **ret_hccr,
|
|
|
|
struct ehci_hcor **ret_hcor)
|
|
|
|
{
|
|
|
|
struct ehci_hccr *hccr;
|
|
|
|
struct ehci_hcor *hcor;
|
|
|
|
u32 cmd;
|
|
|
|
|
|
|
|
hccr = (struct ehci_hccr *)pci_map_bar(pdev,
|
|
|
|
PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
|
|
|
|
hcor = (struct ehci_hcor *)((uintptr_t) hccr +
|
|
|
|
HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
|
|
|
|
|
|
|
|
debug("EHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d\n",
|
|
|
|
(u32)hccr, (u32)hcor,
|
|
|
|
(u32)HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
|
|
|
|
|
|
|
|
*ret_hccr = hccr;
|
|
|
|
*ret_hcor = hcor;
|
|
|
|
|
|
|
|
/* enable busmaster */
|
|
|
|
pci_read_config_dword(pdev, PCI_COMMAND, &cmd);
|
|
|
|
cmd |= PCI_COMMAND_MASTER;
|
|
|
|
pci_write_config_dword(pdev, PCI_COMMAND, cmd);
|
|
|
|
}
|
|
|
|
|
2008-12-31 09:32:41 +00:00
|
|
|
/*
|
|
|
|
* Create the appropriate control structures to manage
|
|
|
|
* a new EHCI host controller.
|
|
|
|
*/
|
2013-10-10 22:27:57 +00:00
|
|
|
int ehci_hcd_init(int index, enum usb_init_type init,
|
|
|
|
struct ehci_hccr **ret_hccr, struct ehci_hcor **ret_hcor)
|
2008-12-31 09:32:41 +00:00
|
|
|
{
|
|
|
|
pci_dev_t pdev;
|
|
|
|
|
2012-12-14 06:58:27 +00:00
|
|
|
#ifdef CONFIG_PCI_EHCI_DEVICE
|
2008-12-31 09:32:41 +00:00
|
|
|
pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVICE);
|
2012-12-14 06:58:27 +00:00
|
|
|
#else
|
2015-01-28 05:13:30 +00:00
|
|
|
pdev = pci_find_class(PCI_CLASS_SERIAL_USB_EHCI, index);
|
2012-12-14 06:58:27 +00:00
|
|
|
#endif
|
|
|
|
if (pdev < 0) {
|
2008-12-31 09:32:41 +00:00
|
|
|
printf("EHCI host controller not found\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2015-11-29 20:18:07 +00:00
|
|
|
ehci_pci_legacy_init(pdev, ret_hccr, ret_hcor);
|
2008-12-31 09:32:41 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Destroy the appropriate control structures corresponding
|
|
|
|
* the the EHCI host controller.
|
|
|
|
*/
|
2012-09-25 22:14:35 +00:00
|
|
|
int ehci_hcd_stop(int index)
|
2008-12-31 09:32:41 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2018-11-21 07:43:56 +00:00
|
|
|
#endif /* !CONFIG_IS_ENABLED(DM_USB) */
|
2015-07-06 22:47:53 +00:00
|
|
|
|
2018-11-21 07:43:56 +00:00
|
|
|
#if CONFIG_IS_ENABLED(DM_USB)
|
2015-07-06 22:47:53 +00:00
|
|
|
static int ehci_pci_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ehci_hccr *hccr;
|
|
|
|
struct ehci_hcor *hcor;
|
2018-08-07 10:27:10 +00:00
|
|
|
int ret;
|
2015-07-06 22:47:53 +00:00
|
|
|
|
2018-08-07 10:27:10 +00:00
|
|
|
ret = ehci_pci_init(dev, &hccr, &hcor);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-07-06 22:47:53 +00:00
|
|
|
|
|
|
|
return ehci_register(dev, hccr, hcor, NULL, 0, USB_INIT_HOST);
|
|
|
|
}
|
|
|
|
|
2018-08-07 10:27:10 +00:00
|
|
|
static int ehci_pci_remove(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ehci_pci_priv *priv = dev_get_priv(dev);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = ehci_deregister(dev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return ehci_shutdown_phy(dev, &priv->phy);
|
|
|
|
}
|
|
|
|
|
2016-01-17 23:11:07 +00:00
|
|
|
static const struct udevice_id ehci_pci_ids[] = {
|
|
|
|
{ .compatible = "ehci-pci" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2015-07-06 22:47:53 +00:00
|
|
|
U_BOOT_DRIVER(ehci_pci) = {
|
|
|
|
.name = "ehci_pci",
|
|
|
|
.id = UCLASS_USB,
|
|
|
|
.probe = ehci_pci_probe,
|
2018-08-07 10:27:10 +00:00
|
|
|
.remove = ehci_pci_remove,
|
2016-01-17 23:11:07 +00:00
|
|
|
.of_match = ehci_pci_ids,
|
2015-07-06 22:47:53 +00:00
|
|
|
.ops = &ehci_usb_ops,
|
|
|
|
.platdata_auto_alloc_size = sizeof(struct usb_platdata),
|
|
|
|
.priv_auto_alloc_size = sizeof(struct ehci_pci_priv),
|
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct pci_device_id ehci_pci_supported[] = {
|
|
|
|
{ PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_EHCI, ~0) },
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_PCI_DEVICE(ehci_pci, ehci_pci_supported);
|
|
|
|
|
2018-11-21 07:43:56 +00:00
|
|
|
#endif /* CONFIG_IS_ENABLED(DM_USB) */
|