linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Saravana Kannan <saravanak@google.com>
To: saravanak@google.com, Rob Herring <robh+dt@kernel.org>,
	Frank Rowand <frowand.list@gmail.com>
Cc: geert+renesas@glider.be, gregkh@linuxfoundation.org,
	grygorii.strashko@ti.com, laurent.pinchart@ideasonboard.com,
	linux-omap@vger.kernel.org, linux-pm@vger.kernel.org,
	peter.ujfalusi@ti.com, rjw@rjwysocki.net, tomi.valkeinen@ti.com,
	tony@atomide.com, ulf.hansson@linaro.org,
	kernel-team@android.com, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [PATCH v1] of: platform: Batch fwnode parsing in the init_machine() path
Date: Thu,  1 Oct 2020 15:59:51 -0700	[thread overview]
Message-ID: <20201001225952.3676755-1-saravanak@google.com> (raw)
In-Reply-To: <CAGETcx8owDP_Bu4oNCyHEsME8XpKygxghm8+yNc2RyMA4wyjCA@mail.gmail.com>

When commit 93d2e4322aa7 ("of: platform: Batch fwnode parsing when
adding all top level devices") optimized the fwnode parsing when all top
level devices are added, it missed out optimizing this for platform
where the top level devices are added through the init_machine() path.

This commit does the optimization for all paths by simply moving the
fw_devlink_pause/resume() inside of_platform_default_populate().

Reported-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Saravana Kannan <saravanak@google.com>
---
 drivers/of/platform.c | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/drivers/of/platform.c b/drivers/of/platform.c
index 071f04da32c8..79972e49b539 100644
--- a/drivers/of/platform.c
+++ b/drivers/of/platform.c
@@ -501,8 +501,21 @@ int of_platform_default_populate(struct device_node *root,
 				 const struct of_dev_auxdata *lookup,
 				 struct device *parent)
 {
-	return of_platform_populate(root, of_default_bus_match_table, lookup,
-				    parent);
+	int ret;
+
+	/*
+	 * fw_devlink_pause/resume() are only safe to be called around top
+	 * level device addition due to locking constraints.
+	 */
+	if (!root)
+		fw_devlink_pause();
+
+	ret = of_platform_populate(root, of_default_bus_match_table, lookup,
+				   parent);
+
+	if (!root)
+		fw_devlink_resume();
+	return ret;
 }
 EXPORT_SYMBOL_GPL(of_platform_default_populate);
 
@@ -538,9 +551,7 @@ static int __init of_platform_default_populate_init(void)
 	}
 
 	/* Populate everything else. */
-	fw_devlink_pause();
 	of_platform_default_populate(NULL, NULL, NULL);
-	fw_devlink_resume();
 
 	return 0;
 }
-- 
2.28.0.709.gb0816b6eb0-goog


  reply	other threads:[~2020-10-01 23:00 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20200924055313.GC9471@atomide.com>
     [not found] ` <fe0a4fa8-53fc-d316-261f-52f631f12469@ti.com>
     [not found]   ` <20200924060826.GE9471@atomide.com>
     [not found]     ` <20200924133049.GH3968@pendragon.ideasonboard.com>
     [not found]       ` <20200925115147.GM9471@atomide.com>
     [not found]         ` <20200925115817.GB3933@pendragon.ideasonboard.com>
     [not found]           ` <20200930052057.GP9471@atomide.com>
     [not found]             ` <d8d81891-7e22-81a2-19df-6e9a5f8679c4@ti.com>
     [not found]               ` <20201001075344.GU9471@atomide.com>
     [not found]                 ` <20201001081748.GW9471@atomide.com>
     [not found]                   ` <20201001082256.GA3722@pendragon.ideasonboard.com>
2020-10-01 12:56                     ` Slow booting on x15 Grygorii Strashko
2020-10-01 13:11                       ` Geert Uytterhoeven
2020-10-01 13:49                         ` Grygorii Strashko
2020-10-01 18:24                       ` Saravana Kannan
2020-10-01 19:43                         ` Grygorii Strashko
2020-10-01 22:22                           ` Saravana Kannan
2020-10-01 22:30                             ` Saravana Kannan
2020-10-01 22:38                               ` Laurent Pinchart
2020-10-01 22:44                                 ` Saravana Kannan
2020-10-01 22:59                                   ` Saravana Kannan [this message]
2020-10-01 23:19                                     ` [PATCH v1] of: platform: Batch fwnode parsing in the init_machine() path Laurent Pinchart
2020-10-02 11:40                                       ` Grygorii Strashko
2020-10-02 15:03                                         ` Grygorii Strashko
2020-10-02 17:48                                           ` Saravana Kannan
2020-10-02 18:11                                             ` Grygorii Strashko
2020-10-02 14:07                                     ` Rob Herring
2020-10-02 17:51                                       ` Saravana Kannan
2020-10-02 17:54                                         ` Laurent Pinchart
2020-10-02 17:58                                           ` Saravana Kannan
2020-10-02 18:27                                             ` Laurent Pinchart
2020-10-02 18:35                                               ` Grygorii Strashko
2020-10-02 19:56                                                 ` Saravana Kannan
2020-10-03  0:13                                                   ` Laurent Pinchart
2020-10-27  3:29                                                     ` Saravana Kannan
2020-10-28  7:34                                                       ` Tomi Valkeinen
2020-10-02 20:29                                         ` Rob Herring

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201001225952.3676755-1-saravanak@google.com \
    --to=saravanak@google.com \
    --cc=devicetree@vger.kernel.org \
    --cc=frowand.list@gmail.com \
    --cc=geert+renesas@glider.be \
    --cc=gregkh@linuxfoundation.org \
    --cc=grygorii.strashko@ti.com \
    --cc=kernel-team@android.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=peter.ujfalusi@ti.com \
    --cc=rjw@rjwysocki.net \
    --cc=robh+dt@kernel.org \
    --cc=tomi.valkeinen@ti.com \
    --cc=tony@atomide.com \
    --cc=ulf.hansson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).