blob: 4028d4b225039e8b0cd6d2d8908b46aa70f29f71 [file] [log] [blame]
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2006 Eric Biederman (ebiederm@xmission.com)
5 * Copyright (C) 2007 AMD
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020015 */
16
17#include <stddef.h>
18#include <console/console.h>
19#include <device/pci_ehci.h>
20#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020021#include <device/pci_ops.h>
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020022#include <device/pci.h>
23#include <device/pci_def.h>
24#include <string.h>
25
26#include "ehci_debug.h"
27#include "ehci.h"
28
Kyösti Mälkkid07f3772017-09-07 19:16:27 +030029#if ENV_RAMSTAGE
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020030static struct device_operations *ehci_drv_ops;
31static struct device_operations ehci_dbg_ops;
32#endif
33
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020034int ehci_debug_hw_enable(unsigned int *base, unsigned int *dbg_offset)
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020035{
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020036 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
Kyösti Mälkki6683e402017-07-30 13:23:32 +030037
Kyösti Mälkki5bd92642019-01-06 16:13:07 +020038 /* We only support controllers on bus 0. */
39 if (PCI_DEV2SEGBUS(dbg_dev) != 0)
40 return -1;
41
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020042#ifdef __SIMPLE_DEVICE__
43 pci_devfn_t dev = dbg_dev;
44#else
Kyösti Mälkkie7377552018-06-21 16:20:55 +030045 struct device *dev = pcidev_path_on_root(PCI_DEV2DEVFN(dbg_dev));
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020046#endif
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020047
Kyösti Mälkki6683e402017-07-30 13:23:32 +030048 u32 class = pci_read_config32(dev, PCI_CLASS_REVISION) >> 8;
49 if (class != PCI_EHCI_CLASSCODE)
50 return -1;
51
Kyösti Mälkki6aea6f72017-07-30 09:01:24 +030052 u8 pm_cap = pci_find_capability(dev, PCI_CAP_ID_PM);
53 if (pm_cap) {
54 u16 pm_ctrl = pci_read_config16(dev, pm_cap + PCI_PM_CTRL);
55 /* Set to D0 and disable PM events. */
56 pm_ctrl &= ~PCI_PM_CTRL_PME_ENABLE;
57 pm_ctrl &= ~PCI_PM_CTRL_STATE_MASK;
58 pci_write_config16(dev, pm_cap + PCI_PM_CTRL, pm_ctrl);
59 }
60
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020061 u8 pos = pci_find_capability(dev, PCI_CAP_ID_EHCI_DEBUG);
62 if (!pos)
63 return -1;
64
65 u32 cap = pci_read_config32(dev, pos);
66
67 /* FIXME: We should remove static EHCI_BAR_INDEX. */
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030068 u8 ehci_bar = 0x10 + 4 * ((cap >> 29) - 1);
69 if (ehci_bar != EHCI_BAR_INDEX)
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020070 return -1;
71
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030072 pci_write_config32(dev, ehci_bar, CONFIG_EHCI_BAR);
73
74 pci_write_config8(dev, PCI_COMMAND, PCI_COMMAND_MEMORY |
75 PCI_COMMAND_MASTER);
76
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020077 *base = CONFIG_EHCI_BAR;
78 *dbg_offset = (cap>>16) & 0x1ffc;
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030079
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020080 return 0;
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020081}
82
83void ehci_debug_select_port(unsigned int port)
84{
85 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
86 pci_ehci_dbg_set_port(dbg_dev, port);
87}
88
Kyösti Mälkkid07f3772017-09-07 19:16:27 +030089#if ENV_RAMSTAGE
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020090static void pci_ehci_set_resources(struct device *dev)
91{
92 struct resource *res;
93
94 printk(BIOS_DEBUG, "%s EHCI Debug Port hook triggered\n", dev_path(dev));
95 usbdebug_disable();
96
97 if (ehci_drv_ops->set_resources)
98 ehci_drv_ops->set_resources(dev);
99 res = find_resource(dev, EHCI_BAR_INDEX);
100 if (!res)
101 return;
102
103 usbdebug_re_enable((u32)res->base);
104 report_resource_stored(dev, res, "");
105 printk(BIOS_DEBUG, "%s EHCI Debug Port relocated\n", dev_path(dev));
106}
107
108void pci_ehci_read_resources(struct device *dev)
109{
110 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
111
112 if (!ehci_drv_ops && pci_match_simple_dev(dev, dbg_dev)) {
113 memcpy(&ehci_dbg_ops, dev->ops, sizeof(ehci_dbg_ops));
114 ehci_drv_ops = dev->ops;
115 ehci_dbg_ops.set_resources = pci_ehci_set_resources;
116 dev->ops = &ehci_dbg_ops;
117 printk(BIOS_DEBUG, "%s EHCI BAR hook registered\n", dev_path(dev));
118 } else {
119 printk(BIOS_DEBUG, "More than one caller of %s from %s\n", __func__, dev_path(dev));
120 }
121
122 pci_dev_read_resources(dev);
123}
124#endif
125
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800126u8 *pci_ehci_base_regs(pci_devfn_t sdev)
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200127{
128#ifdef __SIMPLE_DEVICE__
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800129 u8 *base = (u8 *)(pci_read_config32(sdev, EHCI_BAR_INDEX) & ~0x0f);
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200130#else
Kyösti Mälkkie7377552018-06-21 16:20:55 +0300131 struct device *dev = pcidev_path_on_root(PCI_DEV2DEVFN(sdev));
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800132 u8 *base = (u8 *)(pci_read_config32(dev, EHCI_BAR_INDEX) & ~0x0f);
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200133#endif
134 return base + HC_LENGTH(read32(base));
135}