blob: 8972f56411019f6996ba79b63238aebd3a680384 [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
Duncan Lauriec88c54c2014-04-30 16:36:13 -070017#include <delay.h>
18#include <device/device.h>
19#include <device/pci.h>
20#include <device/pci_ids.h>
Georg Wicherski49ee5ef2015-10-13 16:27:15 +020021#include <device/pci_ehci.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070022#include <arch/io.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070023#include <soc/ehci.h>
24#include <soc/pch.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070025
Elyes HAOUAS040aff22018-05-27 16:30:36 +020026static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
Lee Leahy23602df2017-03-16 19:00:37 -070027 unsigned int device)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070028{
29 u8 access_cntl;
30
31 access_cntl = pci_read_config8(dev, 0x80);
32
33 /* Enable writes to protected registers. */
34 pci_write_config8(dev, 0x80, access_cntl | 1);
35
36 if (!vendor || !device) {
37 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
38 pci_read_config32(dev, PCI_VENDOR_ID));
39 } else {
40 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
41 ((device & 0xffff) << 16) | (vendor & 0xffff));
42 }
43
44 /* Restore protection. */
45 pci_write_config8(dev, 0x80, access_cntl);
46}
47
Duncan Laurie61680272014-05-05 12:42:35 -050048static void ehci_enable(struct device *dev)
49{
50 if (CONFIG_USBDEBUG)
51 dev->enabled = 1;
52 else
53 pch_disable_devfn(dev);
54}
55
Duncan Lauriec88c54c2014-04-30 16:36:13 -070056static struct pci_operations ehci_ops_pci = {
57 .set_subsystem = &usb_ehci_set_subsystem,
58};
59
60static struct device_operations usb_ehci_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010061 .read_resources = pci_ehci_read_resources,
62 .set_resources = pci_dev_set_resources,
63 .enable_resources = pci_dev_enable_resources,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070064 .ops_pci = &ehci_ops_pci,
Elyes HAOUAS1d191272018-11-27 12:23:48 +010065 .enable = ehci_enable,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070066};
67
68static const unsigned short pci_device_ids[] = {
69 0x9c26, /* LynxPoint-LP */
70 0x9ca6, /* WildcatPoint */
71 0
72};
73
74static const struct pci_driver pch_usb_ehci __pci_driver = {
75 .ops = &usb_ehci_ops,
76 .vendor = PCI_VENDOR_ID_INTEL,
77 .devices = pci_device_ids,
78};