blob: 03b314a10d5fb584c3b398827750ae89a793d671 [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. */
Arthur Heymans7b9c1392017-04-09 20:40:39 +02003
4#include <console/console.h>
5#include <device/device.h>
6#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02007#include <device/pci_ops.h>
Arthur Heymans7b9c1392017-04-09 20:40:39 +02008#include <device/pci_ids.h>
Arthur Heymans349e0852017-04-09 20:48:37 +02009#include "i82801jx.h"
Arthur Heymans7b9c1392017-04-09 20:40:39 +020010#include <device/pci_ehci.h>
11
12static void usb_ehci_init(struct device *dev)
13{
14 u32 reg32;
15
16 printk(BIOS_DEBUG, "EHCI: Setting up controller.. ");
17 reg32 = pci_read_config32(dev, PCI_COMMAND);
18 reg32 |= PCI_COMMAND_MASTER;
19 pci_write_config32(dev, PCI_COMMAND, reg32);
20
21 printk(BIOS_DEBUG, "done.\n");
22}
23
Martin Rothff744bf2019-10-23 21:46:03 -060024static void usb_ehci_set_subsystem(struct device *dev, unsigned int vendor,
25 unsigned int device)
Arthur Heymans7b9c1392017-04-09 20:40:39 +020026{
27 u8 access_cntl;
28
29 access_cntl = pci_read_config8(dev, 0x80);
30
31 /* Enable writes to protected registers. */
32 pci_write_config8(dev, 0x80, access_cntl | 1);
33
Subrata Banik4a0f0712019-03-20 14:29:47 +053034 pci_dev_set_subsystem(dev, vendor, device);
Arthur Heymans7b9c1392017-04-09 20:40:39 +020035
36 /* Restore protection. */
37 pci_write_config8(dev, 0x80, access_cntl);
38}
39
40static const unsigned short pci_device_ids[] = {
Arthur Heymans349e0852017-04-09 20:48:37 +020041 0x3a3a,
42 0x3a6a,
43 0x3a3c,
44 0x3a6c,
Arthur Heymans7b9c1392017-04-09 20:40:39 +020045 0
46};
47
48static struct pci_operations lops_pci = {
49 .set_subsystem = &usb_ehci_set_subsystem,
50};
51
52static struct device_operations usb_ehci_ops = {
53 .read_resources = pci_ehci_read_resources,
54 .set_resources = pci_dev_set_resources,
55 .enable_resources = pci_dev_enable_resources,
56 .init = usb_ehci_init,
Arthur Heymans7b9c1392017-04-09 20:40:39 +020057 .ops_pci = &lops_pci,
58};
59
60static const struct pci_driver pch_usb_ehci1 __pci_driver = {
61 .ops = &usb_ehci_ops,
62 .vendor = PCI_VENDOR_ID_INTEL,
63 .devices = pci_device_ids,
64};