blob: 6e44651c2f39a10e8d51f336ebfcb84c37ed55b9 [file] [log] [blame]
Pi-Cheng Chen14538632015-08-19 10:05:06 +08001/*
2 * Copyright (c) 2015 Linaro Ltd.
3 * Author: Pi-Cheng Chen <pi-cheng.chen@linaro.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <linux/clk.h>
16#include <linux/cpu.h>
17#include <linux/cpu_cooling.h>
18#include <linux/cpufreq.h>
19#include <linux/cpumask.h>
Arnd Bergmann3c2002a2016-02-29 17:04:21 +010020#include <linux/module.h>
Pi-Cheng Chen14538632015-08-19 10:05:06 +080021#include <linux/of.h>
22#include <linux/platform_device.h>
23#include <linux/pm_opp.h>
24#include <linux/regulator/consumer.h>
25#include <linux/slab.h>
26#include <linux/thermal.h>
27
28#define MIN_VOLT_SHIFT (100000)
29#define MAX_VOLT_SHIFT (200000)
30#define MAX_VOLT_LIMIT (1150000)
31#define VOLT_TOL (10000)
32
33/*
34 * The struct mtk_cpu_dvfs_info holds necessary information for doing CPU DVFS
35 * on each CPU power/clock domain of Mediatek SoCs. Each CPU cluster in
36 * Mediatek SoCs has two voltage inputs, Vproc and Vsram. In some cases the two
37 * voltage inputs need to be controlled under a hardware limitation:
38 * 100mV < Vsram - Vproc < 200mV
39 *
40 * When scaling the clock frequency of a CPU clock domain, the clock source
41 * needs to be switched to another stable PLL clock temporarily until
42 * the original PLL becomes stable at target frequency.
43 */
44struct mtk_cpu_dvfs_info {
Pi-Cheng Chen89b56042015-12-10 11:48:13 +080045 struct cpumask cpus;
Pi-Cheng Chen14538632015-08-19 10:05:06 +080046 struct device *cpu_dev;
47 struct regulator *proc_reg;
48 struct regulator *sram_reg;
49 struct clk *cpu_clk;
50 struct clk *inter_clk;
51 struct thermal_cooling_device *cdev;
Pi-Cheng Chen89b56042015-12-10 11:48:13 +080052 struct list_head list_head;
Pi-Cheng Chen14538632015-08-19 10:05:06 +080053 int intermediate_voltage;
54 bool need_voltage_tracking;
55};
56
Pi-Cheng Chen89b56042015-12-10 11:48:13 +080057static LIST_HEAD(dvfs_info_list);
58
59static struct mtk_cpu_dvfs_info *mtk_cpu_dvfs_info_lookup(int cpu)
60{
61 struct mtk_cpu_dvfs_info *info;
62 struct list_head *list;
63
64 list_for_each(list, &dvfs_info_list) {
65 info = list_entry(list, struct mtk_cpu_dvfs_info, list_head);
66
67 if (cpumask_test_cpu(cpu, &info->cpus))
68 return info;
69 }
70
71 return NULL;
72}
73
Pi-Cheng Chen14538632015-08-19 10:05:06 +080074static int mtk_cpufreq_voltage_tracking(struct mtk_cpu_dvfs_info *info,
75 int new_vproc)
76{
77 struct regulator *proc_reg = info->proc_reg;
78 struct regulator *sram_reg = info->sram_reg;
79 int old_vproc, old_vsram, new_vsram, vsram, vproc, ret;
80
81 old_vproc = regulator_get_voltage(proc_reg);
Pi-Cheng Chen40be4c32015-11-29 16:31:37 +080082 if (old_vproc < 0) {
83 pr_err("%s: invalid Vproc value: %d\n", __func__, old_vproc);
84 return old_vproc;
85 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +080086 /* Vsram should not exceed the maximum allowed voltage of SoC. */
87 new_vsram = min(new_vproc + MIN_VOLT_SHIFT, MAX_VOLT_LIMIT);
88
89 if (old_vproc < new_vproc) {
90 /*
91 * When scaling up voltages, Vsram and Vproc scale up step
92 * by step. At each step, set Vsram to (Vproc + 200mV) first,
93 * then set Vproc to (Vsram - 100mV).
94 * Keep doing it until Vsram and Vproc hit target voltages.
95 */
96 do {
97 old_vsram = regulator_get_voltage(sram_reg);
Pi-Cheng Chen40be4c32015-11-29 16:31:37 +080098 if (old_vsram < 0) {
99 pr_err("%s: invalid Vsram value: %d\n",
100 __func__, old_vsram);
101 return old_vsram;
102 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800103 old_vproc = regulator_get_voltage(proc_reg);
Pi-Cheng Chen40be4c32015-11-29 16:31:37 +0800104 if (old_vproc < 0) {
105 pr_err("%s: invalid Vproc value: %d\n",
106 __func__, old_vproc);
107 return old_vproc;
108 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800109
110 vsram = min(new_vsram, old_vproc + MAX_VOLT_SHIFT);
111
112 if (vsram + VOLT_TOL >= MAX_VOLT_LIMIT) {
113 vsram = MAX_VOLT_LIMIT;
114
115 /*
116 * If the target Vsram hits the maximum voltage,
117 * try to set the exact voltage value first.
118 */
119 ret = regulator_set_voltage(sram_reg, vsram,
120 vsram);
121 if (ret)
122 ret = regulator_set_voltage(sram_reg,
123 vsram - VOLT_TOL,
124 vsram);
125
126 vproc = new_vproc;
127 } else {
128 ret = regulator_set_voltage(sram_reg, vsram,
129 vsram + VOLT_TOL);
130
131 vproc = vsram - MIN_VOLT_SHIFT;
132 }
133 if (ret)
134 return ret;
135
136 ret = regulator_set_voltage(proc_reg, vproc,
137 vproc + VOLT_TOL);
138 if (ret) {
139 regulator_set_voltage(sram_reg, old_vsram,
140 old_vsram);
141 return ret;
142 }
143 } while (vproc < new_vproc || vsram < new_vsram);
144 } else if (old_vproc > new_vproc) {
145 /*
146 * When scaling down voltages, Vsram and Vproc scale down step
147 * by step. At each step, set Vproc to (Vsram - 200mV) first,
148 * then set Vproc to (Vproc + 100mV).
149 * Keep doing it until Vsram and Vproc hit target voltages.
150 */
151 do {
152 old_vproc = regulator_get_voltage(proc_reg);
Pi-Cheng Chen40be4c32015-11-29 16:31:37 +0800153 if (old_vproc < 0) {
154 pr_err("%s: invalid Vproc value: %d\n",
155 __func__, old_vproc);
156 return old_vproc;
157 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800158 old_vsram = regulator_get_voltage(sram_reg);
Pi-Cheng Chen40be4c32015-11-29 16:31:37 +0800159 if (old_vsram < 0) {
160 pr_err("%s: invalid Vsram value: %d\n",
161 __func__, old_vsram);
162 return old_vsram;
163 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800164
165 vproc = max(new_vproc, old_vsram - MAX_VOLT_SHIFT);
166 ret = regulator_set_voltage(proc_reg, vproc,
167 vproc + VOLT_TOL);
168 if (ret)
169 return ret;
170
171 if (vproc == new_vproc)
172 vsram = new_vsram;
173 else
174 vsram = max(new_vsram, vproc + MIN_VOLT_SHIFT);
175
176 if (vsram + VOLT_TOL >= MAX_VOLT_LIMIT) {
177 vsram = MAX_VOLT_LIMIT;
178
179 /*
180 * If the target Vsram hits the maximum voltage,
181 * try to set the exact voltage value first.
182 */
183 ret = regulator_set_voltage(sram_reg, vsram,
184 vsram);
185 if (ret)
186 ret = regulator_set_voltage(sram_reg,
187 vsram - VOLT_TOL,
188 vsram);
189 } else {
190 ret = regulator_set_voltage(sram_reg, vsram,
191 vsram + VOLT_TOL);
192 }
193
194 if (ret) {
195 regulator_set_voltage(proc_reg, old_vproc,
196 old_vproc);
197 return ret;
198 }
199 } while (vproc > new_vproc + VOLT_TOL ||
200 vsram > new_vsram + VOLT_TOL);
201 }
202
203 return 0;
204}
205
206static int mtk_cpufreq_set_voltage(struct mtk_cpu_dvfs_info *info, int vproc)
207{
208 if (info->need_voltage_tracking)
209 return mtk_cpufreq_voltage_tracking(info, vproc);
210 else
211 return regulator_set_voltage(info->proc_reg, vproc,
212 vproc + VOLT_TOL);
213}
214
215static int mtk_cpufreq_set_target(struct cpufreq_policy *policy,
216 unsigned int index)
217{
218 struct cpufreq_frequency_table *freq_table = policy->freq_table;
219 struct clk *cpu_clk = policy->clk;
220 struct clk *armpll = clk_get_parent(cpu_clk);
221 struct mtk_cpu_dvfs_info *info = policy->driver_data;
222 struct device *cpu_dev = info->cpu_dev;
223 struct dev_pm_opp *opp;
224 long freq_hz, old_freq_hz;
225 int vproc, old_vproc, inter_vproc, target_vproc, ret;
226
227 inter_vproc = info->intermediate_voltage;
228
229 old_freq_hz = clk_get_rate(cpu_clk);
230 old_vproc = regulator_get_voltage(info->proc_reg);
Pi-Cheng Chen40be4c32015-11-29 16:31:37 +0800231 if (old_vproc < 0) {
232 pr_err("%s: invalid Vproc value: %d\n", __func__, old_vproc);
233 return old_vproc;
234 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800235
236 freq_hz = freq_table[index].frequency * 1000;
237
238 rcu_read_lock();
239 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &freq_hz);
240 if (IS_ERR(opp)) {
241 rcu_read_unlock();
242 pr_err("cpu%d: failed to find OPP for %ld\n",
243 policy->cpu, freq_hz);
244 return PTR_ERR(opp);
245 }
246 vproc = dev_pm_opp_get_voltage(opp);
247 rcu_read_unlock();
248
249 /*
250 * If the new voltage or the intermediate voltage is higher than the
251 * current voltage, scale up voltage first.
252 */
253 target_vproc = (inter_vproc > vproc) ? inter_vproc : vproc;
254 if (old_vproc < target_vproc) {
255 ret = mtk_cpufreq_set_voltage(info, target_vproc);
256 if (ret) {
257 pr_err("cpu%d: failed to scale up voltage!\n",
258 policy->cpu);
259 mtk_cpufreq_set_voltage(info, old_vproc);
260 return ret;
261 }
262 }
263
264 /* Reparent the CPU clock to intermediate clock. */
265 ret = clk_set_parent(cpu_clk, info->inter_clk);
266 if (ret) {
267 pr_err("cpu%d: failed to re-parent cpu clock!\n",
268 policy->cpu);
269 mtk_cpufreq_set_voltage(info, old_vproc);
270 WARN_ON(1);
271 return ret;
272 }
273
274 /* Set the original PLL to target rate. */
275 ret = clk_set_rate(armpll, freq_hz);
276 if (ret) {
277 pr_err("cpu%d: failed to scale cpu clock rate!\n",
278 policy->cpu);
279 clk_set_parent(cpu_clk, armpll);
280 mtk_cpufreq_set_voltage(info, old_vproc);
281 return ret;
282 }
283
284 /* Set parent of CPU clock back to the original PLL. */
285 ret = clk_set_parent(cpu_clk, armpll);
286 if (ret) {
287 pr_err("cpu%d: failed to re-parent cpu clock!\n",
288 policy->cpu);
289 mtk_cpufreq_set_voltage(info, inter_vproc);
290 WARN_ON(1);
291 return ret;
292 }
293
294 /*
295 * If the new voltage is lower than the intermediate voltage or the
296 * original voltage, scale down to the new voltage.
297 */
298 if (vproc < inter_vproc || vproc < old_vproc) {
299 ret = mtk_cpufreq_set_voltage(info, vproc);
300 if (ret) {
301 pr_err("cpu%d: failed to scale down voltage!\n",
302 policy->cpu);
303 clk_set_parent(cpu_clk, info->inter_clk);
304 clk_set_rate(armpll, old_freq_hz);
305 clk_set_parent(cpu_clk, armpll);
306 return ret;
307 }
308 }
309
310 return 0;
311}
312
Dawei Chiend2901602015-12-16 21:29:14 +0800313#define DYNAMIC_POWER "dynamic-power-coefficient"
314
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800315static void mtk_cpufreq_ready(struct cpufreq_policy *policy)
316{
317 struct mtk_cpu_dvfs_info *info = policy->driver_data;
318 struct device_node *np = of_node_get(info->cpu_dev->of_node);
Dawei Chiend2901602015-12-16 21:29:14 +0800319 u32 capacitance = 0;
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800320
321 if (WARN_ON(!np))
322 return;
323
324 if (of_find_property(np, "#cooling-cells", NULL)) {
Dawei Chiend2901602015-12-16 21:29:14 +0800325 of_property_read_u32(np, DYNAMIC_POWER, &capacitance);
326
327 info->cdev = of_cpufreq_power_cooling_register(np,
328 policy->related_cpus,
329 capacitance,
330 NULL);
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800331
332 if (IS_ERR(info->cdev)) {
333 dev_err(info->cpu_dev,
334 "running cpufreq without cooling device: %ld\n",
335 PTR_ERR(info->cdev));
336
337 info->cdev = NULL;
338 }
339 }
340
341 of_node_put(np);
342}
343
344static int mtk_cpu_dvfs_info_init(struct mtk_cpu_dvfs_info *info, int cpu)
345{
346 struct device *cpu_dev;
347 struct regulator *proc_reg = ERR_PTR(-ENODEV);
348 struct regulator *sram_reg = ERR_PTR(-ENODEV);
349 struct clk *cpu_clk = ERR_PTR(-ENODEV);
350 struct clk *inter_clk = ERR_PTR(-ENODEV);
351 struct dev_pm_opp *opp;
352 unsigned long rate;
353 int ret;
354
355 cpu_dev = get_cpu_device(cpu);
356 if (!cpu_dev) {
357 pr_err("failed to get cpu%d device\n", cpu);
358 return -ENODEV;
359 }
360
361 cpu_clk = clk_get(cpu_dev, "cpu");
362 if (IS_ERR(cpu_clk)) {
363 if (PTR_ERR(cpu_clk) == -EPROBE_DEFER)
364 pr_warn("cpu clk for cpu%d not ready, retry.\n", cpu);
365 else
366 pr_err("failed to get cpu clk for cpu%d\n", cpu);
367
368 ret = PTR_ERR(cpu_clk);
369 return ret;
370 }
371
372 inter_clk = clk_get(cpu_dev, "intermediate");
373 if (IS_ERR(inter_clk)) {
374 if (PTR_ERR(inter_clk) == -EPROBE_DEFER)
375 pr_warn("intermediate clk for cpu%d not ready, retry.\n",
376 cpu);
377 else
378 pr_err("failed to get intermediate clk for cpu%d\n",
379 cpu);
380
381 ret = PTR_ERR(inter_clk);
382 goto out_free_resources;
383 }
384
385 proc_reg = regulator_get_exclusive(cpu_dev, "proc");
386 if (IS_ERR(proc_reg)) {
387 if (PTR_ERR(proc_reg) == -EPROBE_DEFER)
388 pr_warn("proc regulator for cpu%d not ready, retry.\n",
389 cpu);
390 else
391 pr_err("failed to get proc regulator for cpu%d\n",
392 cpu);
393
394 ret = PTR_ERR(proc_reg);
395 goto out_free_resources;
396 }
397
398 /* Both presence and absence of sram regulator are valid cases. */
399 sram_reg = regulator_get_exclusive(cpu_dev, "sram");
400
Pi-Cheng Chena8893312015-12-27 14:21:57 +0800401 /* Get OPP-sharing information from "operating-points-v2" bindings */
402 ret = dev_pm_opp_of_get_sharing_cpus(cpu_dev, &info->cpus);
403 if (ret) {
404 pr_err("failed to get OPP-sharing information for cpu%d\n",
405 cpu);
406 goto out_free_resources;
407 }
408
409 ret = dev_pm_opp_of_cpumask_add_table(&info->cpus);
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800410 if (ret) {
411 pr_warn("no OPP table for cpu%d\n", cpu);
412 goto out_free_resources;
413 }
414
415 /* Search a safe voltage for intermediate frequency. */
416 rate = clk_get_rate(inter_clk);
417 rcu_read_lock();
418 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &rate);
419 if (IS_ERR(opp)) {
420 rcu_read_unlock();
421 pr_err("failed to get intermediate opp for cpu%d\n", cpu);
422 ret = PTR_ERR(opp);
423 goto out_free_opp_table;
424 }
425 info->intermediate_voltage = dev_pm_opp_get_voltage(opp);
426 rcu_read_unlock();
427
428 info->cpu_dev = cpu_dev;
429 info->proc_reg = proc_reg;
430 info->sram_reg = IS_ERR(sram_reg) ? NULL : sram_reg;
431 info->cpu_clk = cpu_clk;
432 info->inter_clk = inter_clk;
433
434 /*
435 * If SRAM regulator is present, software "voltage tracking" is needed
436 * for this CPU power domain.
437 */
438 info->need_voltage_tracking = !IS_ERR(sram_reg);
439
440 return 0;
441
442out_free_opp_table:
Pi-Cheng Chena8893312015-12-27 14:21:57 +0800443 dev_pm_opp_of_cpumask_remove_table(&info->cpus);
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800444
445out_free_resources:
446 if (!IS_ERR(proc_reg))
447 regulator_put(proc_reg);
448 if (!IS_ERR(sram_reg))
449 regulator_put(sram_reg);
450 if (!IS_ERR(cpu_clk))
451 clk_put(cpu_clk);
452 if (!IS_ERR(inter_clk))
453 clk_put(inter_clk);
454
455 return ret;
456}
457
458static void mtk_cpu_dvfs_info_release(struct mtk_cpu_dvfs_info *info)
459{
460 if (!IS_ERR(info->proc_reg))
461 regulator_put(info->proc_reg);
462 if (!IS_ERR(info->sram_reg))
463 regulator_put(info->sram_reg);
464 if (!IS_ERR(info->cpu_clk))
465 clk_put(info->cpu_clk);
466 if (!IS_ERR(info->inter_clk))
467 clk_put(info->inter_clk);
468
Pi-Cheng Chena8893312015-12-27 14:21:57 +0800469 dev_pm_opp_of_cpumask_remove_table(&info->cpus);
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800470}
471
472static int mtk_cpufreq_init(struct cpufreq_policy *policy)
473{
474 struct mtk_cpu_dvfs_info *info;
475 struct cpufreq_frequency_table *freq_table;
476 int ret;
477
Pi-Cheng Chen89b56042015-12-10 11:48:13 +0800478 info = mtk_cpu_dvfs_info_lookup(policy->cpu);
479 if (!info) {
480 pr_err("dvfs info for cpu%d is not initialized.\n",
481 policy->cpu);
482 return -EINVAL;
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800483 }
484
485 ret = dev_pm_opp_init_cpufreq_table(info->cpu_dev, &freq_table);
486 if (ret) {
487 pr_err("failed to init cpufreq table for cpu%d: %d\n",
488 policy->cpu, ret);
Pi-Cheng Chen89b56042015-12-10 11:48:13 +0800489 return ret;
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800490 }
491
492 ret = cpufreq_table_validate_and_show(policy, freq_table);
493 if (ret) {
494 pr_err("%s: invalid frequency table: %d\n", __func__, ret);
495 goto out_free_cpufreq_table;
496 }
497
Pi-Cheng Chen89b56042015-12-10 11:48:13 +0800498 cpumask_copy(policy->cpus, &info->cpus);
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800499 policy->driver_data = info;
500 policy->clk = info->cpu_clk;
501
502 return 0;
503
504out_free_cpufreq_table:
505 dev_pm_opp_free_cpufreq_table(info->cpu_dev, &freq_table);
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800506 return ret;
507}
508
509static int mtk_cpufreq_exit(struct cpufreq_policy *policy)
510{
511 struct mtk_cpu_dvfs_info *info = policy->driver_data;
512
513 cpufreq_cooling_unregister(info->cdev);
514 dev_pm_opp_free_cpufreq_table(info->cpu_dev, &policy->freq_table);
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800515
516 return 0;
517}
518
519static struct cpufreq_driver mt8173_cpufreq_driver = {
Pi-Cheng Chen9bb46b82015-11-29 16:31:35 +0800520 .flags = CPUFREQ_STICKY | CPUFREQ_NEED_INITIAL_FREQ_CHECK |
521 CPUFREQ_HAVE_GOVERNOR_PER_POLICY,
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800522 .verify = cpufreq_generic_frequency_table_verify,
523 .target_index = mtk_cpufreq_set_target,
524 .get = cpufreq_generic_get,
525 .init = mtk_cpufreq_init,
526 .exit = mtk_cpufreq_exit,
527 .ready = mtk_cpufreq_ready,
528 .name = "mtk-cpufreq",
529 .attr = cpufreq_generic_attr,
530};
531
532static int mt8173_cpufreq_probe(struct platform_device *pdev)
533{
Pi-Cheng Chen89b56042015-12-10 11:48:13 +0800534 struct mtk_cpu_dvfs_info *info;
535 struct list_head *list, *tmp;
536 int cpu, ret;
537
538 for_each_possible_cpu(cpu) {
539 info = mtk_cpu_dvfs_info_lookup(cpu);
540 if (info)
541 continue;
542
543 info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
544 if (!info) {
545 ret = -ENOMEM;
546 goto release_dvfs_info_list;
547 }
548
549 ret = mtk_cpu_dvfs_info_init(info, cpu);
550 if (ret) {
551 dev_err(&pdev->dev,
552 "failed to initialize dvfs info for cpu%d\n",
553 cpu);
554 goto release_dvfs_info_list;
555 }
556
557 list_add(&info->list_head, &dvfs_info_list);
558 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800559
560 ret = cpufreq_register_driver(&mt8173_cpufreq_driver);
Pi-Cheng Chen89b56042015-12-10 11:48:13 +0800561 if (ret) {
562 dev_err(&pdev->dev, "failed to register mtk cpufreq driver\n");
563 goto release_dvfs_info_list;
564 }
565
566 return 0;
567
568release_dvfs_info_list:
569 list_for_each_safe(list, tmp, &dvfs_info_list) {
570 info = list_entry(list, struct mtk_cpu_dvfs_info, list_head);
571
572 mtk_cpu_dvfs_info_release(info);
573 list_del(list);
574 }
Pi-Cheng Chen14538632015-08-19 10:05:06 +0800575
576 return ret;
577}
578
579static struct platform_driver mt8173_cpufreq_platdrv = {
580 .driver = {
581 .name = "mt8173-cpufreq",
582 },
583 .probe = mt8173_cpufreq_probe,
584};
585
586static int mt8173_cpufreq_driver_init(void)
587{
588 struct platform_device *pdev;
589 int err;
590
591 if (!of_machine_is_compatible("mediatek,mt8173"))
592 return -ENODEV;
593
594 err = platform_driver_register(&mt8173_cpufreq_platdrv);
595 if (err)
596 return err;
597
598 /*
599 * Since there's no place to hold device registration code and no
600 * device tree based way to match cpufreq driver yet, both the driver
601 * and the device registration codes are put here to handle defer
602 * probing.
603 */
604 pdev = platform_device_register_simple("mt8173-cpufreq", -1, NULL, 0);
605 if (IS_ERR(pdev)) {
606 pr_err("failed to register mtk-cpufreq platform device\n");
607 return PTR_ERR(pdev);
608 }
609
610 return 0;
611}
612device_initcall(mt8173_cpufreq_driver_init);