devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] DT: Use helper function to read u32 values
@ 2011-07-01 13:55 Manjunatha GK
       [not found] ` <BANLkTin+WCRrxhOBNoL_AJJAkS-w9ybXqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Manjunatha GK @ 2011-07-01 13:55 UTC (permalink / raw)
  To: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org",
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r


[-- Attachment #1.1: Type: text/plain, Size: 7498 bytes --]

Use helper function of_property_read_u32() in place of of_get_property
and be32_to_cpup() api's for code optimization.

Compile tested the changes.

Signed-off-by: G, Manjunath Kondaiah <manjugk-l0cyMroinI0@public.gmane.org>
---
 drivers/of/irq.c     |   37 ++++++++++++++++++++++---------------
 drivers/of/of_i2c.c  |    8 +++-----
 drivers/of/of_mdio.c |   16 ++++++----------
 3 files changed, 31 insertions(+), 30 deletions(-)

diff --git a/drivers/of/irq.c b/drivers/of/irq.c
index 9f689f1..13c02e2 100644
--- a/drivers/of/irq.c
+++ b/drivers/of/irq.c
@@ -59,20 +59,20 @@ EXPORT_SYMBOL_GPL(irq_of_parse_and_map);
 struct device_node *of_irq_find_parent(struct device_node *child)
 {
     struct device_node *p;
-    const __be32 *parp;
+    u32 *parp = NULL;

     if (!of_node_get(child))
         return NULL;

     do {
-        parp = of_get_property(child, "interrupt-parent", NULL);
+        of_property_read_u32(child, "interrupt-parent", parp);
         if (parp == NULL)
             p = of_get_parent(child);
         else {
             if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
                 p = of_node_get(of_irq_dflt_pic);
             else
-                p = of_find_node_by_phandle(be32_to_cpup(parp));
+                p = of_find_node_by_phandle(*parp);
         }
         of_node_put(child);
         child = p;
@@ -100,7 +100,8 @@ int of_irq_map_raw(struct device_node *parent, const
__be32 *intspec,
            u32 ointsize, const __be32 *addr, struct of_irq *out_irq)
 {
     struct device_node *ipar, *tnode, *old = NULL, *newpar = NULL;
-    const __be32 *tmp, *imap, *imask;
+    const __be32 *imap, *imask;
+    u32 *tmp;
     u32 intsize = 1, addrsize, newintsize = 0, newaddrsize = 0;
     int imaplen, match, i;

@@ -115,9 +116,10 @@ int of_irq_map_raw(struct device_node *parent, const
__be32 *intspec,
      * is none, we are nice and just walk up the tree
      */
     do {
-        tmp = of_get_property(ipar, "#interrupt-cells", NULL);
+        tmp = NULL;
+        of_property_read_u32(ipar, "#interrupt-cells", tmp);
         if (tmp != NULL) {
-            intsize = be32_to_cpu(*tmp);
+            intsize = *tmp;
             break;
         }
         tnode = ipar;
@@ -139,14 +141,15 @@ int of_irq_map_raw(struct device_node *parent, const
__be32 *intspec,
      */
     old = of_node_get(ipar);
     do {
-        tmp = of_get_property(old, "#address-cells", NULL);
+        tmp = NULL;
+        of_property_read_u32(old, "#address-cells", tmp);
         tnode = of_get_parent(old);
         of_node_put(old);
         old = tnode;
     } while (old && tmp == NULL);
     of_node_put(old);
     old = NULL;
-    addrsize = (tmp == NULL) ? 2 : be32_to_cpu(*tmp);
+    addrsize = (tmp == NULL) ? 2 : (*tmp);

     pr_debug(" -> addrsize=%d\n", addrsize);

@@ -225,14 +228,16 @@ int of_irq_map_raw(struct device_node *parent, const
__be32 *intspec,
             /* Get #interrupt-cells and #address-cells of new
              * parent
              */
-            tmp = of_get_property(newpar, "#interrupt-cells", NULL);
+            tmp = NULL;
+            of_property_read_u32(newpar, "#interrupt-cells", tmp);
             if (tmp == NULL) {
                 pr_debug(" -> parent lacks #interrupt-cells!\n");
                 goto fail;
             }
-            newintsize = be32_to_cpu(*tmp);
-            tmp = of_get_property(newpar, "#address-cells", NULL);
-            newaddrsize = (tmp == NULL) ? 0 : be32_to_cpu(*tmp);
+            newintsize = *tmp;
+            tmp = NULL;
+            of_property_read_u32(newpar, "#address-cells", tmp);
+            newaddrsize = (tmp == NULL) ? 0 : (*tmp);

             pr_debug(" -> newintsize=%d, newaddrsize=%d\n",
                 newintsize, newaddrsize);
@@ -284,7 +289,8 @@ EXPORT_SYMBOL_GPL(of_irq_map_raw);
 int of_irq_map_one(struct device_node *device, int index, struct of_irq
*out_irq)
 {
     struct device_node *p;
-    const __be32 *intspec, *tmp, *addr;
+    const __be32 *intspec, *addr;
+    u32 *tmp;
     u32 intsize, intlen;
     int res = -EINVAL;

@@ -311,10 +317,11 @@ int of_irq_map_one(struct device_node *device, int
index, struct of_irq *out_irq
         return -EINVAL;

     /* Get size of interrupt specifier */
-    tmp = of_get_property(p, "#interrupt-cells", NULL);
+    tmp = NULL;
+    of_get_property(p, "#interrupt-cells", tmp);
     if (tmp == NULL)
         goto out;
-    intsize = be32_to_cpu(*tmp);
+    intsize = *tmp;

     pr_debug(" intsize=%d intlen=%d\n", intsize, intlen);

diff --git a/drivers/of/of_i2c.c b/drivers/of/of_i2c.c
index f37fbeb..7113512 100644
--- a/drivers/of/of_i2c.c
+++ b/drivers/of/of_i2c.c
@@ -32,8 +32,7 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
     for_each_child_of_node(adap->dev.of_node, node) {
         struct i2c_board_info info = {};
         struct dev_archdata dev_ad = {};
-        const __be32 *addr;
-        int len;
+        u32 *addr = NULL;

         dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);

@@ -43,14 +42,13 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
             continue;
         }

-        addr = of_get_property(node, "reg", &len);
-        if (!addr || (len < sizeof(int))) {
+        if (of_get_property(node, "reg", addr)) {
             dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
                 node->full_name);
             continue;
         }

-        info.addr = be32_to_cpup(addr);
+        info.addr = *addr;
         if (info.addr > (1 << 10) - 1) {
             dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
                 info.addr, node->full_name);
diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c
index d35e300..d4b6503 100644
--- a/drivers/of/of_mdio.c
+++ b/drivers/of/of_mdio.c
@@ -52,19 +52,17 @@ int of_mdiobus_register(struct mii_bus *mdio, struct
device_node *np)

     /* Loop over the child nodes and register a phy_device for each one */
     for_each_child_of_node(np, child) {
-        const __be32 *paddr;
         u32 addr;
-        int len;
+        u32 *paddr = NULL;

         /* A PHY must have a reg property in the range [0-31] */
-        paddr = of_get_property(child, "reg", &len);
-        if (!paddr || len < sizeof(*paddr)) {
+        if (of_property_read_u32(child, "reg", paddr)) {
             dev_err(&mdio->dev, "%s has invalid PHY address\n",
                 child->full_name);
             continue;
         }

-        addr = be32_to_cpup(paddr);
+        addr = *paddr;
         if (addr >= 32) {
             dev_err(&mdio->dev, "%s PHY address %i is too large\n",
                 child->full_name, addr);
@@ -169,8 +167,7 @@ struct phy_device *of_phy_connect_fixed_link(struct
net_device *dev,
     struct device_node *net_np;
     char bus_id[MII_BUS_ID_SIZE + 3];
     struct phy_device *phy;
-    const __be32 *phy_id;
-    int sz;
+    u32 *phy_id = NULL;

     if (!dev->dev.parent)
         return NULL;
@@ -179,11 +176,10 @@ struct phy_device *of_phy_connect_fixed_link(struct
net_device *dev,
     if (!net_np)
         return NULL;

-    phy_id = of_get_property(net_np, "fixed-link", &sz);
-    if (!phy_id || sz < sizeof(*phy_id))
+    if (of_property_read_u32(net_np, "fixed-link", phy_id))
         return NULL;

-    sprintf(bus_id, PHY_ID_FMT, "0", be32_to_cpu(phy_id[0]));
+    sprintf(bus_id, PHY_ID_FMT, "0", phy_id[0]);

     phy = phy_connect(dev, bus_id, hndlr, 0, iface);
     return IS_ERR(phy) ? NULL : phy;
-- 
1.7.4.1

[-- Attachment #1.2: Type: text/html, Size: 8694 bytes --]

[-- Attachment #2: Type: text/plain, Size: 192 bytes --]

_______________________________________________
devicetree-discuss mailing list
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
https://lists.ozlabs.org/listinfo/devicetree-discuss

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

* Re: [PATCH] DT: Use helper function to read u32 values
       [not found] ` <BANLkTin+WCRrxhOBNoL_AJJAkS-w9ybXqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-07-01 14:22   ` Rob Herring
  2011-07-01 14:37   ` Grant Likely
  1 sibling, 0 replies; 4+ messages in thread
