Hi Jagdish,
I am guessing you are not using the PF3000 PMIC?
I had a similar issue which was caused by line 194 in drivers/cpufreq/imx7-cpufreq.c:
arm_reg = devm_regulator_get(cpu_dev, "arm");
which is looking for the regulator "arm-supply" under the cpu parent of the device tree.
If, as in my case, it is not convenient to place the supply under the cpu parent, you can try making the following change to line 194:
- arm_reg = devm_regulator_get(cpu_dev, "arm");
+ arm_reg = devm_regulator_get(&pdev->dev, "arm");
linux-2.6-imx.git - Freescale i.MX Linux Tree
Jacob