blob: 14996165be99b06bc51cbff8a386e3d625726146 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Patrick Georgie72a8a32012-11-06 11:05:09 +01003
4#include <console/console.h>
5#include <device/device.h>
6#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02007#include <device/pci_ops.h>
Patrick Georgie72a8a32012-11-06 11:05:09 +01008#include <device/pci_ids.h>
9#include "i82801ix.h"
Kyösti Mälkkie2227a22014-02-05 13:02:55 +020010#include <device/pci_ehci.h>
Patrick Georgie72a8a32012-11-06 11:05:09 +010011
12static void usb_ehci_init(struct device *dev)
13{
14 u32 reg32;
15
16 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
17 reg32 = pci_read_config32(dev, PCI_COMMAND);
18 reg32 |= PCI_COMMAND_MASTER;
19 pci_write_config32(dev, PCI_COMMAND, reg32);
20
21 printk(BIOS_DEBUG, "done.\n");
22}
23
Martin Rothff744bf2019-10-23 21:46:03 -060024static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
25 unsigned int device)
Patrick Georgie72a8a32012-11-06 11:05:09 +010026{
27 u8 access_cntl;
28
29 access_cntl = pci_read_config8(dev, 0x80);
30
31 /* Enable writes to protected registers. */
32 pci_write_config8(dev, 0x80, access_cntl | 1);
33
Subrata Banik4a0f0712019-03-20 14:29:47 +053034 pci_dev_set_subsystem(dev, vendor, device);
Patrick Georgie72a8a32012-11-06 11:05:09 +010035
36 /* Restore protection. */
37 pci_write_config8(dev, 0x80, access_cntl);
38}
39
Patrick Georgie72a8a32012-11-06 11:05:09 +010040static const unsigned short pci_device_ids[] = {
Felix Singer7f8b0cd2019-11-10 11:04:08 +010041 PCI_DEVICE_ID_INTEL_82801IB_EHCI1,
42 PCI_DEVICE_ID_INTEL_82801IB_EHCI2,
Patrick Georgie72a8a32012-11-06 11:05:09 +010043 0
44};
45
46static struct pci_operations lops_pci = {
47 .set_subsystem = &usb_ehci_set_subsystem,
48};
49
50static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030051 .read_resources = pci_ehci_read_resources,
52 .set_resources = pci_dev_set_resources,
Patrick Georgie72a8a32012-11-06 11:05:09 +010053 .enable_resources = pci_dev_enable_resources,
54 .init = usb_ehci_init,
55 .scan_bus = 0,
56 .ops_pci = &lops_pci,
57};
58
59static const struct pci_driver pch_usb_ehci1 __pci_driver = {
60 .ops = &usb_ehci_ops,
61 .vendor = PCI_VENDOR_ID_INTEL,
62 .devices = pci_device_ids,
63};