All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Cc: linux-pci@vger.kernel.org,
	Jesse Barnes <jbarnes@virtuousgeek.org>,
	ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
	Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>,
	linux-pm@lists.linux-foundation.org
Subject: Re: [PATCH 2/7] ACPI / PCI: Introduce acpi_pci_root_osc_query()
Date: Mon, 2 Aug 2010 16:13:38 +0200	[thread overview]
Message-ID: <201008021613.38498.rjw__15192.6606348299$1280758874$gmane$org@sisk.pl> (raw)
In-Reply-To: <4C568D7F.5080105@jp.fujitsu.com>

On Monday, August 02, 2010, Hidetoshi Seto wrote:
> (2010/07/31 7:26), Rafael J. Wysocki wrote:
> > From: Rafael J. Wysocki <rjw@sisk.pl>
> > 
> > Introduce a function allowing the caller to obtain a mask of _OSC
> > control bits the BIOS will allow the kernel to control for a given
> > PCI root bridge.
> > 
> > Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
> > ---
> >  drivers/acpi/pci_root.c |   56 +++++++++++++++++++++++++++++++++++++++++-------
> >  include/linux/acpi.h    |    1 
> >  2 files changed, 49 insertions(+), 8 deletions(-)
> > 
> > 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
> > @@ -224,21 +224,32 @@ static acpi_status acpi_pci_run_osc(acpi
> >  	return status;
> >  }
> >  
> > -static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
> > +static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root,
> > +					u32 support,
> > +					u32 *control)
> >  {
> >  	acpi_status status;
> > -	u32 support_set, capbuf[3];
> > +	u32 capbuf[3];
> > +
> > +	support &= OSC_PCI_SUPPORT_MASKS;
> > +	support |= root->osc_support_set;
> >  
> >  	/* do _OSC query for all possible controls */
> > -	support_set = root->osc_support_set | (flags & OSC_PCI_SUPPORT_MASKS);
> >  	capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
> > -	capbuf[OSC_SUPPORT_TYPE] = support_set;
> > -	capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
> > +	capbuf[OSC_SUPPORT_TYPE] = support;
> > +	if (control) {
> > +		*control &= OSC_PCI_CONTROL_MASKS;
> > +		capbuf[OSC_CONTROL_TYPE] = *control;
> > +	} else {
> > +		capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS;
> > +	}
> >  
> >  	status = acpi_pci_run_osc(root->device->handle, capbuf);
> >  	if (ACPI_SUCCESS(status)) {
> > -		root->osc_support_set = support_set;
> > +		root->osc_support_set = support;
> >  		root->osc_control_qry = capbuf[OSC_CONTROL_TYPE];
> > +		if (control)
> > +			*control = capbuf[OSC_CONTROL_TYPE];
> >  		root->osc_queried = 1;
> >  	}
> >  	return status;
> > @@ -253,7 +264,7 @@ static acpi_status acpi_pci_osc_support(
> >  	if (ACPI_FAILURE(status))
> >  		return status;
> >  	mutex_lock(&osc_lock);
> > -	status = acpi_pci_query_osc(root, flags);
> > +	status = acpi_pci_query_osc(root, flags, NULL);
> >  	mutex_unlock(&osc_lock);
> >  	return status;
> >  }
> > @@ -362,6 +373,35 @@ out:
> >  }
> >  EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
> >  
> > + /**
> > + * acpi_pci_root_osc_query - Get the _OSC bits the kernel can control.
> > + * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex).
> > + * @ctrl_mask: Mask of _OSC bits to query and the place to put the result into.
> > + **/
> > +acpi_status acpi_pci_root_osc_query(acpi_handle handle, u32 *ctrl_mask)
> > +{
> > +	acpi_status status;
> > +	acpi_handle tmp;
> > +	struct acpi_pci_root *root;
> > +
> > +	if (!ctrl_mask || !(*ctrl_mask & OSC_PCI_CONTROL_MASKS))
> > +		return AE_BAD_PARAMETER;
> > +
> > +	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);
> > +	status = acpi_pci_query_osc(root, root->osc_support_set, ctrl_mask);
> > +	mutex_unlock(&osc_lock);
> > +
> > +	return status;
> > +}
> > +
> >  /**
> >   * acpi_pci_osc_control_set - commit requested control to Firmware
> >   * @handle: acpi_handle for the target ACPI object
> > @@ -395,7 +435,7 @@ acpi_status acpi_pci_osc_control_set(acp
> >  
> >  	/* Need to query controls first before requesting them */
> >  	if (!root->osc_queried) {
> > -		status = acpi_pci_query_osc(root, root->osc_support_set);
> > +		status = acpi_pci_query_osc(root, root->osc_support_set, NULL);
> >  		if (ACPI_FAILURE(status))
> >  			goto out;
> >  	}
> > Index: linux-2.6/include/linux/acpi.h
> > ===================================================================
> > --- linux-2.6.orig/include/linux/acpi.h
> > +++ linux-2.6/include/linux/acpi.h
> > @@ -305,6 +305,7 @@ acpi_status acpi_run_osc(acpi_handle han
> >  				OSC_PCI_EXPRESS_AER_CONTROL |		\
> >  				OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL)
> >  
> > +extern acpi_status acpi_pci_root_osc_query(acpi_handle handle, u32 *ctrl_mask);
> >  extern acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags);
> >  extern void acpi_early_init(void);
> 
> IMHO acpi_pci_osc_control_query() is better name for new function here,
> to make it be paired with acpi_pci_osc_control_set(), and to avoid mistakable
> "*_get" that sounds like it takes controls via _OSC.

