Re: [PATCH v5] powerpc/pci: Assign fixed PHB number based on device-tree properties

2016-05-10 Thread Guilherme G. Piccoli

On 05/02/2016 01:57 PM, Bjorn Helgaas wrote:

On Thu, Apr 14, 2016 at 06:55:24PM -0300, Guilherme G. Piccoli wrote:

The domain/PHB field of PCI addresses has its value obtained from a
global variable, incremented each time a new domain (represented by
struct pci_controller) is added on the system. The domain addition
process happens during boot or due to PCI device hotplug.

As recent kernels are using predictable naming for network interfaces,
the network stack is more tied to PCI naming. This can be a problem in
hotplug scenarios, because PCI addresses will change if devices are
removed and then re-added. This situation seems unusual, but it can
happen if a user wants to replace a NIC without rebooting the machine,
for example.

This patch changes the way PCI domain values are generated: now, we use
device-tree properties to assign fixed PHB numbers to PCI addresses
when available (meaning pSeries and PowerNV cases). We also use a bitmap
to allow dynamic PHB numbering when device-tree properties are not
used. This bitmap keeps track of used PHB numbers and if a PHB is
released (by hotplug operations for example), it allows the reuse of
this PHB number, avoiding PCI address to change in case of device remove
and re-add soon after. No functional changes were introduced.

Reviewed-by: Gavin Shan 
Signed-off-by: Guilherme G. Piccoli 


I assume the powerpc guys will take care of this.  Let me know if you
need me to do anything.


Thanks very much Bjorn! I sent this to PCI list to let you know, since 
this modification is PCI nearly related. But it is truly something 
specific to powerpc, so you're right, the linuxpcc-dev list folks will 
take care.


Cheers,


Guilherme




---
  arch/powerpc/kernel/pci-common.c | 66 ++--
  1 file changed, 63 insertions(+), 3 deletions(-)

v5:
   * Improved comments.

   * Changed the the Fixed PHB Numbering to set the PHB number bit
   on the bitmap anyway, avoiding issues when system has virtual PHBs.

   * Changed the device-tree check order - now, firstly we check for
   "ibm,opal-phbid" and if it's not available, we try the pSeries case.

v4:
   * Minor change (if/else nesting rearranged).

v3:
   * Made the bitmap static.

   * Rearranged if/else statements of Fixed PHB checking.

   * Improved bitmap checkings, by removing loop and using instead the
   find_first_zero_bit() function.

   * Removed the single-statement function release_phb_number() by
   adding its logic directly into pcibios_free_controller().

   *Added check for bitmap size before clearing bit, avoiding memory
   corruption.

v2:
   * Added the Fixed PHB Numbering mechanism based on device-tree
   properties.

   * Changed list approach to bitmap on the Dynamic PHB Numbering
   mechanism.

diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c
index 0f7a60f..ad423c1 100644
--- a/arch/powerpc/kernel/pci-common.c
+++ b/arch/powerpc/kernel/pci-common.c
@@ -41,11 +41,17 @@
  #include 
  #include 

+/* hose_spinlock protects accesses to the the phb_bitmap. */
  static DEFINE_SPINLOCK(hose_spinlock);
  LIST_HEAD(hose_list);

-/* XXX kill that some day ... */
-static int global_phb_number;  /* Global phb counter */
+/* For dynamic PHB numbering on get_phb_number(): max number of PHBs. */
+#defineMAX_PHBS8192
+
+/* For dynamic PHB numbering: used/free PHBs tracking bitmap.
+ * Accesses to this bitmap should be protected by hose_spinlock.
+ */
+static DECLARE_BITMAP(phb_bitmap, MAX_PHBS);

  /* ISA Memory physical address */
  resource_size_t isa_mem_base;
@@ -64,6 +70,55 @@ struct dma_map_ops *get_pci_dma_ops(void)
  }
  EXPORT_SYMBOL(get_pci_dma_ops);

