blob: a5cda6a62c41511e9ff45df635b14f6c877caa87 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass11f4dc12015-04-28 20:25:09 -06002/*
3 * Copyright (C) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass11f4dc12015-04-28 20:25:09 -06005 */
6
Patrick Delaunayb953ec22021-04-27 11:02:19 +02007#define LOG_CATEGORY UCLASS_CPU
8
Simon Glass11f4dc12015-04-28 20:25:09 -06009#include <common.h>
10#include <cpu.h>
11#include <dm.h>
Bin Meng166c3982015-06-12 14:52:18 +080012#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Simon Glass11f4dc12015-04-28 20:25:09 -060014#include <dm/lists.h>
15#include <dm/root.h>
Peng Fan4c809ae2020-05-03 21:58:47 +080016#include <linux/err.h>
Simon Glass11f4dc12015-04-28 20:25:09 -060017
Mario Six57370de2018-08-06 10:23:43 +020018int cpu_probe_all(void)
19{
20 struct udevice *cpu;
21 int ret;
22
23 ret = uclass_first_device(UCLASS_CPU, &cpu);
24 if (ret) {
25 debug("%s: No CPU found (err = %d)\n", __func__, ret);
26 return ret;
27 }
28
29 while (cpu) {
30 ret = uclass_next_device(&cpu);
31 if (ret) {
32 debug("%s: Error while probing CPU (err = %d)\n",
33 __func__, ret);
34 return ret;
35 }
36 }
37
38 return 0;
39}
40
Peng Fan4c809ae2020-05-03 21:58:47 +080041int cpu_is_current(struct udevice *cpu)
42{
43 struct cpu_ops *ops = cpu_get_ops(cpu);
44
45 if (ops->is_current) {
46 if (ops->is_current(cpu))
47 return 1;
48 }
49
50 return -ENOSYS;
51}
52
53struct udevice *cpu_get_current_dev(void)
54{
55 struct udevice *cpu;
56 int ret;
57
58 uclass_foreach_dev_probe(UCLASS_CPU, cpu) {
59 if (cpu_is_current(cpu) > 0)
60 return cpu;
61 }
62
63 /* If can't find current cpu device, use the first dev instead */
64 ret = uclass_first_device_err(UCLASS_CPU, &cpu);
65 if (ret) {
66 debug("%s: Could not get CPU device (err = %d)\n",
67 __func__, ret);
68 return NULL;
69 }
70
71 return cpu;
72}
73
Simon Glass961420f2020-01-26 22:06:27 -070074int cpu_get_desc(const struct udevice *dev, char *buf, int size)
Simon Glass11f4dc12015-04-28 20:25:09 -060075{
76 struct cpu_ops *ops = cpu_get_ops(dev);
77
78 if (!ops->get_desc)
79 return -ENOSYS;
80
81 return ops->get_desc(dev, buf, size);
82}
83
Simon Glass961420f2020-01-26 22:06:27 -070084int cpu_get_info(const struct udevice *dev, struct cpu_info *info)
Simon Glass11f4dc12015-04-28 20:25:09 -060085{
86 struct cpu_ops *ops = cpu_get_ops(dev);
87
Bin Mengcb5cbfd2015-06-12 14:52:19 +080088 if (!ops->get_info)
Simon Glass11f4dc12015-04-28 20:25:09 -060089 return -ENOSYS;
90
Sagar Shrikant Kadam969251a2020-06-28 07:45:01 -070091 /* Init cpu_info to 0 */
92 memset(info, 0, sizeof(struct cpu_info));
93
Simon Glass11f4dc12015-04-28 20:25:09 -060094 return ops->get_info(dev, info);
95}
96
Simon Glass961420f2020-01-26 22:06:27 -070097int cpu_get_count(const struct udevice *dev)
Bin Meng780bfdd2015-06-17 11:15:34 +080098{
99 struct cpu_ops *ops = cpu_get_ops(dev);
100
101 if (!ops->get_count)
102 return -ENOSYS;
103
104 return ops->get_count(dev);
105}
106
Simon Glass961420f2020-01-26 22:06:27 -0700107int cpu_get_vendor(const struct udevice *dev, char *buf, int size)
Alexander Graf94eaa792016-08-19 01:23:27 +0200108{
109 struct cpu_ops *ops = cpu_get_ops(dev);
110
111 if (!ops->get_vendor)
112 return -ENOSYS;
113
114 return ops->get_vendor(dev, buf, size);
115}
116
Simon Glass11f4dc12015-04-28 20:25:09 -0600117U_BOOT_DRIVER(cpu_bus) = {
118 .name = "cpu_bus",
119 .id = UCLASS_SIMPLE_BUS,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700120 .per_child_plat_auto = sizeof(struct cpu_plat),
Simon Glass11f4dc12015-04-28 20:25:09 -0600121};
122
123static int uclass_cpu_init(struct uclass *uc)
124{
125 struct udevice *dev;
Simon Glass45a26862017-05-18 20:09:07 -0600126 ofnode node;
Simon Glass11f4dc12015-04-28 20:25:09 -0600127 int ret;
128
Simon Glass45a26862017-05-18 20:09:07 -0600129 node = ofnode_path("/cpus");
130 if (!ofnode_valid(node))
Simon Glass11f4dc12015-04-28 20:25:09 -0600131 return 0;
132
133 ret = device_bind_driver_to_node(dm_root(), "cpu_bus", "cpus", node,
134 &dev);
135
136 return ret;
137}
138
139UCLASS_DRIVER(cpu) = {
140 .id = UCLASS_CPU,
141 .name = "cpu",
142 .flags = DM_UC_FLAG_SEQ_ALIAS,
143 .init = uclass_cpu_init,
144};