Simon Glass | 131a645 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Google, Inc |
| 3 | * Written by Simon Glass <sjg@chromium.org> |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <cpu.h> |
| 10 | #include <dm.h> |
Bin Meng | b891f78 | 2015-06-12 14:52:18 +0800 | [diff] [blame] | 11 | #include <errno.h> |
Simon Glass | 131a645 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 12 | #include <dm/lists.h> |
| 13 | #include <dm/root.h> |
| 14 | |
| 15 | int cpu_get_desc(struct udevice *dev, char *buf, int size) |
| 16 | { |
| 17 | struct cpu_ops *ops = cpu_get_ops(dev); |
| 18 | |
| 19 | if (!ops->get_desc) |
| 20 | return -ENOSYS; |
| 21 | |
| 22 | return ops->get_desc(dev, buf, size); |
| 23 | } |
| 24 | |
| 25 | int cpu_get_info(struct udevice *dev, struct cpu_info *info) |
| 26 | { |
| 27 | struct cpu_ops *ops = cpu_get_ops(dev); |
| 28 | |
Bin Meng | 6e02ec8 | 2015-06-12 14:52:19 +0800 | [diff] [blame] | 29 | if (!ops->get_info) |
Simon Glass | 131a645 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 30 | return -ENOSYS; |
| 31 | |
| 32 | return ops->get_info(dev, info); |
| 33 | } |
| 34 | |
Bin Meng | d13b014 | 2015-06-17 11:15:34 +0800 | [diff] [blame] | 35 | int cpu_get_count(struct udevice *dev) |
| 36 | { |
| 37 | struct cpu_ops *ops = cpu_get_ops(dev); |
| 38 | |
| 39 | if (!ops->get_count) |
| 40 | return -ENOSYS; |
| 41 | |
| 42 | return ops->get_count(dev); |
| 43 | } |
| 44 | |
Alexander Graf | 67f66bd | 2016-08-19 01:23:27 +0200 | [diff] [blame] | 45 | int cpu_get_vendor(struct udevice *dev, char *buf, int size) |
| 46 | { |
| 47 | struct cpu_ops *ops = cpu_get_ops(dev); |
| 48 | |
| 49 | if (!ops->get_vendor) |
| 50 | return -ENOSYS; |
| 51 | |
| 52 | return ops->get_vendor(dev, buf, size); |
| 53 | } |
| 54 | |
Simon Glass | 131a645 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 55 | U_BOOT_DRIVER(cpu_bus) = { |
| 56 | .name = "cpu_bus", |
| 57 | .id = UCLASS_SIMPLE_BUS, |
| 58 | .per_child_platdata_auto_alloc_size = sizeof(struct cpu_platdata), |
| 59 | }; |
| 60 | |
| 61 | static int uclass_cpu_init(struct uclass *uc) |
| 62 | { |
| 63 | struct udevice *dev; |
Simon Glass | e6dd8da | 2017-05-18 20:09:07 -0600 | [diff] [blame] | 64 | ofnode node; |
Simon Glass | 131a645 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 65 | int ret; |
| 66 | |
Simon Glass | e6dd8da | 2017-05-18 20:09:07 -0600 | [diff] [blame] | 67 | node = ofnode_path("/cpus"); |
| 68 | if (!ofnode_valid(node)) |
Simon Glass | 131a645 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 69 | return 0; |
| 70 | |
| 71 | ret = device_bind_driver_to_node(dm_root(), "cpu_bus", "cpus", node, |
| 72 | &dev); |
| 73 | |
| 74 | return ret; |
| 75 | } |
| 76 | |
| 77 | UCLASS_DRIVER(cpu) = { |
| 78 | .id = UCLASS_CPU, |
| 79 | .name = "cpu", |
| 80 | .flags = DM_UC_FLAG_SEQ_ALIAS, |
| 81 | .init = uclass_cpu_init, |
| 82 | }; |