All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
To: "Moore, Robert" <robert.moore@intel.com>
Cc: "linux-acpi@vger.kernel.org" <linux-acpi@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Zhang, Rui" <rui.zhang@intel.com>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Will Deacon <will.deacon@arm.com>,
	Robin Murphy <robin.murphy@arm.com>,
	Hanjun Guo <hanjun.guo@linaro.org>, Feng Kan <fkan@apm.com>,
	Jon Masters <jcm@redhat.com>,
	Nate Watterson <nwatters@codeaurora.org>
Subject: Re: [PATCH 1/4] ACPI: Allow _DMA method in walk resources
Date: Fri, 21 Jul 2017 11:20:01 +0100	[thread overview]
Message-ID: <20170721102001.GB940@red-moon> (raw)
In-Reply-To: <94F2FBAB4432B54E8AACC7DFDE6C92E37E5D914D@ORSMSX110.amr.corp.intel.com>

On Thu, Jul 20, 2017 at 03:50:16PM +0000, Moore, Robert wrote:
> Could you post this as a pull request on our github?
> 
> https://github.com/acpica/acpica

Sure, will do, thanks !

Lorenzo

> > -----Original Message-----
> > From: Moore, Robert
> > Sent: Thursday, July 20, 2017 8:49 AM
> > To: 'Lorenzo Pieralisi' <lorenzo.pieralisi@arm.com>; linux-
> > acpi@vger.kernel.org
> > Cc: linux-arm-kernel@lists.infradead.org; linux-kernel@vger.kernel.org;
> > Zhang, Rui <rui.zhang@intel.com>; Rafael J. Wysocki <rjw@rjwysocki.net>;
> > Will Deacon <will.deacon@arm.com>; Robin Murphy <robin.murphy@arm.com>;
> > Hanjun Guo <hanjun.guo@linaro.org>; Feng Kan <fkan@apm.com>; Jon Masters
> > <jcm@redhat.com>; Nate Watterson <nwatters@codeaurora.org>
> > Subject: RE: [PATCH 1/4] ACPI: Allow _DMA method in walk resources
> > 
> > I think we can take this as-is into ACPICA.
> > Bob
> > 
> > 
> > > -----Original Message-----
> > > From: Lorenzo Pieralisi [mailto:lorenzo.pieralisi@arm.com]
> > > Sent: Thursday, July 20, 2017 7:45 AM
> > > To: linux-acpi@vger.kernel.org
> > > Cc: linux-arm-kernel@lists.infradead.org;
> > > linux-kernel@vger.kernel.org; Lorenzo Pieralisi
> > > <lorenzo.pieralisi@arm.com>; Moore, Robert <robert.moore@intel.com>;
> > Zhang, Rui <rui.zhang@intel.com>; Rafael J.
> > > Wysocki <rjw@rjwysocki.net>; Will Deacon <will.deacon@arm.com>; Robin
> > > Murphy <robin.murphy@arm.com>; Hanjun Guo <hanjun.guo@linaro.org>;
> > > Feng Kan <fkan@apm.com>; Jon Masters <jcm@redhat.com>; Nate Watterson
> > > <nwatters@codeaurora.org>
> > > Subject: [PATCH 1/4] ACPI: Allow _DMA method in walk resources
> > >
> > > The _DMA object contains a resource template, this change adds support
> > > for the walk resources function so that ACPI devices containing a _DMA
> > > object can actually parse it to detect DMA ranges for the respective
> > > bus.
> > >
> > > Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > > Cc: Robert Moore <robert.moore@intel.com>
> > > Cc: Zhang Rui <rui.zhang@intel.com>
> > > Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
> > > ---
> > >  drivers/acpi/acpica/rsxface.c | 7 ++++---
> > >  include/acpi/acnames.h        | 1 +
> > >  2 files changed, 5 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/drivers/acpi/acpica/rsxface.c
> > > b/drivers/acpi/acpica/rsxface.c index 59a4f9e..be65e65 100644
> > > --- a/drivers/acpi/acpica/rsxface.c
> > > +++ b/drivers/acpi/acpica/rsxface.c
> > > @@ -615,7 +615,7 @@ ACPI_EXPORT_SYMBOL(acpi_walk_resource_buffer)
> > >   *                                device we are querying
> > >   *              name            - Method name of the resources we
> > want.
> > >   *                                (METHOD_NAME__CRS,
> > METHOD_NAME__PRS,
> > > or
> > > - *                                METHOD_NAME__AEI)
> > > + *                                METHOD_NAME__AEI or
> > METHOD_NAME__DMA)
> > >   *              user_function   - Called for each resource
> > >   *              context         - Passed to user_function
> > >   *
> > > @@ -641,11 +641,12 @@ acpi_walk_resources(acpi_handle device_handle,
> > >  	if (!device_handle || !user_function || !name ||
> > >  	    (!ACPI_COMPARE_NAME(name, METHOD_NAME__CRS) &&
> > >  	     !ACPI_COMPARE_NAME(name, METHOD_NAME__PRS) &&
> > > -	     !ACPI_COMPARE_NAME(name, METHOD_NAME__AEI))) {
> > > +	     !ACPI_COMPARE_NAME(name, METHOD_NAME__AEI) &&
> > > +	     !ACPI_COMPARE_NAME(name, METHOD_NAME__DMA))) {
> > >  		return_ACPI_STATUS(AE_BAD_PARAMETER);
> > >  	}
> > >
> > > -	/* Get the _CRS/_PRS/_AEI resource list */
> > > +	/* Get the _CRS/_PRS/_AEI/_DMA resource list */
> > >
> > >  	buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
> > >  	status = acpi_rs_get_method_data(device_handle, name, &buffer);
> > diff
> > > --git a/include/acpi/acnames.h b/include/acpi/acnames.h index
> > > b421584..d8dd3bf 100644
> > > --- a/include/acpi/acnames.h
> > > +++ b/include/acpi/acnames.h
> > > @@ -54,6 +54,7 @@
> > >  #define METHOD_NAME__CLS        "_CLS"
> > >  #define METHOD_NAME__CRS        "_CRS"
> > >  #define METHOD_NAME__DDN        "_DDN"
> > > +#define METHOD_NAME__DMA        "_DMA"
> > >  #define METHOD_NAME__HID        "_HID"
> > >  #define METHOD_NAME__INI        "_INI"
> > >  #define METHOD_NAME__PLD        "_PLD"
> > > --
> > > 2.10.0
> 