OK, I'll change that, but IMHO we're entering the "splitting hairs" area here. :-)

Thanks,
Rafael

  reply	other threads:[~2010-08-02 14:13 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-30 22:20 [PATCH 0/7] ACPI / PCI / PCIe: Rework _OSC handling Rafael J. Wysocki
2010-07-30 22:24 ` [PATCH 1/7] ACPI / PCI: Make acpi_pci_run_osc() use capbuf to return the result Rafael J. Wysocki
2010-07-30 22:24 ` Rafael J. Wysocki
2010-08-02  9:16   ` Hidetoshi Seto
2010-08-02 14:12     ` Rafael J. Wysocki
2010-08-02 14:12     ` Rafael J. Wysocki
2010-08-02  9:16   ` Hidetoshi Seto
2010-07-30 22:26 ` [PATCH 2/7] ACPI / PCI: Introduce acpi_pci_root_osc_query() Rafael J. Wysocki
2010-08-02  9:18   ` Hidetoshi Seto
2010-08-02  9:18   ` Hidetoshi Seto
2010-08-02 14:13     ` Rafael J. Wysocki [this message]
2010-08-02 14:13     ` Rafael J. Wysocki
2010-07-30 22:26 ` Rafael J. Wysocki
2010-07-30 22:32 ` [PATCH 3/7] PCI / PCIe: Ask BIOS for control of all native services at once (v5) Rafael J. Wysocki
2010-07-30 22:32 ` Rafael J. Wysocki
2010-08-02  9:20   ` Hidetoshi Seto
2010-08-02 14:15     ` Rafael J. Wysocki
2010-08-02 14:15     ` Rafael J. Wysocki
2010-08-02  9:20   ` Hidetoshi Seto
2010-07-30 22:34 ` [PATCH 4/7] PCI / PCIe: Disable PCIe port services during port initialization Rafael J. Wysocki
2010-07-30 22:34 ` Rafael J. Wysocki
2010-08-02  9:21   ` Hidetoshi Seto
2010-08-02  9:21   ` Hidetoshi Seto
2010-07-30 22:35 ` [PATCH 5/7] PCI / PCIe: Remove the port driver module exit routine Rafael J. Wysocki
2010-08-02  9:21   ` Hidetoshi Seto
2010-08-02 14:18     ` Rafael J. Wysocki
2010-08-02 14:18     ` Rafael J. Wysocki
2010-08-02  9:21   ` Hidetoshi Seto
2010-07-30 22:35 ` Rafael J. Wysocki
2010-07-30 22:36 ` [PATCH 6/7] ACPI / PCI: Do not preserve _OSC control bits returned by a query Rafael J. Wysocki
2010-07-30 22:36 ` Rafael J. Wysocki
2010-08-02  9:22   ` Hidetoshi Seto
2010-08-02  9:22   ` Hidetoshi Seto
2010-07-30 22:37 ` [PATCH 7/7] ACPI / PCI: Reorder checks in acpi_pci_osc_control_set() Rafael J. Wysocki
2010-07-30 22:37 ` Rafael J. Wysocki
2010-08-02  9:23   ` Hidetoshi Seto
2010-08-02  9:23   ` Hidetoshi Seto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='201008021613.38498.rjw__15192.6606348299$1280758874$gmane$org@sisk.pl' \
    --to=rjw@sisk.pl \
    --cc=jbarnes@virtuousgeek.org \
    --cc=kaneshige.kenji@jp.fujitsu.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linux-pm@lists.linux-foundation.org \
    --cc=seto.hidetoshi@jp.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.