cregit-Linux how code gets into the kernel

Release 4.7 drivers/pci/pcie/portdrv_acpi.c

Directory: drivers/pci/pcie
/*
 * PCIe Port Native Services Support, ACPI-Related Part
 *
 * Copyright (C) 2010 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License V2.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */

#include <linux/pci.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/acpi.h>
#include <linux/pci-acpi.h>
#include <linux/pcieport_if.h>

#include "aer/aerdrv.h"
#include "../pci.h"
#include "portdrv.h"

/**
 * pcie_port_acpi_setup - Request the BIOS to release control of PCIe services.
 * @port: PCIe Port service for a root port or event collector.
 * @srv_mask: Bit mask of services that can be enabled for @port.
 *
 * Invoked when @port is identified as a PCIe port device.  To avoid conflicts
 * with the BIOS PCIe port native services support requires the BIOS to yield
 * control of these services to the kernel.  The mask of services that the BIOS
 * allows to be enabled for @port is written to @srv_mask.
 *
 * NOTE: It turns out that we cannot do that for individual port services
 * separately, because that would make some systems work incorrectly.
 */

void pcie_port_acpi_setup(struct pci_dev *port, int *srv_mask) { struct acpi_pci_root *root; acpi_handle handle; u32 flags; if (acpi_pci_disabled) return; handle = acpi_find_root_bridge_handle(port); if (!handle) return; root = acpi_pci_find_root(handle); if (!root) return; flags = root->osc_control_set; *srv_mask = PCIE_PORT_SERVICE_VC | PCIE_PORT_SERVICE_DPC; if (flags & OSC_PCI_EXPRESS_NATIVE_HP_CONTROL) *srv_mask |= PCIE_PORT_SERVICE_HP; if (flags & OSC_PCI_EXPRESS_PME_CONTROL) *srv_mask |= PCIE_PORT_SERVICE_PME; if (flags & OSC_PCI_EXPRESS_AER_CONTROL) *srv_mask |= PCIE_PORT_SERVICE_AER; }

Contributors

PersonTokensPropCommitsCommitProp
rafael j. wysockirafael j. wysocki9694.12%250.00%
jon derrickjon derrick43.92%125.00%
keith buschkeith busch21.96%125.00%
Total102100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
rafael j. wysockirafael j. wysocki12293.13%240.00%
jon derrickjon derrick43.05%120.00%
andy shevchenkoandy shevchenko32.29%120.00%
keith buschkeith busch21.53%120.00%
Total131100.00%5100.00%
Directory: drivers/pci/pcie
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}