blob: a1cc3d2e8494c6348fe4ef8cec7a91dadafd22fd [file] [log] [blame]
Felix Held0ffebac2021-02-05 22:26:00 +01001/* SPDX-License-Identifier: GPL-2.0-or-later */
2
Raul E Rangelf2df29e2021-03-16 13:23:38 -06003#include <acpi/acpi_device.h>
Raul E Rangelf486fcc2021-03-16 20:29:06 -06004#include <acpi/acpigen.h>
5#include <acpi/acpigen_pci.h>
6#include <amdblocks/amd_pci_util.h>
7#include <assert.h>
Raul E Rangelf2df29e2021-03-16 13:23:38 -06008#include <console/console.h>
Felix Held0ffebac2021-02-05 22:26:00 +01009#include <device/device.h>
10#include <device/pci.h>
11#include <device/pci_ids.h>
Felix Held08105382021-02-16 18:46:01 +010012#include <device/pciexp.h>
Raul E Rangelf2df29e2021-03-16 13:23:38 -060013#include <soc/pci_devs.h>
Raul E Rangel14734fc2021-05-03 16:56:34 -060014#include <stdio.h>
15#include <stdlib.h>
Raul E Rangelf2df29e2021-03-16 13:23:38 -060016
17static const char *pcie_gpp_acpi_name(const struct device *dev)
18{
Raul E Rangel14734fc2021-05-03 16:56:34 -060019 char *name;
20
Raul E Rangelf2df29e2021-03-16 13:23:38 -060021 if (dev->path.type != DEVICE_PATH_PCI)
22 return NULL;
23
Raul E Rangel14734fc2021-05-03 16:56:34 -060024 name = malloc(ACPI_NAME_BUFFER_SIZE);
Raul E Rangel556412b2021-05-10 15:04:57 -060025 snprintf(name, ACPI_NAME_BUFFER_SIZE, "GP%02X", dev->path.pci.devfn);
Raul E Rangel14734fc2021-05-03 16:56:34 -060026 name[4] = '\0';
27
28 return name;
Raul E Rangelf2df29e2021-03-16 13:23:38 -060029}
Felix Held0ffebac2021-02-05 22:26:00 +010030
Raul E Rangelf486fcc2021-03-16 20:29:06 -060031static void acpi_device_write_gpp_pci_dev(const struct device *dev)
32{
33 const char *scope = acpi_device_scope(dev);
34 const char *name = acpi_device_name(dev);
35
36 assert(dev->path.type == DEVICE_PATH_PCI);
37 assert(name);
38 assert(scope);
39
40 acpigen_write_scope(scope);
41 acpigen_write_device(name);
42
43 acpigen_write_ADR_pci_device(dev);
44 acpigen_write_STA(acpi_device_status(dev));
45
Raul E Rangel506ee242021-05-07 12:30:49 -060046 acpigen_write_pci_GNB_PRT(dev);
Raul E Rangelf486fcc2021-03-16 20:29:06 -060047
48 acpigen_pop_len(); /* Device */
49 acpigen_pop_len(); /* Scope */
50}
51
Felix Held0ffebac2021-02-05 22:26:00 +010052static struct device_operations internal_pcie_gpp_ops = {
53 .read_resources = pci_bus_read_resources,
54 .set_resources = pci_dev_set_resources,
55 .enable_resources = pci_bus_enable_resources,
56 .scan_bus = pci_scan_bridge,
57 .reset_bus = pci_bus_reset,
Raul E Rangelf2df29e2021-03-16 13:23:38 -060058 .acpi_name = pcie_gpp_acpi_name,
Raul E Rangelf486fcc2021-03-16 20:29:06 -060059 .acpi_fill_ssdt = acpi_device_write_gpp_pci_dev,
Felix Held0ffebac2021-02-05 22:26:00 +010060};
61
Raul E Rangel48314112021-05-10 14:55:11 -060062static const unsigned short internal_pci_gpp_ids[] = {
63 PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_PCIE_GPP_BUSA,
64 PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_PCIE_GPP_BUSB,
65 PCI_DEVICE_ID_AMD_FAM17H_MODEL60H_PCIE_GPP_BUSABC,
66 0
67};
68
Felix Held0ffebac2021-02-05 22:26:00 +010069static const struct pci_driver internal_pcie_gpp_driver __pci_driver = {
70 .ops = &internal_pcie_gpp_ops,
71 .vendor = PCI_VENDOR_ID_AMD,
Raul E Rangel48314112021-05-10 14:55:11 -060072 .devices = internal_pci_gpp_ids,
Felix Held0ffebac2021-02-05 22:26:00 +010073};
Felix Held08105382021-02-16 18:46:01 +010074
75static struct device_operations external_pcie_gpp_ops = {
76 .read_resources = pci_bus_read_resources,
77 .set_resources = pci_dev_set_resources,
78 .enable_resources = pci_bus_enable_resources,
79 .scan_bus = pciexp_scan_bridge,
80 .reset_bus = pci_bus_reset,
Raul E Rangelf2df29e2021-03-16 13:23:38 -060081 .acpi_name = pcie_gpp_acpi_name,
Raul E Rangelf486fcc2021-03-16 20:29:06 -060082 .acpi_fill_ssdt = acpi_device_write_gpp_pci_dev,
Felix Held08105382021-02-16 18:46:01 +010083};
84
85static const unsigned short external_pci_gpp_ids[] = {
Raul E Rangel48314112021-05-10 14:55:11 -060086 PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_PCIE_GPP,
Felix Held08105382021-02-16 18:46:01 +010087 PCI_DEVICE_ID_AMD_FAM17H_MODEL60H_PCIE_GPP_D1,
88 PCI_DEVICE_ID_AMD_FAM17H_MODEL60H_PCIE_GPP_D2,
89 0
90};
91
92static const struct pci_driver external_pcie_gpp_driver __pci_driver = {
93 .ops = &external_pcie_gpp_ops,
94 .vendor = PCI_VENDOR_ID_AMD,
95 .devices = external_pci_gpp_ids,
96};