blob: 0a66136d03eadb3fba77e5c67379154198811979 [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;
17
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000018 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
Elyes HAOUAS12349252020-04-27 05:08:26 +020019 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER | PCI_COMMAND_SERR);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000020
Angel Ponsd19332c2020-06-08 12:32:54 +020021 pci_or_config32(dev, 0xdc, (1 << 31) | (1 << 27));
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000022
Angel Ponsd19332c2020-06-08 12:32:54 +020023 pci_update_config32(dev, 0xfc, ~(3 << 2), (2 << 2) | (1 << 29) | (1 << 17));
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000024
Stefan Reinauera8e11682009-03-11 14:54:18 +000025 /* Clear any pending port changes */
26 res = find_resource(dev, 0x10);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080027 base = res2mmio(res, 0, 0);
Stefan Reinauerde3206a2010-02-22 06:09:43 +000028 reg32 = read32(base + 0x24) | (1 << 2);
29 write32(base + 0x24, reg32);
Stefan Reinauera8e11682009-03-11 14:54:18 +000030
31 /* workaround */
Angel Ponsd19332c2020-06-08 12:32:54 +020032 pci_or_config8(dev, 0x84, 1 << 4);
Stefan Reinauera8e11682009-03-11 14:54:18 +000033
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000034 printk(BIOS_DEBUG, "done.\n");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000035}
36
Elyes HAOUAS92646ea2020-04-04 13:43:03 +020037static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor, unsigned int device)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000038{
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
Subrata Banik4a0f0712019-03-20 14:29:47 +053046 pci_dev_set_subsystem(dev, vendor, device);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000047
48 /* Restore protection. */
49 pci_write_config8(dev, 0x80, access_cntl);
50}
51
52static struct pci_operations lops_pci = {
53 .set_subsystem = &usb_ehci_set_subsystem,
54};
55
56static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030057 .read_resources = pci_ehci_read_resources,
58 .set_resources = pci_dev_set_resources,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000059 .enable_resources = pci_dev_enable_resources,
60 .init = usb_ehci_init,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000061 .enable = i82801gx_enable,
62 .ops_pci = &lops_pci,
63};
64
Uwe Hermannbddc6932008-10-29 13:51:31 +000065/* 82801GB/GR/GDH/GBM/GHM/GU (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH/ICH7-U) */
66static const struct pci_driver i82801gx_usb_ehci __pci_driver = {
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000067 .ops = &usb_ehci_ops,
68 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +000069 .device = 0x27cc,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000070};