dmaengine.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym
@ 2019-08-13  8:06 Jarkko Nikula
  2019-08-13 14:07 ` Andy Shevchenko
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jarkko Nikula @ 2019-08-13  8:06 UTC (permalink / raw)
  To: dmaengine; +Cc: Viresh Kumar, Andy Shevchenko, Vinod Koul, Jarkko Nikula

Intel Elkhart Lake Offload Service Engine (OSE) will be called as
Intel(R) Programmable Services Engine (Intel(R) PSE) in documentation.

Update the comment here accordingly.

Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
---
 drivers/dma/dw/pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/dw/pci.c b/drivers/dma/dw/pci.c
index 8de87b15a988..ad6db1cc287e 100644
--- a/drivers/dma/dw/pci.c
+++ b/drivers/dma/dw/pci.c
@@ -143,7 +143,7 @@ static const struct pci_device_id dw_pci_id_table[] = {
 	{ PCI_VDEVICE(INTEL, 0x2286), (kernel_ulong_t)&dw_pci_data },
 	{ PCI_VDEVICE(INTEL, 0x22c0), (kernel_ulong_t)&dw_pci_data },
 
-	/* Elkhart Lake iDMA 32-bit (OSE DMA) */
+	/* Elkhart Lake iDMA 32-bit (PSE DMA) */
 	{ PCI_VDEVICE(INTEL, 0x4bb4), (kernel_ulong_t)&idma32_pci_data },
 	{ PCI_VDEVICE(INTEL, 0x4bb5), (kernel_ulong_t)&idma32_pci_data },
 	{ PCI_VDEVICE(INTEL, 0x4bb6), (kernel_ulong_t)&idma32_pci_data },
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym
  2019-08-13  8:06 [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym Jarkko Nikula
@ 2019-08-13 14:07 ` Andy Shevchenko
  2019-08-13 14:17   ` Jarkko Nikula
  2019-08-19  8:32 ` Viresh Kumar
  2019-08-20 11:09 ` Vinod Koul
  2 siblings, 1 reply; 6+ messages in thread
From: Andy Shevchenko @ 2019-08-13 14:07 UTC (permalink / raw)
  To: Jarkko Nikula; +Cc: dmaengine, Viresh Kumar, Vinod Koul

On Tue, Aug 13, 2019 at 11:06:02AM +0300, Jarkko Nikula wrote:
> Intel Elkhart Lake Offload Service Engine (OSE) will be called as
> Intel(R) Programmable Services Engine (Intel(R) PSE) in documentation.
> 
> Update the comment here accordingly.

Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Seems similar we need for UART.

> 
> Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
> ---
>  drivers/dma/dw/pci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/dma/dw/pci.c b/drivers/dma/dw/pci.c
> index 8de87b15a988..ad6db1cc287e 100644
> --- a/drivers/dma/dw/pci.c
> +++ b/drivers/dma/dw/pci.c
> @@ -143,7 +143,7 @@ static const struct pci_device_id dw_pci_id_table[] = {
>  	{ PCI_VDEVICE(INTEL, 0x2286), (kernel_ulong_t)&dw_pci_data },
>  	{ PCI_VDEVICE(INTEL, 0x22c0), (kernel_ulong_t)&dw_pci_data },
>  
> -	/* Elkhart Lake iDMA 32-bit (OSE DMA) */
> +	/* Elkhart Lake iDMA 32-bit (PSE DMA) */
>  	{ PCI_VDEVICE(INTEL, 0x4bb4), (kernel_ulong_t)&idma32_pci_data },
>  	{ PCI_VDEVICE(INTEL, 0x4bb5), (kernel_ulong_t)&idma32_pci_data },
>  	{ PCI_VDEVICE(INTEL, 0x4bb6), (kernel_ulong_t)&idma32_pci_data },
> -- 
> 2.20.1
> 

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym
  2019-08-13 14:07 ` Andy Shevchenko
@ 2019-08-13 14:17   ` Jarkko Nikula
  2019-08-13 14:45     ` Andy Shevchenko
  0 siblings, 1 reply; 6+ messages in thread
