blob: e00fa25c2a09eb9d2bc954a604c5121f8d003ba1 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2014 Google Inc.
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.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070015 */
16
17#include <console/console.h>
18#include <delay.h>
19#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
Georg Wicherski49ee5ef2015-10-13 16:27:15 +020022#include <device/pci_ehci.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070023#include <arch/io.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070024#include <soc/ehci.h>
25#include <soc/pch.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070026
Lee Leahy23602df2017-03-16 19:00:37 -070027static void usb_ehci_set_subsystem(device_t dev, unsigned int vendor,
28 unsigned int device)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070029{
30 u8 access_cntl;
31
32 access_cntl = pci_read_config8(dev, 0x80);
33
34 /* Enable writes to protected registers. */
35 pci_write_config8(dev, 0x80, access_cntl | 1);
36
37 if (!vendor || !device) {
38 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
39 pci_read_config32(dev, PCI_VENDOR_ID));
40 } else {
41 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
42 ((device & 0xffff) << 16) | (vendor & 0xffff));
43 }
44
45 /* Restore protection. */
46 pci_write_config8(dev, 0x80, access_cntl);
47}
48
Duncan Laurie61680272014-05-05 12:42:35 -050049static void ehci_enable(struct device *dev)
50{
51 if (CONFIG_USBDEBUG)
52 dev->enabled = 1;
53 else
54 pch_disable_devfn(dev);
55}
56
Duncan Lauriec88c54c2014-04-30 16:36:13 -070057static struct pci_operations ehci_ops_pci = {
58 .set_subsystem = &usb_ehci_set_subsystem,
59};
60
61static struct device_operations usb_ehci_ops = {
Georg Wicherski49ee5ef2015-10-13 16:27:15 +020062 .read_resources = &pci_ehci_read_resources,
63 .set_resources = &pci_dev_set_resources,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070064 .enable_resources = &pci_dev_enable_resources,
65 .ops_pci = &ehci_ops_pci,
Duncan Laurie61680272014-05-05 12:42:35 -050066 .enable = &ehci_enable,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070067};
68
69static const unsigned short pci_device_ids[] = {
70 0x9c26, /* LynxPoint-LP */
71 0x9ca6, /* WildcatPoint */
72 0
73};
74
75static const struct pci_driver pch_usb_ehci __pci_driver = {
76 .ops = &usb_ehci_ops,
77 .vendor = PCI_VENDOR_ID_INTEL,
78 .devices = pci_device_ids,
79};