blob: 74b9b93d511bd167c9e4a666e20b3a7e9e748761 [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.
12 * The qcom-cpufreq-kryo driver reads the msm-id and efuse value from the SoC
13 * 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>
25#include <linux/platform_device.h>
26#include <linux/pm_opp.h>
27#include <linux/slab.h>
28#include <linux/soc/qcom/smem.h>
29
30#define MSM_ID_SMEM 137
31
32enum _msm_id {
33 MSM8996V3 = 0xF6ul,
34 APQ8096V3 = 0x123ul,
35 MSM8996SG = 0x131ul,
36 APQ8096SG = 0x138ul,
37};
38
39enum _msm8996_version {
40 MSM8996_V3,
41 MSM8996_SG,
42 NUM_OF_MSM8996_VERSIONS,
43};
44
45static enum _msm8996_version __init qcom_cpufreq_kryo_get_msm_id(void)
46{
47 size_t len;
48 u32 *msm_id;
49 enum _msm8996_version version;
50
51 msm_id = qcom_smem_get(QCOM_SMEM_HOST_ANY, MSM_ID_SMEM, &len);
52 if (IS_ERR(msm_id))
53 return NUM_OF_MSM8996_VERSIONS;
54
55 /* The first 4 bytes are format, next to them is the actual msm-id */
56 msm_id++;
57
58 switch ((enum _msm_id)*msm_id) {
59 case MSM8996V3:
60 case APQ8096V3:
61 version = MSM8996_V3;
62 break;
63 case MSM8996SG:
64 case APQ8096SG:
65 version = MSM8996_SG;
66 break;
67 default:
68 version = NUM_OF_MSM8996_VERSIONS;
69 }
70
71 return version;
72}
73
74static int qcom_cpufreq_kryo_probe(struct platform_device *pdev)
75{
76 struct opp_table *opp_tables[NR_CPUS] = {0};
77 struct platform_device *cpufreq_dt_pdev;
78 enum _msm8996_version msm8996_version;
79 struct nvmem_cell *speedbin_nvmem;
80 struct device_node *np;
81 struct device *cpu_dev;
82 unsigned cpu;
83 u8 *speedbin;
84 u32 versions;
85 size_t len;
86 int ret;
87
88 cpu_dev = get_cpu_device(0);
89 if (NULL == cpu_dev)
90 ret = -ENODEV;
91
92 msm8996_version = qcom_cpufreq_kryo_get_msm_id();
93 if (NUM_OF_MSM8996_VERSIONS == msm8996_version) {
94 dev_err(cpu_dev, "Not Snapdragon 820/821!");
95 return -ENODEV;
96 }
97
98 np = dev_pm_opp_of_get_opp_desc_node(cpu_dev);
99 if (IS_ERR(np))
100 return PTR_ERR(np);
101
102 ret = of_device_is_compatible(np, "operating-points-v2-kryo-cpu");
103 if (!ret) {
104 of_node_put(np);
105 return -ENOENT;
106 }
107
108 speedbin_nvmem = of_nvmem_cell_get(np, NULL);
109 of_node_put(np);
110 if (IS_ERR(speedbin_nvmem)) {
111 dev_err(cpu_dev, "Could not get nvmem cell: %ld\n",
112 PTR_ERR(speedbin_nvmem));
113 return PTR_ERR(speedbin_nvmem);
114 }
115
116 speedbin = nvmem_cell_read(speedbin_nvmem, &len);
117 nvmem_cell_put(speedbin_nvmem);
Ilia Linee3dbcf2018-06-17 21:58:42 +0200118 if (IS_ERR(speedbin))
119 return PTR_ERR(speedbin);
Ilia Lin46e28562018-05-30 05:39:28 +0300120
121 switch (msm8996_version) {
122 case MSM8996_V3:
123 versions = 1 << (unsigned int)(*speedbin);
124 break;
125 case MSM8996_SG:
126 versions = 1 << ((unsigned int)(*speedbin) + 4);
127 break;
128 default:
129 BUG();
130 break;
131 }
Ilia Linee3dbcf2018-06-17 21:58:42 +0200132 kfree(speedbin);
Ilia Lin46e28562018-05-30 05:39:28 +0300133
134 for_each_possible_cpu(cpu) {
135 cpu_dev = get_cpu_device(cpu);
136 if (NULL == cpu_dev) {
137 ret = -ENODEV;
138 goto free_opp;
139 }
140
141 opp_tables[cpu] = dev_pm_opp_set_supported_hw(cpu_dev,
142 &versions, 1);
143 if (IS_ERR(opp_tables[cpu])) {
144 ret = PTR_ERR(opp_tables[cpu]);
145 dev_err(cpu_dev, "Failed to set supported hardware\n");
146 goto free_opp;
147 }
148 }
149
150 cpufreq_dt_pdev = platform_device_register_simple("cpufreq-dt", -1,
151 NULL, 0);
152 if (!IS_ERR(cpufreq_dt_pdev))
153 return 0;
154
155 ret = PTR_ERR(cpufreq_dt_pdev);
156 dev_err(cpu_dev, "Failed to register platform device\n");
157
158free_opp:
159 for_each_possible_cpu(cpu) {
160 if (IS_ERR_OR_NULL(opp_tables[cpu]))
161 break;
162 dev_pm_opp_put_supported_hw(opp_tables[cpu]);
163 }
164
165 return ret;
166}
167
168static struct platform_driver qcom_cpufreq_kryo_driver = {
169 .probe = qcom_cpufreq_kryo_probe,
170 .driver = {
171 .name = "qcom-cpufreq-kryo",
172 },
173};
174
175static const struct of_device_id qcom_cpufreq_kryo_match_list[] __initconst = {
176 { .compatible = "qcom,apq8096", },
177 { .compatible = "qcom,msm8996", },
178};
179
180/*
181 * Since the driver depends on smem and nvmem drivers, which may
182 * return EPROBE_DEFER, all the real activity is done in the probe,
183 * which may be defered as well. The init here is only registering
184 * the driver and the platform device.
185 */
186static int __init qcom_cpufreq_kryo_init(void)
187{
188 struct device_node *np = of_find_node_by_path("/");
189 const struct of_device_id *match;
190 int ret;
191
192 if (!np)
193 return -ENODEV;
194
195 match = of_match_node(qcom_cpufreq_kryo_match_list, np);
196 of_node_put(np);
197 if (!match)
198 return -ENODEV;
199
200 ret = platform_driver_register(&qcom_cpufreq_kryo_driver);
201 if (unlikely(ret < 0))
202 return ret;
203
204 ret = PTR_ERR_OR_ZERO(platform_device_register_simple(
205 "qcom-cpufreq-kryo", -1, NULL, 0));
206 if (0 == ret)
207 return 0;
208
209 platform_driver_unregister(&qcom_cpufreq_kryo_driver);
210 return ret;
211}
212module_init(qcom_cpufreq_kryo_init);
213
214MODULE_DESCRIPTION("Qualcomm Technologies, Inc. Kryo CPUfreq driver");
215MODULE_LICENSE("GPL v2");