2020-04-05 15:46:45 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2015-09-22 10:53:58 +02:00
|
|
|
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <device/pci_ids.h>
|
|
|
|
#include <reg_script.h>
|
|
|
|
|
|
|
|
#include <soc/iomap.h>
|
|
|
|
#include <soc/iosf.h>
|
|
|
|
#include <soc/pci_devs.h>
|
|
|
|
#include <soc/pm.h>
|
|
|
|
#include <soc/ramstage.h>
|
|
|
|
#include <soc/xhci.h>
|
|
|
|
|
|
|
|
#include "chip.h"
|
|
|
|
|
2018-05-24 22:29:44 +02:00
|
|
|
static void xhci_init(struct device *dev)
|
2015-09-22 10:53:58 +02:00
|
|
|
{
|
2019-07-13 21:16:25 +02:00
|
|
|
struct soc_intel_braswell_config *config = config_of(dev);
|
2015-09-22 10:53:58 +02:00
|
|
|
|
2019-07-13 21:16:25 +02:00
|
|
|
if (config->usb_comp_bg) {
|
2015-09-22 10:53:58 +02:00
|
|
|
struct reg_script ops[] = {
|
2020-03-19 00:31:58 +01:00
|
|
|
REG_IOSF_WRITE(IOSF_PORT_USBPHY, USBPHY_COMPBG, config->usb_comp_bg),
|
2015-09-22 10:53:58 +02:00
|
|
|
REG_SCRIPT_END
|
|
|
|
};
|
2020-03-19 00:31:58 +01:00
|
|
|
printk(BIOS_INFO, "Override USB2_COMPBG to: 0x%X\n", config->usb_comp_bg);
|
2015-09-22 10:53:58 +02:00
|
|
|
reg_script_run(ops);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_operations xhci_device_ops = {
|
|
|
|
.read_resources = pci_dev_read_resources,
|
|
|
|
.set_resources = pci_dev_set_resources,
|
|
|
|
.enable_resources = pci_dev_enable_resources,
|
|
|
|
.init = xhci_init,
|
|
|
|
.ops_pci = &soc_pci_ops,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct pci_driver soc_xhci __pci_driver = {
|
|
|
|
.ops = &xhci_device_ops,
|
|
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
|
|
|
.device = XHCI_DEVID
|
|
|
|
};
|