Bug 81131 - Not found this subsystem directory /sys/devices/system/cpu/cpufreq - ARM XAM3359-Beaglebone Black
Summary: Not found this subsystem directory /sys/devices/system/cpu/cpufreq - ARM XAM3...
Status: CLOSED OBSOLETE
Alias: None
Product: Power Management
Classification: Unclassified
Component: cpufreq (show other bugs)
Hardware: ARM Linux
: P1 normal
Assignee: Viresh Kumar
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-07-26 04:39 UTC by Boris Vinogradov
Modified: 2016-03-14 23:11 UTC (History)
5 users (show)

See Also:
Kernel Version: 3.15.x
Subsystem:
Regression: Yes
Bisected commit-id:


Attachments
Boot log (15.88 KB, text/plain)
2014-08-14 05:58 UTC, Boris Vinogradov
Details
Kernel config (85.48 KB, application/octet-stream)
2014-08-14 06:31 UTC, Boris Vinogradov
Details
New boot log (15.83 KB, text/plain)
2014-08-14 07:40 UTC, Boris Vinogradov
Details
New boot log with last debug messages (15.88 KB, text/plain)
2014-08-18 14:50 UTC, Boris Vinogradov
Details
attachment-12047-0.html (1.13 KB, text/html)
2014-08-18 15:44 UTC, Viresh Kumar
Details
attachment-13246-0.html (881 bytes, text/html)
2014-08-18 16:39 UTC, Viresh Kumar
Details
Add cpu0 to dtbs on beaglebone black board. (1.05 KB, patch)
2014-08-19 09:57 UTC, Boris Vinogradov
Details | Diff
Result of type modprobe cpufreq-cpu0 (15.88 KB, text/plain)
2014-08-19 10:34 UTC, Boris Vinogradov
Details
Enable cpufreq_cpu0 (3.14 KB, text/plain)
2014-08-19 11:18 UTC, Boris Vinogradov
Details

Description Boris Vinogradov 2014-07-26 04:39:47 UTC
My board is XAM3359-Beaglebone Black.
I'm using specify utils - cpufrequtils, but in new kernel 3.15.6 this util's can't work: control directory in sysfs /sys/devices/system/cpu/cpufreq does not exists.

My configuration for cpufreq in this kernel:

jane linux-3.15.6 # cat .config | grep -i freq
CONFIG_ARCH_HAS_CPUFREQ=y
# CPU Frequency scaling
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_STAT_DETAILS=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=m
CONFIG_CPU_FREQ_GOV_USERSPACE=m
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
# ARM CPU frequency scaling drivers
# CONFIG_ARM_KIRKWOOD_CPUFREQ is not set
CONFIG_ARM_OMAP2PLUS_CPUFREQ=y
CONFIG_PM_DEVFREQ=y
# DEVFREQ Governors
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=m
CONFIG_DEVFREQ_GOV_PERFORMANCE=m
CONFIG_DEVFREQ_GOV_POWERSAVE=m
CONFIG_DEVFREQ_GOV_USERSPACE=m
# DEVFREQ Drivers

This config is analogie to config for oldest patched kernels (3.8.13, 3.13.6+) but not working.
Comment 1 Viresh Kumar 2014-08-06 05:42:38 UTC
That's awkward, probably driver failed to register.

Make this change:

diff --git a/drivers/cpufreq/Makefile b/drivers/cpufreq/Makefile
index db6d9a2..1181c09 100644
--- a/drivers/cpufreq/Makefile
+++ b/drivers/cpufreq/Makefile
@@ -1,3 +1,6 @@
+ccflags-y  := -DDEBUG
+ccflags-y+= -DVERBOSE_DEBUG
+
 # CPUfreq core


And then give us boot logs.
Comment 2 Boris Vinogradov 2014-08-14 05:58:47 UTC
Created attachment 146541 [details]
Boot log
Comment 3 Viresh Kumar 2014-08-14 06:20:24 UTC
I tried searching for cpufreq in your logs but couldn't find it. Please attach your .config as well.. and give me the diff you have tested your kernel with now. Also the versions of kernel you are using.
Comment 4 Boris Vinogradov 2014-08-14 06:31:14 UTC
Created attachment 146551 [details]
Kernel config
Comment 5 Boris Vinogradov 2014-08-14 06:31:29 UTC
beaglebone ~ # uname -a
Linux beaglebone 3.15.6 #11 Thu Aug 14 11:59:04 OMST 2014 armv7l Generic AM33XX (Flattened Device Tree) GNU/Linux
Comment 6 Viresh Kumar 2014-08-14 06:59:33 UTC
Please try enabling CONFIG_GENERIC_CPUFREQ_CPU0 as well..
Comment 7 Boris Vinogradov 2014-08-14 07:39:43 UTC
I'm enabling it but not result. (boot log in attach).
Comment 8 Boris Vinogradov 2014-08-14 07:40:29 UTC
Created attachment 146561 [details]
New boot log
Comment 9 Viresh Kumar 2014-08-14 07:54:52 UTC
Hmm, I am not very sure what's going wrong here..

Please try this diff and provide logs back:

diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c
index 828aee9..59bfb64 100644
--- a/arch/arm/mach-omap2/pm.c
+++ b/arch/arm/mach-omap2/pm.c
@@ -283,6 +283,7 @@ static inline void omap_init_cpufreq(void)
                devinfo.name = "omap-cpufreq";
        else
                devinfo.name = "cpufreq-cpu0";
