blob: 70e62bb24393e8e934e966733acd20dc54cafa38 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
Duncan Lauriec88c54c2014-04-30 16:36:13 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070013 */
14
Duncan Lauriec88c54c2014-04-30 16:36:13 -070015#include <device/device.h>
16#include <device/pci.h>
17#include <device/pci_ids.h>
Georg Wicherski49ee5ef2015-10-13 16:27:15 +020018#include <device/pci_ehci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070020#include <soc/ehci.h>
21#include <soc/pch.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070022
Elyes HAOUAS040aff22018-05-27 16:30:36 +020023static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
Lee Leahy23602df2017-03-16 19:00:37 -070024 unsigned int device)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070025{
26 u8 access_cntl;
27
28 access_cntl = pci_read_config8(dev, 0x80);
29
30 /* Enable writes to protected registers. */
31 pci_write_config8(dev, 0x80, access_cntl | 1);
32
Subrata Banik4a0f0712019-03-20 14:29:47 +053033 pci_dev_set_subsystem(dev, vendor, device);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070034
35 /* Restore protection. */
36 pci_write_config8(dev, 0x80, access_cntl);
37}
38
Duncan Laurie61680272014-05-05 12:42:35 -050039static void ehci_enable(struct device *dev)
40{
Kyösti Mälkkifd159552019-03-20 18:46:30 +020041 if (CONFIG(USBDEBUG))
Duncan Laurie61680272014-05-05 12:42:35 -050042 dev->enabled = 1;
43 else
44 pch_disable_devfn(dev);
45}
46
Duncan Lauriec88c54c2014-04-30 16:36:13 -070047static struct pci_operations ehci_ops_pci = {
48 .set_subsystem = &usb_ehci_set_subsystem,
49};
50
51static struct device_operations usb_ehci_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010052 .read_resources = pci_ehci_read_resources,
53 .set_resources = pci_dev_set_resources,
54 .enable_resources = pci_dev_enable_resources,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070055 .ops_pci = &ehci_ops_pci,
Elyes HAOUAS1d191272018-11-27 12:23:48 +010056 .enable = ehci_enable,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070057};
58
59static const unsigned short pci_device_ids[] = {
60 0x9c26, /* LynxPoint-LP */
61 0x9ca6, /* WildcatPoint */
62 0
63};
64
65static const struct pci_driver pch_usb_ehci __pci_driver = {
66 .ops = &usb_ehci_ops,
67 .vendor = PCI_VENDOR_ID_INTEL,
68 .devices = pci_device_ids,
69};