blob: dddd12d1e400a6e685568597312e3b0e5cffdf74 [file] [log] [blame]
Peng Fan43c50872019-08-26 08:12:19 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019 NXP
4 */
5
6#include <common.h>
7#include <cpu.h>
8#include <dm.h>
9#include <thermal.h>
Simon Glass90526e92020-05-10 11:39:56 -060010#include <asm/system.h>
Peng Fan43c50872019-08-26 08:12:19 +000011#include <asm/arch/sci/sci.h>
12#include <asm/arch/sys_proto.h>
13#include <asm/arch-imx/cpu.h>
14#include <asm/armv8/cpu.h>
Simon Glasscd93d622020-05-10 11:40:13 -060015#include <linux/bitops.h>
Peng Fan43c50872019-08-26 08:12:19 +000016
17DECLARE_GLOBAL_DATA_PTR;
18
19struct cpu_imx_platdata {
20 const char *name;
21 const char *rev;
22 const char *type;
23 u32 cpurev;
24 u32 freq_mhz;
Peng Fan177f9992020-05-03 21:58:52 +080025 u32 mpidr;
Peng Fan43c50872019-08-26 08:12:19 +000026};
27
28const char *get_imx8_type(u32 imxtype)
29{
30 switch (imxtype) {
31 case MXC_CPU_IMX8QXP:
32 case MXC_CPU_IMX8QXP_A0:
33 return "QXP";
34 case MXC_CPU_IMX8QM:
35 return "QM";
36 default:
37 return "??";
38 }
39}
40
41const char *get_imx8_rev(u32 rev)
42{
43 switch (rev) {
44 case CHIP_REV_A:
45 return "A";
46 case CHIP_REV_B:
47 return "B";
Frank Li8142a972020-05-03 21:58:55 +080048 case CHIP_REV_C:
49 return "C";
Peng Fan43c50872019-08-26 08:12:19 +000050 default:
51 return "?";
52 }
53}
54
Peng Fan55bc96f2020-05-03 21:58:53 +080055const char *get_core_name(struct udevice *dev)
Peng Fan43c50872019-08-26 08:12:19 +000056{
Peng Fan55bc96f2020-05-03 21:58:53 +080057 if (!device_is_compatible(dev, "arm,cortex-a35"))
Peng Fan43c50872019-08-26 08:12:19 +000058 return "A35";
Peng Fan55bc96f2020-05-03 21:58:53 +080059 else if (!device_is_compatible(dev, "arm,cortex-a53"))
Peng Fan43c50872019-08-26 08:12:19 +000060 return "A53";
Peng Fan55bc96f2020-05-03 21:58:53 +080061 else if (!device_is_compatible(dev, "arm,cortex-a72"))
Peng Fan43c50872019-08-26 08:12:19 +000062 return "A72";
63 else
64 return "?";
65}
66
67#if IS_ENABLED(CONFIG_IMX_SCU_THERMAL)
Ye Li3ee6ea42020-05-03 21:58:54 +080068static int cpu_imx_get_temp(struct cpu_imx_platdata *plat)
Peng Fan43c50872019-08-26 08:12:19 +000069{
70 struct udevice *thermal_dev;
71 int cpu_tmp, ret;
72
Ye Li3ee6ea42020-05-03 21:58:54 +080073 if (!strcmp(plat->name, "A72"))
74 ret = uclass_get_device(UCLASS_THERMAL, 1, &thermal_dev);
75 else
76 ret = uclass_get_device(UCLASS_THERMAL, 0, &thermal_dev);
Peng Fan43c50872019-08-26 08:12:19 +000077
78 if (!ret) {
79 ret = thermal_get_temp(thermal_dev, &cpu_tmp);
80 if (ret)
81 return 0xdeadbeef;
82 } else {
83 return 0xdeadbeef;
84 }
85
86 return cpu_tmp;
87}
88#else
Ye Li3ee6ea42020-05-03 21:58:54 +080089static int cpu_imx_get_temp(struct cpu_imx_platdata *plat)
Peng Fan43c50872019-08-26 08:12:19 +000090{
91 return 0;
92}
93#endif
94
95int cpu_imx_get_desc(struct udevice *dev, char *buf, int size)
96{
97 struct cpu_imx_platdata *plat = dev_get_platdata(dev);
Ye Li3ee6ea42020-05-03 21:58:54 +080098 int ret, temp;
Peng Fan43c50872019-08-26 08:12:19 +000099
100 if (size < 100)
101 return -ENOSPC;
102
103 ret = snprintf(buf, size, "NXP i.MX8%s Rev%s %s at %u MHz",
104 plat->type, plat->rev, plat->name, plat->freq_mhz);
105
106 if (IS_ENABLED(CONFIG_IMX_SCU_THERMAL)) {
Ye Li3ee6ea42020-05-03 21:58:54 +0800107 temp = cpu_imx_get_temp(plat);
Peng Fan43c50872019-08-26 08:12:19 +0000108 buf = buf + ret;
109 size = size - ret;
Ye Li3ee6ea42020-05-03 21:58:54 +0800110 if (temp != 0xdeadbeef)
111 ret = snprintf(buf, size, " at %dC", temp);
112 else
113 ret = snprintf(buf, size, " - invalid sensor data");
Peng Fan43c50872019-08-26 08:12:19 +0000114 }
115
116 snprintf(buf + ret, size - ret, "\n");
117
118 return 0;
119}
120
121static int cpu_imx_get_info(struct udevice *dev, struct cpu_info *info)
122{
123 struct cpu_imx_platdata *plat = dev_get_platdata(dev);
124
125 info->cpu_freq = plat->freq_mhz * 1000;
126 info->features = BIT(CPU_FEAT_L1_CACHE) | BIT(CPU_FEAT_MMU);
127 return 0;
128}
129
130static int cpu_imx_get_count(struct udevice *dev)
131{
Peng Fanadb3bd72020-05-03 21:58:51 +0800132 ofnode node;
133 int num = 0;
134
135 ofnode_for_each_subnode(node, dev_ofnode(dev->parent)) {
136 const char *device_type;
137
138 if (!ofnode_is_available(node))
139 continue;
140
141 device_type = ofnode_read_string(node, "device_type");
142 if (!device_type)
143 continue;
144
145 if (!strcmp(device_type, "cpu"))
146 num++;
147 }
148
149 return num;
Peng Fan43c50872019-08-26 08:12:19 +0000150}
151
152static int cpu_imx_get_vendor(struct udevice *dev, char *buf, int size)
153{
154 snprintf(buf, size, "NXP");
155 return 0;
156}
157
Peng Fan177f9992020-05-03 21:58:52 +0800158static int cpu_imx_is_current(struct udevice *dev)
159{
160 struct cpu_imx_platdata *plat = dev_get_platdata(dev);
161
162 if (plat->mpidr == (read_mpidr() & 0xffff))
163 return 1;
164
165 return 0;
166}
167
Peng Fan43c50872019-08-26 08:12:19 +0000168static const struct cpu_ops cpu_imx8_ops = {
169 .get_desc = cpu_imx_get_desc,
170 .get_info = cpu_imx_get_info,
171 .get_count = cpu_imx_get_count,
172 .get_vendor = cpu_imx_get_vendor,
Peng Fan177f9992020-05-03 21:58:52 +0800173 .is_current = cpu_imx_is_current,
Peng Fan43c50872019-08-26 08:12:19 +0000174};
175
176static const struct udevice_id cpu_imx8_ids[] = {
177 { .compatible = "arm,cortex-a35" },
178 { .compatible = "arm,cortex-a53" },
Peng Fan177f9992020-05-03 21:58:52 +0800179 { .compatible = "arm,cortex-a72" },
Peng Fan43c50872019-08-26 08:12:19 +0000180 { }
181};
182
Peng Fan55bc96f2020-05-03 21:58:53 +0800183static ulong imx8_get_cpu_rate(struct udevice *dev)
Peng Fan43c50872019-08-26 08:12:19 +0000184{
185 ulong rate;
Peng Fan55bc96f2020-05-03 21:58:53 +0800186 int ret, type;
187
188 if (!device_is_compatible(dev, "arm,cortex-a35"))
189 type = SC_R_A35;
190 else if (!device_is_compatible(dev, "arm,cortex-a53"))
191 type = SC_R_A53;
192 else if (!device_is_compatible(dev, "arm,cortex-a72"))
193 type = SC_R_A72;
194 else
195 return 0;
Peng Fan43c50872019-08-26 08:12:19 +0000196
197 ret = sc_pm_get_clock_rate(-1, type, SC_PM_CLK_CPU,
198 (sc_pm_clock_rate_t *)&rate);
199 if (ret) {
200 printf("Could not read CPU frequency: %d\n", ret);
201 return 0;
202 }
203
204 return rate;
205}
206
207static int imx8_cpu_probe(struct udevice *dev)
208{
209 struct cpu_imx_platdata *plat = dev_get_platdata(dev);
210 u32 cpurev;
211
212 cpurev = get_cpu_rev();
213 plat->cpurev = cpurev;
Peng Fan55bc96f2020-05-03 21:58:53 +0800214 plat->name = get_core_name(dev);
Peng Fan43c50872019-08-26 08:12:19 +0000215 plat->rev = get_imx8_rev(cpurev & 0xFFF);
216 plat->type = get_imx8_type((cpurev & 0xFF000) >> 12);
Peng Fan55bc96f2020-05-03 21:58:53 +0800217 plat->freq_mhz = imx8_get_cpu_rate(dev) / 1000000;
Peng Fan177f9992020-05-03 21:58:52 +0800218 plat->mpidr = dev_read_addr(dev);
219 if (plat->mpidr == FDT_ADDR_T_NONE) {
220 printf("%s: Failed to get CPU reg property\n", __func__);
221 return -EINVAL;
222 }
223
Peng Fan43c50872019-08-26 08:12:19 +0000224 return 0;
225}
226
227U_BOOT_DRIVER(cpu_imx8_drv) = {
228 .name = "imx8x_cpu",
229 .id = UCLASS_CPU,
230 .of_match = cpu_imx8_ids,
231 .ops = &cpu_imx8_ops,
232 .probe = imx8_cpu_probe,
233 .platdata_auto_alloc_size = sizeof(struct cpu_imx_platdata),
234 .flags = DM_FLAG_PRE_RELOC,
235};