blob: a1b8238872a21d012d121d453fcf7250966fdfad [file] [log] [blame]
Ilia Lin46e28562018-05-30 05:39:28 +03001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
4 */
5
6/*
7 * In Certain QCOM SoCs like apq8096 and msm8996 that have KRYO processors,
8 * the CPU frequency subset and voltage value of each OPP varies
9 * based on the silicon variant in use. Qualcomm Process Voltage Scaling Tables
10 * defines the voltage and frequency value based on the msm-id in SMEM
11 * and speedbin blown in the efuse combination.
Sricharan R7d127092019-07-25 12:41:31 +020012 * The qcom-cpufreq-nvmem driver reads the msm-id and efuse value from the SoC
Ilia Lin46e28562018-05-30 05:39:28 +030013 * to provide the OPP framework with required information.
14 * This is used to determine the voltage and frequency value for each OPP of
15 * operating-points-v2 table when it is parsed by the OPP framework.
16 */
17
18#include <linux/cpu.h>
19#include <linux/err.h>
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/nvmem-consumer.h>
24#include <linux/of.h>
Sricharan R7d127092019-07-25 12:41:31 +020025#include <linux/of_device.h>
Ilia Lin46e28562018-05-30 05:39:28 +030026#include <linux/platform_device.h>
Niklas Cassel1cb83392019-07-25 12:41:35 +020027#include <linux/pm_domain.h>
Ilia Lin46e28562018-05-30 05:39:28 +030028#include <linux/pm_opp.h>
29#include <linux/slab.h>
30#include <linux/soc/qcom/smem.h>
31
32#define MSM_ID_SMEM 137
33
34enum _msm_id {
35 MSM8996V3 = 0xF6ul,
36 APQ8096V3 = 0x123ul,
37 MSM8996SG = 0x131ul,
38 APQ8096SG = 0x138ul,
39};
40
41enum _msm8996_version {
42 MSM8996_V3,
43 MSM8996_SG,
44 NUM_OF_MSM8996_VERSIONS,
45};
46
Niklas Cassel57f2f8b2019-07-25 12:41:33 +020047struct qcom_cpufreq_drv;
48
49struct qcom_cpufreq_match_data {
50 int (*get_version)(struct device *cpu_dev,
51 struct nvmem_cell *speedbin_nvmem,
Ansuel Smitha8811ec2020-03-13 18:52:13 +010052 char **pvs_name,
Niklas Cassel57f2f8b2019-07-25 12:41:33 +020053 struct qcom_cpufreq_drv *drv);
Niklas Cassel1cb83392019-07-25 12:41:35 +020054 const char **genpd_names;
Niklas Cassel57f2f8b2019-07-25 12:41:33 +020055};
56
57struct qcom_cpufreq_drv {
Ansuel Smitha8811ec2020-03-13 18:52:13 +010058 struct opp_table **names_opp_tables;
59 struct opp_table **hw_opp_tables;
Niklas Cassel1cb83392019-07-25 12:41:35 +020060 struct opp_table **genpd_opp_tables;
Niklas Cassel57f2f8b2019-07-25 12:41:33 +020061 u32 versions;
62 const struct qcom_cpufreq_match_data *data;
63};
64
Sricharan R7d127092019-07-25 12:41:31 +020065static struct platform_device *cpufreq_dt_pdev, *cpufreq_pdev;
Ilia Lin5ad73462018-06-17 22:01:46 +020066
Ansuel Smitha8811ec2020-03-13 18:52:13 +010067static void get_krait_bin_format_a(struct device *cpu_dev,
68 int *speed, int *pvs, int *pvs_ver,
69 struct nvmem_cell *pvs_nvmem, u8 *buf)
70{
71 u32 pte_efuse;
72
73 pte_efuse = *((u32 *)buf);
74
75 *speed = pte_efuse & 0xf;
76 if (*speed == 0xf)
77 *speed = (pte_efuse >> 4) & 0xf;
78
79 if (*speed == 0xf) {
80 *speed = 0;
81 dev_warn(cpu_dev, "Speed bin: Defaulting to %d\n", *speed);
82 } else {
83 dev_dbg(cpu_dev, "Speed bin: %d\n", *speed);
84 }
85
86 *pvs = (pte_efuse >> 10) & 0x7;
87 if (*pvs == 0x7)
88 *pvs = (pte_efuse >> 13) & 0x7;
89
90 if (*pvs == 0x7) {
91 *pvs = 0;
92 dev_warn(cpu_dev, "PVS bin: Defaulting to %d\n", *pvs);
93 } else {
94 dev_dbg(cpu_dev, "PVS bin: %d\n", *pvs);
95 }
96}
97
98static void get_krait_bin_format_b(struct device *cpu_dev,
99 int *speed, int *pvs, int *pvs_ver,
100 struct nvmem_cell *pvs_nvmem, u8 *buf)
101{
102 u32 pte_efuse, redundant_sel;
103
104 pte_efuse = *((u32 *)buf);
105 redundant_sel = (pte_efuse >> 24) & 0x7;
106
107 *pvs_ver = (pte_efuse >> 4) & 0x3;
108
109 switch (redundant_sel) {
110 case 1:
111 *pvs = ((pte_efuse >> 28) & 0x8) | ((pte_efuse >> 6) & 0x7);
112 *speed = (pte_efuse >> 27) & 0xf;
113 break;
114 case 2:
115 *pvs = (pte_efuse >> 27) & 0xf;
116 *speed = pte_efuse & 0x7;
117 break;
118 default:
119 /* 4 bits of PVS are in efuse register bits 31, 8-6. */
120 *pvs = ((pte_efuse >> 28) & 0x8) | ((pte_efuse >> 6) & 0x7);
121 *speed = pte_efuse & 0x7;
122 }
123
124 /* Check SPEED_BIN_BLOW_STATUS */
125 if (pte_efuse & BIT(3)) {
126 dev_dbg(cpu_dev, "Speed bin: %d\n", *speed);
127 } else {
128 dev_warn(cpu_dev, "Speed bin not set. Defaulting to 0!\n");
129 *speed = 0;
130 }
131
132 /* Check PVS_BLOW_STATUS */
133 pte_efuse = *(((u32 *)buf) + 4);
134 pte_efuse &= BIT(21);
135 if (pte_efuse) {
136 dev_dbg(cpu_dev, "PVS bin: %d\n", *pvs);
137 } else {
138 dev_warn(cpu_dev, "PVS bin not set. Defaulting to 0!\n");
139 *pvs = 0;
140 }
141
142 dev_dbg(cpu_dev, "PVS version: %d\n", *pvs_ver);
143}
144
Sricharan R7d127092019-07-25 12:41:31 +0200145static enum _msm8996_version qcom_cpufreq_get_msm_id(void)
Ilia Lin46e28562018-05-30 05:39:28 +0300146{
147 size_t len;
148 u32 *msm_id;
149 enum _msm8996_version version;
150
151 msm_id = qcom_smem_get(QCOM_SMEM_HOST_ANY, MSM_ID_SMEM, &len);
152 if (IS_ERR(msm_id))
153 return NUM_OF_MSM8996_VERSIONS;
154
155 /* The first 4 bytes are format, next to them is the actual msm-id */
156 msm_id++;
157
158 switch ((enum _msm_id)*msm_id) {
159 case MSM8996V3:
160 case APQ8096V3:
161 version = MSM8996_V3;
162 break;
163 case MSM8996SG:
164 case APQ8096SG:
165 version = MSM8996_SG;
166 break;
167 default:
168 version = NUM_OF_MSM8996_VERSIONS;
169 }
170
171 return version;
172}
173
Sricharan R7d127092019-07-25 12:41:31 +0200174static int qcom_cpufreq_kryo_name_version(struct device *cpu_dev,
175 struct nvmem_cell *speedbin_nvmem,
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100176 char **pvs_name,
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200177 struct qcom_cpufreq_drv *drv)
Sricharan R7d127092019-07-25 12:41:31 +0200178{
179 size_t len;
180 u8 *speedbin;
181 enum _msm8996_version msm8996_version;
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100182 *pvs_name = NULL;
Sricharan R7d127092019-07-25 12:41:31 +0200183
184 msm8996_version = qcom_cpufreq_get_msm_id();
185 if (NUM_OF_MSM8996_VERSIONS == msm8996_version) {
186 dev_err(cpu_dev, "Not Snapdragon 820/821!");
187 return -ENODEV;
188 }
189
190 speedbin = nvmem_cell_read(speedbin_nvmem, &len);
191 if (IS_ERR(speedbin))
192 return PTR_ERR(speedbin);
193
194 switch (msm8996_version) {
195 case MSM8996_V3:
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200196 drv->versions = 1 << (unsigned int)(*speedbin);
Sricharan R7d127092019-07-25 12:41:31 +0200197 break;
198 case MSM8996_SG:
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200199 drv->versions = 1 << ((unsigned int)(*speedbin) + 4);
Sricharan R7d127092019-07-25 12:41:31 +0200200 break;
201 default:
202 BUG();
203 break;
204 }
205
206 kfree(speedbin);
207 return 0;
208}
209
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100210static int qcom_cpufreq_krait_name_version(struct device *cpu_dev,
211 struct nvmem_cell *speedbin_nvmem,
212 char **pvs_name,
213 struct qcom_cpufreq_drv *drv)
214{
215 int speed = 0, pvs = 0, pvs_ver = 0;
216 u8 *speedbin;
217 size_t len;
218
219 speedbin = nvmem_cell_read(speedbin_nvmem, &len);
220
221 if (IS_ERR(speedbin))
222 return PTR_ERR(speedbin);
223
224 switch (len) {
225 case 4:
226 get_krait_bin_format_a(cpu_dev, &speed, &pvs, &pvs_ver,
227 speedbin_nvmem, speedbin);
228 break;
229 case 8:
230 get_krait_bin_format_b(cpu_dev, &speed, &pvs, &pvs_ver,
231 speedbin_nvmem, speedbin);
232 break;
233 default:
234 dev_err(cpu_dev, "Unable to read nvmem data. Defaulting to 0!\n");
235 return -ENODEV;
236 }
237
238 snprintf(*pvs_name, sizeof("speedXX-pvsXX-vXX"), "speed%d-pvs%d-v%d",
239 speed, pvs, pvs_ver);
240
241 drv->versions = (1 << speed);
242
243 kfree(speedbin);
244 return 0;
245}
246
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200247static const struct qcom_cpufreq_match_data match_data_kryo = {
248 .get_version = qcom_cpufreq_kryo_name_version,
249};
250
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100251static const struct qcom_cpufreq_match_data match_data_krait = {
252 .get_version = qcom_cpufreq_krait_name_version,
253};
254
Niklas Cassel1cb83392019-07-25 12:41:35 +0200255static const char *qcs404_genpd_names[] = { "cpr", NULL };
256
257static const struct qcom_cpufreq_match_data match_data_qcs404 = {
258 .genpd_names = qcs404_genpd_names,
259};
260
Sricharan R7d127092019-07-25 12:41:31 +0200261static int qcom_cpufreq_probe(struct platform_device *pdev)
Ilia Lin46e28562018-05-30 05:39:28 +0300262{
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200263 struct qcom_cpufreq_drv *drv;
Ilia Lin46e28562018-05-30 05:39:28 +0300264 struct nvmem_cell *speedbin_nvmem;
265 struct device_node *np;
266 struct device *cpu_dev;
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100267 char *pvs_name = "speedXX-pvsXX-vXX";
Ilia Lin46e28562018-05-30 05:39:28 +0300268 unsigned cpu;
Sricharan R7d127092019-07-25 12:41:31 +0200269 const struct of_device_id *match;
Ilia Lin46e28562018-05-30 05:39:28 +0300270 int ret;
271
272 cpu_dev = get_cpu_device(0);
Dan Carpenter1dd20582018-06-21 11:06:41 +0300273 if (!cpu_dev)
274 return -ENODEV;
Ilia Lin46e28562018-05-30 05:39:28 +0300275
Ilia Lin46e28562018-05-30 05:39:28 +0300276 np = dev_pm_opp_of_get_opp_desc_node(cpu_dev);
Dan Carpenter1dd20582018-06-21 11:06:41 +0300277 if (!np)
278 return -ENOENT;
Ilia Lin46e28562018-05-30 05:39:28 +0300279
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100280 ret = of_device_is_compatible(np, "operating-points-v2-qcom-cpu");
Ilia Lin46e28562018-05-30 05:39:28 +0300281 if (!ret) {
282 of_node_put(np);
283 return -ENOENT;
284 }
285
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200286 drv = kzalloc(sizeof(*drv), GFP_KERNEL);
287 if (!drv)
288 return -ENOMEM;
289
290 match = pdev->dev.platform_data;
291 drv->data = match->data;
292 if (!drv->data) {
293 ret = -ENODEV;
294 goto free_drv;
Ilia Lin46e28562018-05-30 05:39:28 +0300295 }
296
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200297 if (drv->data->get_version) {
298 speedbin_nvmem = of_nvmem_cell_get(np, NULL);
299 if (IS_ERR(speedbin_nvmem)) {
300 if (PTR_ERR(speedbin_nvmem) != -EPROBE_DEFER)
301 dev_err(cpu_dev,
302 "Could not get nvmem cell: %ld\n",
303 PTR_ERR(speedbin_nvmem));
304 ret = PTR_ERR(speedbin_nvmem);
305 goto free_drv;
306 }
Ilia Lin46e28562018-05-30 05:39:28 +0300307
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100308 ret = drv->data->get_version(cpu_dev,
309 speedbin_nvmem, &pvs_name, drv);
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200310 if (ret) {
311 nvmem_cell_put(speedbin_nvmem);
312 goto free_drv;
313 }
314 nvmem_cell_put(speedbin_nvmem);
315 }
316 of_node_put(np);
317
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100318 drv->names_opp_tables = kcalloc(num_possible_cpus(),
319 sizeof(*drv->names_opp_tables),
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200320 GFP_KERNEL);
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100321 if (!drv->names_opp_tables) {
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200322 ret = -ENOMEM;
323 goto free_drv;
324 }
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100325 drv->hw_opp_tables = kcalloc(num_possible_cpus(),
326 sizeof(*drv->hw_opp_tables),
327 GFP_KERNEL);
328 if (!drv->hw_opp_tables) {
329 ret = -ENOMEM;
330 goto free_opp_names;
331 }
Viresh Kumar03349062019-02-20 16:41:18 +0530332
Niklas Cassel1cb83392019-07-25 12:41:35 +0200333 drv->genpd_opp_tables = kcalloc(num_possible_cpus(),
334 sizeof(*drv->genpd_opp_tables),
335 GFP_KERNEL);
336 if (!drv->genpd_opp_tables) {
337 ret = -ENOMEM;
338 goto free_opp;
339 }
340
Ilia Lin46e28562018-05-30 05:39:28 +0300341 for_each_possible_cpu(cpu) {
342 cpu_dev = get_cpu_device(cpu);
343 if (NULL == cpu_dev) {
344 ret = -ENODEV;
Niklas Cassel1cb83392019-07-25 12:41:35 +0200345 goto free_genpd_opp;
Ilia Lin46e28562018-05-30 05:39:28 +0300346 }
347
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200348 if (drv->data->get_version) {
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100349
350 if (pvs_name) {
351 drv->names_opp_tables[cpu] = dev_pm_opp_set_prop_name(
352 cpu_dev,
353 pvs_name);
354 if (IS_ERR(drv->names_opp_tables[cpu])) {
355 ret = PTR_ERR(drv->names_opp_tables[cpu]);
356 dev_err(cpu_dev, "Failed to add OPP name %s\n",
357 pvs_name);
358 goto free_opp;
359 }
360 }
361
362 drv->hw_opp_tables[cpu] = dev_pm_opp_set_supported_hw(
363 cpu_dev, &drv->versions, 1);
364 if (IS_ERR(drv->hw_opp_tables[cpu])) {
365 ret = PTR_ERR(drv->hw_opp_tables[cpu]);
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200366 dev_err(cpu_dev,
367 "Failed to set supported hardware\n");
Niklas Cassel1cb83392019-07-25 12:41:35 +0200368 goto free_genpd_opp;
369 }
370 }
371
372 if (drv->data->genpd_names) {
373 drv->genpd_opp_tables[cpu] =
374 dev_pm_opp_attach_genpd(cpu_dev,
375 drv->data->genpd_names,
376 NULL);
377 if (IS_ERR(drv->genpd_opp_tables[cpu])) {
378 ret = PTR_ERR(drv->genpd_opp_tables[cpu]);
379 if (ret != -EPROBE_DEFER)
380 dev_err(cpu_dev,
381 "Could not attach to pm_domain: %d\n",
382 ret);
383 goto free_genpd_opp;
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200384 }
Ilia Lin46e28562018-05-30 05:39:28 +0300385 }
386 }
387
388 cpufreq_dt_pdev = platform_device_register_simple("cpufreq-dt", -1,
389 NULL, 0);
Viresh Kumar03349062019-02-20 16:41:18 +0530390 if (!IS_ERR(cpufreq_dt_pdev)) {
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200391 platform_set_drvdata(pdev, drv);
Ilia Lin46e28562018-05-30 05:39:28 +0300392 return 0;
Viresh Kumar03349062019-02-20 16:41:18 +0530393 }
Ilia Lin46e28562018-05-30 05:39:28 +0300394
395 ret = PTR_ERR(cpufreq_dt_pdev);
396 dev_err(cpu_dev, "Failed to register platform device\n");
397
Niklas Cassel1cb83392019-07-25 12:41:35 +0200398free_genpd_opp:
399 for_each_possible_cpu(cpu) {
400 if (IS_ERR_OR_NULL(drv->genpd_opp_tables[cpu]))
401 break;
402 dev_pm_opp_detach_genpd(drv->genpd_opp_tables[cpu]);
403 }
404 kfree(drv->genpd_opp_tables);
Ilia Lin46e28562018-05-30 05:39:28 +0300405free_opp:
406 for_each_possible_cpu(cpu) {
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100407 if (IS_ERR_OR_NULL(drv->names_opp_tables[cpu]))
Ilia Lin46e28562018-05-30 05:39:28 +0300408 break;
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100409 dev_pm_opp_put_prop_name(drv->names_opp_tables[cpu]);
Ilia Lin46e28562018-05-30 05:39:28 +0300410 }
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100411 for_each_possible_cpu(cpu) {
412 if (IS_ERR_OR_NULL(drv->hw_opp_tables[cpu]))
413 break;
414 dev_pm_opp_put_supported_hw(drv->hw_opp_tables[cpu]);
415 }
416 kfree(drv->hw_opp_tables);
417free_opp_names:
418 kfree(drv->names_opp_tables);
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200419free_drv:
420 kfree(drv);
Ilia Lin46e28562018-05-30 05:39:28 +0300421
422 return ret;
423}
424
Sricharan R7d127092019-07-25 12:41:31 +0200425static int qcom_cpufreq_remove(struct platform_device *pdev)
Ilia Lin5ad73462018-06-17 22:01:46 +0200426{
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200427 struct qcom_cpufreq_drv *drv = platform_get_drvdata(pdev);
Viresh Kumar03349062019-02-20 16:41:18 +0530428 unsigned int cpu;
429
Ilia Lin5ad73462018-06-17 22:01:46 +0200430 platform_device_unregister(cpufreq_dt_pdev);
Viresh Kumar03349062019-02-20 16:41:18 +0530431
Niklas Cassel1cb83392019-07-25 12:41:35 +0200432 for_each_possible_cpu(cpu) {
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100433 if (drv->names_opp_tables[cpu])
434 dev_pm_opp_put_supported_hw(drv->names_opp_tables[cpu]);
435 if (drv->hw_opp_tables[cpu])
436 dev_pm_opp_put_supported_hw(drv->hw_opp_tables[cpu]);
Niklas Cassel1cb83392019-07-25 12:41:35 +0200437 if (drv->genpd_opp_tables[cpu])
438 dev_pm_opp_detach_genpd(drv->genpd_opp_tables[cpu]);
439 }
Viresh Kumar03349062019-02-20 16:41:18 +0530440
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100441 kfree(drv->names_opp_tables);
442 kfree(drv->hw_opp_tables);
Niklas Cassel1cb83392019-07-25 12:41:35 +0200443 kfree(drv->genpd_opp_tables);
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200444 kfree(drv);
Viresh Kumar03349062019-02-20 16:41:18 +0530445
Ilia Lin5ad73462018-06-17 22:01:46 +0200446 return 0;
447}
448
Sricharan R7d127092019-07-25 12:41:31 +0200449static struct platform_driver qcom_cpufreq_driver = {
450 .probe = qcom_cpufreq_probe,
451 .remove = qcom_cpufreq_remove,
Ilia Lin46e28562018-05-30 05:39:28 +0300452 .driver = {
Sricharan R7d127092019-07-25 12:41:31 +0200453 .name = "qcom-cpufreq-nvmem",
Ilia Lin46e28562018-05-30 05:39:28 +0300454 },
455};
456
Sricharan R7d127092019-07-25 12:41:31 +0200457static const struct of_device_id qcom_cpufreq_match_list[] __initconst = {
Niklas Cassel57f2f8b2019-07-25 12:41:33 +0200458 { .compatible = "qcom,apq8096", .data = &match_data_kryo },
459 { .compatible = "qcom,msm8996", .data = &match_data_kryo },
Niklas Cassel1cb83392019-07-25 12:41:35 +0200460 { .compatible = "qcom,qcs404", .data = &match_data_qcs404 },
Ansuel Smitha8811ec2020-03-13 18:52:13 +0100461 { .compatible = "qcom,ipq8064", .data = &match_data_krait },
462 { .compatible = "qcom,apq8064", .data = &match_data_krait },
463 { .compatible = "qcom,msm8974", .data = &match_data_krait },
464 { .compatible = "qcom,msm8960", .data = &match_data_krait },
Sricharan R7d127092019-07-25 12:41:31 +0200465 {},
Ilia Lin46e28562018-05-30 05:39:28 +0300466};
467
468/*
469 * Since the driver depends on smem and nvmem drivers, which may
470 * return EPROBE_DEFER, all the real activity is done in the probe,
471 * which may be defered as well. The init here is only registering
472 * the driver and the platform device.
473 */
Sricharan R7d127092019-07-25 12:41:31 +0200474static int __init qcom_cpufreq_init(void)
Ilia Lin46e28562018-05-30 05:39:28 +0300475{
476 struct device_node *np = of_find_node_by_path("/");
477 const struct of_device_id *match;
478 int ret;
479
480 if (!np)
481 return -ENODEV;
482
Sricharan R7d127092019-07-25 12:41:31 +0200483 match = of_match_node(qcom_cpufreq_match_list, np);
Ilia Lin46e28562018-05-30 05:39:28 +0300484 of_node_put(np);
485 if (!match)
486 return -ENODEV;
487
Sricharan R7d127092019-07-25 12:41:31 +0200488 ret = platform_driver_register(&qcom_cpufreq_driver);
Ilia Lin46e28562018-05-30 05:39:28 +0300489 if (unlikely(ret < 0))
490 return ret;
491
Sricharan R7d127092019-07-25 12:41:31 +0200492 cpufreq_pdev = platform_device_register_data(NULL, "qcom-cpufreq-nvmem",
493 -1, match, sizeof(*match));
494 ret = PTR_ERR_OR_ZERO(cpufreq_pdev);
Ilia Lin46e28562018-05-30 05:39:28 +0300495 if (0 == ret)
496 return 0;
497
Sricharan R7d127092019-07-25 12:41:31 +0200498 platform_driver_unregister(&qcom_cpufreq_driver);
Ilia Lin46e28562018-05-30 05:39:28 +0300499 return ret;
500}
Sricharan R7d127092019-07-25 12:41:31 +0200501module_init(qcom_cpufreq_init);
Ilia Lin46e28562018-05-30 05:39:28 +0300502
Sricharan R7d127092019-07-25 12:41:31 +0200503static void __exit qcom_cpufreq_exit(void)
Ilia Lin5ad73462018-06-17 22:01:46 +0200504{
Sricharan R7d127092019-07-25 12:41:31 +0200505 platform_device_unregister(cpufreq_pdev);
506 platform_driver_unregister(&qcom_cpufreq_driver);
Ilia Lin5ad73462018-06-17 22:01:46 +0200507}
Sricharan R7d127092019-07-25 12:41:31 +0200508module_exit(qcom_cpufreq_exit);
Ilia Lin5ad73462018-06-17 22:01:46 +0200509
Sricharan R7d127092019-07-25 12:41:31 +0200510MODULE_DESCRIPTION("Qualcomm Technologies, Inc. CPUfreq driver");
Ilia Lin46e28562018-05-30 05:39:28 +0300511MODULE_LICENSE("GPL v2");