linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers: of/base: move of_init to driver_init
@ 2015-05-14  9:28 Sudeep Holla
  2015-05-14 13:54 ` Sudeep Holla
  2015-05-14 14:28 ` [PATCH v2] " Sudeep Holla
  0 siblings, 2 replies; 11+ messages in thread
From: Sudeep Holla @ 2015-05-14  9:28 UTC (permalink / raw)
  To: Rob Herring, linux-kernel, devicetree
  Cc: Sudeep Holla, Grant Likely, Pawel Moll, Benjamin Herrenschmidt,
	Greg Kroah-Hartman

Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
devices with an OF node") adds the symlink `of_node` for each device
pointing to it's device tree node while creating/initialising it.

However the devicetree sysfs is created and setup in of_init which is
executed at core_initcall level. For all the devices created before
of_init, the following error is thrown:
	"Error -2(-ENOENT) creating of_node link"

Like many other components in driver model, initialize the sysfs support
for OF/devicetree from driver_init so that it's ready before any devices
are created.

Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
	devices with an OF node")
Suggested-by: Rob Herring <robh+dt@kernel.org>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
---
 drivers/base/init.c | 2 ++
 drivers/of/base.c   | 8 +++-----
 include/linux/of.h  | 6 ++++++
 3 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/drivers/base/init.c b/drivers/base/init.c
index da033d3bab3c..fa149c7678d2 100644
--- a/drivers/base/init.c
+++ b/drivers/base/init.c
@@ -8,6 +8,7 @@
 #include <linux/device.h>
 #include <linux/init.h>
 #include <linux/memory.h>
+#include <linux/of.h>

 #include "base.h"

@@ -34,4 +35,5 @@ void __init driver_init(void)
 	cpu_dev_init();
 	memory_dev_init();
 	container_dev_init();
+	of_init();
 }
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 99764db0875a..d4d3dbbfed72 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -189,7 +189,7 @@ int __of_attach_node_sysfs(struct device_node *np)
 	return 0;
 }

-static int __init of_init(void)
+void __init of_init(void)
 {
 	struct device_node *np;

@@ -198,7 +198,8 @@ static int __init of_init(void)
 	of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
 	if (!of_kset) {
 		mutex_unlock(&of_mutex);
-		return -ENOMEM;
+		pr_err("devicetree: failed to register existing nodes\n");
+		return;
 	}
 	for_each_of_allnodes(np)
 		__of_attach_node_sysfs(np);
@@ -207,10 +208,7 @@ static int __init of_init(void)
 	/* Symlink in /proc as required by userspace ABI */
 	if (of_root)
 		proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
-
-	return 0;
 }
-core_initcall(of_init);

 static struct property *__of_find_property(const struct device_node *np,
 					   const char *name, int *lenp)
diff --git a/include/linux/of.h b/include/linux/of.h
index ddeaae6d2083..1eb9d030b19b 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -121,6 +121,8 @@ extern struct device_node *of_stdout;
 extern raw_spinlock_t devtree_lock;

 #ifdef CONFIG_OF