+       pr_info("%s: %d: %s\n", __func__, __LINE__, devinfo.name);
        platform_device_register_full(&devinfo);
 }
 
diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c
index 86beda9..69da19b 100644
--- a/drivers/cpufreq/cpufreq-cpu0.c
+++ b/drivers/cpufreq/cpufreq-cpu0.c
@@ -118,6 +118,7 @@ static int cpu0_cpufreq_probe(struct platform_device *pdev)
        struct device_node *np;
        int ret;
 
+       pr_info("%s: %d\n", __func__, __LINE__);
        cpu_dev = get_cpu_device(0);
        if (!cpu_dev) {
                pr_err("failed to get cpu0 device\n");
diff --git a/drivers/cpufreq/omap-cpufreq.c b/drivers/cpufreq/omap-cpufreq.c
index 5f69c9a..e9c2361 100644
--- a/drivers/cpufreq/omap-cpufreq.c
+++ b/drivers/cpufreq/omap-cpufreq.c
@@ -161,6 +161,7 @@ static struct cpufreq_driver omap_driver = {
 
 static int omap_cpufreq_probe(struct platform_device *pdev)
 {
+       pr_info("%s: %d\n", __func__, __LINE__);
        mpu_dev = get_cpu_device(0);
        if (!mpu_dev) {
                pr_warning("%s: unable to get the mpu device\n", __func__);
Comment 10 Viresh Kumar 2014-08-14 07:57:04 UTC
@Kevin/Santosh: Please see if you can help here..
Comment 11 Boris Vinogradov 2014-08-18 14:50:29 UTC
Created attachment 147051 [details]
New boot log with last debug messages

I'm patched kernel to print message and run it.
Comment 12 Viresh Kumar 2014-08-18 15:44:04 UTC
Created attachment 147071 [details]
attachment-12047-0.html

Can you please get the logs after adding some debug messages to cpu0
drivers probe routine?

Also convert all prints in that driver to pr_info ..
On Aug 18, 2014 8:20 PM, <bugzilla-daemon@bugzilla.kernel.org> wrote:

> https://bugzilla.kernel.org/show_bug.cgi?id=81131
>
> --- Comment #11 from Boris Vinogradov <no111u3@gmail.com> ---
> Created attachment 147051 [details]
>   --> https://bugzilla.kernel.org/attachment.cgi?id=147051&action=edit
> New boot log with last debug messages
>
> I'm patched kernel to print message and run it.
>
> --
> You are receiving this mail because:
> You are the assignee for the bug.
>
Comment 13 Boris Vinogradov 2014-08-18 16:34:59 UTC
I'm patching all files and cpu0 drivers probe to.

I don't know that all debug messages not printing.
Comment 14 Viresh Kumar 2014-08-18 16:39:05 UTC
Created attachment 147081 [details]
attachment-13246-0.html

Try adding dummy prints to beginning of init and probe routines of cpu0
driver..
On Aug 18, 2014 10:05 PM, <bugzilla-daemon@bugzilla.kernel.org> wrote:

> https://bugzilla.kernel.org/show_bug.cgi?id=81131
>
> --- Comment #13 from Boris Vinogradov <no111u3@gmail.com> ---
> I'm patching all files and cpu0 drivers probe to.
>
> I don't know that all debug messages not printing.
>
> --
> You are receiving this mail because:
> You are the assignee for the bug.
>
Comment 15 Viresh Kumar 2014-08-19 09:10:18 UTC
Any updates with the print messages?
Comment 16 Boris Vinogradov 2014-08-19 09:20:48 UTC
I'm don't know when add print. Because loading is complex function.
Comment 17 Boris Vinogradov 2014-08-19 09:38:15 UTC
I think device cpufreq-cpu0 not exist or not configured.
Comment 18 Boris Vinogradov 2014-08-19 09:43:19 UTC
I'm reading this - http://lxr.free-electrons.com/source/Documentation/devicetree/bindings/cpufreq/cpufreq-cpu0.txt

cpufreq-cpu0 need params in device tree config.
Comment 19 Boris Vinogradov 2014-08-19 09:53:34 UTC
I compare 2 configs - in patched kernel and mainline: in patched add cpus section.
Comment 20 Boris Vinogradov 2014-08-19 09:57:43 UTC
Created attachment 147241 [details]
Add cpu0 to dtbs on beaglebone black board.

This patch using to add cpus/cpu0 to current board.
Comment 21 Viresh Kumar 2014-08-19 10:15:40 UTC
Sorry but I couldn't understand what you just said :(
We should atleast hit the probe() routine of cpufreq-cpu0 without any changes to dtbs.. Probe may fail, but that's a different issue..


Not really. We should have got this atleast in your boot messages: 
+       pr_info("%s: %d\n", __func__, __LINE__);

I hope you have added this and enabled cpufreq-cpu0 in your latest tests..

The probe routine should have been called. I don't know why that will fail :(
The device should be added with this call:

+       pr_info("%s: %d\n", __func__, __LINE__);

in omap's pm.c
Comment 22 Boris Vinogradov 2014-08-19 10:34:09 UTC
Created attachment 147251 [details]
Result of type modprobe cpufreq-cpu0

I'm typed in my device console
# modprobe cpufreq-cpu0

this log is dmesg shot.
Comment 23 Viresh Kumar 2014-08-19 11:06:35 UTC
(In reply to Boris Vinogradov from comment #22)
> Created attachment 147251 [details]
> Result of type modprobe cpufreq-cpu0
> 
> I'm typed in my device console
> # modprobe cpufreq-cpu0
> 
> this log is dmesg shot.

There are still no signs of cpufreq-cpu0 there..
Comment 24 Boris Vinogradov 2014-08-19 11:13:44 UTC
Comment on attachment 147251 [details]
Result of type modprobe cpufreq-cpu0

[ 1045.179702] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1045.179717] freq_table: target index is 0, freq is:300000 kHz
[ 1045.179736] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1045.179754] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1045.180147] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1045.183522] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1045.183559] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1045.183584] cpufreq: FREQ: 300000 - CPU: 0
[ 1045.529842] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1045.849803] cpufreq: target for CPU 0: 410000 kHz, relation 0, requested 410000 kHz
[ 1045.849862] freq_table: request for target 410000 kHz (relation: 0) for cpu 0
[ 1045.849892] freq_table: target index is 1, freq is:600000 kHz
[ 1045.849926] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1045.849961] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1045.850613] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1045.853963] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1045.853982] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1045.853995] cpufreq: FREQ: 600000 - CPU: 0
[ 1046.219677] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1046.219713] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1046.219729] freq_table: target index is 0, freq is:300000 kHz
[ 1046.219748] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1046.219767] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1046.220174] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1046.223552] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1046.223589] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1046.223614] cpufreq: FREQ: 300000 - CPU: 0
[ 1046.549874] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1046.909769] cpufreq: target for CPU 0: 320000 kHz, relation 0, requested 320000 kHz
[ 1046.909827] freq_table: request for target 320000 kHz (relation: 0) for cpu 0
[ 1046.909856] freq_table: target index is 1, freq is:600000 kHz
[ 1046.909890] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1046.909924] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1046.910545] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1046.914235] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1046.914261] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1046.914274] cpufreq: FREQ: 600000 - CPU: 0
[ 1047.219678] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 190000 kHz
[ 1047.219715] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1047.219730] freq_table: target index is 0, freq is:300000 kHz
[ 1047.219749] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1047.219768] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1047.220666] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1047.224368] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1047.224411] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1047.224436] cpufreq: FREQ: 300000 - CPU: 0
[ 1047.520021] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1047.889782] cpufreq: target for CPU 0: 340000 kHz, relation 0, requested 340000 kHz
[ 1047.889838] freq_table: request for target 340000 kHz (relation: 0) for cpu 0
[ 1047.889869] freq_table: target index is 1, freq is:600000 kHz
[ 1047.889903] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1047.889937] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1047.890560] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1047.893900] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1047.893920] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1047.893933] cpufreq: FREQ: 600000 - CPU: 0
[ 1048.219679] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1048.219714] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1048.219729] freq_table: target index is 0, freq is:300000 kHz
[ 1048.219749] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1048.219768] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1048.220177] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1048.223542] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1048.223581] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1048.223605] cpufreq: FREQ: 300000 - CPU: 0
[ 1048.549855] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1048.869798] cpufreq: target for CPU 0: 630000 kHz, relation 0, requested 630000 kHz
[ 1048.869855] freq_table: request for target 630000 kHz (relation: 0) for cpu 0
[ 1048.869885] freq_table: target index is 2, freq is:800000 kHz
[ 1048.869920] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1048.869954] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1048.870576] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1048.874095] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1048.874112] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1048.874121] cpufreq: FREQ: 800000 - CPU: 0
[ 1049.219641] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1049.219672] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1049.219684] freq_table: target index is 0, freq is:300000 kHz
[ 1049.219700] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1049.219715] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1049.220610] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1049.224252] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1049.224293] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1049.224317] cpufreq: FREQ: 300000 - CPU: 0
[ 1049.520079] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1049.839806] cpufreq: target for CPU 0: 430000 kHz, relation 0, requested 430000 kHz
[ 1049.839865] freq_table: request for target 430000 kHz (relation: 0) for cpu 0
[ 1049.839893] freq_table: target index is 1, freq is:600000 kHz
[ 1049.839929] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1049.839963] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1049.840591] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1049.843942] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1049.843961] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1049.843974] cpufreq: FREQ: 600000 - CPU: 0
[ 1050.219688] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1050.219724] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1050.219739] freq_table: target index is 0, freq is:300000 kHz
[ 1050.219759] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1050.219778] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1050.220187] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1050.223575] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1050.223612] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1050.223636] cpufreq: FREQ: 300000 - CPU: 0
[ 1050.539850] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1050.959813] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1051.580108] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1051.950519] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 170000 kHz
[ 1052.470030] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 210000 kHz
[ 1052.879816] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1053.199766] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1053.559811] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1054.059801] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1054.380285] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1055.060042] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1055.360055] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1055.659940] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1056.070135] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1056.489860] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1056.989804] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1057.319827] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1057.619836] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1057.980057] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1058.399931] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1058.760017] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1059.069841] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1059.569822] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1060.070517] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1060.579911] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1061.080153] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1061.520028] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1062.079858] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1062.579859] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1063.009842] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1063.499820] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1063.999967] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1064.299938] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 200000 kHz
[ 1064.600063] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1065.060012] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1065.399722] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1065.749815] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1066.079897] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1066.539850] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1067.079789] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1067.579788] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1068.009876] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1068.430269] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1069.089835] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1069.419788] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1069.919772] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1070.219840] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1070.519815] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1070.909786] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1071.219805] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1071.539815] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1072.089846] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1072.559747] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1073.009835] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1073.539841] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1074.099836] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1074.659904] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1075.209843] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1075.549933] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1076.219860] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1076.539793] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1076.840045] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1077.219838] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1077.579840] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1078.009838] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1078.580029] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1078.999776] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1079.329807] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1080.159909] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1080.719857] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1081.219840] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1081.539816] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1081.909779] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1082.219836] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1082.709988] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1083.009912] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1083.719791] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1084.170530] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1084.529839] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1085.219788] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1085.849878] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1086.220045] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1086.579828] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1087.150011] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1087.499772] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 280000 kHz
[ 1088.009829] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1088.510111] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1089.219813] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 10000 kHz
[ 1089.539827] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1089.859757] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1090.220280] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1090.690018] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1091.039807] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1091.400095] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1091.700012] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1092.220115] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1092.759836] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1093.219815] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1093.739773] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1094.050112] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1094.359820] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1094.759761] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1095.059785] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1095.400029] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1095.769775] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1096.120194] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1096.539762] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 170000 kHz
[ 1096.969756] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1097.539840] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1097.850695] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1098.219757] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1098.550841] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1098.869740] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1099.219815] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1099.549774] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1100.179796] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1100.559751] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1101.219809] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1101.539833] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1102.059810] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1102.899759] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1103.219791] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1103.679820] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1104.219791] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1104.739927] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1105.049776] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1105.540111] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1106.040715] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1106.379756] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1106.749805] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1107.219791] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1107.789827] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1108.219787] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1108.749797] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1109.219806] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1109.589989] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1110.219837] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1110.579788] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1110.899787] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1111.219801] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 290000 kHz
[ 1111.539783] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1111.930030] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 170000 kHz
[ 1112.259785] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1112.639823] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1113.009821] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1113.319825] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1113.659775] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1114.079830] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1114.399825] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 190000 kHz
[ 1114.799911] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1115.219770] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1115.619858] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1115.919715] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1116.219775] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1116.569825] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1116.879767] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1117.219780] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1117.611120] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1118.009869] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1118.309844] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1118.799854] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1119.219808] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1119.520001] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1120.219803] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1120.819846] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1121.219799] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1121.550032] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1122.109792] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1122.819932] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1123.119727] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1123.429951] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1123.760840] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1124.080059] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 180000 kHz
[ 1124.419798] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1124.910036] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1125.219813] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1125.649758] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1126.009833] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1126.329767] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1126.749809] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1127.049750] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1127.350188] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1127.839866] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1128.219768] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1128.689765] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1129.219812] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1129.539768] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1129.889883] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1130.219833] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1130.619790] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1130.920048] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1131.220378] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1131.519754] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 200000 kHz
[ 1131.939781] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1132.439775] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1133.009853] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1133.359834] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1133.689762] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1134.219850] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1134.819866] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1135.159780] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1135.949797] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1136.389846] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1136.759821] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1137.219814] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1137.539775] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1138.009855] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1138.589857] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 190000 kHz
[ 1139.109787] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1139.449810] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1139.829796] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1140.220227] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1140.669965] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1141.059761] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1141.439751] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1141.749818] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1142.220101] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1143.009849] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1143.320595] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1143.999816] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1144.309775] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 230000 kHz
[ 1144.609751] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1144.919841] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1145.220407] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1145.560082] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1145.909769] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1146.219806] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1146.569845] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1146.869817] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 180000 kHz
[ 1147.219802] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1147.599836] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1148.009839] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 20000 kHz
[ 1148.309866] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 210000 kHz
[ 1148.869760] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1149.219807] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1149.539745] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1149.859837] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1150.199837] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1150.509805] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1151.149845] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1151.450122] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 220000 kHz
[ 1151.749817] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1152.219808] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1152.559729] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1152.949796] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1153.259988] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1153.559878] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1153.990007] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1154.409822] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1154.799798] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1155.119811] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1155.560038] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1155.919797] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1156.219850] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1156.579817] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1156.879798] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1157.181092] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 170000 kHz
[ 1157.559801] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1157.949760] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1158.249847] cpufreq: target for CPU 0: 660000 kHz, relation 0, requested 660000 kHz
[ 1158.249907] freq_table: request for target 660000 kHz (relation: 0) for cpu 0
[ 1158.249937] freq_table: target index is 2, freq is:800000 kHz
[ 1158.249972] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1158.250007] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1158.250765] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1158.254016] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1158.254034] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1158.254044] cpufreq: FREQ: 800000 - CPU: 0
[ 1158.549711] cpufreq: target for CPU 0: 940000 kHz, relation 0, requested 940000 kHz
[ 1158.549741] freq_table: request for target 940000 kHz (relation: 0) for cpu 0
[ 1158.549754] freq_table: target index is 3, freq is:1000000 kHz
[ 1158.549769] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 1000000
[ 1158.549784] cpufreq: notification 0 of frequency transition to 1000000 kHz
[ 1158.550099] cpufreq_cpu0: 800 MHz, 1300 mV --> 1000 MHz, 1325 mV
[ 1158.551923] cpufreq: notification 1 of frequency transition to 1000000 kHz
[ 1158.551941] cpufreq: scaling loops_per_jiffy to 4963607 for frequency 1000000 kHz
[ 1158.551949] cpufreq: FREQ: 1000000 - CPU: 0
[ 1158.859749] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1158.859777] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1158.859787] freq_table: target index is 0, freq is:300000 kHz
[ 1158.859800] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 1000000, new freq: 300000
[ 1158.859813] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1158.860111] cpufreq_cpu0: 1000 MHz, 1325 mV --> 300 MHz, 969 mV
[ 1158.863456] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1158.863493] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1158.863518] cpufreq: FREQ: 300000 - CPU: 0
[ 1159.199851] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1159.529990] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1159.929763] cpufreq: target for CPU 0: 400000 kHz, relation 0, requested 400000 kHz
[ 1159.929821] freq_table: request for target 400000 kHz (relation: 0) for cpu 0
[ 1159.929850] freq_table: target index is 1, freq is:600000 kHz
[ 1159.929886] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1159.929921] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1159.930530] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1159.933936] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1159.933959] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1159.933972] cpufreq: FREQ: 600000 - CPU: 0
[ 1160.599704] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1160.599740] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1160.599754] freq_table: target index is 0, freq is:300000 kHz
[ 1160.599773] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1160.599792] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1160.600379] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1160.603992] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1160.604030] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1160.604055] cpufreq: FREQ: 300000 - CPU: 0
[ 1160.999816] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1161.310514] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1161.709841] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1162.009781] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1162.520842] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1162.860014] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1163.159837] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 220000 kHz
[ 1163.469912] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1163.959833] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1164.430055] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1164.729860] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1165.030029] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1165.429817] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1165.819844] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1166.219863] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1166.559874] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1167.009785] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1167.309886] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 270000 kHz
[ 1167.719794] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 180000 kHz
[ 1168.219846] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1168.719786] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1169.169830] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1169.509845] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1169.959800] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1170.429794] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1170.749881] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 80000 kHz
[ 1171.109797] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 290000 kHz
[ 1171.549842] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1171.939960] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1172.269983] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 40000 kHz
[ 1172.830018] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1173.219779] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1173.679748] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1174.089805] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1174.519840] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 30000 kHz
[ 1174.819853] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1175.139847] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1175.529780] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1175.830009] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1176.139781] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1176.550019] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 260000 kHz
[ 1176.879809] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 50000 kHz
[ 1177.179931] cpufreq: target for CPU 0: 510000 kHz, relation 0, requested 510000 kHz
[ 1177.179990] freq_table: request for target 510000 kHz (relation: 0) for cpu 0
[ 1177.180020] freq_table: target index is 1, freq is:600000 kHz
[ 1177.180056] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1177.180091] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1177.180830] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1177.184258] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1177.184280] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1177.184293] cpufreq: FREQ: 600000 - CPU: 0
[ 1177.489681] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 260000 kHz
[ 1177.489717] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1177.489732] freq_table: target index is 0, freq is:300000 kHz
[ 1177.489752] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1177.489771] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1177.490156] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1177.493786] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1177.493825] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1177.493850] cpufreq: FREQ: 300000 - CPU: 0
[ 1177.809803] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1178.170007] cpufreq: target for CPU 0: 600000 kHz, relation 0, requested 600000 kHz
[ 1178.170066] freq_table: request for target 600000 kHz (relation: 0) for cpu 0
[ 1178.170095] freq_table: target index is 1, freq is:600000 kHz
[ 1178.170131] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1178.170164] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1178.170780] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1178.174162] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1178.174182] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1178.174195] cpufreq: FREQ: 600000 - CPU: 0
[ 1178.609678] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 140000 kHz
[ 1178.609713] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1178.609728] freq_table: target index is 0, freq is:300000 kHz
[ 1178.609747] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1178.609766] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1178.610148] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1178.613524] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1178.613560] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1178.613585] cpufreq: FREQ: 300000 - CPU: 0
[ 1178.909824] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 240000 kHz
[ 1179.209772] cpufreq: target for CPU 0: 710000 kHz, relation 0, requested 710000 kHz
[ 1179.209830] freq_table: request for target 710000 kHz (relation: 0) for cpu 0
[ 1179.209859] freq_table: target index is 2, freq is:800000 kHz
[ 1179.209895] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1179.209928] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1179.210548] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1179.213987] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1179.214005] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1179.214014] cpufreq: FREQ: 800000 - CPU: 0
[ 1179.529665] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 260000 kHz
[ 1179.529696] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1179.529708] freq_table: target index is 0, freq is:300000 kHz
[ 1179.529724] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1179.529739] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1179.530151] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1179.533511] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1179.533550] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1179.533574] cpufreq: FREQ: 300000 - CPU: 0
[ 1179.869873] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 110000 kHz
[ 1180.219827] cpufreq: target for CPU 0: 640000 kHz, relation 0, requested 640000 kHz
[ 1180.219885] freq_table: request for target 640000 kHz (relation: 0) for cpu 0
[ 1180.219914] freq_table: target index is 2, freq is:800000 kHz
[ 1180.219949] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1180.219981] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1180.220679] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1180.224240] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1180.224259] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1180.224268] cpufreq: FREQ: 800000 - CPU: 0
[ 1180.599660] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 210000 kHz
[ 1180.599692] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1180.599704] freq_table: target index is 0, freq is:300000 kHz
[ 1180.599719] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1180.599735] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1180.600061] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1180.603431] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1180.603467] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1180.603491] cpufreq: FREQ: 300000 - CPU: 0
[ 1180.899800] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 180000 kHz
[ 1181.219823] cpufreq: target for CPU 0: 620000 kHz, relation 0, requested 620000 kHz
[ 1181.219883] freq_table: request for target 620000 kHz (relation: 0) for cpu 0
[ 1181.219912] freq_table: target index is 2, freq is:800000 kHz
[ 1181.219946] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1181.219981] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1181.221232] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1181.224883] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1181.224902] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1181.224912] cpufreq: FREQ: 800000 - CPU: 0
[ 1181.579666] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 190000 kHz
[ 1181.579696] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1181.579708] freq_table: target index is 0, freq is:300000 kHz
[ 1181.579724] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1181.579739] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1181.580087] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1181.583438] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1181.583475] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1181.583499] cpufreq: FREQ: 300000 - CPU: 0
[ 1181.879923] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 180000 kHz
[ 1182.189823] cpufreq: target for CPU 0: 630000 kHz, relation 0, requested 630000 kHz
[ 1182.189881] freq_table: request for target 630000 kHz (relation: 0) for cpu 0
[ 1182.189909] freq_table: target index is 2, freq is:800000 kHz
[ 1182.189945] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1182.189979] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1182.190624] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1182.194003] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1182.194019] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1182.194028] cpufreq: FREQ: 800000 - CPU: 0
[ 1182.539657] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 160000 kHz
[ 1182.539688] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1182.539700] freq_table: target index is 0, freq is:300000 kHz
[ 1182.539715] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1182.539730] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1182.540062] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1182.544761] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1182.544806] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1182.544830] cpufreq: FREQ: 300000 - CPU: 0
[ 1182.880217] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1183.180850] cpufreq: target for CPU 0: 610000 kHz, relation 0, requested 610000 kHz
[ 1183.181084] freq_table: request for target 610000 kHz (relation: 0) for cpu 0
[ 1183.181175] freq_table: target index is 2, freq is:800000 kHz
[ 1183.181271] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1183.181424] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1183.182799] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1183.198153] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1183.198178] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1183.198188] cpufreq: FREQ: 800000 - CPU: 0
[ 1183.519659] cpufreq: target for CPU 0: 370000 kHz, relation 0, requested 370000 kHz
[ 1183.519690] freq_table: request for target 370000 kHz (relation: 0) for cpu 0
[ 1183.519702] freq_table: target index is 1, freq is:600000 kHz
[ 1183.519718] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 600000
[ 1183.519732] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1183.520056] cpufreq_cpu0: 800 MHz, 1300 mV --> 600 MHz, 1112 mV
[ 1183.521981] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1183.522000] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1183.522013] cpufreq: FREQ: 600000 - CPU: 0
[ 1183.879742] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1183.879778] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1183.879793] freq_table: target index is 0, freq is:300000 kHz
[ 1183.879812] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1183.879830] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1183.880226] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1183.883398] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1183.883435] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1183.883459] cpufreq: FREQ: 300000 - CPU: 0
[ 1184.219812] cpufreq: target for CPU 0: 740000 kHz, relation 0, requested 740000 kHz
[ 1184.219870] freq_table: request for target 740000 kHz (relation: 0) for cpu 0
[ 1184.219900] freq_table: target index is 2, freq is:800000 kHz
[ 1184.219935] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1184.219969] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1184.220670] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1184.224052] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1184.224069] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1184.224078] cpufreq: FREQ: 800000 - CPU: 0
[ 1184.539672] cpufreq: target for CPU 0: 330000 kHz, relation 0, requested 330000 kHz
[ 1184.539704] freq_table: request for target 330000 kHz (relation: 0) for cpu 0
[ 1184.539716] freq_table: target index is 1, freq is:600000 kHz
[ 1184.539732] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 600000
[ 1184.539747] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1184.540811] cpufreq_cpu0: 800 MHz, 1300 mV --> 600 MHz, 1112 mV
[ 1184.544029] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1184.544056] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1184.544069] cpufreq: FREQ: 600000 - CPU: 0
[ 1184.879674] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 70000 kHz
[ 1184.879710] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1184.879725] freq_table: target index is 0, freq is:300000 kHz
[ 1184.879743] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1184.879762] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1184.880142] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1184.883694] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1184.883733] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1184.883758] cpufreq: FREQ: 300000 - CPU: 0
[ 1185.219875] cpufreq: target for CPU 0: 480000 kHz, relation 0, requested 480000 kHz
[ 1185.219933] freq_table: request for target 480000 kHz (relation: 0) for cpu 0
[ 1185.219961] freq_table: target index is 1, freq is:600000 kHz
[ 1185.219996] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1185.220029] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1185.221260] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1185.224653] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1185.224672] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1185.224684] cpufreq: FREQ: 600000 - CPU: 0
[ 1185.569675] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 190000 kHz
[ 1185.569710] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1185.569726] freq_table: target index is 0, freq is:300000 kHz
[ 1185.569745] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1185.569763] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1185.570312] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1185.573973] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1185.574014] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1185.574039] cpufreq: FREQ: 300000 - CPU: 0
[ 1185.889869] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1186.199939] cpufreq: target for CPU 0: 740000 kHz, relation 0, requested 740000 kHz
[ 1186.199999] freq_table: request for target 740000 kHz (relation: 0) for cpu 0
[ 1186.200028] freq_table: target index is 2, freq is:800000 kHz
[ 1186.200064] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1186.200098] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1186.200726] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1186.204038] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1186.204054] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1186.204064] cpufreq: FREQ: 800000 - CPU: 0
[ 1186.549705] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 200000 kHz
[ 1186.549736] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1186.549748] freq_table: target index is 0, freq is:300000 kHz
[ 1186.549764] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1186.549778] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1186.550105] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1186.554241] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1186.554283] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1186.554308] cpufreq: FREQ: 300000 - CPU: 0
[ 1186.889855] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 120000 kHz
[ 1187.219820] cpufreq: target for CPU 0: 700000 kHz, relation 0, requested 700000 kHz
[ 1187.219879] freq_table: request for target 700000 kHz (relation: 0) for cpu 0
[ 1187.219908] freq_table: target index is 2, freq is:800000 kHz
[ 1187.219944] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1187.219978] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1187.221189] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1187.224603] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1187.224619] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1187.224628] cpufreq: FREQ: 800000 - CPU: 0
[ 1187.889725] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 130000 kHz
[ 1187.889755] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1187.889767] freq_table: target index is 0, freq is:300000 kHz
[ 1187.889783] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1187.889797] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1187.890124] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1187.893749] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1187.893790] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1187.893815] cpufreq: FREQ: 300000 - CPU: 0
[ 1188.219784] cpufreq: target for CPU 0: 740000 kHz, relation 0, requested 740000 kHz
[ 1188.219842] freq_table: request for target 740000 kHz (relation: 0) for cpu 0
[ 1188.219871] freq_table: target index is 2, freq is:800000 kHz
[ 1188.219905] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1188.219940] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1188.220641] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1188.224017] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1188.224032] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1188.224042] cpufreq: FREQ: 800000 - CPU: 0
[ 1188.889703] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 170000 kHz
[ 1188.889735] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1188.889746] freq_table: target index is 0, freq is:300000 kHz
[ 1188.889762] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1188.889777] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1188.890099] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1188.893201] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1188.893239] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1188.893264] cpufreq: FREQ: 300000 - CPU: 0
[ 1189.219821] cpufreq: target for CPU 0: 680000 kHz, relation 0, requested 680000 kHz
[ 1189.219879] freq_table: request for target 680000 kHz (relation: 0) for cpu 0
[ 1189.219908] freq_table: target index is 2, freq is:800000 kHz
[ 1189.219943] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1189.219977] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1189.221173] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1189.224557] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1189.224572] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1189.224583] cpufreq: FREQ: 800000 - CPU: 0
[ 1189.549661] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 240000 kHz
[ 1189.549692] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1189.549705] freq_table: target index is 0, freq is:300000 kHz
[ 1189.549720] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1189.549735] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1189.550762] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1189.554153] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1189.554193] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1189.554217] cpufreq: FREQ: 300000 - CPU: 0
[ 1189.890270] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1190.189781] cpufreq: target for CPU 0: 520000 kHz, relation 0, requested 520000 kHz
[ 1190.189839] freq_table: request for target 520000 kHz (relation: 0) for cpu 0
[ 1190.189867] freq_table: target index is 1, freq is:600000 kHz
[ 1190.189902] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 600000
[ 1190.189938] cpufreq: notification 0 of frequency transition to 600000 kHz
[ 1190.190576] cpufreq_cpu0: 300 MHz, 975 mV --> 600 MHz, 1112 mV
[ 1190.193946] cpufreq: notification 1 of frequency transition to 600000 kHz
[ 1190.193966] cpufreq: scaling loops_per_jiffy to 2978164 for frequency 600000 kHz
[ 1190.193978] cpufreq: FREQ: 600000 - CPU: 0
[ 1190.499655] cpufreq: target for CPU 0: 430000 kHz, relation 0, requested 430000 kHz
[ 1190.499690] freq_table: request for target 430000 kHz (relation: 0) for cpu 0
[ 1190.499706] freq_table: target index is 1, freq is:600000 kHz
[ 1190.889683] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 60000 kHz
[ 1190.889718] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1190.889734] freq_table: target index is 0, freq is:300000 kHz
[ 1190.889752] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 600000, new freq: 300000
[ 1190.889770] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1190.890150] cpufreq_cpu0: 600 MHz, 1125 mV --> 300 MHz, 969 mV
[ 1190.893959] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1190.893999] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1190.894024] cpufreq: FREQ: 300000 - CPU: 0
[ 1191.219826] cpufreq: target for CPU 0: 650000 kHz, relation 0, requested 650000 kHz
[ 1191.219884] freq_table: request for target 650000 kHz (relation: 0) for cpu 0
[ 1191.219914] freq_table: target index is 2, freq is:800000 kHz
[ 1191.219949] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1191.219982] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1191.221223] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1191.224629] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1191.224644] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1191.224653] cpufreq: FREQ: 800000 - CPU: 0
[ 1191.579648] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 260000 kHz
[ 1191.579680] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1191.579692] freq_table: target index is 0, freq is:300000 kHz
[ 1191.579707] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1191.579722] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1191.580056] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1191.583432] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1191.583470] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1191.583494] cpufreq: FREQ: 300000 - CPU: 0
[ 1191.889782] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 100000 kHz
[ 1192.200105] cpufreq: target for CPU 0: 750000 kHz, relation 0, requested 750000 kHz
[ 1192.200163] freq_table: request for target 750000 kHz (relation: 0) for cpu 0
[ 1192.200192] freq_table: target index is 2, freq is:800000 kHz
[ 1192.200227] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1192.200261] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1192.201303] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1192.205408] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1192.205424] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1192.205434] cpufreq: FREQ: 800000 - CPU: 0
[ 1192.499678] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 290000 kHz
[ 1192.499708] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1192.499720] freq_table: target index is 0, freq is:300000 kHz
[ 1192.499735] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1192.499750] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1192.500073] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1192.503162] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1192.503197] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1192.503222] cpufreq: FREQ: 300000 - CPU: 0
[ 1192.899858] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 150000 kHz
[ 1193.219820] cpufreq: target for CPU 0: 640000 kHz, relation 0, requested 640000 kHz
[ 1193.219877] freq_table: request for target 640000 kHz (relation: 0) for cpu 0
[ 1193.219906] freq_table: target index is 2, freq is:800000 kHz
[ 1193.219942] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1193.219975] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1193.221210] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1193.224593] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1193.224609] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1193.224619] cpufreq: FREQ: 800000 - CPU: 0
[ 1193.549716] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 220000 kHz
[ 1193.549747] freq_table: request for target 300000 kHz (relation: 0) for cpu 0
[ 1193.549759] freq_table: target index is 0, freq is:300000 kHz
[ 1193.549774] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 800000, new freq: 300000
[ 1193.549790] cpufreq: notification 0 of frequency transition to 300000 kHz
[ 1193.550116] cpufreq_cpu0: 800 MHz, 1300 mV --> 300 MHz, 969 mV
[ 1193.553237] cpufreq: notification 1 of frequency transition to 300000 kHz
[ 1193.553275] cpufreq: scaling loops_per_jiffy to 1489082 for frequency 300000 kHz
[ 1193.553300] cpufreq: FREQ: 300000 - CPU: 0
[ 1193.880314] cpufreq: target for CPU 0: 300000 kHz, relation 0, requested 90000 kHz
[ 1194.219817] cpufreq: target for CPU 0: 700000 kHz, relation 0, requested 700000 kHz
[ 1194.219876] freq_table: request for target 700000 kHz (relation: 0) for cpu 0
[ 1194.219905] freq_table: target index is 2, freq is:800000 kHz
[ 1194.219940] cpufreq: __cpufreq_driver_target: cpu: 0, oldfreq: 300000, new freq: 800000
[ 1194.219975] cpufreq: notification 0 of frequency transition to 800000 kHz
[ 1194.220691] cpufreq_cpu0: 300 MHz, 975 mV --> 800 MHz, 1300 mV
[ 1194.224090] cpufreq: notification 1 of frequency transition to 800000 kHz
[ 1194.224105] cpufreq: scaling loops_per_jiffy to 3970885 for frequency 800000 kHz
[ 1194.224114] cpufreq: FREQ: 800000 - CPU: 0
[ 1194.334540] cpufreq: unregistering driver generic_cpu0
[ 1194.334580] cpufreq: __cpufreq_remove_dev_prepare: unregistering CPU 0
[ 1194.334632] cpufreq: __cpufreq_governor for CPU 0, event 2
[ 1194.334859] cpufreq: __cpufreq_governor for CPU 0, event 5
[ 1194.336133] __cpufreq_stats_free_table: Free stat table
[ 1194.338488] cpufreq: last reference is dropped
[ 1194.338616] cpufreq: waiting for dropping of refcount
[ 1194.338631] cpufreq: wait complete
Comment 25 Boris Vinogradov 2014-08-19 11:18:52 UTC
Created attachment 147261 [details]
Enable cpufreq_cpu0

