1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <console/console.h>
4 #include <device/device.h>
5 #include <device/pci.h>
6 #include <device/pci_ops.h>
7 #include <device/pci_ids.h>
9 #include <device/pci_ehci.h>
11 static void usb_ehci_init(struct device
*dev
)
13 printk(BIOS_DEBUG
, "EHCI: Setting up controller.. ");
14 pci_or_config16(dev
, PCI_COMMAND
, PCI_COMMAND_MASTER
);
16 printk(BIOS_DEBUG
, "done.\n");
19 static void usb_ehci_set_subsystem(struct device
*dev
, unsigned int vendor
,
24 access_cntl
= pci_read_config8(dev
, 0x80);
26 /* Enable writes to protected registers. */
27 pci_write_config8(dev
, 0x80, access_cntl
| 1);
29 pci_dev_set_subsystem(dev
, vendor
, device
);
31 /* Restore protection. */
32 pci_write_config8(dev
, 0x80, access_cntl
);
35 static const unsigned short pci_device_ids
[] = {
43 static struct pci_operations lops_pci
= {
44 .set_subsystem
= &usb_ehci_set_subsystem
,
47 static struct device_operations usb_ehci_ops
= {
48 .read_resources
= pci_ehci_read_resources
,
49 .set_resources
= pci_dev_set_resources
,
50 .enable_resources
= pci_dev_enable_resources
,
51 .init
= usb_ehci_init
,
55 static const struct pci_driver pch_usb_ehci1 __pci_driver
= {
57 .vendor
= PCI_VID_INTEL
,
58 .devices
= pci_device_ids
,