blob: 9099976ad53809662c9b639959bf7f3360f032a7 [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>
21#include <device/pci.h>
22#include <device/pci_def.h>
23#include <string.h>
24
25#include "ehci_debug.h"
26#include "ehci.h"
27
28#if !defined(__PRE_RAM__) && !defined(__SMM__)
29static struct device_operations *ehci_drv_ops;
30static struct device_operations ehci_dbg_ops;
31#endif
32
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020033int ehci_debug_hw_enable(unsigned int *base, unsigned int *dbg_offset)
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020034{
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020035 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
Kyösti Mälkki6683e402017-07-30 13:23:32 +030036
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020037#ifdef __SIMPLE_DEVICE__
38 pci_devfn_t dev = dbg_dev;
39#else
40 device_t dev = dev_find_slot(PCI_DEV2SEGBUS(dbg_dev), PCI_DEV2DEVFN(dbg_dev));
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020041#endif
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020042
Kyösti Mälkki6683e402017-07-30 13:23:32 +030043 u32 class = pci_read_config32(dev, PCI_CLASS_REVISION) >> 8;
44 if (class != PCI_EHCI_CLASSCODE)
45 return -1;
46
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020047 u8 pos = pci_find_capability(dev, PCI_CAP_ID_EHCI_DEBUG);
48 if (!pos)
49 return -1;
50
51 u32 cap = pci_read_config32(dev, pos);
52
53 /* FIXME: We should remove static EHCI_BAR_INDEX. */
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030054 u8 ehci_bar = 0x10 + 4 * ((cap >> 29) - 1);
55 if (ehci_bar != EHCI_BAR_INDEX)
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020056 return -1;
57
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030058 pci_write_config32(dev, ehci_bar, CONFIG_EHCI_BAR);
59
60 pci_write_config8(dev, PCI_COMMAND, PCI_COMMAND_MEMORY |
61 PCI_COMMAND_MASTER);
62
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020063 *base = CONFIG_EHCI_BAR;
64 *dbg_offset = (cap>>16) & 0x1ffc;
Kyösti Mälkkid1a0c572017-07-30 11:37:14 +030065
Kyösti Mälkki6f6a2492014-02-09 19:21:30 +020066 return 0;
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +020067}
68
69void ehci_debug_select_port(unsigned int port)
70{
71 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
72 pci_ehci_dbg_set_port(dbg_dev, port);
73}
74
75#if !defined(__PRE_RAM__) && !defined(__SMM__)
76static void pci_ehci_set_resources(struct device *dev)
77{
78 struct resource *res;
79
80 printk(BIOS_DEBUG, "%s EHCI Debug Port hook triggered\n", dev_path(dev));
81 usbdebug_disable();
82
83 if (ehci_drv_ops->set_resources)
84 ehci_drv_ops->set_resources(dev);
85 res = find_resource(dev, EHCI_BAR_INDEX);
86 if (!res)
87 return;
88
89 usbdebug_re_enable((u32)res->base);
90 report_resource_stored(dev, res, "");
91 printk(BIOS_DEBUG, "%s EHCI Debug Port relocated\n", dev_path(dev));
92}
93
94void pci_ehci_read_resources(struct device *dev)
95{
96 pci_devfn_t dbg_dev = pci_ehci_dbg_dev(CONFIG_USBDEBUG_HCD_INDEX);
97
98 if (!ehci_drv_ops && pci_match_simple_dev(dev, dbg_dev)) {
99 memcpy(&ehci_dbg_ops, dev->ops, sizeof(ehci_dbg_ops));
100 ehci_drv_ops = dev->ops;
101 ehci_dbg_ops.set_resources = pci_ehci_set_resources;
102 dev->ops = &ehci_dbg_ops;
103 printk(BIOS_DEBUG, "%s EHCI BAR hook registered\n", dev_path(dev));
104 } else {
105 printk(BIOS_DEBUG, "More than one caller of %s from %s\n", __func__, dev_path(dev));
106 }
107
108 pci_dev_read_resources(dev);
109}
110#endif
111
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800112u8 *pci_ehci_base_regs(pci_devfn_t sdev)
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200113{
114#ifdef __SIMPLE_DEVICE__
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800115 u8 *base = (u8 *)(pci_read_config32(sdev, EHCI_BAR_INDEX) & ~0x0f);
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200116#else
117 device_t dev = dev_find_slot(PCI_DEV2SEGBUS(sdev), PCI_DEV2DEVFN(sdev));
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800118 u8 *base = (u8 *)(pci_read_config32(dev, EHCI_BAR_INDEX) & ~0x0f);
Kyösti Mälkkicb141bc2014-02-07 19:24:23 +0200119#endif
120 return base + HC_LENGTH(read32(base));
121}