blob: 0a94d3b5f2407b547b786b79503a5c3b31ae7593 [file] [log] [blame]
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauera8e11682009-03-11 14:54:18 +00004 * Copyright (C) 2008-2009 coresystems GmbH
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00005 *
Stefan Reinauera8e11682009-03-11 14:54:18 +00006 * 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.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000010 *
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 Reinauerdebb11f2008-10-29 04:46:52 +000015 */
16
17#include <console/console.h>
18#include <device/device.h>
19#include <device/pci.h>
20#include <device/pci_ids.h>
21#include "i82801gx.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 Reinauerdebb11f2008-10-29 04:46:52 +000025
26static void usb_ehci_init(struct device *dev)
27{
Stefan Reinauera8e11682009-03-11 14:54:18 +000028 struct resource *res;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080029 u8 *base;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000030 u32 reg32;
Stefan Reinauera8e11682009-03-11 14:54:18 +000031 u8 reg8;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000032
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000033 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000034 reg32 = pci_read_config32(dev, PCI_COMMAND);
Stefan Reinauera8e11682009-03-11 14:54:18 +000035 reg32 |= PCI_COMMAND_MASTER;
36 reg32 |= PCI_COMMAND_SERR;
37 pci_write_config32(dev, PCI_COMMAND, reg32);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000038
39 reg32 = pci_read_config32(dev, 0xdc);
40 reg32 |= (1 << 31) | (1 << 27);
41 pci_write_config32(dev, 0xdc, reg32);
42
43 reg32 = pci_read_config32(dev, 0xfc);
44 reg32 &= ~(3 << 2);
45 reg32 |= (2 << 2) | (1 << 29) | (1 << 17);
46 pci_write_config32(dev, 0xfc, reg32);
47
Stefan Reinauera8e11682009-03-11 14:54:18 +000048 /* Clear any pending port changes */
49 res = find_resource(dev, 0x10);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080050 base = res2mmio(res, 0, 0);
Stefan Reinauerde3206a2010-02-22 06:09:43 +000051 reg32 = read32(base + 0x24) | (1 << 2);
52 write32(base + 0x24, reg32);
Stefan Reinauera8e11682009-03-11 14:54:18 +000053
54 /* workaround */
55 reg8 = pci_read_config8(dev, 0x84);
56 reg8 |= (1 << 4);
57 pci_write_config8(dev, 0x84, reg8);
58
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000059 printk(BIOS_DEBUG, "done.\n");
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000060}
61
Elyes HAOUAS99667032018-05-13 12:47:28 +020062static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
63 unsigned int device)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000064{
65 u8 access_cntl;
66
67 access_cntl = pci_read_config8(dev, 0x80);
68
69 /* Enable writes to protected registers. */
70 pci_write_config8(dev, 0x80, access_cntl | 1);
71
Subrata Banik4a0f0712019-03-20 14:29:47 +053072 pci_dev_set_subsystem(dev, vendor, device);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000073
74 /* Restore protection. */
75 pci_write_config8(dev, 0x80, access_cntl);
76}
77
78static struct pci_operations lops_pci = {
79 .set_subsystem = &usb_ehci_set_subsystem,
80};
81
82static struct device_operations usb_ehci_ops = {
Kyösti Mälkkifb387df2013-06-07 22:16:52 +030083 .read_resources = pci_ehci_read_resources,
84 .set_resources = pci_dev_set_resources,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000085 .enable_resources = pci_dev_enable_resources,
86 .init = usb_ehci_init,
87 .scan_bus = 0,
88 .enable = i82801gx_enable,
89 .ops_pci = &lops_pci,
90};
91
Uwe Hermannbddc6932008-10-29 13:51:31 +000092/* 82801GB/GR/GDH/GBM/GHM/GU (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH/ICH7-U) */
93static const struct pci_driver i82801gx_usb_ehci __pci_driver = {
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000094 .ops = &usb_ehci_ops,
95 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +000096 .device = 0x27cc,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000097};