blob: 8fe3e41d6d32f4783e3e0d661987176f9a969546 [file] [log] [blame]
Stefan Reinauer8e073822012-04-04 00:07:22 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * 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.
Stefan Reinauer8e073822012-04-04 00:07:22 +020015 */
16
17#include <console/console.h>
18#include <device/device.h>
19#include <device/pci.h>
20#include <device/pci_ids.h>
21#include "pch.h"
Kyösti Mälkkie2227a22014-02-05 13:02:55 +020022#include <device/pci_ehci.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020023#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020024#include <device/pci_ops.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +020025
26static void usb_ehci_init(struct device *dev)
27{
28 u32 reg32;
29
30 /* Disable Wake on Disconnect in RMH */
31 reg32 = RCBA32(0x35b0);
32 reg32 |= 0x22;
33 RCBA32(0x35b0) = reg32;
34
35 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020036
37 /* For others, done in MRC. */
Julius Wernercd49cce2019-03-05 16:53:33 -080038#if CONFIG(USE_NATIVE_RAMINIT)
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020039 pci_write_config32(dev, 0x84, 0x930c8811);
40 pci_write_config32(dev, 0x88, 0x24000d30);
41 pci_write_config32(dev, 0xf4, 0x80408588);
42 pci_write_config32(dev, 0xf4, 0x80808588);
43 pci_write_config32(dev, 0xf4, 0x00808588);
44 pci_write_config32(dev, 0xfc, 0x205b1708);
45#endif
46
Stefan Reinauer8e073822012-04-04 00:07:22 +020047 reg32 = pci_read_config32(dev, PCI_COMMAND);
48 reg32 |= PCI_COMMAND_MASTER;
49 //reg32 |= PCI_COMMAND_SERR;
50 pci_write_config32(dev, PCI_COMMAND, reg32);
51
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020052 /* For others, done in MRC. */
Julius Wernercd49cce2019-03-05 16:53:33 -080053#if CONFIG(USE_NATIVE_RAMINIT)
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020054 struct resource *res;
55 u8 access_cntl;
56
57 access_cntl = pci_read_config8(dev, 0x80);
58
59 /* Enable writes to protected registers. */
60 pci_write_config8(dev, 0x80, access_cntl | 1);
61
62 res = find_resource(dev, PCI_BASE_ADDRESS_0);
63 if (res) {
64 /* Number of ports and companion controllers. */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080065 reg32 = read32((void *)(uintptr_t)(res->base + 4));
66 write32((void *)(uintptr_t)(res->base + 4),
67 (reg32 & 0xfff00000) | 3);
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020068 }
69
70 /* Restore protection. */
71 pci_write_config8(dev, 0x80, access_cntl);
72#endif
73
Stefan Reinauer8e073822012-04-04 00:07:22 +020074 printk(BIOS_DEBUG, "done.\n");
75}
76
Elyes HAOUAS4aec3402018-05-25 08:29:27 +020077static void usb_ehci_set_subsystem(struct device *dev, unsigned vendor,
78 unsigned device)
Stefan Reinauer8e073822012-04-04 00:07:22 +020079{
80 u8 access_cntl;
81
82 access_cntl = pci_read_config8(dev, 0x80);
83
84 /* Enable writes to protected registers. */
85 pci_write_config8(dev, 0x80, access_cntl | 1);
86
Subrata Banik4a0f0712019-03-20 14:29:47 +053087 pci_dev_set_subsystem(dev, vendor, device);
Stefan Reinauer8e073822012-04-04 00:07:22 +020088
89 /* Restore protection. */
90 pci_write_config8(dev, 0x80, access_cntl);
91}
92
Aaron Durbinaa090cb2017-09-13 16:01:52 -060093static const char *usb_ehci_acpi_name(const struct device *dev)
Patrick Rudolph604f6982017-06-07 09:46:52 +020094{
95 switch (dev->path.pci.devfn) {
96 case PCI_DEVFN(0x1a, 0):
97 return "EHC2";
98 case PCI_DEVFN(0x1d, 0):
99 return "EHC1";
100 }
101 return NULL;
102}
103
Stefan Reinauer8e073822012-04-04 00:07:22 +0200104static struct pci_operations lops_pci = {
105 .set_subsystem = &usb_ehci_set_subsystem,
106};
107
108static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +0300109 .read_resources = pci_ehci_read_resources,
110 .set_resources = pci_dev_set_resources,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200111 .enable_resources = pci_dev_enable_resources,
112 .init = usb_ehci_init,
113 .scan_bus = 0,
114 .ops_pci = &lops_pci,
Patrick Rudolph604f6982017-06-07 09:46:52 +0200115 .acpi_name = usb_ehci_acpi_name,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200116};
117
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700118static const unsigned short pci_device_ids[] = { 0x1c26, 0x1c2d, 0x1e26, 0x1e2d,
119 0 };
120
121static const struct pci_driver pch_usb_ehci __pci_driver = {
122 .ops = &usb_ehci_ops,
123 .vendor = PCI_VENDOR_ID_INTEL,
124 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200125};