blob: 3661aba4f2c59bf8a0fd883acc159efe4c490993 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer8e073822012-04-04 00:07:22 +02002
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"
Kyösti Mälkkie2227a22014-02-05 13:02:55 +02008#include <device/pci_ehci.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02009#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020010#include <device/pci_ops.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +020011
12static void usb_ehci_init(struct device *dev)
13{
14 u32 reg32;
15
16 /* Disable Wake on Disconnect in RMH */
Patrick Rudolph4f8b1082019-07-14 11:54:58 +020017 reg32 = RCBA32(RMHWKCTL);
Stefan Reinauer8e073822012-04-04 00:07:22 +020018 reg32 |= 0x22;
Patrick Rudolph4f8b1082019-07-14 11:54:58 +020019 RCBA32(RMHWKCTL) = reg32;
Stefan Reinauer8e073822012-04-04 00:07:22 +020020
21 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020022
23 /* For others, done in MRC. */
Julius Wernercd49cce2019-03-05 16:53:33 -080024#if CONFIG(USE_NATIVE_RAMINIT)
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020025 pci_write_config32(dev, 0x84, 0x930c8811);
26 pci_write_config32(dev, 0x88, 0x24000d30);
27 pci_write_config32(dev, 0xf4, 0x80408588);
28 pci_write_config32(dev, 0xf4, 0x80808588);
29 pci_write_config32(dev, 0xf4, 0x00808588);
30 pci_write_config32(dev, 0xfc, 0x205b1708);
31#endif
32
Elyes HAOUAS729c0692020-04-28 19:50:44 +020033 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
34 //pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_SERR);
Stefan Reinauer8e073822012-04-04 00:07:22 +020035
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020036 /* For others, done in MRC. */
Julius Wernercd49cce2019-03-05 16:53:33 -080037#if CONFIG(USE_NATIVE_RAMINIT)
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020038 struct resource *res;
39 u8 access_cntl;
40
41 access_cntl = pci_read_config8(dev, 0x80);
42
43 /* Enable writes to protected registers. */
44 pci_write_config8(dev, 0x80, access_cntl | 1);
45
Angel Ponsf32ae102021-11-03 13:07:14 +010046 res = probe_resource(dev, PCI_BASE_ADDRESS_0);
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020047 if (res) {
48 /* Number of ports and companion controllers. */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080049 reg32 = read32((void *)(uintptr_t)(res->base + 4));
50 write32((void *)(uintptr_t)(res->base + 4),
51 (reg32 & 0xfff00000) | 3);
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020052 }
53
54 /* Restore protection. */
55 pci_write_config8(dev, 0x80, access_cntl);
56#endif
57
Stefan Reinauer8e073822012-04-04 00:07:22 +020058 printk(BIOS_DEBUG, "done.\n");
59}
60
Martin Rothff744bf2019-10-23 21:46:03 -060061static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
62 unsigned int device)
Stefan Reinauer8e073822012-04-04 00:07:22 +020063{
64 u8 access_cntl;
65
66 access_cntl = pci_read_config8(dev, 0x80);
67
68 /* Enable writes to protected registers. */
69 pci_write_config8(dev, 0x80, access_cntl | 1);
70
Subrata Banik4a0f0712019-03-20 14:29:47 +053071 pci_dev_set_subsystem(dev, vendor, device);
Stefan Reinauer8e073822012-04-04 00:07:22 +020072
73 /* Restore protection. */
74 pci_write_config8(dev, 0x80, access_cntl);
75}
76
Aaron Durbinaa090cb2017-09-13 16:01:52 -060077static const char *usb_ehci_acpi_name(const struct device *dev)
Patrick Rudolph604f6982017-06-07 09:46:52 +020078{
79 switch (dev->path.pci.devfn) {
80 case PCI_DEVFN(0x1a, 0):
81 return "EHC2";
82 case PCI_DEVFN(0x1d, 0):
83 return "EHC1";
84 }
85 return NULL;
86}
87
Stefan Reinauer8e073822012-04-04 00:07:22 +020088static struct pci_operations lops_pci = {
89 .set_subsystem = &usb_ehci_set_subsystem,
90};
91
92static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030093 .read_resources = pci_ehci_read_resources,
94 .set_resources = pci_dev_set_resources,
Stefan Reinauer8e073822012-04-04 00:07:22 +020095 .enable_resources = pci_dev_enable_resources,
96 .init = usb_ehci_init,
Stefan Reinauer8e073822012-04-04 00:07:22 +020097 .ops_pci = &lops_pci,
Patrick Rudolph604f6982017-06-07 09:46:52 +020098 .acpi_name = usb_ehci_acpi_name,
Stefan Reinauer8e073822012-04-04 00:07:22 +020099};
100
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700101static const unsigned short pci_device_ids[] = { 0x1c26, 0x1c2d, 0x1e26, 0x1e2d,
102 0 };
103
104static const struct pci_driver pch_usb_ehci __pci_driver = {
105 .ops = &usb_ehci_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100106 .vendor = PCI_VID_INTEL,
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700107 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200108};