From: Jarkko Nikula @ 2019-08-13 14:17 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: dmaengine, Viresh Kumar, Vinod Koul

On 8/13/19 5:07 PM, Andy Shevchenko wrote:
> On Tue, Aug 13, 2019 at 11:06:02AM +0300, Jarkko Nikula wrote:
>> Intel Elkhart Lake Offload Service Engine (OSE) will be called as
>> Intel(R) Programmable Services Engine (Intel(R) PSE) in documentation.
>>
>> Update the comment here accordingly.
> 
> Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> 
> Seems similar we need for UART.
> 
You mean a0d993e8c143 ("serial: 8250_lpss: Enable HS UART on Elkhart 
Lake")? No Code or comment on that commit mention OSE, only commit log.

-- 
Jarkko

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym
  2019-08-13 14:17   ` Jarkko Nikula
@ 2019-08-13 14:45     ` Andy Shevchenko
  0 siblings, 0 replies; 6+ messages in thread
From: Andy Shevchenko @ 2019-08-13 14:45 UTC (permalink / raw)
  To: Jarkko Nikula; +Cc: dmaengine, Viresh Kumar, Vinod Koul

On Tue, Aug 13, 2019 at 05:17:24PM +0300, Jarkko Nikula wrote:
> On 8/13/19 5:07 PM, Andy Shevchenko wrote:
> > On Tue, Aug 13, 2019 at 11:06:02AM +0300, Jarkko Nikula wrote:
> > > Intel Elkhart Lake Offload Service Engine (OSE) will be called as
> > > Intel(R) Programmable Services Engine (Intel(R) PSE) in documentation.
> > > 
> > > Update the comment here accordingly.
> > 
> > Acked-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > 
> > Seems similar we need for UART.
> > 
> You mean a0d993e8c143 ("serial: 8250_lpss: Enable HS UART on Elkhart Lake")?
> No Code or comment on that commit mention OSE, only commit log.

Ah, we can't fix commit messages.
Thanks for checking!

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym
  2019-08-13  8:06 [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym Jarkko Nikula
  2019-08-13 14:07 ` Andy Shevchenko
@ 2019-08-19  8:32 ` Viresh Kumar
  2019-08-20 11:09 ` Vinod Koul
  2 siblings, 0 replies; 6+ messages in thread
From: Viresh Kumar @ 2019-08-19  8:32 UTC (permalink / raw)
  To: Jarkko Nikula; +Cc: dmaengine, Viresh Kumar, Andy Shevchenko, Vinod Koul

On 13-08-19, 11:06, Jarkko Nikula wrote:
> Intel Elkhart Lake Offload Service Engine (OSE) will be called as
> Intel(R) Programmable Services Engine (Intel(R) PSE) in documentation.
> 
> Update the comment here accordingly.
> 
> Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
> ---
>  drivers/dma/dw/pci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym
  2019-08-13  8:06 [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym Jarkko Nikula
  2019-08-13 14:07 ` Andy Shevchenko
  2019-08-19  8:32 ` Viresh Kumar
@ 2019-08-20 11:09 ` Vinod Koul
  2 siblings, 0 replies; 6+ messages in thread
From: Vinod Koul @ 2019-08-20 11:09 UTC (permalink / raw)
  To: Jarkko Nikula; +Cc: dmaengine, Viresh Kumar, Andy Shevchenko

On 13-08-19, 11:06, Jarkko Nikula wrote:
> Intel Elkhart Lake Offload Service Engine (OSE) will be called as
> Intel(R) Programmable Services Engine (Intel(R) PSE) in documentation.
> 
> Update the comment here accordingly.

Applied, thanks

-- 
~Vinod

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-08-20 11:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-13  8:06 [PATCH] dmaengine: dw: Update Intel Elkhart Lake Service Engine acronym Jarkko Nikula
2019-08-13 14:07 ` Andy Shevchenko
2019-08-13 14:17   ` Jarkko Nikula
2019-08-13 14:45     ` Andy Shevchenko
2019-08-19  8:32 ` Viresh Kumar
2019-08-20 11:09 ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).