This messages showeb after type command. Sorry my boot log is not actually.
Comment 26 Viresh Kumar 2014-08-19 11:23:45 UTC
(In reply to Boris Vinogradov from comment #25)
> Created attachment 147261 [details]
> Enable cpufreq_cpu0
> 
> This messages showeb after type command. Sorry my boot log is not actually.

This comment has everything you need. Driver is added properly and must be usable. Have you tried looking for sysfs directories?

And what was missing earlier when you reported this issue?
Comment 27 Boris Vinogradov 2014-08-19 11:39:00 UTC
It applayed needed to sysfs directory and worked.

But on oldest kernel this run automaticaly.

Patch need to add cpufreq_cpu0 driver configuration.
Comment 28 Viresh Kumar 2014-08-19 11:47:24 UTC
(In reply to Boris Vinogradov from comment #27)
> It applayed needed to sysfs directory and worked.
> 
> But on oldest kernel this run automaticaly.

Yeah, they moved to cpufreq-cpu0 recently..

> Patch need to add cpufreq_cpu0 driver configuration.

Do you mean just enabling cpufreq-cpu0 in .config did the trick?
I already asked you this earlier few days back and you said it didn't work? Or did I miss something?
Comment 29 Boris Vinogradov 2014-08-19 11:51:40 UTC
No, my last patch - https://bugzilla.kernel.org/attachment.cgi?id=147241&action=diff. Without it cpufreq_cpu0 not working.
Comment 30 Len Brown 2015-04-14 15:37:53 UTC
Is this REGRESSION still an issue?
Comment 31 Boris Vinogradov 2015-04-14 16:05:49 UTC
Yes.
Comment 32 Len Brown 2016-03-14 23:11:35 UTC
1 year w/o an update.
Please re-open if a recent kernel still has a problem.

Note You need to log in before you can comment on or make changes to this bug.