blob: ff4320197b41ea3868986d646250c206dc8a1fbd [file] [log] [blame]
Subrata Banik23ccb0d2017-04-24 11:28:40 +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 Banik23ccb0d2017-04-24 11:28:40 +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
Subrata Banik23ccb0d2017-04-24 11:28:40 +053017#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
20#include <intelblocks/xdci.h>
Duncan Laurie4df7d2c2018-03-26 02:17:33 -070021#include <security/vboot/vboot_common.h>
Subrata Banik23ccb0d2017-04-24 11:28:40 +053022
Aaron Durbin64031672018-04-21 14:45:32 -060023__weak void soc_xdci_init(struct device *dev) { /* no-op */ }
Subrata Banik23ccb0d2017-04-24 11:28:40 +053024
Duncan Laurie4df7d2c2018-03-26 02:17:33 -070025int xdci_can_enable(void)
26{
Furquan Shaikh0b78ae52018-04-25 18:19:58 -070027 return vboot_can_enable_udc();
Duncan Laurie4df7d2c2018-03-26 02:17:33 -070028}
29
Subrata Banik23ccb0d2017-04-24 11:28:40 +053030static struct device_operations usb_xdci_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010031 .read_resources = pci_dev_read_resources,
32 .set_resources = pci_dev_set_resources,
33 .enable_resources = pci_dev_enable_resources,
Subrata Banik23ccb0d2017-04-24 11:28:40 +053034 .init = soc_xdci_init,
Subrata Banik6bbc91a2017-12-07 14:55:51 +053035 .ops_pci = &pci_dev_ops_pci,
Subrata Banik23ccb0d2017-04-24 11:28:40 +053036};
37
38static const unsigned short pci_device_ids[] = {
Aaron Durbinf27d98f2017-05-05 16:52:52 -050039 PCI_DEVICE_ID_INTEL_APL_XDCI,
Lijian Zhaobbedef92017-07-29 16:38:38 -070040 PCI_DEVICE_ID_INTEL_CNL_LP_XDCI,
Subrata Banik23ccb0d2017-04-24 11:28:40 +053041 PCI_DEVICE_ID_INTEL_GLK_XDCI,
42 PCI_DEVICE_ID_INTEL_SPT_LP_XDCI,
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +080043 PCI_DEVICE_ID_INTEL_CNP_H_XDCI,
Aamir Bohra9eac0392018-06-30 12:07:04 +053044 PCI_DEVICE_ID_INTEL_ICP_LP_XDCI,
Ronak Kanabarda7ffb482019-02-05 01:51:13 +053045 PCI_DEVICE_ID_INTEL_CMP_LP_XDCI,
Gaggery Tsai12a651c2019-12-05 11:23:20 -080046 PCI_DEVICE_ID_INTEL_CMP_H_XDCI,
Ravi Sarawadi6b5bf402019-10-21 22:25:04 -070047 PCI_DEVICE_ID_INTEL_TGP_LP_XDCI,
Tan, Lean Sheng26136092020-01-20 19:13:56 -080048 PCI_DEVICE_ID_INTEL_MCC_XDCI,
Meera Ravindranath3f4af0d2020-02-12 16:01:22 +053049 PCI_DEVICE_ID_INTEL_JSP_XDCI,
Subrata Banik23ccb0d2017-04-24 11:28:40 +053050 0
51};
52
53static const struct pci_driver pch_usb_xdci __pci_driver = {
54 .ops = &usb_xdci_ops,
55 .vendor = PCI_VENDOR_ID_INTEL,
56 .devices = pci_device_ids,
57};