blob: 08211c2f9e1b26e0b05df2b2e15813a2f49ecf67 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00003
4#include <console/console.h>
5#include <device/device.h>
6#include <device/pci.h>
7#include <device/pci_ids.h>
8#include "i82801gx.h"
Kyösti Mälkkie2227a22014-02-05 13:02:55 +02009#include <device/pci_ehci.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020010#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020011#include <device/pci_ops.h>
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000012
13static void usb_ehci_init(struct device *dev)
14{
Stefan Reinauera8e11682009-03-11 14:54:18 +000015 struct resource *res;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080016 u8 *base;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000017 u32 reg32;
Stefan Reinauera8e11682009-03-11 14:54:18 +000018 u8 reg8;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000019
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000020 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
Elyes HAOUAS12349252020-04-27 05:08:26 +020021 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER | PCI_COMMAND_SERR);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000022
23 reg32 = pci_read_config32(dev, 0xdc);
24 reg32 |= (1 << 31) | (1 << 27);
25 pci_write_config32(dev, 0xdc, reg32);
26
27 reg32 = pci_read_config32(dev, 0xfc);
28 reg32 &= ~(3 << 2);
29 reg32 |= (2 << 2) | (1 << 29) | (1 << 17);
30 pci_write_config32(dev, 0xfc, reg32);
31
Stefan Reinauera8e11682009-03-11 14:54:18 +000032 /* Clear any pending port changes */
33 res = find_resource(dev, 0x10);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080034 base = res2mmio(res, 0, 0);
Stefan Reinauerde3206a2010-02-22 06:09:43 +000035 reg32 = read32(base + 0x24) | (1 << 2);
36 write32(base + 0x24, reg32);
Stefan Reinauera8e11682009-03-11 14:54:18 +000037
38 /* workaround */
39 reg8 = pci_read_config8(dev, 0x84);
40 reg8 |= (1 << 4);
41 pci_write_config8(dev, 0x84, reg8);
42
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000043 printk(BIOS_DEBUG, "done.\n");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000044}
45
Elyes HAOUAS92646ea2020-04-04 13:43:03 +020046static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor, unsigned int device)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000047{
48 u8 access_cntl;
49
50 access_cntl = pci_read_config8(dev, 0x80);
51
52 /* Enable writes to protected registers. */
53 pci_write_config8(dev, 0x80, access_cntl | 1);
54
Subrata Banik4a0f0712019-03-20 14:29:47 +053055 pci_dev_set_subsystem(dev, vendor, device);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000056
57 /* Restore protection. */
58 pci_write_config8(dev, 0x80, access_cntl);
59}
60
61static struct pci_operations lops_pci = {
62 .set_subsystem = &usb_ehci_set_subsystem,
63};
64
65static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030066 .read_resources = pci_ehci_read_resources,
67 .set_resources = pci_dev_set_resources,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000068 .enable_resources = pci_dev_enable_resources,
69 .init = usb_ehci_init,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000070 .enable = i82801gx_enable,
71 .ops_pci = &lops_pci,
72};
73
Uwe Hermannbddc6932008-10-29 13:51:31 +000074/* 82801GB/GR/GDH/GBM/GHM/GU (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH/ICH7-U) */
75static const struct pci_driver i82801gx_usb_ehci __pci_driver = {
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000076 .ops = &usb_ehci_ops,
77 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +000078 .device = 0x27cc,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000079};