On 03/02/16 11:59, Juri Lelli wrote: > Define arch_wants_init_cpu_capacity() to return true; so that > cpufreq_init_cpu_capacity() can go ahead and profile CPU capacities > at boot time. [...] > > +bool arch_wants_init_cpu_capacity(void) > +{ > + return true; Isn't this a little bit too simple? Not every ARM/ARM64 platform is a heterogeneous one. You could add code to compare the cpu node 'compatible' properties (required) and only return true if they differ, which would let you detect uarch based heterogeneity. In case of max. frequency based heterogeneity (clusters consisting of same cpu types but running at different max. frequency), you're at the mercy of cpu node 'clock-frequency' properties (optional). We might argue that for these platforms, providing cpu node 'clock-frequency' properties is necessary. The 'struct cpu_efficiency table_efficiency[]' based approach in ARM already faces this problem. > +} > + > static int __init get_cpu_for_node(struct device_node *node) > { > struct device_node *cpu_node; > -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html