|
@@ -101,16 +101,40 @@ static int of_coresight_alloc_memory(struct device *dev,
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+int of_coresight_get_cpu(const struct device_node *node)
|
|
|
|
+{
|
|
|
|
+ int cpu;
|
|
|
|
+ bool found;
|
|
|
|
+ struct device_node *dn, *np;
|
|
|
|
+
|
|
|
|
+ dn = of_parse_phandle(node, "cpu", 0);
|
|
|
|
+
|
|
|
|
+ /* Affinity defaults to CPU0 */
|
|
|
|
+ if (!dn)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
|
|
+ for_each_possible_cpu(cpu) {
|
|
|
|
+ np = of_cpu_device_node_get(cpu);
|
|
|
|
+ found = (dn == np);
|
|
|
|
+ of_node_put(np);
|
|
|
|
+ if (found)
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ of_node_put(dn);
|
|
|
|
+
|
|
|
|
+ /* Affinity to CPU0 if no cpu nodes are found */
|
|
|
|
+ return found ? cpu : 0;
|
|
|
|
+}
|
|
|
|
+EXPORT_SYMBOL_GPL(of_coresight_get_cpu);
|
|
|
|
+
|
|
struct coresight_platform_data *
|
|
struct coresight_platform_data *
|
|
of_get_coresight_platform_data(struct device *dev,
|
|
of_get_coresight_platform_data(struct device *dev,
|
|
const struct device_node *node)
|
|
const struct device_node *node)
|
|
{
|
|
{
|
|
- int i = 0, ret = 0, cpu;
|
|
|
|
|
|
+ int i = 0, ret = 0;
|
|
struct coresight_platform_data *pdata;
|
|
struct coresight_platform_data *pdata;
|
|
struct of_endpoint endpoint, rendpoint;
|
|
struct of_endpoint endpoint, rendpoint;
|
|
struct device *rdev;
|
|
struct device *rdev;
|
|
- bool found;
|
|
|
|
- struct device_node *dn, *np;
|
|
|
|
struct device_node *ep = NULL;
|
|
struct device_node *ep = NULL;
|
|
struct device_node *rparent = NULL;
|
|
struct device_node *rparent = NULL;
|
|
struct device_node *rport = NULL;
|
|
struct device_node *rport = NULL;
|
|
@@ -177,18 +201,7 @@ of_get_coresight_platform_data(struct device *dev,
|
|
} while (ep);
|
|
} while (ep);
|
|
}
|
|
}
|
|
|
|
|
|
- dn = of_parse_phandle(node, "cpu", 0);
|
|
|
|
- for_each_possible_cpu(cpu) {
|
|
|
|
- np = of_cpu_device_node_get(cpu);
|
|
|
|
- found = (dn == np);
|
|
|
|
- of_node_put(np);
|
|
|
|
- if (found)
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
- of_node_put(dn);
|
|
|
|
-
|
|
|
|
- /* Affinity to CPU0 if no cpu nodes are found */
|
|
|
|
- pdata->cpu = found ? cpu : 0;
|
|
|
|
|
|
+ pdata->cpu = of_coresight_get_cpu(node);
|
|
|
|
|
|
return pdata;
|
|
return pdata;
|
|
}
|
|
}
|