blob: f665ab7a0ad3750d2b60cd5c7a2b32f8ecda414a [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00002
3#include <console/console.h>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
7#include "i82801gx.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 Reinauerdebb11f2008-10-29 04:46:52 +000011
12static void usb_ehci_init(struct device *dev)
13{
Stefan Reinauera8e11682009-03-11 14:54:18 +000014 struct resource *res;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080015 u8 *base;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000016 u32 reg32;
Stefan Reinauera8e11682009-03-11 14:54:18 +000017 u8 reg8;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000018
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000019 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
Elyes HAOUAS12349252020-04-27 05:08:26 +020020 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER | PCI_COMMAND_SERR);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000021
22 reg32 = pci_read_config32(dev, 0xdc);
23 reg32 |= (1 << 31) | (1 << 27);
24 pci_write_config32(dev, 0xdc, reg32);
25
26 reg32 = pci_read_config32(dev, 0xfc);
27 reg32 &= ~(3 << 2);
28 reg32 |= (2 << 2) | (1 << 29) | (1 << 17);
29 pci_write_config32(dev, 0xfc, reg32);
30
Stefan Reinauera8e11682009-03-11 14:54:18 +000031 /* Clear any pending port changes */
32 res = find_resource(dev, 0x10);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080033 base = res2mmio(res, 0, 0);
Stefan Reinauerde3206a2010-02-22 06:09:43 +000034 reg32 = read32(base + 0x24) | (1 << 2);
35 write32(base + 0x24, reg32);
Stefan Reinauera8e11682009-03-11 14:54:18 +000036
37 /* workaround */
38 reg8 = pci_read_config8(dev, 0x84);
39 reg8 |= (1 << 4);
40 pci_write_config8(dev, 0x84, reg8);
41
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000042 printk(BIOS_DEBUG, "done.\n");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000043}
44
Elyes HAOUAS92646ea2020-04-04 13:43:03 +020045static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor, unsigned int device)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000046{
47 u8 access_cntl;
48
49 access_cntl = pci_read_config8(dev, 0x80);
50
51 /* Enable writes to protected registers. */
52 pci_write_config8(dev, 0x80, access_cntl | 1);
53
Subrata Banik4a0f0712019-03-20 14:29:47 +053054 pci_dev_set_subsystem(dev, vendor, device);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000055
56 /* Restore protection. */
57 pci_write_config8(dev, 0x80, access_cntl);
58}
59
60static struct pci_operations lops_pci = {
61 .set_subsystem = &usb_ehci_set_subsystem,
62};
63
64static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030065 .read_resources = pci_ehci_read_resources,
66 .set_resources = pci_dev_set_resources,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000067 .enable_resources = pci_dev_enable_resources,
68 .init = usb_ehci_init,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000069 .enable = i82801gx_enable,
70 .ops_pci = &lops_pci,
71};
72
Uwe Hermannbddc6932008-10-29 13:51:31 +000073/* 82801GB/GR/GDH/GBM/GHM/GU (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH/ICH7-U) */
74static const struct pci_driver i82801gx_usb_ehci __pci_driver = {
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000075 .ops = &usb_ehci_ops,
76 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +000077 .device = 0x27cc,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000078};