blob: 7efdca06454403892d5fdbb9f7fc31a37bb758ce [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>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020023#include <device/pci_ops.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
Elyes HAOUAS040aff22018-05-27 16:30:36 +020027static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
Lee Leahy23602df2017-03-16 19:00:37 -070028 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 = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010062 .read_resources = pci_ehci_read_resources,
63 .set_resources = pci_dev_set_resources,
64 .enable_resources = pci_dev_enable_resources,
Duncan Lauriec88c54c2014-04-30 16:36:13 -070065 .ops_pci = &ehci_ops_pci,
Elyes HAOUAS1d191272018-11-27 12:23:48 +010066 .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};