blob: c429e7dd5898dfd0c93edd3edb1e0eccba1d8ab5 [file] [log] [blame]
Subrata Banika554b0c2017-02-16 16:08:49 +05301/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google Inc.
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +08005 * Copyright (C) 2015-2018 Intel Corporation.
Subrata Banika554b0c2017-02-16 16:08:49 +05306 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
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.
15 */
16
17#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
Duncan Lauriebf713b02018-05-07 15:33:18 -070020#include <intelblocks/acpi.h>
Subrata Banika554b0c2017-02-16 16:08:49 +053021#include <intelblocks/xhci.h>
22
Aaron Durbin64031672018-04-21 14:45:32 -060023__weak void soc_xhci_init(struct device *dev) { /* no-op */ }
Subrata Banika554b0c2017-02-16 16:08:49 +053024
25static struct device_operations usb_xhci_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010026 .read_resources = pci_dev_read_resources,
27 .set_resources = pci_dev_set_resources,
28 .enable_resources = pci_dev_enable_resources,
Subrata Banika554b0c2017-02-16 16:08:49 +053029 .init = soc_xhci_init,
Subrata Banik6bbc91a2017-12-07 14:55:51 +053030 .ops_pci = &pci_dev_ops_pci,
Elyes HAOUAS1d191272018-11-27 12:23:48 +010031 .scan_bus = scan_usb_bus,
Julius Wernercd49cce2019-03-05 16:53:33 -080032#if CONFIG(HAVE_ACPI_TABLES)
Elyes HAOUAS1d191272018-11-27 12:23:48 +010033 .acpi_name = soc_acpi_name,
Subrata Banik98376b82018-05-22 16:18:16 +053034#endif
Subrata Banika554b0c2017-02-16 16:08:49 +053035};
36
37static const unsigned short pci_device_ids[] = {
Aaron Durbinf27d98f2017-05-05 16:52:52 -050038 PCI_DEVICE_ID_INTEL_APL_XHCI,
Lijian Zhaobbedef92017-07-29 16:38:38 -070039 PCI_DEVICE_ID_INTEL_CNL_LP_XHCI,
Subrata Banikfc98c012017-05-03 13:29:19 +053040 PCI_DEVICE_ID_INTEL_GLK_XHCI,
41 PCI_DEVICE_ID_INTEL_SPT_LP_XHCI,
V Sowmya7c150472018-01-23 14:44:45 +053042 PCI_DEVICE_ID_INTEL_SPT_H_XHCI,
V Sowmyaacc2a482018-01-23 15:27:23 +053043 PCI_DEVICE_ID_INTEL_KBP_H_XHCI,
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +080044 PCI_DEVICE_ID_INTEL_CNP_H_XHCI,
Aamir Bohra9eac0392018-06-30 12:07:04 +053045 PCI_DEVICE_ID_INTEL_ICP_LP_XHCI,
Ronak Kanabarda7ffb482019-02-05 01:51:13 +053046 PCI_DEVICE_ID_INTEL_CMP_LP_XHCI,
Subrata Banika554b0c2017-02-16 16:08:49 +053047 0
48};
49
50static const struct pci_driver pch_usb_xhci __pci_driver = {
51 .ops = &usb_xhci_ops,
52 .vendor = PCI_VENDOR_ID_INTEL,
53 .devices = pci_device_ids,
54};