blob: f362eb11e7220ab7b9ae370f14a82c64a2e7cff9 [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
7#include <common.h>
8#include <cpu.h>
9#include <dm.h>
Bin Meng166c3982015-06-12 14:52:18 +080010#include <errno.h>
Simon Glass11f4dc12015-04-28 20:25:09 -060011#include <dm/lists.h>
12#include <dm/root.h>
13
14int cpu_get_desc(struct udevice *dev, char *buf, int size)
15{
16 struct cpu_ops *ops = cpu_get_ops(dev);
17
18 if (!ops->get_desc)
19 return -ENOSYS;
20
21 return ops->get_desc(dev, buf, size);
22}
23
24int cpu_get_info(struct udevice *dev, struct cpu_info *info)
25{
26 struct cpu_ops *ops = cpu_get_ops(dev);
27
Bin Mengcb5cbfd2015-06-12 14:52:19 +080028 if (!ops->get_info)
Simon Glass11f4dc12015-04-28 20:25:09 -060029 return -ENOSYS;
30
31 return ops->get_info(dev, info);
32}
33
Bin Meng780bfdd2015-06-17 11:15:34 +080034int cpu_get_count(struct udevice *dev)
35{
36 struct cpu_ops *ops = cpu_get_ops(dev);
37
38 if (!ops->get_count)
39 return -ENOSYS;
40
41 return ops->get_count(dev);
42}
43
Alexander Graf94eaa792016-08-19 01:23:27 +020044int cpu_get_vendor(struct udevice *dev, char *buf, int size)
45{
46 struct cpu_ops *ops = cpu_get_ops(dev);
47
48 if (!ops->get_vendor)
49 return -ENOSYS;
50
51 return ops->get_vendor(dev, buf, size);
52}
53
Simon Glass11f4dc12015-04-28 20:25:09 -060054U_BOOT_DRIVER(cpu_bus) = {
55 .name = "cpu_bus",
56 .id = UCLASS_SIMPLE_BUS,
57 .per_child_platdata_auto_alloc_size = sizeof(struct cpu_platdata),
58};
59
60static int uclass_cpu_init(struct uclass *uc)
61{
62 struct udevice *dev;
Simon Glass45a26862017-05-18 20:09:07 -060063 ofnode node;
Simon Glass11f4dc12015-04-28 20:25:09 -060064 int ret;
65
Simon Glass45a26862017-05-18 20:09:07 -060066 node = ofnode_path("/cpus");
67 if (!ofnode_valid(node))
Simon Glass11f4dc12015-04-28 20:25:09 -060068 return 0;
69
70 ret = device_bind_driver_to_node(dm_root(), "cpu_bus", "cpus", node,
71 &dev);
72
73 return ret;
74}
75
76UCLASS_DRIVER(cpu) = {
77 .id = UCLASS_CPU,
78 .name = "cpu",
79 .flags = DM_UC_FLAG_SEQ_ALIAS,
80 .init = uclass_cpu_init,
81};