+void of_init(void);
+
 static inline bool is_of_node(struct fwnode_handle *fwnode)
 {
 	return fwnode && fwnode->type == FWNODE_OF;
@@ -376,6 +378,10 @@ bool of_console_check(struct device_node *dn, char *name, int index);

 #else /* CONFIG_OF */

+static inline void of_init(void)
+{
+}
+
 static inline bool is_of_node(struct fwnode_handle *fwnode)
 {
 	return false;
--
1.9.1


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

* Re: [PATCH] drivers: of/base: move of_init to driver_init
  2015-05-14  9:28 [PATCH] drivers: of/base: move of_init to driver_init Sudeep Holla
@ 2015-05-14 13:54 ` Sudeep Holla
  2015-05-14 14:28 ` [PATCH v2] " Sudeep Holla
  1 sibling, 0 replies; 11+ messages in thread
From: Sudeep Holla @ 2015-05-14 13:54 UTC (permalink / raw)
  To: linux-kernel, devicetree, Rob Herring
  Cc: Rob Herring, Sudeep Holla, grant.likely, Pawel Moll,
	Benjamin Herrenschmidt, Greg Kroah-Hartman



On 14/05/15 10:28, Sudeep Holla wrote:
> Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> devices with an OF node") adds the symlink `of_node` for each device
> pointing to it's device tree node while creating/initialising it.
>
> However the devicetree sysfs is created and setup in of_init which is
> executed at core_initcall level. For all the devices created before
> of_init, the following error is thrown:
> 	"Error -2(-ENOENT) creating of_node link"
>
> Like many other components in driver model, initialize the sysfs support
> for OF/devicetree from driver_init so that it's ready before any devices
> are created.
>
> Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> 	devices with an OF node")
> Suggested-by: Rob Herring <robh+dt@kernel.org>
> Cc: Grant Likely <grant.likely@linaro.org>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Pawel Moll <pawel.moll@arm.com>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> ---
>   drivers/base/init.c | 2 ++
>   drivers/of/base.c   | 8 +++-----
>   include/linux/of.h  | 6 ++++++
>   3 files changed, 11 insertions(+), 5 deletions(-)
>

Looks like we still have conflict even though the one I pointed was in
bootwrapper. Kbuilder reported the following build error:

drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.c:45:1: error: 
conflicting types for 'of_init'
  of_init(struct nvkm_bios *bios, const char *name)
  ^
In file included from arch/powerpc/include/asm/prom.h:23:0,
       from arch/powerpc/include/asm/pci.h:20,
       from include/linux/pci.h:1460,
       from drivers/gpu/drm/nouveau/include/nvif/os.h:7,
       from drivers/gpu/drm/nouveau/include/nvkm/core/os.h:3,
       from drivers/gpu/drm/nouveau/include/nvkm/core/object.h:3,
       from drivers/gpu/drm/nouveau/include/nvkm/core/subdev.h:3,
       from drivers/gpu/drm/nouveau/include/nvkm/subdev/bios.h:3,
       from drivers/gpu/drm/nouveau/nvkm/subdev/bios/priv.h:3,
       from drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.c:23:
include/linux/of.h:124:6: note: previous declaration of 'of_init' was here
  void of_init(void);
       ^
Sorry I couldn't catch this with any ppc defconfigs. Please ignore this
version, will repost updated one soon renaming to of_core_init
as initially discussed.

Regards,
Sudeep

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

* [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-05-14  9:28 [PATCH] drivers: of/base: move of_init to driver_init Sudeep Holla
  2015-05-14 13:54 ` Sudeep Holla
@ 2015-05-14 14:28 ` Sudeep Holla
  2015-05-19 12:29   ` Sudeep Holla
                     ` (2 more replies)
  1 sibling, 3 replies; 11+ messages in thread
From: Sudeep Holla @ 2015-05-14 14:28 UTC (permalink / raw)
  To: Rob Herring, linux-kernel, devicetree
  Cc: Sudeep Holla, Grant Likely, Rob Herring, Pawel Moll,
	Benjamin Herrenschmidt, Greg Kroah-Hartman

Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
devices with an OF node") adds the symlink `of_node` for each device
pointing to it's device tree node while creating/initialising it.

However the devicetree sysfs is created and setup in of_init which is
executed at core_initcall level. For all the devices created before
of_init, the following error is thrown:
	"Error -2(-ENOENT) creating of_node link"

Like many other components in driver model, initialize the sysfs support
for OF/devicetree from driver_init so that it's ready before any devices
are created.

Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
	devices with an OF node")
Suggested-by: Rob Herring <robh+dt@kernel.org>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
---
 drivers/base/init.c | 2 ++
 drivers/of/base.c   | 8 +++-----
 include/linux/of.h  | 6 ++++++
 3 files changed, 11 insertions(+), 5 deletions(-)

Changes v1->v2:
	- renamed of_init to of_core_init to avoid collision with
	  PPC nouveau drm driver

diff --git a/drivers/base/init.c b/drivers/base/init.c
index da033d3bab3c..48c0e220acc0 100644
--- a/drivers/base/init.c
+++ b/drivers/base/init.c
@@ -8,6 +8,7 @@
 #include <linux/device.h>
 #include <linux/init.h>
 #include <linux/memory.h>
+#include <linux/of.h>

 #include "base.h"

@@ -34,4 +35,5 @@ void __init driver_init(void)
 	cpu_dev_init();
 	memory_dev_init();
 	container_dev_init();
+	of_core_init();
 }
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 99764db0875a..f0650265febf 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -189,7 +189,7 @@ int __of_attach_node_sysfs(struct device_node *np)
 	return 0;
 }

-static int __init of_init(void)
+void __init of_core_init(void)
 {
 	struct device_node *np;

@@ -198,7 +198,8 @@ static int __init of_init(void)
 	of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
 	if (!of_kset) {
 		mutex_unlock(&of_mutex);
-		return -ENOMEM;
+		pr_err("devicetree: failed to register existing nodes\n");
+		return;
 	}
 	for_each_of_allnodes(np)
 		__of_attach_node_sysfs(np);
@@ -207,10 +208,7 @@ static int __init of_init(void)
 	/* Symlink in /proc as required by userspace ABI */
 	if (of_root)
 		proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
-
-	return 0;
 }
-core_initcall(of_init);

 static struct property *__of_find_property(const struct device_node *np,
 					   const char *name, int *lenp)
diff --git a/include/linux/of.h b/include/linux/of.h
index ddeaae6d2083..b871ff9d81d7 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -121,6 +121,8 @@ extern struct device_node *of_stdout;
 extern raw_spinlock_t devtree_lock;

 #ifdef CONFIG_OF
+void of_core_init(void);
+
 static inline bool is_of_node(struct fwnode_handle *fwnode)
 {
 	return fwnode && fwnode->type == FWNODE_OF;
@@ -376,6 +378,10 @@ bool of_console_check(struct device_node *dn, char *name, int index);

 #else /* CONFIG_OF */

+static inline void of_core_init(void)
+{
+}
+
 static inline bool is_of_node(struct fwnode_handle *fwnode)
 {
 	return false;
--
1.9.1


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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-05-14 14:28 ` [PATCH v2] " Sudeep Holla
@ 2015-05-19 12:29   ` Sudeep Holla
  2015-05-19 17:17     ` Greg Kroah-Hartman
  2015-05-20 13:15   ` Rob Herring
  2015-05-22  6:46   ` Robert Schwebel
  2 siblings, 1 reply; 11+ messages in thread
From: Sudeep Holla @ 2015-05-19 12:29 UTC (permalink / raw)
  To: Rob Herring, Greg Kroah-Hartman
  Cc: linux-kernel, devicetree, Sudeep Holla, grant.likely,
	Rob Herring, Pawel Moll, Benjamin Herrenschmidt

Hi Rob/Greg,

On 14/05/15 15:28, Sudeep Holla wrote:
> Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> devices with an OF node") adds the symlink `of_node` for each device
> pointing to it's device tree node while creating/initialising it.
>
> However the devicetree sysfs is created and setup in of_init which is
> executed at core_initcall level. For all the devices created before
> of_init, the following error is thrown:
> 	"Error -2(-ENOENT) creating of_node link"
>
> Like many other components in driver model, initialize the sysfs support
> for OF/devicetree from driver_init so that it's ready before any devices
> are created.
>
> Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> 	devices with an OF node")
> Suggested-by: Rob Herring <robh+dt@kernel.org>
> Cc: Grant Likely <grant.likely@linaro.org>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Pawel Moll <pawel.moll@arm.com>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>

I assume one of you will pick this up if there are no further comments ?

Regards,
Sudeep

> ---
>   drivers/base/init.c | 2 ++
>   drivers/of/base.c   | 8 +++-----
>   include/linux/of.h  | 6 ++++++
>   3 files changed, 11 insertions(+), 5 deletions(-)
>
> Changes v1->v2:
> 	- renamed of_init to of_core_init to avoid collision with
> 	  PPC nouveau drm driver
>
> diff --git a/drivers/base/init.c b/drivers/base/init.c
> index da033d3bab3c..48c0e220acc0 100644
> --- a/drivers/base/init.c
> +++ b/drivers/base/init.c
> @@ -8,6 +8,7 @@
>   #include <linux/device.h>
>   #include <linux/init.h>
>   #include <linux/memory.h>
> +#include <linux/of.h>
>
>   #include "base.h"
>
> @@ -34,4 +35,5 @@ void __init driver_init(void)
>   	cpu_dev_init();
>   	memory_dev_init();
>   	container_dev_init();
> +	of_core_init();
>   }
> diff --git a/drivers/of/base.c b/drivers/of/base.c
> index 99764db0875a..f0650265febf 100644
> --- a/drivers/of/base.c
> +++ b/drivers/of/base.c
> @@ -189,7 +189,7 @@ int __of_attach_node_sysfs(struct device_node *np)
>   	return 0;
>   }
>
> -static int __init of_init(void)
> +void __init of_core_init(void)
>   {
>   	struct device_node *np;
>
> @@ -198,7 +198,8 @@ static int __init of_init(void)
>   	of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
>   	if (!of_kset) {
>   		mutex_unlock(&of_mutex);
> -		return -ENOMEM;
> +		pr_err("devicetree: failed to register existing nodes\n");
> +		return;
>   	}
>   	for_each_of_allnodes(np)
>   		__of_attach_node_sysfs(np);
> @@ -207,10 +208,7 @@ static int __init of_init(void)
>   	/* Symlink in /proc as required by userspace ABI */
>   	if (of_root)
>   		proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
> -
> -	return 0;
>   }
> -core_initcall(of_init);
>
>   static struct property *__of_find_property(const struct device_node *np,
>   					   const char *name, int *lenp)
> diff --git a/include/linux/of.h b/include/linux/of.h
> index ddeaae6d2083..b871ff9d81d7 100644
> --- a/include/linux/of.h
> +++ b/include/linux/of.h
> @@ -121,6 +121,8 @@ extern struct device_node *of_stdout;
>   extern raw_spinlock_t devtree_lock;
>
>   #ifdef CONFIG_OF
> +void of_core_init(void);
> +
>   static inline bool is_of_node(struct fwnode_handle *fwnode)
>   {
>   	return fwnode && fwnode->type == FWNODE_OF;
> @@ -376,6 +378,10 @@ bool of_console_check(struct device_node *dn, char *name, int index);
>
>   #else /* CONFIG_OF */
>
> +static inline void of_core_init(void)
> +{
> +}
> +
>   static inline bool is_of_node(struct fwnode_handle *fwnode)
>   {
>   	return false;
> --
> 1.9.1
>

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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-05-19 12:29   ` Sudeep Holla
@ 2015-05-19 17:17     ` Greg Kroah-Hartman
  2015-05-20  9:22       ` Sudeep Holla
  2015-06-07  7:05       ` Grant Likely
  0 siblings, 2 replies; 11+ messages in thread
From: Greg Kroah-Hartman @ 2015-05-19 17:17 UTC (permalink / raw)
  To: Sudeep Holla
  Cc: Rob Herring, linux-kernel, devicetree, grant.likely, Rob Herring,
	Pawel Moll, Benjamin Herrenschmidt

On Tue, May 19, 2015 at 01:29:16PM +0100, Sudeep Holla wrote:
> Hi Rob/Greg,
> 
> On 14/05/15 15:28, Sudeep Holla wrote:
> >Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> >devices with an OF node") adds the symlink `of_node` for each device
> >pointing to it's device tree node while creating/initialising it.
> >
> >However the devicetree sysfs is created and setup in of_init which is
> >executed at core_initcall level. For all the devices created before
> >of_init, the following error is thrown:
> >	"Error -2(-ENOENT) creating of_node link"
> >
> >Like many other components in driver model, initialize the sysfs support
> >for OF/devicetree from driver_init so that it's ready before any devices
> >are created.
> >
> >Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> >	devices with an OF node")
> >Suggested-by: Rob Herring <robh+dt@kernel.org>
> >Cc: Grant Likely <grant.likely@linaro.org>
> >Cc: Rob Herring <robh+dt@kernel.org>
> >Cc: Pawel Moll <pawel.moll@arm.com>
> >Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> >Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> 
> I assume one of you will pick this up if there are no further comments ?

I will once things settle down...

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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-05-19 17:17     ` Greg Kroah-Hartman
@ 2015-05-20  9:22       ` Sudeep Holla
  2015-06-07  7:05       ` Grant Likely
  1 sibling, 0 replies; 11+ messages in thread
From: Sudeep Holla @ 2015-05-20  9:22 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Rob Herring, linux-kernel, devicetree, grant.likely, Rob Herring,
	Pawel Moll, Benjamin Herrenschmidt

On Tue, May 19, 2015 at 6:17 PM, Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
> On Tue, May 19, 2015 at 01:29:16PM +0100, Sudeep Holla wrote:
>> Hi Rob/Greg,
>>
>> On 14/05/15 15:28, Sudeep Holla wrote:
>> >Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
>> >devices with an OF node") adds the symlink `of_node` for each device
>> >pointing to it's device tree node while creating/initialising it.
>> >
>> >However the devicetree sysfs is created and setup in of_init which is
>> >executed at core_initcall level. For all the devices created before
>> >of_init, the following error is thrown:
>> >     "Error -2(-ENOENT) creating of_node link"
>> >
>> >Like many other components in driver model, initialize the sysfs support
>> >for OF/devicetree from driver_init so that it's ready before any devices
>> >are created.
>> >
>> >Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
>> >     devices with an OF node")
>> >Suggested-by: Rob Herring <robh+dt@kernel.org>
>> >Cc: Grant Likely <grant.likely@linaro.org>
>> >Cc: Rob Herring <robh+dt@kernel.org>
>> >Cc: Pawel Moll <pawel.moll@arm.com>
>> >Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
>> >Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> >Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
>>
>> I assume one of you will pick this up if there are no further comments ?
>
> I will once things settle down...

Thanks.

Regards,
Sudeep

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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-05-14 14:28 ` [PATCH v2] " Sudeep Holla
  2015-05-19 12:29   ` Sudeep Holla
@ 2015-05-20 13:15   ` Rob Herring
  2015-05-22  6:46   ` Robert Schwebel
  2 siblings, 0 replies; 11+ messages in thread
From: Rob Herring @ 2015-05-20 13:15 UTC (permalink / raw)
  To: Sudeep Holla
  Cc: linux-kernel, devicetree, Grant Likely, Rob Herring, Pawel Moll,
	Benjamin Herrenschmidt, Greg Kroah-Hartman

On Thu, May 14, 2015 at 9:28 AM, Sudeep Holla <sudeep.holla@arm.com> wrote:
> Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> devices with an OF node") adds the symlink `of_node` for each device
> pointing to it's device tree node while creating/initialising it.
>
> However the devicetree sysfs is created and setup in of_init which is
> executed at core_initcall level. For all the devices created before
> of_init, the following error is thrown:
>         "Error -2(-ENOENT) creating of_node link"
>
> Like many other components in driver model, initialize the sysfs support
> for OF/devicetree from driver_init so that it's ready before any devices
> are created.
>
> Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
>         devices with an OF node")
> Suggested-by: Rob Herring <robh+dt@kernel.org>
> Cc: Grant Likely <grant.likely@linaro.org>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Pawel Moll <pawel.moll@arm.com>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>

Acked-by: Rob Herring <robh@kernel.org>

> ---
>  drivers/base/init.c | 2 ++
>  drivers/of/base.c   | 8 +++-----
>  include/linux/of.h  | 6 ++++++
>  3 files changed, 11 insertions(+), 5 deletions(-)
>
> Changes v1->v2:
>         - renamed of_init to of_core_init to avoid collision with
>           PPC nouveau drm driver
>
> diff --git a/drivers/base/init.c b/drivers/base/init.c
> index da033d3bab3c..48c0e220acc0 100644
> --- a/drivers/base/init.c
> +++ b/drivers/base/init.c
> @@ -8,6 +8,7 @@
>  #include <linux/device.h>
>  #include <linux/init.h>
>  #include <linux/memory.h>
> +#include <linux/of.h>
>
>  #include "base.h"
>
> @@ -34,4 +35,5 @@ void __init driver_init(void)
>         cpu_dev_init();
>         memory_dev_init();
>         container_dev_init();
> +       of_core_init();
>  }
> diff --git a/drivers/of/base.c b/drivers/of/base.c
> index 99764db0875a..f0650265febf 100644
> --- a/drivers/of/base.c
> +++ b/drivers/of/base.c
> @@ -189,7 +189,7 @@ int __of_attach_node_sysfs(struct device_node *np)
>         return 0;
>  }
>
> -static int __init of_init(void)
> +void __init of_core_init(void)
>  {
>         struct device_node *np;
>
> @@ -198,7 +198,8 @@ static int __init of_init(void)
>         of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
>         if (!of_kset) {
>                 mutex_unlock(&of_mutex);
> -               return -ENOMEM;
> +               pr_err("devicetree: failed to register existing nodes\n");
> +               return;
>         }
>         for_each_of_allnodes(np)
>                 __of_attach_node_sysfs(np);
> @@ -207,10 +208,7 @@ static int __init of_init(void)
>         /* Symlink in /proc as required by userspace ABI */
>         if (of_root)
>                 proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
> -
> -       return 0;
>  }
> -core_initcall(of_init);
>
>  static struct property *__of_find_property(const struct device_node *np,
>                                            const char *name, int *lenp)
> diff --git a/include/linux/of.h b/include/linux/of.h
> index ddeaae6d2083..b871ff9d81d7 100644
> --- a/include/linux/of.h
> +++ b/include/linux/of.h
> @@ -121,6 +121,8 @@ extern struct device_node *of_stdout;
>  extern raw_spinlock_t devtree_lock;
>
>  #ifdef CONFIG_OF
> +void of_core_init(void);
> +
>  static inline bool is_of_node(struct fwnode_handle *fwnode)
>  {
>         return fwnode && fwnode->type == FWNODE_OF;
> @@ -376,6 +378,10 @@ bool of_console_check(struct device_node *dn, char *name, int index);
>
>  #else /* CONFIG_OF */
>
> +static inline void of_core_init(void)
> +{
> +}
> +
>  static inline bool is_of_node(struct fwnode_handle *fwnode)
>  {
>         return false;
> --
> 1.9.1
>

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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-05-14 14:28 ` [PATCH v2] " Sudeep Holla
  2015-05-19 12:29   ` Sudeep Holla
  2015-05-20 13:15   ` Rob Herring
@ 2015-05-22  6:46   ` Robert Schwebel
  2 siblings, 0 replies; 11+ messages in thread
From: Robert Schwebel @ 2015-05-22  6:46 UTC (permalink / raw)
  To: Sudeep Holla
  Cc: Rob Herring, linux-kernel, devicetree, Grant Likely, Rob Herring,
	Pawel Moll, Benjamin Herrenschmidt, Greg Kroah-Hartman

Hi Sudeep,

On Thu, May 14, 2015 at 03:28:24PM +0100, Sudeep Holla wrote:
> Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> devices with an OF node") adds the symlink `of_node` for each device
> pointing to it's device tree node while creating/initialising it.
> 
> However the devicetree sysfs is created and setup in of_init which is
> executed at core_initcall level. For all the devices created before
> of_init, the following error is thrown:
> 	"Error -2(-ENOENT) creating of_node link"
> 
> Like many other components in driver model, initialize the sysfs support
> for OF/devicetree from driver_init so that it's ready before any devices
> are created.
> 
> Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> 	devices with an OF node")
> Suggested-by: Rob Herring <robh+dt@kernel.org>
> Cc: Grant Likely <grant.likely@linaro.org>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Pawel Moll <pawel.moll@arm.com>
> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> ---
>  drivers/base/init.c | 2 ++
>  drivers/of/base.c   | 8 +++-----
>  include/linux/of.h  | 6 ++++++
>  3 files changed, 11 insertions(+), 5 deletions(-)
> 
> Changes v1->v2:
> 	- renamed of_init to of_core_init to avoid collision with
> 	  PPC nouveau drm driver
> 
> diff --git a/drivers/base/init.c b/drivers/base/init.c
> index da033d3bab3c..48c0e220acc0 100644
> --- a/drivers/base/init.c
> +++ b/drivers/base/init.c
> @@ -8,6 +8,7 @@
>  #include <linux/device.h>
>  #include <linux/init.h>
>  #include <linux/memory.h>
> +#include <linux/of.h>
> 
>  #include "base.h"
> 
> @@ -34,4 +35,5 @@ void __init driver_init(void)
>  	cpu_dev_init();
>  	memory_dev_init();
>  	container_dev_init();
> +	of_core_init();
>  }
> diff --git a/drivers/of/base.c b/drivers/of/base.c
> index 99764db0875a..f0650265febf 100644
> --- a/drivers/of/base.c
> +++ b/drivers/of/base.c
> @@ -189,7 +189,7 @@ int __of_attach_node_sysfs(struct device_node *np)
>  	return 0;
>  }
> 
> -static int __init of_init(void)
> +void __init of_core_init(void)
>  {
>  	struct device_node *np;
> 
> @@ -198,7 +198,8 @@ static int __init of_init(void)
>  	of_kset = kset_create_and_add("devicetree", NULL, firmware_kobj);
>  	if (!of_kset) {
>  		mutex_unlock(&of_mutex);
> -		return -ENOMEM;
> +		pr_err("devicetree: failed to register existing nodes\n");
> +		return;
>  	}
>  	for_each_of_allnodes(np)
>  		__of_attach_node_sysfs(np);
> @@ -207,10 +208,7 @@ static int __init of_init(void)
>  	/* Symlink in /proc as required by userspace ABI */
>  	if (of_root)
>  		proc_symlink("device-tree", NULL, "/sys/firmware/devicetree/base");
> -
> -	return 0;
>  }
> -core_initcall(of_init);
> 
>  static struct property *__of_find_property(const struct device_node *np,
>  					   const char *name, int *lenp)
> diff --git a/include/linux/of.h b/include/linux/of.h
> index ddeaae6d2083..b871ff9d81d7 100644
> --- a/include/linux/of.h
> +++ b/include/linux/of.h
> @@ -121,6 +121,8 @@ extern struct device_node *of_stdout;
>  extern raw_spinlock_t devtree_lock;
> 
>  #ifdef CONFIG_OF
> +void of_core_init(void);
> +
>  static inline bool is_of_node(struct fwnode_handle *fwnode)
>  {
>  	return fwnode && fwnode->type == FWNODE_OF;
> @@ -376,6 +378,10 @@ bool of_console_check(struct device_node *dn, char *name, int index);
> 
>  #else /* CONFIG_OF */
> 
> +static inline void of_core_init(void)
> +{
> +}
> +
>  static inline bool is_of_node(struct fwnode_handle *fwnode)
>  {
>  	return false;
> --
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 

Works on vexpress (qemu), thanks!

Tested-by: Robert Schwebel <r.schwebel@pengutronix.de>

rsc
-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-05-19 17:17     ` Greg Kroah-Hartman
  2015-05-20  9:22       ` Sudeep Holla
@ 2015-06-07  7:05       ` Grant Likely
  2015-06-08  0:29         ` Rob Herring
  1 sibling, 1 reply; 11+ messages in thread
From: Grant Likely @ 2015-06-07  7:05 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Sudeep Holla
  Cc: Rob Herring, linux-kernel, devicetree, Rob Herring, Pawel Moll,
	Benjamin Herrenschmidt

On Tue, 19 May 2015 10:17:32 -0700
, Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 wrote:
> On Tue, May 19, 2015 at 01:29:16PM +0100, Sudeep Holla wrote:
> > Hi Rob/Greg,
> > 
> > On 14/05/15 15:28, Sudeep Holla wrote:
> > >Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> > >devices with an OF node") adds the symlink `of_node` for each device
> > >pointing to it's device tree node while creating/initialising it.
> > >
> > >However the devicetree sysfs is created and setup in of_init which is
> > >executed at core_initcall level. For all the devices created before
> > >of_init, the following error is thrown:
> > >	"Error -2(-ENOENT) creating of_node link"
> > >
> > >Like many other components in driver model, initialize the sysfs support
> > >for OF/devicetree from driver_init so that it's ready before any devices
> > >are created.
> > >
> > >Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> > >	devices with an OF node")
> > >Suggested-by: Rob Herring <robh+dt@kernel.org>
> > >Cc: Grant Likely <grant.likely@linaro.org>
> > >Cc: Rob Herring <robh+dt@kernel.org>
> > >Cc: Pawel Moll <pawel.moll@arm.com>
> > >Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > >Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > >Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> > 
> > I assume one of you will pick this up if there are no further comments ?
> 
> I will once things settle down...

I've picked it up. Yell if you'd prefer to take it by your tree.

g.

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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-06-07  7:05       ` Grant Likely
@ 2015-06-08  0:29         ` Rob Herring
  2015-06-08 15:19           ` Grant Likely
  0 siblings, 1 reply; 11+ messages in thread
From: Rob Herring @ 2015-06-08  0:29 UTC (permalink / raw)
  To: Grant Likely
  Cc: Greg Kroah-Hartman, Sudeep Holla, linux-kernel, devicetree,
	Rob Herring, Pawel Moll, Benjamin Herrenschmidt

On Sun, Jun 7, 2015 at 2:05 AM, Grant Likely <grant.likely@linaro.org> wrote:
> On Tue, 19 May 2015 10:17:32 -0700
> , Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>  wrote:
>> On Tue, May 19, 2015 at 01:29:16PM +0100, Sudeep Holla wrote:
>> > Hi Rob/Greg,
>> >
>> > On 14/05/15 15:28, Sudeep Holla wrote:
>> > >Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
>> > >devices with an OF node") adds the symlink `of_node` for each device
>> > >pointing to it's device tree node while creating/initialising it.
>> > >
>> > >However the devicetree sysfs is created and setup in of_init which is
>> > >executed at core_initcall level. For all the devices created before
>> > >of_init, the following error is thrown:
>> > >   "Error -2(-ENOENT) creating of_node link"
>> > >
>> > >Like many other components in driver model, initialize the sysfs support
>> > >for OF/devicetree from driver_init so that it's ready before any devices
>> > >are created.
>> > >
>> > >Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
>> > >   devices with an OF node")
>> > >Suggested-by: Rob Herring <robh+dt@kernel.org>
>> > >Cc: Grant Likely <grant.likely@linaro.org>
>> > >Cc: Rob Herring <robh+dt@kernel.org>
>> > >Cc: Pawel Moll <pawel.moll@arm.com>
>> > >Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
>> > >Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
>> > >Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
>> >
>> > I assume one of you will pick this up if there are no further comments ?
>>
>> I will once things settle down...
>
> I've picked it up. Yell if you'd prefer to take it by your tree.

Greg already applied it. It just hit Linus' tree Sat.

Rob

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

* Re: [PATCH v2] drivers: of/base: move of_init to driver_init
  2015-06-08  0:29         ` Rob Herring
@ 2015-06-08 15:19           ` Grant Likely
  0 siblings, 0 replies; 11+ messages in thread
From: Grant Likely @ 2015-06-08 15:19 UTC (permalink / raw)
  To: Rob Herring
  Cc: Greg Kroah-Hartman, Sudeep Holla, linux-kernel, devicetree,
	Rob Herring, Pawel Moll, Benjamin Herrenschmidt

On Sun, 7 Jun 2015 19:29:17 -0500
, Rob Herring <robherring2@gmail.com>
 wrote:
> On Sun, Jun 7, 2015 at 2:05 AM, Grant Likely <grant.likely@linaro.org> wrote:
> > On Tue, 19 May 2015 10:17:32 -0700
> > , Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >  wrote:
> >> On Tue, May 19, 2015 at 01:29:16PM +0100, Sudeep Holla wrote:
> >> > Hi Rob/Greg,
> >> >
> >> > On 14/05/15 15:28, Sudeep Holla wrote:
> >> > >Commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> >> > >devices with an OF node") adds the symlink `of_node` for each device
> >> > >pointing to it's device tree node while creating/initialising it.
> >> > >
> >> > >However the devicetree sysfs is created and setup in of_init which is
> >> > >executed at core_initcall level. For all the devices created before
> >> > >of_init, the following error is thrown:
> >> > >   "Error -2(-ENOENT) creating of_node link"
> >> > >
> >> > >Like many other components in driver model, initialize the sysfs support
> >> > >for OF/devicetree from driver_init so that it's ready before any devices
> >> > >are created.
> >> > >
> >> > >Fixes: 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from
> >> > >   devices with an OF node")
> >> > >Suggested-by: Rob Herring <robh+dt@kernel.org>
> >> > >Cc: Grant Likely <grant.likely@linaro.org>
> >> > >Cc: Rob Herring <robh+dt@kernel.org>
> >> > >Cc: Pawel Moll <pawel.moll@arm.com>
> >> > >Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> >> > >Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> >> > >Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> >> >
> >> > I assume one of you will pick this up if there are no further comments ?
> >>
> >> I will once things settle down...
> >
> > I've picked it up. Yell if you'd prefer to take it by your tree.
> 
> Greg already applied it. It just hit Linus' tree Sat.

Yeah, I only just saw that today. I'll drop it from mine.

g.

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

end of thread, other threads:[~2015-06-08 15:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-14  9:28 [PATCH] drivers: of/base: move of_init to driver_init Sudeep Holla
2015-05-14 13:54 ` Sudeep Holla
2015-05-14 14:28 ` [PATCH v2] " Sudeep Holla
2015-05-19 12:29   ` Sudeep Holla
2015-05-19 17:17     ` Greg Kroah-Hartman
2015-05-20  9:22       ` Sudeep Holla
2015-06-07  7:05       ` Grant Likely
2015-06-08  0:29         ` Rob Herring
2015-06-08 15:19           ` Grant Likely
2015-05-20 13:15   ` Rob Herring
2015-05-22  6:46   ` Robert Schwebel

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