From patchwork Fri Aug 6 01:15:40 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rafael Wysocki X-Patchwork-Id: 117625 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o761HrWS022468 for ; Fri, 6 Aug 2010 01:17:59 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934378Ab0HFBRx (ORCPT ); Thu, 5 Aug 2010 21:17:53 -0400 Received: from ogre.sisk.pl ([217.79.144.158]:43673 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934313Ab0HFBRr (ORCPT ); Thu, 5 Aug 2010 21:17:47 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by ogre.sisk.pl (Postfix) with ESMTP id 2633E18FC42; Fri, 6 Aug 2010 03:10:34 +0200 (CEST) Received: from ogre.sisk.pl ([127.0.0.1]) by localhost (ogre.sisk.pl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02498-01; Fri, 6 Aug 2010 03:10:08 +0200 (CEST) Received: from ferrari.localnet (220-bem-13.acn.waw.pl [82.210.184.220]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ogre.sisk.pl (Postfix) with ESMTP id CDA6418FE8A; Fri, 6 Aug 2010 03:09:50 +0200 (CEST) From: "Rafael J. Wysocki" To: Hidetoshi Seto Subject: [PATCH 10/10] ACPI / PCI: Merge acpi_pci_osc_control_{query|set}() Date: Fri, 6 Aug 2010 03:15:40 +0200 User-Agent: KMail/1.13.5 (Linux/2.6.35-rjw+; KDE/4.4.4; x86_64; ; ) Cc: Kenji Kaneshige , Jesse Barnes , linux-pci@vger.kernel.org, ACPI Devel Maling List , linux-pm@lists.linux-foundation.org References: <201008060303.51224.rjw@sisk.pl> In-Reply-To: <201008060303.51224.rjw@sisk.pl> MIME-Version: 1.0 Message-Id: <201008060315.40437.rjw@sisk.pl> X-Virus-Scanned: amavisd-new at ogre.sisk.pl using MkS_Vir for Linux Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Fri, 06 Aug 2010 01:17:59 +0000 (UTC) Index: linux-2.6/drivers/acpi/pci_root.c =================================================================== --- linux-2.6.orig/drivers/acpi/pci_root.c +++ linux-2.6/drivers/acpi/pci_root.c @@ -372,21 +372,35 @@ out: } EXPORT_SYMBOL_GPL(acpi_get_pci_dev); - /** - * acpi_pci_osc_control_query - Get the _OSC bits the kernel can control. +/** + * acpi_pci_osc_control_set - Request control of PCI root _OSC features. * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex). - * @mask: Mask of _OSC bits to query and the place to put the result into. + * @mask: Mask of _OSC bits to request control of, place to store control mask. + * @req: Mask of _OSC bits the control of is essential to the caller. + * + * Run _OSC query for @mask and if that is successful, compare the returned + * mask of control bits with @req. If all of the @req bits are set in the + * returned mask, run _OSC request for it. + * + * The variable at the @mask address may be modified regardless of whether or + * not the function returns success. On success it will contain the mask of + * _OSC bits the BIOS has granted control of, but its contents are meaningless + * on failure. **/ -acpi_status acpi_pci_osc_control_query(acpi_handle handle, u32 *mask) +acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req) { struct acpi_pci_root *root; + acpi_status status; + u32 ctrl, flags, capbuf[3]; acpi_handle tmp; - acpi_status status = AE_OK; - u32 ctrl = *mask; - if (!(ctrl & OSC_PCI_CONTROL_MASKS)) + if (!mask) return AE_BAD_PARAMETER; + ctrl = *mask & OSC_PCI_CONTROL_MASKS; + if ((ctrl & req) != req) + return AE_TYPE; + root = acpi_pci_find_root(handle); if (!root) return AE_NOT_EXIST; @@ -404,53 +418,20 @@ acpi_status acpi_pci_osc_control_query(a for (ctrl = 0; *mask != ctrl; ctrl = *mask) { status = acpi_pci_query_osc(root, root->osc_support_set, mask); if (ACPI_FAILURE(status)) - break; + goto out; } - out: - mutex_unlock(&osc_lock); - - return status; -} -EXPORT_SYMBOL(acpi_pci_osc_control_query); - -/** - * acpi_pci_osc_control_set - commit requested control to Firmware - * @handle: acpi_handle for the target ACPI object - * @flags: driver's requested control bits - * - * Attempt to take control from Firmware on requested control bits. - **/ -acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags) -{ - acpi_status status; - u32 control_req, result, capbuf[3]; - acpi_handle tmp; - struct acpi_pci_root *root; - - control_req = (flags & OSC_PCI_CONTROL_MASKS); - if (!control_req) - return AE_TYPE; - - root = acpi_pci_find_root(handle); - if (!root) - return AE_NOT_EXIST; - - status = acpi_get_handle(handle, "_OSC", &tmp); - if (ACPI_FAILURE(status)) - return status; - - mutex_lock(&osc_lock); - /* No need to evaluate _OSC if the control was already granted. */ - if ((root->osc_control_set & control_req) == control_req) + if ((ctrl & req) != req) { + status = AE_SUPPORT; goto out; + } capbuf[OSC_QUERY_TYPE] = 0; capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set; - capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req; - status = acpi_pci_run_osc(handle, capbuf, &result); + capbuf[OSC_CONTROL_TYPE] = ctrl; + status = acpi_pci_run_osc(handle, capbuf, mask); if (ACPI_SUCCESS(status)) - root->osc_control_set = result; + root->osc_control_set = *mask; out: mutex_unlock(&osc_lock); return status; Index: linux-2.6/include/linux/acpi.h =================================================================== --- linux-2.6.orig/include/linux/acpi.h +++ linux-2.6/include/linux/acpi.h @@ -305,8 +305,8 @@ acpi_status acpi_run_osc(acpi_handle han OSC_PCI_EXPRESS_AER_CONTROL | \ OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL) -extern acpi_status acpi_pci_osc_control_query(acpi_handle handle, u32 *mask); -extern acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags); +extern acpi_status acpi_pci_osc_control_set(acpi_handle handle, + u32 *mask, u32 req); extern void acpi_early_init(void); #else /* !CONFIG_ACPI */ Index: linux-2.6/drivers/pci/pcie/portdrv_acpi.c =================================================================== --- linux-2.6.orig/drivers/pci/pcie/portdrv_acpi.c +++ linux-2.6/drivers/pci/pcie/portdrv_acpi.c @@ -55,20 +55,8 @@ int pcie_port_acpi_setup(struct pci_dev flags |= OSC_PCI_EXPRESS_AER_CONTROL; } - status = acpi_pci_osc_control_query(handle, &flags); - if (ACPI_FAILURE(status)) { - dev_dbg(&port->dev, "ACPI _OSC query failed (code %d)\n", - status); - return -ENODEV; - } - - if (!(flags & OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL)) { - dev_dbg(&port->dev, "BIOS refuses to grant control of PCIe " - "Capability Structure\n"); - return -EACCES; - } - - status = acpi_pci_osc_control_set(handle, flags); + status = acpi_pci_osc_control_set(handle, &flags, + OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL); if (ACPI_FAILURE(status)) { dev_dbg(&port->dev, "ACPI _OSC request failed (code %d)\n", status); Index: linux-2.6/drivers/pci/hotplug/acpi_pcihp.c =================================================================== --- linux-2.6.orig/drivers/pci/hotplug/acpi_pcihp.c +++ linux-2.6/drivers/pci/hotplug/acpi_pcihp.c @@ -358,13 +358,12 @@ int acpi_get_hp_hw_control_from_firmware acpi_get_name(handle, ACPI_FULL_PATHNAME, &string); dbg("Trying to get hotplug control for %s\n", (char *)string.pointer); - status = acpi_pci_osc_control_query(handle, &flags); - if (ACPI_FAILURE(status) - || !(flags & OSC_SHPC_NATIVE_HP_CONTROL)) - goto no_control; - status = acpi_pci_osc_control_set(handle, flags); + status = acpi_pci_osc_control_set(handle, &flags, + OSC_SHPC_NATIVE_HP_CONTROL); if (ACPI_SUCCESS(status)) goto got_one; + if (status == AE_SUPPORT) + goto no_control; kfree(string.pointer); string = (struct acpi_buffer){ ACPI_ALLOCATE_BUFFER, NULL }; }