blob: b54e36b8f81c8dee36b7e47018665a5efed883bd [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
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.
Aaron Durbin76c37002012-10-30 09:03:43 -050015 */
16
17#include <console/console.h>
Duncan Laurie1f529082013-07-30 15:53:45 -070018#include <delay.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050019#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.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>
Duncan Laurie1f529082013-07-30 15:53:45 -070025#include "pch.h"
26
27#ifdef __SMM__
28
Elyes HAOUASab72fc22018-11-29 16:13:14 +010029void usb_ehci_disable(pci_devfn_t dev)
Duncan Laurie1f529082013-07-30 15:53:45 -070030{
31 u16 reg16;
32 u32 reg32;
33
34 /* Set 0xDC[0]=1 */
35 pci_or_config32(dev, 0xdc, (1 << 0));
36
37 /* Set D3Hot state and disable PME */
38 reg16 = pci_read_config16(dev, EHCI_PWR_CTL_STS);
39 reg16 &= ~(PWR_CTL_ENABLE_PME | PWR_CTL_SET_MASK);
40 reg16 |= PWR_CTL_SET_D3;
41 pci_write_config16(dev, EHCI_PWR_CTL_STS, reg16);
42
43 /* Clear memory and bus master */
44 pci_write_config32(dev, PCI_BASE_ADDRESS_0, 0);
45 reg32 = pci_read_config32(dev, PCI_COMMAND);
46 reg32 &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
47 pci_write_config32(dev, PCI_COMMAND, reg32);
48
49 /* Disable device */
50 switch (dev) {
51 case PCH_EHCI1_DEV:
52 RCBA32_OR(FD, PCH_DISABLE_EHCI1);
53 break;
54 case PCH_EHCI2_DEV:
55 RCBA32_OR(FD, PCH_DISABLE_EHCI2);
56 break;
57 }
58}
59
60/* Handler for EHCI controller on entry to S3/S4/S5 */
Elyes HAOUASab72fc22018-11-29 16:13:14 +010061void usb_ehci_sleep_prepare(pci_devfn_t dev, u8 slp_typ)
Duncan Laurie1f529082013-07-30 15:53:45 -070062{
63 u32 reg32;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080064 u8 *bar0_base;
Duncan Laurie1f529082013-07-30 15:53:45 -070065 u16 pwr_state;
66 u16 pci_cmd;
67
68 /* Check if the controller is disabled or not present */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080069 bar0_base = (u8 *)pci_read_config32(dev, PCI_BASE_ADDRESS_0);
70 if (bar0_base == 0 || bar0_base == (u8 *)0xffffffff)
Duncan Laurie1f529082013-07-30 15:53:45 -070071 return;
72 pci_cmd = pci_read_config32(dev, PCI_COMMAND);
73
74 switch (slp_typ) {
Aaron Durbinda5f5092016-07-13 23:23:16 -050075 case ACPI_S4:
76 case ACPI_S5:
Duncan Laurie1f529082013-07-30 15:53:45 -070077 /* Check if controller is in D3 power state */
78 pwr_state = pci_read_config16(dev, EHCI_PWR_CTL_STS);
79 if ((pwr_state & PWR_CTL_SET_MASK) == PWR_CTL_SET_D3) {
80 /* Put in D0 */
81 u32 new_state = pwr_state & ~PWR_CTL_SET_MASK;
82 new_state |= PWR_CTL_SET_D0;
83 pci_write_config16(dev, EHCI_PWR_CTL_STS, new_state);
84
85 /* Make sure memory bar is set */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080086 pci_write_config32(dev, PCI_BASE_ADDRESS_0, (u32)bar0_base);
Duncan Laurie1f529082013-07-30 15:53:45 -070087
88 /* Make sure memory space is enabled */
89 pci_write_config16(dev, PCI_COMMAND, pci_cmd |
90 PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY);
91 }
92
93 /*
94 * If Run/Stop (bit0) is clear in USB2.0_CMD:
95 * - Clear Async Schedule Enable (bit5) and
96 * - Clear Periodic Schedule Enable (bit4) and
97 * - Set Run/Stop (bit0)
98 */
99 reg32 = read32(bar0_base + EHCI_USB_CMD);
100 if (reg32 & EHCI_USB_CMD_RUN) {
101 reg32 &= ~(EHCI_USB_CMD_PSE | EHCI_USB_CMD_ASE);
102 reg32 |= EHCI_USB_CMD_RUN;
103 write32(bar0_base + EHCI_USB_CMD, reg32);
104 }
105
106 /* Check for Port Enabled in PORTSC(0) (RMH) */
107 reg32 = read32(bar0_base + EHCI_PORTSC(0));
108 if (reg32 & EHCI_PORTSC_ENABLED) {
109 /* Set suspend bit in PORTSC if not already set */
110 if (!(reg32 & EHCI_PORTSC_SUSPEND)) {
111 reg32 |= EHCI_PORTSC_SUSPEND;
112 write32(bar0_base + EHCI_PORTSC(0), reg32);
113 }
114
115 /* Delay 25ms !! */
116 udelay(25 * 1000);
117
118 /* Clear Run/Stop bit */
119 reg32 = read32(bar0_base + EHCI_USB_CMD);
120 reg32 &= EHCI_USB_CMD_RUN;
121 write32(bar0_base + EHCI_USB_CMD, reg32);
122 }
123
124 /* Restore state to D3 if that is what it was at the start */
125 if ((pwr_state & PWR_CTL_SET_MASK) == PWR_CTL_SET_D3) {
126 /* Restore pci command reg */
127 pci_write_config16(dev, PCI_COMMAND, pci_cmd);
128
129 /* Enable D3 */
130 pci_write_config16(dev, EHCI_PWR_CTL_STS, pwr_state);
131 }
132 }
133}
134
135#else /* !__SMM__ */
Aaron Durbin76c37002012-10-30 09:03:43 -0500136
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700137static void usb_ehci_clock_gating(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500138{
139 u32 reg32;
140
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700141 /* IOBP 0xE5004001[7:6] = 11b */
142 pch_iobp_update(0xe5004001, ~0, (1 << 7)|(1 << 6));
Aaron Durbin76c37002012-10-30 09:03:43 -0500143
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700144 /* Dx:F0:DCh[5,2,1] = 111b
145 * Dx:F0:DCh[0] = 1b when EHCI controller is disabled */
146 reg32 = pci_read_config32(dev, 0xdc);
147 reg32 |= (1 << 5) | (1 << 2) | (1 << 1);
148 pci_write_config32(dev, 0xdc, reg32);
149
150 /* Dx:F0:78h[1:0] = 11b */
151 reg32 = pci_read_config32(dev, 0x78);
152 reg32 |= (1 << 1) | (1 << 0);
153 pci_write_config32(dev, 0x78, reg32);
154}
155
156static void usb_ehci_init(struct device *dev)
157{
Aaron Durbin76c37002012-10-30 09:03:43 -0500158 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
Duncan Laurie2d9d39a2013-05-29 15:27:55 -0700159
160 usb_ehci_clock_gating(dev);
161
162 /* Disable Wake on Disconnect in RMH */
163 RCBA32_OR(0x35b0, 0x00000022);
Aaron Durbin76c37002012-10-30 09:03:43 -0500164
165 printk(BIOS_DEBUG, "done.\n");
166}
167
Elyes HAOUASab72fc22018-11-29 16:13:14 +0100168static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
169 unsigned int device)
Aaron Durbin76c37002012-10-30 09:03:43 -0500170{
171 u8 access_cntl;
172
173 access_cntl = pci_read_config8(dev, 0x80);
174
175 /* Enable writes to protected registers. */
176 pci_write_config8(dev, 0x80, access_cntl | 1);
177
178 if (!vendor || !device) {
179 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
180 pci_read_config32(dev, PCI_VENDOR_ID));
181 } else {
182 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
183 ((device & 0xffff) << 16) | (vendor & 0xffff));
184 }
185
186 /* Restore protection. */
187 pci_write_config8(dev, 0x80, access_cntl);
188}
189
Aaron Durbin76c37002012-10-30 09:03:43 -0500190static struct pci_operations lops_pci = {
191 .set_subsystem = &usb_ehci_set_subsystem,
192};
193
194static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +0300195 .read_resources = pci_ehci_read_resources,
196 .set_resources = pci_dev_set_resources,
Aaron Durbin76c37002012-10-30 09:03:43 -0500197 .enable_resources = pci_dev_enable_resources,
198 .init = usb_ehci_init,
199 .scan_bus = 0,
200 .ops_pci = &lops_pci,
201};
202
Kyösti Mälkkif55a5422013-06-14 11:16:25 +0300203static const unsigned short pci_device_ids[] = { 0x9c26, 0x8c26, 0x8c2d, 0 };
Aaron Durbin76c37002012-10-30 09:03:43 -0500204
205static const struct pci_driver pch_usb_ehci __pci_driver = {
206 .ops = &usb_ehci_ops,
207 .vendor = PCI_VENDOR_ID_INTEL,
208 .devices = pci_device_ids,
209};
Duncan Laurie1f529082013-07-30 15:53:45 -0700210
211#endif /* !__SMM__ */