clk: qcom: clk-cpu-osm: Move the speedbin logic to after resource init

The EFUSE base is remapped in the clk_osm_resources_init function.
Move the speedbin calculation logic to after this function in order
to derive the correct CPU clock frequencies to use.

Change-Id: I1586ff5367a8fa1d8a7e5a426d107d1bdc71e809
Signed-off-by: Deepak Katragadda <dkatraga@codeaurora.org>
diff --git a/drivers/clk/qcom/clk-cpu-osm.c b/drivers/clk/qcom/clk-cpu-osm.c
index ab938ba..2cc3b62 100644
--- a/drivers/clk/qcom/clk-cpu-osm.c
+++ b/drivers/clk/qcom/clk-cpu-osm.c
@@ -3018,6 +3018,14 @@
 
 	clk_data->clk_num = num_clks;
 
+	rc = clk_osm_resources_init(pdev);
+	if (rc) {
+		if (rc != -EPROBE_DEFER)
+			dev_err(&pdev->dev, "OSM resources init failed, rc=%d\n",
+				rc);
+		return rc;
+	}
+
 	if (l3_clk.vbases[EFUSE_BASE]) {
 		/* Multiple speed-bins are supported */
 		pte_efuse = readl_relaxed(l3_clk.vbases[EFUSE_BASE]);
@@ -3089,14 +3097,6 @@
 		return rc;
 	}
 
-	rc = clk_osm_resources_init(pdev);
-	if (rc) {
-		if (rc != -EPROBE_DEFER)
-			dev_err(&pdev->dev, "OSM resources init failed, rc=%d\n",
-				rc);
-		return rc;
-	}
-
 	rc = clk_osm_acd_resources_init(pdev);
 	if (rc) {
 		dev_err(&pdev->dev, "ACD resources init failed, rc=%d\n",