WARNING: multiple messages have this Message-ID (diff)
From: lorenzo.pieralisi@arm.com (Lorenzo Pieralisi)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/4] ACPI: Allow _DMA method in walk resources
Date: Fri, 21 Jul 2017 11:20:01 +0100	[thread overview]
Message-ID: <20170721102001.GB940@red-moon> (raw)
In-Reply-To: <94F2FBAB4432B54E8AACC7DFDE6C92E37E5D914D@ORSMSX110.amr.corp.intel.com>

On Thu, Jul 20, 2017 at 03:50:16PM +0000, Moore, Robert wrote:
> Could you post this as a pull request on our github?
> 
> https://github.com/acpica/acpica

Sure, will do, thanks !

Lorenzo

> > -----Original Message-----
> > From: Moore, Robert
> > Sent: Thursday, July 20, 2017 8:49 AM
> > To: 'Lorenzo Pieralisi' <lorenzo.pieralisi@arm.com>; linux-
> > acpi at vger.kernel.org
> > Cc: linux-arm-kernel at lists.infradead.org; linux-kernel at vger.kernel.org;
> > Zhang, Rui <rui.zhang@intel.com>; Rafael J. Wysocki <rjw@rjwysocki.net>;
> > Will Deacon <will.deacon@arm.com>; Robin Murphy <robin.murphy@arm.com>;
> > Hanjun Guo <hanjun.guo@linaro.org>; Feng Kan <fkan@apm.com>; Jon Masters
> > <jcm@redhat.com>; Nate Watterson <nwatters@codeaurora.org>
> > Subject: RE: [PATCH 1/4] ACPI: Allow _DMA method in walk resources
> > 
> > I think we can take this as-is into ACPICA.
> > Bob
> > 
> > 
> > > -----Original Message-----
> > > From: Lorenzo Pieralisi [mailto:lorenzo.pieralisi at arm.com]
> > > Sent: Thursday, July 20, 2017 7:45 AM
> > > To: linux-acpi at vger.kernel.org
> > > Cc: linux-arm-kernel at lists.infradead.org;
> > > linux-kernel at vger.kernel.org; Lorenzo Pieralisi
> > > <lorenzo.pieralisi@arm.com>; Moore, Robert <robert.moore@intel.com>;
> > Zhang, Rui <rui.zhang@intel.com>; Rafael J.
> > > Wysocki <rjw@rjwysocki.net>; Will Deacon <will.deacon@arm.com>; Robin
> > > Murphy <robin.murphy@arm.com>; Hanjun Guo <hanjun.guo@linaro.org>;
> > > Feng Kan <fkan@apm.com>; Jon Masters <jcm@redhat.com>; Nate Watterson
> > > <nwatters@codeaurora.org>
> > > Subject: [PATCH 1/4] ACPI: Allow _DMA method in walk resources
> > >
> > > The _DMA object contains a resource template, this change adds support
> > > for the walk resources function so that ACPI devices containing a _DMA
> > > object can actually parse it to detect DMA ranges for the respective
> > > bus.
> > >
> > > Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > > Cc: Robert Moore <robert.moore@intel.com>
> > > Cc: Zhang Rui <rui.zhang@intel.com>
> > > Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
> > > ---
> > >  drivers/acpi/acpica/rsxface.c | 7 ++++---
> > >  include/acpi/acnames.h        | 1 +
> > >  2 files changed, 5 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/drivers/acpi/acpica/rsxface.c
> > > b/drivers/acpi/acpica/rsxface.c index 59a4f9e..be65e65 100644
> > > --- a/drivers/acpi/acpica/rsxface.c
> > > +++ b/drivers/acpi/acpica/rsxface.c
> > > @@ -615,7 +615,7 @@ ACPI_EXPORT_SYMBOL(acpi_walk_resource_buffer)
> > >   *                                device we are querying
> > >   *              name            - Method name of the resources we
> > want.
> > >   *                                (METHOD_NAME__CRS,
> > METHOD_NAME__PRS,
> > > or
> > > - *                                METHOD_NAME__AEI)
> > > + *                                METHOD_NAME__AEI or
> > METHOD_NAME__DMA)
> > >   *              user_function   - Called for each resource
> > >   *              context         - Passed to user_function
> > >   *
> > > @@ -641,11 +641,12 @@ acpi_walk_resources(acpi_handle device_handle,
> > >  	if (!device_handle || !user_function || !name ||
> > >  	    (!ACPI_COMPARE_NAME(name, METHOD_NAME__CRS) &&
> > >  	     !ACPI_COMPARE_NAME(name, METHOD_NAME__PRS) &&
> > > -	     !ACPI_COMPARE_NAME(name, METHOD_NAME__AEI))) {
> > > +	     !ACPI_COMPARE_NAME(name, METHOD_NAME__AEI) &&
> > > +	     !ACPI_COMPARE_NAME(name, METHOD_NAME__DMA))) {
> > >  		return_ACPI_STATUS(AE_BAD_PARAMETER);
> > >  	}
> > >
> > > -	/* Get the _CRS/_PRS/_AEI resource list */
> > > +	/* Get the _CRS/_PRS/_AEI/_DMA resource list */
> > >
> > >  	buffer.length = ACPI_ALLOCATE_LOCAL_BUFFER;
> > >  	status = acpi_rs_get_method_data(device_handle, name, &buffer);
> > diff
> > > --git a/include/acpi/acnames.h b/include/acpi/acnames.h index
> > > b421584..d8dd3bf 100644
> > > --- a/include/acpi/acnames.h
> > > +++ b/include/acpi/acnames.h
> > > @@ -54,6 +54,7 @@
> > >  #define METHOD_NAME__CLS        "_CLS"
> > >  #define METHOD_NAME__CRS        "_CRS"
> > >  #define METHOD_NAME__DDN        "_DDN"
> > > +#define METHOD_NAME__DMA        "_DMA"
> > >  #define METHOD_NAME__HID        "_HID"
> > >  #define METHOD_NAME__INI        "_INI"
> > >  #define METHOD_NAME__PLD        "_PLD"
> > > --
> > > 2.10.0
> 

  reply	other threads:[~2017-07-21 10:18 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-20 14:45 [PATCH 0/4] ACPI: DMA ranges management Lorenzo Pieralisi
2017-07-20 14:45 ` Lorenzo Pieralisi
2017-07-20 14:45 ` [PATCH 1/4] ACPI: Allow _DMA method in walk resources Lorenzo Pieralisi
2017-07-20 14:45   ` Lorenzo Pieralisi
2017-07-20 14:45   ` Lorenzo Pieralisi
2017-07-20 15:48   ` Moore, Robert
2017-07-20 15:48     ` Moore, Robert
2017-07-20 15:50   ` Moore, Robert
2017-07-20 15:50     ` Moore, Robert
2017-07-21 10:20     ` Lorenzo Pieralisi [this message]
2017-07-21 10:20       ` Lorenzo Pieralisi
2017-07-20 14:45 ` [PATCH 2/4] ACPI: Make acpi_dev_get_resources() method agnostic Lorenzo Pieralisi
2017-07-20 14:45   ` Lorenzo Pieralisi
2017-07-21 22:05   ` Rafael J. Wysocki
2017-07-21 22:05     ` Rafael J. Wysocki
2017-07-24  9:22     ` Lorenzo Pieralisi
2017-07-24  9:22       ` Lorenzo Pieralisi
2017-07-25  9:15     ` Lorenzo Pieralisi
2017-07-25  9:15       ` Lorenzo Pieralisi
2017-07-26  0:23       ` Rafael J. Wysocki
2017-07-26  0:23         ` Rafael J. Wysocki
2017-07-20 14:45 ` [PATCH 3/4] ACPI: Introduce DMA ranges parsing Lorenzo Pieralisi
2017-07-20 14:45   ` Lorenzo Pieralisi
2017-07-21 22:15   ` Rafael J. Wysocki
2017-07-21 22:15     ` Rafael J. Wysocki
2017-07-24 10:40     ` Lorenzo Pieralisi
2017-07-24 10:40       ` Lorenzo Pieralisi
2017-07-24 18:42       ` Rafael J. Wysocki
2017-07-24 18:42         ` Rafael J. Wysocki
2017-07-25  9:06         ` Lorenzo Pieralisi
2017-07-25  9:06           ` Lorenzo Pieralisi
2017-07-26  0:27           ` Rafael J. Wysocki
2017-07-26  0:27             ` Rafael J. Wysocki
2017-07-20 14:45 ` [PATCH 4/4] ACPI: Make acpi_dma_configure() DMA regions aware Lorenzo Pieralisi
2017-07-20 14:45   ` Lorenzo Pieralisi
2017-07-26 14:46 ` [PATCH 0/4] ACPI: DMA ranges management Nate Watterson
2017-07-26 14:46   ` Nate Watterson
2017-07-26 15:05   ` Robin Murphy
2017-07-26 15:05     ` Robin Murphy
2017-07-26 15:35     ` Lorenzo Pieralisi
2017-07-26 15:35       ` Lorenzo Pieralisi
2017-07-26 16:39       ` Nate Watterson
2017-07-26 16:39         ` Nate Watterson
2017-07-28 13:08       ` Robin Murphy
2017-07-28 13:08         ` Robin Murphy
2017-07-28 14:09         ` Lorenzo Pieralisi
2017-07-28 14:09           ` Lorenzo Pieralisi
2017-07-28 15:55           ` Robin Murphy
2017-07-28 15:55             ` Robin Murphy
2017-07-31  8:56             ` Lorenzo Pieralisi
2017-07-31  8:56               ` Lorenzo Pieralisi

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=20170721102001.GB940@red-moon \
    --to=lorenzo.pieralisi@arm.com \
    --cc=fkan@apm.com \
    --cc=hanjun.guo@linaro.org \
    --cc=jcm@redhat.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nwatters@codeaurora.org \
    --cc=rjw@rjwysocki.net \
    --cc=robert.moore@intel.com \
    --cc=robin.murphy@arm.com \
    --cc=rui.zhang@intel.com \
    --cc=will.deacon@arm.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.