Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Google, Inc |
| 4 | * Written by Simon Glass <sjg@chromium.org> |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __CPU_H |
| 8 | #define __CPU_H |
| 9 | |
| 10 | /** |
| 11 | * struct cpu_platdata - platform data for a CPU |
Mario Six | 50d188b | 2018-08-06 10:23:42 +0200 | [diff] [blame] | 12 | * @cpu_id: Platform-specific way of identifying the CPU. |
| 13 | * @ucode_version: Microcode version, if CPU_FEAT_UCODE is set |
| 14 | * @device_id: Driver-defined device identifier |
| 15 | * @family: DMTF CPU Family identifier |
| 16 | * @id: DMTF CPU Processor identifier |
Bin Meng | b859694 | 2018-12-12 06:12:24 -0800 | [diff] [blame] | 17 | * @timebase_freq: the current frequency at which the cpu timer timebase |
| 18 | * registers are updated (in Hz) |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 19 | * |
| 20 | * This can be accessed with dev_get_parent_platdata() for any UCLASS_CPU |
| 21 | * device. |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 22 | */ |
| 23 | struct cpu_platdata { |
| 24 | int cpu_id; |
Simon Glass | 740d5d3 | 2016-03-06 19:27:49 -0700 | [diff] [blame] | 25 | int ucode_version; |
| 26 | ulong device_id; |
Mario Six | 50d188b | 2018-08-06 10:23:42 +0200 | [diff] [blame] | 27 | u16 family; |
| 28 | u32 id[2]; |
Bin Meng | b859694 | 2018-12-12 06:12:24 -0800 | [diff] [blame] | 29 | u32 timebase_freq; |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | /* CPU features - mostly just a placeholder for now */ |
| 33 | enum { |
| 34 | CPU_FEAT_L1_CACHE = 0, /* Supports level 1 cache */ |
| 35 | CPU_FEAT_MMU = 1, /* Supports virtual memory */ |
Simon Glass | 740d5d3 | 2016-03-06 19:27:49 -0700 | [diff] [blame] | 36 | CPU_FEAT_UCODE = 2, /* Requires/uses microcode */ |
| 37 | CPU_FEAT_DEVICE_ID = 3, /* Provides a device ID */ |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 38 | |
| 39 | CPU_FEAT_COUNT, |
| 40 | }; |
| 41 | |
| 42 | /** |
| 43 | * struct cpu_info - Information about a CPU |
| 44 | * |
| 45 | * @cpu_freq: Current CPU frequency in Hz |
| 46 | * @features: Flags for supported CPU features |
Simon Glass | 600f584 | 2020-04-08 16:57:20 -0600 | [diff] [blame] | 47 | * @address_width: Width of the CPU address space in bits (e.g. 32) |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 48 | */ |
| 49 | struct cpu_info { |
| 50 | ulong cpu_freq; |
| 51 | ulong features; |
Simon Glass | 600f584 | 2020-04-08 16:57:20 -0600 | [diff] [blame] | 52 | uint address_width; |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | struct cpu_ops { |
| 56 | /** |
| 57 | * get_desc() - Get a description string for a CPU |
| 58 | * |
| 59 | * @dev: Device to check (UCLASS_CPU) |
| 60 | * @buf: Buffer to place string |
| 61 | * @size: Size of string space |
| 62 | * @return 0 if OK, -ENOSPC if buffer is too small, other -ve on error |
| 63 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 64 | int (*get_desc)(const struct udevice *dev, char *buf, int size); |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 65 | |
| 66 | /** |
| 67 | * get_info() - Get information about a CPU |
| 68 | * |
| 69 | * @dev: Device to check (UCLASS_CPU) |
| 70 | * @info: Returns CPU info |
| 71 | * @return 0 if OK, -ve on error |
| 72 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 73 | int (*get_info)(const struct udevice *dev, struct cpu_info *info); |
Bin Meng | 780bfdd | 2015-06-17 11:15:34 +0800 | [diff] [blame] | 74 | |
| 75 | /** |
| 76 | * get_count() - Get number of CPUs |
| 77 | * |
| 78 | * @dev: Device to check (UCLASS_CPU) |
| 79 | * @return CPU count if OK, -ve on error |
| 80 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 81 | int (*get_count)(const struct udevice *dev); |
Alexander Graf | 94eaa79 | 2016-08-19 01:23:27 +0200 | [diff] [blame] | 82 | |
| 83 | /** |
| 84 | * get_vendor() - Get vendor name of a CPU |
| 85 | * |
| 86 | * @dev: Device to check (UCLASS_CPU) |
| 87 | * @buf: Buffer to place string |
| 88 | * @size: Size of string space |
| 89 | * @return 0 if OK, -ENOSPC if buffer is too small, other -ve on error |
| 90 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 91 | int (*get_vendor)(const struct udevice *dev, char *buf, int size); |
Peng Fan | 4c809ae | 2020-05-03 21:58:47 +0800 | [diff] [blame] | 92 | |
| 93 | /** |
| 94 | * is_current() - Check if the CPU that U-Boot is currently running from |
| 95 | * |
| 96 | * @dev: Device to check (UCLASS_CPU) |
| 97 | * @return 1 if the CPU that U-Boot is currently running from, 0 |
| 98 | * if not. |
| 99 | */ |
| 100 | int (*is_current)(struct udevice *dev); |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | #define cpu_get_ops(dev) ((struct cpu_ops *)(dev)->driver->ops) |
| 104 | |
| 105 | /** |
| 106 | * cpu_get_desc() - Get a description string for a CPU |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 107 | * @dev: Device to check (UCLASS_CPU) |
| 108 | * @buf: Buffer to place string |
| 109 | * @size: Size of string space |
Mario Six | 50d188b | 2018-08-06 10:23:42 +0200 | [diff] [blame] | 110 | * |
| 111 | * Return: 0 if OK, -ENOSPC if buffer is too small, other -ve on error |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 112 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 113 | int cpu_get_desc(const struct udevice *dev, char *buf, int size); |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 114 | |
| 115 | /** |
| 116 | * cpu_get_info() - Get information about a CPU |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 117 | * @dev: Device to check (UCLASS_CPU) |
| 118 | * @info: Returns CPU info |
Mario Six | 50d188b | 2018-08-06 10:23:42 +0200 | [diff] [blame] | 119 | * |
| 120 | * Return: 0 if OK, -ve on error |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 121 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 122 | int cpu_get_info(const struct udevice *dev, struct cpu_info *info); |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 123 | |
Bin Meng | 780bfdd | 2015-06-17 11:15:34 +0800 | [diff] [blame] | 124 | /** |
| 125 | * cpu_get_count() - Get number of CPUs |
Bin Meng | 780bfdd | 2015-06-17 11:15:34 +0800 | [diff] [blame] | 126 | * @dev: Device to check (UCLASS_CPU) |
Mario Six | 50d188b | 2018-08-06 10:23:42 +0200 | [diff] [blame] | 127 | * |
| 128 | * Return: CPU count if OK, -ve on error |
Bin Meng | 780bfdd | 2015-06-17 11:15:34 +0800 | [diff] [blame] | 129 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 130 | int cpu_get_count(const struct udevice *dev); |
Bin Meng | 780bfdd | 2015-06-17 11:15:34 +0800 | [diff] [blame] | 131 | |
Alexander Graf | 94eaa79 | 2016-08-19 01:23:27 +0200 | [diff] [blame] | 132 | /** |
| 133 | * cpu_get_vendor() - Get vendor name of a CPU |
Alexander Graf | 94eaa79 | 2016-08-19 01:23:27 +0200 | [diff] [blame] | 134 | * @dev: Device to check (UCLASS_CPU) |
| 135 | * @buf: Buffer to place string |
| 136 | * @size: Size of string space |
Mario Six | 50d188b | 2018-08-06 10:23:42 +0200 | [diff] [blame] | 137 | * |
| 138 | * Return: 0 if OK, -ENOSPC if buffer is too small, other -ve on error |
Alexander Graf | 94eaa79 | 2016-08-19 01:23:27 +0200 | [diff] [blame] | 139 | */ |
Simon Glass | 961420f | 2020-01-26 22:06:27 -0700 | [diff] [blame] | 140 | int cpu_get_vendor(const struct udevice *dev, char *buf, int size); |
Alexander Graf | 94eaa79 | 2016-08-19 01:23:27 +0200 | [diff] [blame] | 141 | |
Mario Six | 57370de | 2018-08-06 10:23:43 +0200 | [diff] [blame] | 142 | /** |
| 143 | * cpu_probe_all() - Probe all available CPUs |
| 144 | * |
| 145 | * Return: 0 if OK, -ve on error |
| 146 | */ |
| 147 | int cpu_probe_all(void); |
| 148 | |
Peng Fan | 4c809ae | 2020-05-03 21:58:47 +0800 | [diff] [blame] | 149 | /** |
| 150 | * cpu_is_current() - Check if the CPU that U-Boot is currently running from |
| 151 | * |
| 152 | * Return: 1 if yes, - 0 if not |
| 153 | */ |
| 154 | int cpu_is_current(struct udevice *cpu); |
| 155 | |
| 156 | /** |
| 157 | * cpu_get_current_dev() - Get CPU udevice for current CPU |
| 158 | * |
| 159 | * Return: udevice if OK, - NULL on error |
| 160 | */ |
| 161 | struct udevice *cpu_get_current_dev(void); |
| 162 | |
Simon Glass | 11f4dc1 | 2015-04-28 20:25:09 -0600 | [diff] [blame] | 163 | #endif |