soc/intel/pantherlake: Remove soc_info.[hc] interface
[coreboot2.git] / src / southbridge / intel / ibexpeak / usb_ehci.c
blob45c5ceca67f68d256d08850087ac60a107fe495f
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_ids.h>
7 #include "pch.h"
8 #include <device/pci_ehci.h>
9 #include <device/mmio.h>
10 #include <device/pci_ops.h>
12 static void usb_ehci_init(struct device *dev)
14 u32 reg32;
15 struct resource *res;
16 u8 access_cntl;
18 /* Disable Wake on Disconnect in RMH */
19 reg32 = RCBA32(0x35b0);
20 reg32 |= 0x22;
21 RCBA32(0x35b0) = reg32;
23 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
25 pci_write_config32(dev, 0x84, 0x130c8911);
26 pci_write_config32(dev, 0x88, 0xa0);
27 pci_write_config32(dev, 0xf4, 0x80808588);
28 pci_write_config32(dev, 0xf4, 0x00808588);
29 pci_write_config32(dev, 0xf4, 0x00808588);
30 pci_write_config32(dev, 0xfc, 0x301b1728);
32 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
34 access_cntl = pci_read_config8(dev, 0x80);
36 /* Enable writes to protected registers. */
37 pci_write_config8(dev, 0x80, access_cntl | 1);
39 res = probe_resource(dev, PCI_BASE_ADDRESS_0);
40 if (res) {
41 /* Number of ports and companion controllers. */
42 reg32 = read32((u32 *)(uintptr_t)(res->base + 4));
43 write32((u32 *)(uintptr_t)(res->base + 4),
44 (reg32 & 0xfff00000) | 2);
47 /* Restore protection. */
48 pci_write_config8(dev, 0x80, access_cntl);
50 printk(BIOS_DEBUG, "done.\n");
53 static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
54 unsigned int device)
56 u8 access_cntl;
58 access_cntl = pci_read_config8(dev, 0x80);
60 /* Enable writes to protected registers. */
61 pci_write_config8(dev, 0x80, access_cntl | 1);
63 pci_dev_set_subsystem(dev, vendor, device);
65 /* Restore protection. */
66 pci_write_config8(dev, 0x80, access_cntl);
69 static struct pci_operations lops_pci = {
70 .set_subsystem = &usb_ehci_set_subsystem,
73 static struct device_operations usb_ehci_ops = {
74 .read_resources = pci_ehci_read_resources,
75 .set_resources = pci_dev_set_resources,
76 .enable_resources = pci_dev_enable_resources,
77 .init = usb_ehci_init,
78 .ops_pci = &lops_pci,
81 static const unsigned short pci_device_ids[] = {
82 PCI_DID_INTEL_IBEXPEAK_EHCI_1,
83 PCI_DID_INTEL_IBEXPEAK_EHCI_2,
87 static const struct pci_driver pch_usb_ehci __pci_driver = {
88 .ops = &usb_ehci_ops,
89 .vendor = PCI_VID_INTEL,
90 .devices = pci_device_ids,