drivers/intel/dtbt: Add discrete Thunderbolt driver
Add a new driver for discrete Thunderbolt controllers. This allows using Maple Ridge devices on Raptor Point PCH. Change-Id: Ib78ce43740956fa2c93b9ebddb0eeb319dcc0364 Signed-off-by: Jeremy Soller <jeremy@system76.com> Signed-off-by: Tim Crawford <tcrawford@system76.com>
This commit is contained in:
committed by
Tim Crawford
parent
3289a306e6
commit
fa90e35cae
5
src/drivers/intel/dtbt/Kconfig
Normal file
5
src/drivers/intel/dtbt/Kconfig
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
config DRIVERS_INTEL_DTBT
|
||||||
|
bool
|
||||||
|
default n
|
||||||
|
help
|
||||||
|
Support for discrete Thunderbolt controllers
|
3
src/drivers/intel/dtbt/Makefile.inc
Normal file
3
src/drivers/intel/dtbt/Makefile.inc
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
|
||||||
|
ramstage-$(CONFIG_DRIVERS_INTEL_DTBT) += dtbt.c
|
8
src/drivers/intel/dtbt/chip.h
Normal file
8
src/drivers/intel/dtbt/chip.h
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
|
#ifndef _DRIVERS_INTEL_DTBT_CHIP_H_
|
||||||
|
#define _DRIVERS_INTEL_DTBT_CHIP_H_
|
||||||
|
|
||||||
|
struct drivers_intel_dtbt_config {};
|
||||||
|
|
||||||
|
#endif /* _DRIVERS_INTEL_DTBT_CHIP_H_ */
|
215
src/drivers/intel/dtbt/dtbt.c
Normal file
215
src/drivers/intel/dtbt/dtbt.c
Normal file
@@ -0,0 +1,215 @@
|
|||||||
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
|
||||||
|
#include "chip.h"
|
||||||
|
#include <acpi/acpigen.h>
|
||||||
|
#include <console/console.h>
|
||||||
|
#include <delay.h>
|
||||||
|
#include <device/device.h>
|
||||||
|
#include <device/pci.h>
|
||||||
|
#include <device/pciexp.h>
|
||||||
|
#include <device/pci_ids.h>
|
||||||
|
|
||||||
|
#define PCIE2TBT 0x54C
|
||||||
|
#define PCIE2TBT_GO2SX ((0x02 << 1) | 1)
|
||||||
|
#define PCIE2TBT_GO2SX_NO_WAKE ((0x03 << 1) | 1)
|
||||||
|
#define PCIE2TBT_SX_EXIT_TBT_CONNECTED ((0x04 << 1) | 1)
|
||||||
|
#define PCIE2TBT_SX_EXIT_NO_TBT_CONNECTED ((0x05 << 1) | 1)
|
||||||
|
#define PCIE2TBT_SET_SECURITY_LEVEL ((0x08 << 1) | 1)
|
||||||
|
#define PCIE2TBT_GET_SECURITY_LEVEL ((0x09 << 1) | 1)
|
||||||
|
#define PCIE2TBT_BOOT_ON ((0x18 << 1) | 1)
|
||||||
|
#define TBT2PCIE 0x548
|
||||||
|
|
||||||
|
static void dtbt_cmd(struct device *dev, u32 command)
|
||||||
|
{
|
||||||
|
printk(BIOS_DEBUG, "DTBT send command %08x\n", command);
|
||||||
|
|
||||||
|
pci_write_config32(dev, PCIE2TBT, command);
|
||||||
|
|
||||||
|
u32 timeout;
|
||||||
|
u32 status;
|
||||||
|
for (timeout = 1000000; timeout > 0; timeout--) {
|
||||||
|
status = pci_read_config32(dev, TBT2PCIE);
|
||||||
|
if (status & 1) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
udelay(1);
|
||||||
|
}
|
||||||
|
if (timeout == 0) {
|
||||||
|
printk(BIOS_ERR, "DTBT command %08x timeout on status %08x\n", command, status);
|
||||||
|
}
|
||||||
|
|
||||||
|
printk(BIOS_DEBUG, "DTBT command %08x status %08x\n", command, status);
|
||||||
|
|
||||||
|
pci_write_config32(dev, PCIE2TBT, 0);
|
||||||
|
|
||||||
|
u32 status_clear;
|
||||||
|
for (timeout = 1000000; timeout > 0; timeout--) {
|
||||||
|
status_clear = pci_read_config32(dev, TBT2PCIE);
|
||||||
|
if (!(status_clear & 1)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
udelay(1);
|
||||||
|
}
|
||||||
|
if (timeout == 0) {
|
||||||
|
printk(BIOS_ERR, "DTBT command %08x timeout on status clear %08x\n", command, status_clear);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void dtbt_fill_ssdt(const struct device *dev)
|
||||||
|
{
|
||||||
|
printk(BIOS_DEBUG, "DTBT fill SSDT\n");
|
||||||
|
|
||||||
|
if (!dev) {
|
||||||
|
printk(BIOS_ERR, "DTBT device invalid\n");
|
||||||
|
}
|
||||||
|
printk(BIOS_DEBUG, " Dev %s\n", dev_path(dev));
|
||||||
|
|
||||||
|
struct bus *bus = dev->bus;
|
||||||
|
if (!bus) {
|
||||||
|
printk(BIOS_ERR, "DTBT bus invalid\n");
|
||||||
|
}
|
||||||
|
printk(BIOS_DEBUG, " Bus %s\n", bus_path(bus));
|
||||||
|
|
||||||
|
struct device *parent = bus->dev;
|
||||||
|
if (!parent || parent->path.type != DEVICE_PATH_PCI) {
|
||||||
|
printk(BIOS_ERR, "DTBT parent invalid\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
printk(BIOS_DEBUG, " Parent %s\n", dev_path(parent));
|
||||||
|
|
||||||
|
const char *parent_scope = acpi_device_path(parent);
|
||||||
|
if (!parent_scope) {
|
||||||
|
printk(BIOS_ERR, "DTBT parent scope not valid\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
{ /* Scope */
|
||||||
|
printk(BIOS_DEBUG, " Scope %s\n", parent_scope);
|
||||||
|
acpigen_write_scope(parent_scope);
|
||||||
|
|
||||||
|
struct acpi_dp *dsd = acpi_dp_new_table("_DSD");
|
||||||
|
|
||||||
|
/* Indicate that device supports hotplug in D3. */
|
||||||
|
acpi_device_add_hotplug_support_in_d3(dsd);
|
||||||
|
|
||||||
|
/* Indicate that port is external. */
|
||||||
|
acpi_device_add_external_facing_port(dsd);
|
||||||
|
|
||||||
|
acpi_dp_write(dsd);
|
||||||
|
|
||||||
|
{ /* Device */
|
||||||
|
const char *dev_name = acpi_device_name(dev);
|
||||||
|
printk(BIOS_DEBUG, " Device %s\n", dev_name);
|
||||||
|
acpigen_write_device(dev_name);
|
||||||
|
|
||||||
|
acpigen_write_name_integer("_ADR", 0);
|
||||||
|
|
||||||
|
uintptr_t mmconf_base = (uintptr_t)CONFIG_ECAM_MMCONF_BASE_ADDRESS
|
||||||
|
+ (((uintptr_t)(bus->secondary)) << 20);
|
||||||
|
printk(BIOS_DEBUG, " MMCONF base %08lx\n", mmconf_base);
|
||||||
|
const struct opregion opregion = OPREGION("PXCS", SYSTEMMEMORY, mmconf_base, 0x1000);
|
||||||
|
const struct fieldlist fieldlist[] = {
|
||||||
|
FIELDLIST_OFFSET(TBT2PCIE),
|
||||||
|
FIELDLIST_NAMESTR("TB2P", 32),
|
||||||
|
FIELDLIST_OFFSET(PCIE2TBT),
|
||||||
|
FIELDLIST_NAMESTR("P2TB", 32),
|
||||||
|
};
|
||||||
|
acpigen_write_opregion(&opregion);
|
||||||
|
acpigen_write_field("PXCS", fieldlist, ARRAY_SIZE(fieldlist),
|
||||||
|
FIELD_DWORDACC | FIELD_NOLOCK | FIELD_PRESERVE);
|
||||||
|
|
||||||
|
{ /* Method */
|
||||||
|
acpigen_write_method_serialized("PTS", 0);
|
||||||
|
|
||||||
|
acpigen_write_debug_string("DTBT prepare to sleep");
|
||||||
|
|
||||||
|
acpigen_write_store_int_to_namestr(PCIE2TBT_GO2SX_NO_WAKE, "P2TB");
|
||||||
|
acpigen_write_delay_until_namestr_int(600, "TB2P", PCIE2TBT_GO2SX_NO_WAKE);
|
||||||
|
|
||||||
|
acpigen_write_debug_namestr("TB2P");
|
||||||
|
|
||||||
|
acpigen_write_store_int_to_namestr(0, "P2TB");
|
||||||
|
acpigen_write_delay_until_namestr_int(600, "TB2P", 0);
|
||||||
|
|
||||||
|
acpigen_write_debug_namestr("TB2P");
|
||||||
|
|
||||||
|
acpigen_write_method_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
acpigen_write_device_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
acpigen_write_scope_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
{ /* Scope */
|
||||||
|
acpigen_write_scope("\\");
|
||||||
|
|
||||||
|
{ /* Method */
|
||||||
|
acpigen_write_method("TBTS", 0);
|
||||||
|
|
||||||
|
acpigen_emit_namestring(acpi_device_path_join(dev, "PTS"));
|
||||||
|
|
||||||
|
acpigen_write_method_end();
|
||||||
|
}
|
||||||
|
|
||||||
|
acpigen_write_scope_end();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static const char *dtbt_acpi_name(const struct device *dev)
|
||||||
|
{
|
||||||
|
return "DTBT";
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct pci_operations dtbt_device_ops_pci = {
|
||||||
|
.set_subsystem = 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct device_operations dtbt_device_ops = {
|
||||||
|
.read_resources = pci_bus_read_resources,
|
||||||
|
.set_resources = pci_dev_set_resources,
|
||||||
|
.enable_resources = pci_bus_enable_resources,
|
||||||
|
.acpi_fill_ssdt = dtbt_fill_ssdt,
|
||||||
|
.acpi_name = dtbt_acpi_name,
|
||||||
|
.scan_bus = pciexp_scan_bridge,
|
||||||
|
.reset_bus = pci_bus_reset,
|
||||||
|
.ops_pci = &dtbt_device_ops_pci,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void dtbt_enable(struct device *dev)
|
||||||
|
{
|
||||||
|
if (!is_dev_enabled(dev) || dev->path.type != DEVICE_PATH_PCI)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (pci_read_config16(dev, PCI_VENDOR_ID) != PCI_VID_INTEL)
|
||||||
|
return;
|
||||||
|
|
||||||
|
// TODO: check device ID
|
||||||
|
|
||||||
|
dev->ops = &dtbt_device_ops;
|
||||||
|
|
||||||
|
printk(BIOS_INFO, "DTBT controller found at %s\n", dev_path(dev));
|
||||||
|
|
||||||
|
printk(BIOS_DEBUG, "DTBT get security level\n");
|
||||||
|
dtbt_cmd(dev, PCIE2TBT_GET_SECURITY_LEVEL);
|
||||||
|
|
||||||
|
printk(BIOS_DEBUG, "DTBT set security level SL0\n");
|
||||||
|
dtbt_cmd(dev, PCIE2TBT_SET_SECURITY_LEVEL);
|
||||||
|
|
||||||
|
printk(BIOS_DEBUG, "DTBT get security level\n");
|
||||||
|
dtbt_cmd(dev, PCIE2TBT_GET_SECURITY_LEVEL);
|
||||||
|
|
||||||
|
if (acpi_is_wakeup_s3()) {
|
||||||
|
printk(BIOS_INFO, "DTBT SX exit\n");
|
||||||
|
dtbt_cmd(dev, PCIE2TBT_SX_EXIT_TBT_CONNECTED);
|
||||||
|
} else {
|
||||||
|
printk(BIOS_INFO, "DTBT boot on\n");
|
||||||
|
dtbt_cmd(dev, PCIE2TBT_BOOT_ON);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct chip_operations drivers_intel_dtbt_ops = {
|
||||||
|
CHIP_NAME("Intel Discrete Thunderbolt Device")
|
||||||
|
.enable_dev = dtbt_enable
|
||||||
|
};
|
Reference in New Issue
Block a user