blob: dfc78cc6662ca777df1487de8d90cb4c13c0f18c [file] [log] [blame]
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +02001/*
2 * This file is part of the coreboot project.
3 *
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +02004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020012 */
13
14#include <stddef.h>
15#include <console/console.h>
16#include <device/pci_ehci.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020017#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020018#include <device/pci_ops.h>
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020019#include <device/pci.h>
20#include <device/pci_def.h>
21#include <string.h>
22
23#include "ehci_debug.h"
24#include "ehci.h"
25
Kyösti Mälkkid07f3772017-09-07 19:16:27 +030026#if ENV_RAMSTAGE
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020027static struct device_operations *ehci_drv_ops;
28static struct device_operations ehci_dbg_ops;
29#endif
30
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020031int ehci_debug_hw_enable(unsigned int *base, unsigned int *dbg_offset)
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020032{
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030033 pci_devfn_t dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
Kyösti Mälkki6683e402017-07-30 13:23:32 +030034
Kyösti Mälkki5bd92642019-01-06 16:13:07 +020035 /* We only support controllers on bus 0. */
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030036 if (PCI_DEV2SEGBUS(dev) != 0)
Kyösti Mälkki5bd92642019-01-06 16:13:07 +020037 return -1;
38
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030039 u32 class = pci_s_read_config32(dev, PCI_CLASS_REVISION) >> 8;
Kyösti Mälkki6683e402017-07-30 13:23:32 +030040 if (class != PCI_EHCI_CLASSCODE)
41 return -1;
42
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030043 u8 pm_cap = pci_s_find_capability(dev, PCI_CAP_ID_PM);
Kyösti Mälkki6aea6f72017-07-30 09:01:24 +030044 if (pm_cap) {
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030045 u16 pm_ctrl = pci_s_read_config16(dev, pm_cap + PCI_PM_CTRL);
Kyösti Mälkki6aea6f72017-07-30 09:01:24 +030046 /* Set to D0 and disable PM events. */
47 pm_ctrl &= ~PCI_PM_CTRL_PME_ENABLE;
48 pm_ctrl &= ~PCI_PM_CTRL_STATE_MASK;
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030049 pci_s_write_config16(dev, pm_cap + PCI_PM_CTRL, pm_ctrl);
Kyösti Mälkki6aea6f72017-07-30 09:01:24 +030050 }
51
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030052 u8 pos = pci_s_find_capability(dev, PCI_CAP_ID_EHCI_DEBUG);
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020053 if (!pos)
54 return -1;
55
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030056 u32 cap = pci_s_read_config32(dev, pos);
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020057
58 /* FIXME: We should remove static EHCI_BAR_INDEX. */
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030059 u8 ehci_bar = 0x10 + 4 * ((cap >> 29) - 1);
60 if (ehci_bar != EHCI_BAR_INDEX)
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020061 return -1;
62
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030063 pci_s_write_config32(dev, ehci_bar, CONFIG_EHCI_BAR);
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030064
Kyösti Mälkkif2cc3dd2019-09-27 18:09:52 +030065 pci_s_write_config8(dev, PCI_COMMAND, PCI_COMMAND_MEMORY |
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030066 PCI_COMMAND_MASTER);
67
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020068 *base = CONFIG_EHCI_BAR;
69 *dbg_offset = (cap>>16) & 0x1ffc;
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030070
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020071 return 0;
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020072}
73
74void ehci_debug_select_port(unsigned int port)
75{
76 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
77 pci_ehci_dbg_set_port(dbg_dev, port);
78}
79
Kyösti Mälkkid07f3772017-09-07 19:16:27 +030080#if ENV_RAMSTAGE
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020081static void pci_ehci_set_resources(struct device *dev)
82{
83 struct resource *res;
84
85 printk(BIOS_DEBUG, "%s EHCI Debug Port hook triggered\n", dev_path(dev));
86 usbdebug_disable();
87
88 if (ehci_drv_ops->set_resources)
89 ehci_drv_ops->set_resources(dev);
90 res = find_resource(dev, EHCI_BAR_INDEX);
91 if (!res)
92 return;
93
94 usbdebug_re_enable((u32)res->base);
95 report_resource_stored(dev, res, "");
96 printk(BIOS_DEBUG, "%s EHCI Debug Port relocated\n", dev_path(dev));
97}
98
99void pci_ehci_read_resources(struct device *dev)
100{
101 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
102
103 if (!ehci_drv_ops && pci_match_simple_dev(dev, dbg_dev)) {
104 memcpy(&ehci_dbg_ops, dev->ops, sizeof(ehci_dbg_ops));
105 ehci_drv_ops = dev->ops;
106 ehci_dbg_ops.set_resources = pci_ehci_set_resources;
107 dev->ops = &ehci_dbg_ops;
108 printk(BIOS_DEBUG, "%s EHCI BAR hook registered\n", dev_path(dev));
109 } else {
110 printk(BIOS_DEBUG, "More than one caller of %s from %s\n", __func__, dev_path(dev));
111 }
112
113 pci_dev_read_resources(dev);
114}
115#endif
116
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800117u8 *pci_ehci_base_regs(pci_devfn_t sdev)
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200118{
Patrick Rudolphae64f222019-11-30 09:42:20 +0100119 u32 bar = pci_s_read_config32(sdev, EHCI_BAR_INDEX) & ~0x0f;
120 u8 *base = (u8 *)(uintptr_t)bar;
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200121 return base + HC_LENGTH(read32(base));
122}