From: Rob Herring @ 2011-07-01 14:22 UTC (permalink / raw)
  To: Manjunatha GK; +Cc: " <devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ

On 07/01/2011 08:55 AM, Manjunatha GK wrote:
> Use helper function of_property_read_u32() in place of of_get_property
> and be32_to_cpup() api's for code optimization.
> 
> Compile tested the changes.
> 
> Signed-off-by: G, Manjunath Kondaiah <manjugk-l0cyMroinI0@public.gmane.org
> <mailto:manjugk-l0cyMroinI0@public.gmane.org>>
> ---
>  drivers/of/irq.c     |   37 ++++++++++++++++++++++---------------
>  drivers/of/of_i2c.c  |    8 +++-----
>  drivers/of/of_mdio.c |   16 ++++++----------
>  3 files changed, 31 insertions(+), 30 deletions(-)
> 
> diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> index 9f689f1..13c02e2 100644
> --- a/drivers/of/irq.c
> +++ b/drivers/of/irq.c
> @@ -59,20 +59,20 @@ EXPORT_SYMBOL_GPL(irq_of_parse_and_map);
>  struct device_node *of_irq_find_parent(struct device_node *child)
>  {
>      struct device_node *p;
> -    const __be32 *parp;
> +    u32 *parp = NULL;
>  
>      if (!of_node_get(child))
>          return NULL;
>  
>      do {
> -        parp = of_get_property(child, "interrupt-parent", NULL);
> +        of_property_read_u32(child, "interrupt-parent", parp);

This won't work as you are passing in a NULL ptr. You need to pass in
the address of a valid u32. The same applies to the ones below.


>          if (parp == NULL)
>              p = of_get_parent(child);
>          else {
>              if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
>                  p = of_node_get(of_irq_dflt_pic);
>              else
> -                p = of_find_node_by_phandle(be32_to_cpup(parp));
> +                p = of_find_node_by_phandle(*parp);
>          }
>          of_node_put(child);
>          child = p;
> @@ -100,7 +100,8 @@ int of_irq_map_raw(struct device_node *parent, const
> __be32 *intspec,
>             u32 ointsize, const __be32 *addr, struct of_irq *out_irq)
>  {
>      struct device_node *ipar, *tnode, *old = NULL, *newpar = NULL;
> -    const __be32 *tmp, *imap, *imask;
> +    const __be32 *imap, *imask;
> +    u32 *tmp;
>      u32 intsize = 1, addrsize, newintsize = 0, newaddrsize = 0;
>      int imaplen, match, i;
>  
> @@ -115,9 +116,10 @@ int of_irq_map_raw(struct device_node *parent,
> const __be32 *intspec,
>       * is none, we are nice and just walk up the tree
>       */
>      do {
> -        tmp = of_get_property(ipar, "#interrupt-cells", NULL);
> +        tmp = NULL;
> +        of_property_read_u32(ipar, "#interrupt-cells", tmp);
>          if (tmp != NULL) {
> -            intsize = be32_to_cpu(*tmp);
> +            intsize = *tmp;
>              break;
>          }
>          tnode = ipar;
> @@ -139,14 +141,15 @@ int of_irq_map_raw(struct device_node *parent,
> const __be32 *intspec,
>       */
>      old = of_node_get(ipar);
>      do {
> -        tmp = of_get_property(old, "#address-cells", NULL);
> +        tmp = NULL;
> +        of_property_read_u32(old, "#address-cells", tmp);
>          tnode = of_get_parent(old);
>          of_node_put(old);
>          old = tnode;
>      } while (old && tmp == NULL);
>      of_node_put(old);
>      old = NULL;
> -    addrsize = (tmp == NULL) ? 2 : be32_to_cpu(*tmp);
> +    addrsize = (tmp == NULL) ? 2 : (*tmp);
>  
>      pr_debug(" -> addrsize=%d\n", addrsize);
>  
> @@ -225,14 +228,16 @@ int of_irq_map_raw(struct device_node *parent,
> const __be32 *intspec,
>              /* Get #interrupt-cells and #address-cells of new
>               * parent
>               */
> -            tmp = of_get_property(newpar, "#interrupt-cells", NULL);
> +            tmp = NULL;
> +            of_property_read_u32(newpar, "#interrupt-cells", tmp);
>              if (tmp == NULL) {
>                  pr_debug(" -> parent lacks #interrupt-cells!\n");
>                  goto fail;
>              }
> -            newintsize = be32_to_cpu(*tmp);
> -            tmp = of_get_property(newpar, "#address-cells", NULL);
> -            newaddrsize = (tmp == NULL) ? 0 : be32_to_cpu(*tmp);
> +            newintsize = *tmp;
> +            tmp = NULL;
> +            of_property_read_u32(newpar, "#address-cells", tmp);
> +            newaddrsize = (tmp == NULL) ? 0 : (*tmp);
>  
>              pr_debug(" -> newintsize=%d, newaddrsize=%d\n",
>                  newintsize, newaddrsize);
> @@ -284,7 +289,8 @@ EXPORT_SYMBOL_GPL(of_irq_map_raw);
>  int of_irq_map_one(struct device_node *device, int index, struct of_irq
> *out_irq)
>  {
>      struct device_node *p;
> -    const __be32 *intspec, *tmp, *addr;
> +    const __be32 *intspec, *addr;
> +    u32 *tmp;
>      u32 intsize, intlen;
>      int res = -EINVAL;
>  
> @@ -311,10 +317,11 @@ int of_irq_map_one(struct device_node *device, int
> index, struct of_irq *out_irq
>          return -EINVAL;
>  
>      /* Get size of interrupt specifier */
> -    tmp = of_get_property(p, "#interrupt-cells", NULL);
> +    tmp = NULL;
> +    of_get_property(p, "#interrupt-cells", tmp);
>      if (tmp == NULL)
>          goto out;
> -    intsize = be32_to_cpu(*tmp);
> +    intsize = *tmp;
>  
>      pr_debug(" intsize=%d intlen=%d\n", intsize, intlen);
>  
> diff --git a/drivers/of/of_i2c.c b/drivers/of/of_i2c.c
> index f37fbeb..7113512 100644
> --- a/drivers/of/of_i2c.c
> +++ b/drivers/of/of_i2c.c
> @@ -32,8 +32,7 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
>      for_each_child_of_node(adap->dev.of_node, node) {
>          struct i2c_board_info info = {};
>          struct dev_archdata dev_ad = {};
> -        const __be32 *addr;
> -        int len;
> +        u32 *addr = NULL;
>  
>          dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
>  
> @@ -43,14 +42,13 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
>              continue;
>          }
>  
> -        addr = of_get_property(node, "reg", &len);
> -        if (!addr || (len < sizeof(int))) {
> +        if (of_get_property(node, "reg", addr)) {
>              dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
>                  node->full_name);
>              continue;
>          }
>  
> -        info.addr = be32_to_cpup(addr);
> +        info.addr = *addr;
>          if (info.addr > (1 << 10) - 1) {
>              dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
>                  info.addr, node->full_name);
> diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c
> index d35e300..d4b6503 100644
> --- a/drivers/of/of_mdio.c
> +++ b/drivers/of/of_mdio.c
> @@ -52,19 +52,17 @@ int of_mdiobus_register(struct mii_bus *mdio, struct
> device_node *np)
>  
>      /* Loop over the child nodes and register a phy_device for each one */
>      for_each_child_of_node(np, child) {
> -        const __be32 *paddr;
>          u32 addr;
> -        int len;
> +        u32 *paddr = NULL;
>  
>          /* A PHY must have a reg property in the range [0-31] */
> -        paddr = of_get_property(child, "reg", &len);
> -        if (!paddr || len < sizeof(*paddr)) {
> +        if (of_property_read_u32(child, "reg", paddr)) {
>              dev_err(&mdio->dev, "%s has invalid PHY address\n",
>                  child->full_name);
>              continue;
>          }
>  
> -        addr = be32_to_cpup(paddr);
> +        addr = *paddr;
>          if (addr >= 32) {
>              dev_err(&mdio->dev, "%s PHY address %i is too large\n",
>                  child->full_name, addr);
> @@ -169,8 +167,7 @@ struct phy_device *of_phy_connect_fixed_link(struct
> net_device *dev,
>      struct device_node *net_np;
>      char bus_id[MII_BUS_ID_SIZE + 3];
>      struct phy_device *phy;
> -    const __be32 *phy_id;
> -    int sz;
> +    u32 *phy_id = NULL;
>  
>      if (!dev->dev.parent)
>          return NULL;
> @@ -179,11 +176,10 @@ struct phy_device
> *of_phy_connect_fixed_link(struct net_device *dev,
>      if (!net_np)
>          return NULL;
>  
> -    phy_id = of_get_property(net_np, "fixed-link", &sz);
> -    if (!phy_id || sz < sizeof(*phy_id))
> +    if (of_property_read_u32(net_np, "fixed-link", phy_id))
>          return NULL;
>  
> -    sprintf(bus_id, PHY_ID_FMT, "0", be32_to_cpu(phy_id[0]));
> +    sprintf(bus_id, PHY_ID_FMT, "0", phy_id[0]);
>  
>      phy = phy_connect(dev, bus_id, hndlr, 0, iface);
>      return IS_ERR(phy) ? NULL : phy;
> -- 
> 1.7.4.1
> 
> 
> 
> 
> _______________________________________________
> devicetree-discuss mailing list
> devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
> https://lists.ozlabs.org/listinfo/devicetree-discuss

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

* Re: [PATCH] DT: Use helper function to read u32 values
       [not found] ` <BANLkTin+WCRrxhOBNoL_AJJAkS-w9ybXqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2011-07-01 14:22   ` Rob Herring
@ 2011-07-01 14:37   ` Grant Likely
       [not found]     ` <BANLkTikSnqPYxhrZv0YrhdZmTC=zrNNDRg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  1 sibling, 1 reply; 4+ messages in thread
From: Grant Likely @ 2011-07-01 14:37 UTC (permalink / raw)
  To: Manjunatha GK
  Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org",
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Fri, Jul 1, 2011 at 7:55 AM, Manjunatha GK <manjugk-l0cyMroinI0@public.gmane.org> wrote:
> Use helper function of_property_read_u32() in place of of_get_property
> and be32_to_cpup() api's for code optimization.
>
> Compile tested the changes.
>
> Signed-off-by: G, Manjunath Kondaiah <manjugk-l0cyMroinI0@public.gmane.org>
> ---
>  drivers/of/irq.c     |   37 ++++++++++++++++++++++---------------
>  drivers/of/of_i2c.c  |    8 +++-----
>  drivers/of/of_mdio.c |   16 ++++++----------
>  3 files changed, 31 insertions(+), 30 deletions(-)
>
> diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> index 9f689f1..13c02e2 100644
> --- a/drivers/of/irq.c
> +++ b/drivers/of/irq.c
> @@ -59,20 +59,20 @@ EXPORT_SYMBOL_GPL(irq_of_parse_and_map);
>  struct device_node *of_irq_find_parent(struct device_node *child)
>  {
>      struct device_node *p;
> -    const __be32 *parp;
> +    u32 *parp = NULL;
>
>      if (!of_node_get(child))
>          return NULL;
>
>      do {
> -        parp = of_get_property(child, "interrupt-parent", NULL);
> +        of_property_read_u32(child, "interrupt-parent", parp);
>          if (parp == NULL)
>              p = of_get_parent(child);

Hi Manjunatha.

This won't work.  You must pass a valid pointer.  It needs to be done this way;
        u32 parp;
        if (of_property_read_u32(child, "interrupt-parent", &parp) == 0) {
                ...
        } else {
                ...
        }

>          else {
>              if (of_irq_workarounds & OF_IMAP_NO_PHANDLE)
>                  p = of_node_get(of_irq_dflt_pic);
>              else
> -                p = of_find_node_by_phandle(be32_to_cpup(parp));
> +                p = of_find_node_by_phandle(*parp);
>          }
>          of_node_put(child);
>          child = p;
> @@ -100,7 +100,8 @@ int of_irq_map_raw(struct device_node *parent, const
> __be32 *intspec,
>             u32 ointsize, const __be32 *addr, struct of_irq *out_irq)
>  {
>      struct device_node *ipar, *tnode, *old = NULL, *newpar = NULL;
> -    const __be32 *tmp, *imap, *imask;
> +    const __be32 *imap, *imask;
> +    u32 *tmp;
>      u32 intsize = 1, addrsize, newintsize = 0, newaddrsize = 0;
>      int imaplen, match, i;
>
> @@ -115,9 +116,10 @@ int of_irq_map_raw(struct device_node *parent, const
> __be32 *intspec,
>       * is none, we are nice and just walk up the tree
>       */
>      do {
> -        tmp = of_get_property(ipar, "#interrupt-cells", NULL);
> +        tmp = NULL;
> +        of_property_read_u32(ipar, "#interrupt-cells", tmp);
>          if (tmp != NULL) {
> -            intsize = be32_to_cpu(*tmp);
> +            intsize = *tmp;
>              break;
>          }
>          tnode = ipar;
> @@ -139,14 +141,15 @@ int of_irq_map_raw(struct device_node *parent, const
> __be32 *intspec,
>       */
>      old = of_node_get(ipar);
>      do {
> -        tmp = of_get_property(old, "#address-cells", NULL);
> +        tmp = NULL;
> +        of_property_read_u32(old, "#address-cells", tmp);
>          tnode = of_get_parent(old);
>          of_node_put(old);
>          old = tnode;
>      } while (old && tmp == NULL);
>      of_node_put(old);
>      old = NULL;
> -    addrsize = (tmp == NULL) ? 2 : be32_to_cpu(*tmp);
> +    addrsize = (tmp == NULL) ? 2 : (*tmp);
>
>      pr_debug(" -> addrsize=%d\n", addrsize);
>
> @@ -225,14 +228,16 @@ int of_irq_map_raw(struct device_node *parent, const
> __be32 *intspec,
>              /* Get #interrupt-cells and #address-cells of new
>               * parent
>               */
> -            tmp = of_get_property(newpar, "#interrupt-cells", NULL);
> +            tmp = NULL;
> +            of_property_read_u32(newpar, "#interrupt-cells", tmp);
>              if (tmp == NULL) {
>                  pr_debug(" -> parent lacks #interrupt-cells!\n");
>                  goto fail;
>              }
> -            newintsize = be32_to_cpu(*tmp);
> -            tmp = of_get_property(newpar, "#address-cells", NULL);
> -            newaddrsize = (tmp == NULL) ? 0 : be32_to_cpu(*tmp);
> +            newintsize = *tmp;
> +            tmp = NULL;
> +            of_property_read_u32(newpar, "#address-cells", tmp);
> +            newaddrsize = (tmp == NULL) ? 0 : (*tmp);
>
>              pr_debug(" -> newintsize=%d, newaddrsize=%d\n",
>                  newintsize, newaddrsize);
> @@ -284,7 +289,8 @@ EXPORT_SYMBOL_GPL(of_irq_map_raw);
>  int of_irq_map_one(struct device_node *device, int index, struct of_irq
> *out_irq)
>  {
>      struct device_node *p;
> -    const __be32 *intspec, *tmp, *addr;
> +    const __be32 *intspec, *addr;
> +    u32 *tmp;
>      u32 intsize, intlen;
>      int res = -EINVAL;
>
> @@ -311,10 +317,11 @@ int of_irq_map_one(struct device_node *device, int
> index, struct of_irq *out_irq
>          return -EINVAL;
>
>      /* Get size of interrupt specifier */
> -    tmp = of_get_property(p, "#interrupt-cells", NULL);
> +    tmp = NULL;
> +    of_get_property(p, "#interrupt-cells", tmp);
>      if (tmp == NULL)
>          goto out;
> -    intsize = be32_to_cpu(*tmp);
> +    intsize = *tmp;
>
>      pr_debug(" intsize=%d intlen=%d\n", intsize, intlen);
>
> diff --git a/drivers/of/of_i2c.c b/drivers/of/of_i2c.c
> index f37fbeb..7113512 100644
> --- a/drivers/of/of_i2c.c
> +++ b/drivers/of/of_i2c.c
> @@ -32,8 +32,7 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
>      for_each_child_of_node(adap->dev.of_node, node) {
>          struct i2c_board_info info = {};
>          struct dev_archdata dev_ad = {};
> -        const __be32 *addr;
> -        int len;
> +        u32 *addr = NULL;
>
>          dev_dbg(&adap->dev, "of_i2c: register %s\n", node->full_name);
>
> @@ -43,14 +42,13 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
>              continue;
>          }
>
> -        addr = of_get_property(node, "reg", &len);
> -        if (!addr || (len < sizeof(int))) {
> +        if (of_get_property(node, "reg", addr)) {
>              dev_err(&adap->dev, "of_i2c: invalid reg on %s\n",
>                  node->full_name);
>              continue;
>          }
>
> -        info.addr = be32_to_cpup(addr);
> +        info.addr = *addr;
>          if (info.addr > (1 << 10) - 1) {
>              dev_err(&adap->dev, "of_i2c: invalid addr=%x on %s\n",
>                  info.addr, node->full_name);
> diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c
> index d35e300..d4b6503 100644
> --- a/drivers/of/of_mdio.c
> +++ b/drivers/of/of_mdio.c
> @@ -52,19 +52,17 @@ int of_mdiobus_register(struct mii_bus *mdio, struct
> device_node *np)
>
>      /* Loop over the child nodes and register a phy_device for each one */
>      for_each_child_of_node(np, child) {
> -        const __be32 *paddr;
>          u32 addr;
> -        int len;
> +        u32 *paddr = NULL;
>
>          /* A PHY must have a reg property in the range [0-31] */
> -        paddr = of_get_property(child, "reg", &len);
> -        if (!paddr || len < sizeof(*paddr)) {
> +        if (of_property_read_u32(child, "reg", paddr)) {
>              dev_err(&mdio->dev, "%s has invalid PHY address\n",
>                  child->full_name);
>              continue;
>          }
>
> -        addr = be32_to_cpup(paddr);
> +        addr = *paddr;
>          if (addr >= 32) {
>              dev_err(&mdio->dev, "%s PHY address %i is too large\n",
>                  child->full_name, addr);
> @@ -169,8 +167,7 @@ struct phy_device *of_phy_connect_fixed_link(struct
> net_device *dev,
>      struct device_node *net_np;
>      char bus_id[MII_BUS_ID_SIZE + 3];
>      struct phy_device *phy;
> -    const __be32 *phy_id;
> -    int sz;
> +    u32 *phy_id = NULL;
>
>      if (!dev->dev.parent)
>          return NULL;
> @@ -179,11 +176,10 @@ struct phy_device *of_phy_connect_fixed_link(struct
> net_device *dev,
>      if (!net_np)
>          return NULL;
>
> -    phy_id = of_get_property(net_np, "fixed-link", &sz);
> -    if (!phy_id || sz < sizeof(*phy_id))
> +    if (of_property_read_u32(net_np, "fixed-link", phy_id))
>          return NULL;
>
> -    sprintf(bus_id, PHY_ID_FMT, "0", be32_to_cpu(phy_id[0]));
> +    sprintf(bus_id, PHY_ID_FMT, "0", phy_id[0]);
>
>      phy = phy_connect(dev, bus_id, hndlr, 0, iface);
>      return IS_ERR(phy) ? NULL : phy;
> --
> 1.7.4.1
>
>
>



-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

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

* Re: [PATCH] DT: Use helper function to read u32 values
       [not found]     ` <BANLkTikSnqPYxhrZv0YrhdZmTC=zrNNDRg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-07-01 17:44       ` Manjunatha GK
  0 siblings, 0 replies; 4+ messages in thread
From: Manjunatha GK @ 2011-07-01 17:44 UTC (permalink / raw)
  To: Grant Likely
  Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org",
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r


[-- Attachment #1.1: Type: text/plain, Size: 1676 bytes --]

Hi Grant,

On 1 July 2011 20:07, Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org> wrote:

> On Fri, Jul 1, 2011 at 7:55 AM, Manjunatha GK <manjugk-l0cyMroinI0@public.gmane.org> wrote:
> > Use helper function of_property_read_u32() in place of of_get_property
> > and be32_to_cpup() api's for code optimization.
> >
> > Compile tested the changes.
> >
> > Signed-off-by: G, Manjunath Kondaiah <manjugk-l0cyMroinI0@public.gmane.org>
> > ---
> >  drivers/of/irq.c     |   37 ++++++++++++++++++++++---------------
> >  drivers/of/of_i2c.c  |    8 +++-----
> >  drivers/of/of_mdio.c |   16 ++++++----------
> >  3 files changed, 31 insertions(+), 30 deletions(-)
> >
> > diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> > index 9f689f1..13c02e2 100644
> > --- a/drivers/of/irq.c
> > +++ b/drivers/of/irq.c
> > @@ -59,20 +59,20 @@ EXPORT_SYMBOL_GPL(irq_of_parse_and_map);
> >  struct device_node *of_irq_find_parent(struct device_node *child)
> >  {
> >      struct device_node *p;
> > -    const __be32 *parp;
> > +    u32 *parp = NULL;
> >
> >      if (!of_node_get(child))
> >          return NULL;
> >
> >      do {
> > -        parp = of_get_property(child, "interrupt-parent", NULL);
> > +        of_property_read_u32(child, "interrupt-parent", parp);
> >          if (parp == NULL)
> >              p = of_get_parent(child);
>
> Hi Manjunatha.
>
> This won't work.  You must pass a valid pointer.  It needs to be done this
> way;
>        u32 parp;
>        if (of_property_read_u32(child, "interrupt-parent", &parp) == 0) {
>                ...
>        } else {
>                ...
>         }
>
Thanks for the quick catch. I will fix it.

-Manjunath

[-- Attachment #1.2: Type: text/html, Size: 2421 bytes --]

[-- Attachment #2: Type: text/plain, Size: 192 bytes --]

_______________________________________________
devicetree-discuss mailing list
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
https://lists.ozlabs.org/listinfo/devicetree-discuss

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

end of thread, other threads:[~2011-07-01 17:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-01 13:55 [PATCH] DT: Use helper function to read u32 values Manjunatha GK
     [not found] ` <BANLkTin+WCRrxhOBNoL_AJJAkS-w9ybXqg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-07-01 14:22   ` Rob Herring
2011-07-01 14:37   ` Grant Likely
     [not found]     ` <BANLkTikSnqPYxhrZv0YrhdZmTC=zrNNDRg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-07-01 17:44       ` Manjunatha GK

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