+/* get_phb_number() function should run under locking
+ * protection, specifically hose_spinlock.
+ */
+static int get_phb_number(struct device_node *dn)
+{
+   const __be64 *prop64;
+   const __be32 *regs;
+   int phb_id = 0;
+
+   /* Try fixed PHB numbering first, by checking archs and reading
+* the respective device-tree properties. Firstly, try PowerNV by
+* reading "ibm,opal-phbid", only present in OPAL environment.
+*/
+   prop64 = of_get_property(dn, "ibm,opal-phbid", NULL);
+   if (prop64) {
+   phb_id = (int)(be64_to_cpup(prop64) & 0x);
+
+   } else if (machine_is(pseries)) {
+   regs = of_get_property(dn, "reg", NULL);
+   if (regs)
+   phb_id = (int)(be32_to_cpu(regs[1]) & 0x);
+   } else {
+   goto dynamic_phb_numbering;
+   }
+
+   /* If we have a huge PHB number obtained from device-tree, no need
+* to worry with the bitmap. Otherwise, we need to be sure we're
+* not trying to use the same PHB number twice.
+*/
+   if (phb_id < MAX_PHBS) {
+   if (test_bit(phb_id, phb_bitmap))
+   goto 

Re: [PATCH v5] powerpc/pci: Assign fixed PHB number based on device-tree properties

2016-05-02 Thread Bjorn Helgaas
On Thu, Apr 14, 2016 at 06:55:24PM -0300, Guilherme G. Piccoli wrote:
> The domain/PHB field of PCI addresses has its value obtained from a
> global variable, incremented each time a new domain (represented by
> struct pci_controller) is added on the system. The domain addition
> process happens during boot or due to PCI device hotplug.
> 
> As recent kernels are using predictable naming for network interfaces,
> the network stack is more tied to PCI naming. This can be a problem in
> hotplug scenarios, because PCI addresses will change if devices are
> removed and then re-added. This situation seems unusual, but it can
> happen if a user wants to replace a NIC without rebooting the machine,
> for example.
> 
> This patch changes the way PCI domain values are generated: now, we use
> device-tree properties to assign fixed PHB numbers to PCI addresses
> when available (meaning pSeries and PowerNV cases). We also use a bitmap
> to allow dynamic PHB numbering when device-tree properties are not
> used. This bitmap keeps track of used PHB numbers and if a PHB is
> released (by hotplug operations for example), it allows the reuse of
> this PHB number, avoiding PCI address to change in case of device remove
> and re-add soon after. No functional changes were introduced.
> 
> Reviewed-by: Gavin Shan 
> Signed-off-by: Guilherme G. Piccoli 

I assume the powerpc guys will take care of this.  Let me know if you
need me to do anything.

> ---
>  arch/powerpc/kernel/pci-common.c | 66 
> ++--
>  1 file changed, 63 insertions(+), 3 deletions(-)
> 
> v5:
>   * Improved comments.
> 
>   * Changed the the Fixed PHB Numbering to set the PHB number bit
>   on the bitmap anyway, avoiding issues when system has virtual PHBs.
> 
>   * Changed the device-tree check order - now, firstly we check for
>   "ibm,opal-phbid" and if it's not available, we try the pSeries case.
> 
> v4:
>   * Minor change (if/else nesting rearranged).
> 
> v3:
>   * Made the bitmap static.
> 
>   * Rearranged if/else statements of Fixed PHB checking.
> 
>   * Improved bitmap checkings, by removing loop and using instead the
>   find_first_zero_bit() function.
> 
>   * Removed the single-statement function release_phb_number() by
>   adding its logic directly into pcibios_free_controller().
> 
>   *Added check for bitmap size before clearing bit, avoiding memory
>   corruption.
> 
> v2:
>   * Added the Fixed PHB Numbering mechanism based on device-tree
>   properties.
> 
>   * Changed list approach to bitmap on the Dynamic PHB Numbering
>   mechanism.
> 
> diff --git a/arch/powerpc/kernel/pci-common.c 
> b/arch/powerpc/kernel/pci-common.c
> index 0f7a60f..ad423c1 100644
> --- a/arch/powerpc/kernel/pci-common.c
> +++ b/arch/powerpc/kernel/pci-common.c
> @@ -41,11 +41,17 @@
>  #include 
>  #include 
>  
> +/* hose_spinlock protects accesses to the the phb_bitmap. */
>  static DEFINE_SPINLOCK(hose_spinlock);
>  LIST_HEAD(hose_list);
>  
> -/* XXX kill that some day ... */
> -static int global_phb_number;/* Global phb counter */
> +/* For dynamic PHB numbering on get_phb_number(): max number of PHBs. */
> +#define  MAX_PHBS8192
> +
> +/* For dynamic PHB numbering: used/free PHBs tracking bitmap.
> + * Accesses to this bitmap should be protected by hose_spinlock.
> + */
> +static DECLARE_BITMAP(phb_bitmap, MAX_PHBS);
>  
>  /* ISA Memory physical address */
>  resource_size_t isa_mem_base;
> @@ -64,6 +70,55 @@ struct dma_map_ops *get_pci_dma_ops(void)
>  }
>  EXPORT_SYMBOL(get_pci_dma_ops);
>  
> +/* get_phb_number() function should run under locking
> + * protection, specifically hose_spinlock.
> + */
> +static int get_phb_number(struct device_node *dn)
> +{
> + const __be64 *prop64;
> + const __be32 *regs;
> + int phb_id = 0;
> +
> + /* Try fixed PHB numbering first, by checking archs and reading
> +  * the respective device-tree properties. Firstly, try PowerNV by
> +  * reading "ibm,opal-phbid", only present in OPAL environment.
> +  */
> + prop64 = of_get_property(dn, "ibm,opal-phbid", NULL);
> + if (prop64) {
> + phb_id = (int)(be64_to_cpup(prop64) & 0x);
> +
> + } else if (machine_is(pseries)) {
> + regs = of_get_property(dn, "reg", NULL);
> + if (regs)
> + phb_id = (int)(be32_to_cpu(regs[1]) & 0x);
> + } else {
> + goto dynamic_phb_numbering;
> + }
> +
> + /* If we have a huge PHB number obtained from device-tree, no need
> +  * to worry with the bitmap. Otherwise, we need to be sure we're
> +  * not trying to use the same PHB number twice.
> +  */
> + if (phb_id < MAX_PHBS) {
> + if (test_bit(phb_id, phb_bitmap))
> + goto dynamic_phb_numbering;
> + set_bit(phb_id, phb_bitmap);
> + }
> +
> + return phb_id;
> +
> + /* If not pSeries nor 

Re: [PATCH v5] powerpc/pci: Assign fixed PHB number based on device-tree properties

2016-04-19 Thread Guilherme G. Piccoli

On 04/19/2016 04:27 AM, Ian Munsie wrote:

Thanks for addressing my feedback :)

Reviewed-by: Ian Munsie 


Thanks very much for reviewing Ian =)

Cheers,


Guilherme

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

[PATCH v5] powerpc/pci: Assign fixed PHB number based on device-tree properties

2016-04-14 Thread Guilherme G. Piccoli
The domain/PHB field of PCI addresses has its value obtained from a
global variable, incremented each time a new domain (represented by
struct pci_controller) is added on the system. The domain addition
process happens during boot or due to PCI device hotplug.

As recent kernels are using predictable naming for network interfaces,
the network stack is more tied to PCI naming. This can be a problem in
hotplug scenarios, because PCI addresses will change if devices are
removed and then re-added. This situation seems unusual, but it can
happen if a user wants to replace a NIC without rebooting the machine,
for example.

This patch changes the way PCI domain values are generated: now, we use
device-tree properties to assign fixed PHB numbers to PCI addresses
when available (meaning pSeries and PowerNV cases). We also use a bitmap
to allow dynamic PHB numbering when device-tree properties are not
used. This bitmap keeps track of used PHB numbers and if a PHB is
released (by hotplug operations for example), it allows the reuse of
this PHB number, avoiding PCI address to change in case of device remove
and re-add soon after. No functional changes were introduced.

Reviewed-by: Gavin Shan 
Signed-off-by: Guilherme G. Piccoli 
---
 arch/powerpc/kernel/pci-common.c | 66 ++--
 1 file changed, 63 insertions(+), 3 deletions(-)

v5:
  * Improved comments.

  * Changed the the Fixed PHB Numbering to set the PHB number bit
  on the bitmap anyway, avoiding issues when system has virtual PHBs.

  * Changed the device-tree check order - now, firstly we check for
  "ibm,opal-phbid" and if it's not available, we try the pSeries case.

v4:
  * Minor change (if/else nesting rearranged).

v3:
  * Made the bitmap static.

  * Rearranged if/else statements of Fixed PHB checking.

  * Improved bitmap checkings, by removing loop and using instead the
  find_first_zero_bit() function.

  * Removed the single-statement function release_phb_number() by
  adding its logic directly into pcibios_free_controller().

  *Added check for bitmap size before clearing bit, avoiding memory
  corruption.

v2:
  * Added the Fixed PHB Numbering mechanism based on device-tree
  properties.

  * Changed list approach to bitmap on the Dynamic PHB Numbering
  mechanism.

diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c
index 0f7a60f..ad423c1 100644
--- a/arch/powerpc/kernel/pci-common.c
+++ b/arch/powerpc/kernel/pci-common.c
@@ -41,11 +41,17 @@
 #include 
 #include 
 
+/* hose_spinlock protects accesses to the the phb_bitmap. */
 static DEFINE_SPINLOCK(hose_spinlock);
 LIST_HEAD(hose_list);
 
-/* XXX kill that some day ... */
-static int global_phb_number;  /* Global phb counter */
+/* For dynamic PHB numbering on get_phb_number(): max number of PHBs. */
+#defineMAX_PHBS8192
+
+/* For dynamic PHB numbering: used/free PHBs tracking bitmap.
+ * Accesses to this bitmap should be protected by hose_spinlock.
+ */
+static DECLARE_BITMAP(phb_bitmap, MAX_PHBS);
 
 /* ISA Memory physical address */
 resource_size_t isa_mem_base;
@@ -64,6 +70,55 @@ struct dma_map_ops *get_pci_dma_ops(void)
 }
 EXPORT_SYMBOL(get_pci_dma_ops);
 
+/* get_phb_number() function should run under locking
+ * protection, specifically hose_spinlock.
+ */
+static int get_phb_number(struct device_node *dn)
+{
+   const __be64 *prop64;
+   const __be32 *regs;
+   int phb_id = 0;
+
+   /* Try fixed PHB numbering first, by checking archs and reading
+* the respective device-tree properties. Firstly, try PowerNV by
+* reading "ibm,opal-phbid", only present in OPAL environment.
+*/
+   prop64 = of_get_property(dn, "ibm,opal-phbid", NULL);
+   if (prop64) {
+   phb_id = (int)(be64_to_cpup(prop64) & 0x);
+
+   } else if (machine_is(pseries)) {
+   regs = of_get_property(dn, "reg", NULL);
+   if (regs)
+   phb_id = (int)(be32_to_cpu(regs[1]) & 0x);
+   } else {
+   goto dynamic_phb_numbering;
+   }
+
+   /* If we have a huge PHB number obtained from device-tree, no need
+* to worry with the bitmap. Otherwise, we need to be sure we're
+* not trying to use the same PHB number twice.
+*/
+   if (phb_id < MAX_PHBS) {
+   if (test_bit(phb_id, phb_bitmap))
+   goto dynamic_phb_numbering;
+   set_bit(phb_id, phb_bitmap);
+   }
+
+   return phb_id;
+
+   /* If not pSeries nor PowerNV, or if fixed PHB numbering tried to add
+* the same PHB number twice, then fallback to dynamic PHB numbering.
+*/
+dynamic_phb_numbering:
+
+   phb_id = find_first_zero_bit(phb_bitmap, MAX_PHBS);
+   BUG_ON(phb_id >= MAX_PHBS); /* Reached maximum number of PHBs. */
+   set_bit(phb_id, phb_bitmap);
+
+   return phb_id;
+}
+
 struct