linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [resend, PATCH v1 1/1] PCI: Update the devres documentation regarding to pcim_*()
@ 2023-10-06 15:06 Andy Shevchenko
  2023-10-09 16:39 ` Bjorn Helgaas
  2023-10-10 19:11 ` Jonathan Corbet
  0 siblings, 2 replies; 3+ messages in thread
From: Andy Shevchenko @ 2023-10-06 15:06 UTC (permalink / raw)
  To: Yang Yingliang, Andy Shevchenko, linux-doc, linux-kernel
  Cc: Jonathan Corbet, Bjorn Helgaas

There were many changes to PCI core in scope of managed resources APIs.
Update documentation to list the current state of affairs.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 Documentation/driver-api/driver-model/devres.rst | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
index 8be086b3f829..c5f99d834ec5 100644
--- a/Documentation/driver-api/driver-model/devres.rst
+++ b/Documentation/driver-api/driver-model/devres.rst
@@ -322,10 +322,8 @@ IOMAP
   devm_platform_ioremap_resource_byname()
   devm_platform_get_and_ioremap_resource()
   devm_iounmap()
-  pcim_iomap()
-  pcim_iomap_regions()	: do request_region() and iomap() on multiple BARs
-  pcim_iomap_table()	: array of mapped addresses indexed by BAR
-  pcim_iounmap()
+
+  Note: For the PCI devices the specific pcim_*() functions may be used, see below.
 
 IRQ
   devm_free_irq()
@@ -392,8 +390,16 @@ PCI
   devm_pci_alloc_host_bridge()  : managed PCI host bridge allocation
   devm_pci_remap_cfgspace()	: ioremap PCI configuration space
   devm_pci_remap_cfg_resource()	: ioremap PCI configuration space resource
+
   pcim_enable_device()		: after success, all PCI ops become managed
+  pcim_iomap()			: do iomap() on a single BAR
+  pcim_iomap_regions()		: do request_region() and iomap() on multiple BARs
+  pcim_iomap_regions_request_all() : do request_region() on all and iomap() on multiple BARs
+  pcim_iomap_table()		: array of mapped addresses indexed by BAR
+  pcim_iounmap()		: do iounmap() on a single BAR
+  pcim_iounmap_regions()	: do iounmap() and release_region() on multiple BARs
   pcim_pin_device()		: keep PCI device enabled after release
+  pcim_set_mwi()		: enable Memory-Write-Invalidate PCI transaction
 
 PHY
   devm_usb_get_phy()
-- 
2.40.0.1.gaa8946217a0b


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

* Re: [resend, PATCH v1 1/1] PCI: Update the devres documentation regarding to pcim_*()
  2023-10-06 15:06 [resend, PATCH v1 1/1] PCI: Update the devres documentation regarding to pcim_*() Andy Shevchenko
@ 2023-10-09 16:39 ` Bjorn Helgaas
  2023-10-10 19:11 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2023-10-09 16:39 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Yang Yingliang, linux-doc, linux-kernel, Jonathan Corbet,
	Bjorn Helgaas

On Fri, Oct 06, 2023 at 06:06:34PM +0300, Andy Shevchenko wrote:
> There were many changes to PCI core in scope of managed resources APIs.
> Update documentation to list the current state of affairs.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Looks good.

Acked-by: Bjorn Helgaas <bhelgaas@google.com>

> ---
>  Documentation/driver-api/driver-model/devres.rst | 14 ++++++++++----
>  1 file changed, 10 insertions(+), 4 deletions(-)
> 
> diff --git a/Documentation/driver-api/driver-model/devres.rst b/Documentation/driver-api/driver-model/devres.rst
> index 8be086b3f829..c5f99d834ec5 100644
> --- a/Documentation/driver-api/driver-model/devres.rst
> +++ b/Documentation/driver-api/driver-model/devres.rst
> @@ -322,10 +322,8 @@ IOMAP
>    devm_platform_ioremap_resource_byname()
>    devm_platform_get_and_ioremap_resource()
>    devm_iounmap()
> -  pcim_iomap()
> -  pcim_iomap_regions()	: do request_region() and iomap() on multiple BARs
> -  pcim_iomap_table()	: array of mapped addresses indexed by BAR
> -  pcim_iounmap()
> +
> +  Note: For the PCI devices the specific pcim_*() functions may be used, see below.
>  
>  IRQ
>    devm_free_irq()
> @@ -392,8 +390,16 @@ PCI
>    devm_pci_alloc_host_bridge()  : managed PCI host bridge allocation
>    devm_pci_remap_cfgspace()	: ioremap PCI configuration space
>    devm_pci_remap_cfg_resource()	: ioremap PCI configuration space resource
> +
>    pcim_enable_device()		: after success, all PCI ops become managed
> +  pcim_iomap()			: do iomap() on a single BAR
> +  pcim_iomap_regions()		: do request_region() and iomap() on multiple BARs
> +  pcim_iomap_regions_request_all() : do request_region() on all and iomap() on multiple BARs
> +  pcim_iomap_table()		: array of mapped addresses indexed by BAR
> +  pcim_iounmap()		: do iounmap() on a single BAR
> +  pcim_iounmap_regions()	: do iounmap() and release_region() on multiple BARs
>    pcim_pin_device()		: keep PCI device enabled after release
> +  pcim_set_mwi()		: enable Memory-Write-Invalidate PCI transaction
>  
>  PHY
>    devm_usb_get_phy()
> -- 
> 2.40.0.1.gaa8946217a0b
> 

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

* Re: [resend, PATCH v1 1/1] PCI: Update the devres documentation regarding to pcim_*()
  2023-10-06 15:06 [resend, PATCH v1 1/1] PCI: Update the devres documentation regarding to pcim_*() Andy Shevchenko
  2023-10-09 16:39 ` Bjorn Helgaas
@ 2023-10-10 19:11 ` Jonathan Corbet
  1 sibling, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2023-10-10 19:11 UTC (permalink / raw)
  To: Andy Shevchenko, Yang Yingliang, Andy Shevchenko, linux-doc,
	linux-kernel
  Cc: Bjorn Helgaas

Andy Shevchenko <andriy.shevchenko@linux.intel.com> writes:

> There were many changes to PCI core in scope of managed resources APIs.
> Update documentation to list the current state of affairs.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  Documentation/driver-api/driver-model/devres.rst | 14 ++++++++++----
>  1 file changed, 10 insertions(+), 4 deletions(-)

Applied, thanks.

jon

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

end of thread, other threads:[~2023-10-10 19:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-06 15:06 [resend, PATCH v1 1/1] PCI: Update the devres documentation regarding to pcim_*() Andy Shevchenko
2023-10-09 16:39 ` Bjorn Helgaas
2023-10-10 19:11 ` Jonathan Corbet

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).