]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/sysinfo.h
imx: imxrt1050-evk: Add support for SPI flash booting
[thirdparty/u-boot.git] / include / sysinfo.h
CommitLineData
5381c285
MS
1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2017
4 * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
5 */
6
56a3433e
TR
7#ifndef __SYSINFO_H__
8#define __SYSINFO_H__
9
e2e69291
MK
10#include <linux/errno.h>
11
401d1c4f
SG
12struct udevice;
13
5381c285
MS
14/*
15 * This uclass encapsulates hardware methods to gather information about a
3a8ee3df 16 * sysinfo or a specific device such as hard-wired GPIOs on GPIO expanders,
5381c285
MS
17 * read-only data in flash ICs, or similar.
18 *
19 * The interface offers functions to read the usual standard data types (bool,
20 * int, string) from the device, each of which is identified by a static
21 * numeric ID (which will usually be defined as a enum in a header file).
22 *
3a8ee3df 23 * If for example the sysinfo had a read-only serial number flash IC, we could
5381c285
MS
24 * call
25 *
3a8ee3df 26 * ret = sysinfo_detect(dev);
5381c285 27 * if (ret) {
3a8ee3df 28 * debug("sysinfo device not found.");
5381c285
MS
29 * return ret;
30 * }
31 *
3a8ee3df 32 * ret = sysinfo_get_int(dev, ID_SERIAL_NUMBER, &serial);
5381c285
MS
33 * if (ret) {
34 * debug("Error when reading serial number from device.");
35 * return ret;
36 * }
37 *
38 * to read the serial number.
39 */
40
07c9e683
SG
41/** enum sysinfo_id - Standard IDs defined by U-Boot */
42enum sysinfo_id {
43 SYSINFO_ID_NONE,
44
96dedb0d 45 /* For SMBIOS tables */
07c9e683
SG
46 SYSINFO_ID_SMBIOS_SYSTEM_VERSION,
47 SYSINFO_ID_SMBIOS_BASEBOARD_VERSION,
48
96dedb0d
SG
49 /* For show_board_info() */
50 SYSINFO_ID_BOARD_MODEL,
6f646d13
SG
51 SYSINFO_ID_BOARD_MANUFACTURER,
52 SYSINFO_ID_PRIOR_STAGE_VERSION,
53 SYSINFO_ID_PRIOR_STAGE_DATE,
96dedb0d 54
07c9e683
SG
55 /* First value available for downstream/board used */
56 SYSINFO_ID_USER = 0x1000,
57};
58
3a8ee3df 59struct sysinfo_ops {
5381c285
MS
60 /**
61 * detect() - Run the hardware info detection procedure for this
62 * device.
63 * @dev: The device containing the information
64 *
65 * This operation might take a long time (e.g. read from EEPROM,
66 * check the presence of a device on a bus etc.), hence this is not
67 * done in the probe() method, but later during operation in this
4d65c6bc
SA
68 * dedicated method. This method will be called before any other
69 * methods.
5381c285
MS
70 *
71 * Return: 0 if OK, -ve on error.
72 */
73 int (*detect)(struct udevice *dev);
74
75 /**
76 * get_bool() - Read a specific bool data value that describes the
77 * hardware setup.
3a8ee3df 78 * @dev: The sysinfo instance to gather the data.
5381c285
MS
79 * @id: A unique identifier for the bool value to be read.
80 * @val: Pointer to a buffer that receives the value read.
81 *
82 * Return: 0 if OK, -ve on error.
83 */
84 int (*get_bool)(struct udevice *dev, int id, bool *val);
85
86 /**
87 * get_int() - Read a specific int data value that describes the
88 * hardware setup.
3a8ee3df 89 * @dev: The sysinfo instance to gather the data.
5381c285
MS
90 * @id: A unique identifier for the int value to be read.
91 * @val: Pointer to a buffer that receives the value read.
92 *
93 * Return: 0 if OK, -ve on error.
94 */
95 int (*get_int)(struct udevice *dev, int id, int *val);
96
97 /**
98 * get_str() - Read a specific string data value that describes the
99 * hardware setup.
3a8ee3df 100 * @dev: The sysinfo instance to gather the data.
5381c285
MS
101 * @id: A unique identifier for the string value to be read.
102 * @size: The size of the buffer to receive the string data.
103 * @val: Pointer to a buffer that receives the value read.
104 *
105 * Return: 0 if OK, -ve on error.
106 */
107 int (*get_str)(struct udevice *dev, int id, size_t size, char *val);
d42730e8
JJH
108
109 /**
110 * get_fit_loadable - Get the name of an image to load from FIT
111 * This function can be used to provide the image names based on runtime
112 * detection. A classic use-case would when DTBOs are used to describe
4d65c6bc 113 * additional daughter cards.
d42730e8 114 *
3a8ee3df 115 * @dev: The sysinfo instance to gather the data.
d42730e8
JJH
116 * @index: Index of the image. Starts at 0 and gets incremented
117 * after each call to this function.
118 * @type: The type of image. For example, "fdt" for DTBs
119 * @strp: A pointer to string. Untouched if the function fails
120 *
121 * Return: 0 if OK, -ENOENT if no loadable is available else -ve on
122 * error.
123 */
124 int (*get_fit_loadable)(struct udevice *dev, int index,
125 const char *type, const char **strp);
5381c285
MS
126};
127
3a8ee3df 128#define sysinfo_get_ops(dev) ((struct sysinfo_ops *)(dev)->driver->ops)
5381c285 129
2b8e5c8d 130#if CONFIG_IS_ENABLED(SYSINFO)
5381c285 131/**
3a8ee3df 132 * sysinfo_detect() - Run the hardware info detection procedure for this device.
5381c285
MS
133 *
134 * @dev: The device containing the information
135 *
4d65c6bc
SA
136 * This function must be called before any other accessor function for this
137 * device.
138 *
5381c285
MS
139 * Return: 0 if OK, -ve on error.
140 */
3a8ee3df 141int sysinfo_detect(struct udevice *dev);
5381c285
MS
142
143/**
3a8ee3df 144 * sysinfo_get_bool() - Read a specific bool data value that describes the
5381c285 145 * hardware setup.
3a8ee3df 146 * @dev: The sysinfo instance to gather the data.
5381c285
MS
147 * @id: A unique identifier for the bool value to be read.
148 * @val: Pointer to a buffer that receives the value read.
149 *
4d65c6bc
SA
150 * Return: 0 if OK, -EPERM if called before sysinfo_detect(), else -ve on
151 * error.
5381c285 152 */
3a8ee3df 153int sysinfo_get_bool(struct udevice *dev, int id, bool *val);
5381c285
MS
154
155/**
3a8ee3df 156 * sysinfo_get_int() - Read a specific int data value that describes the
5381c285 157 * hardware setup.
3a8ee3df 158 * @dev: The sysinfo instance to gather the data.
5381c285
MS
159 * @id: A unique identifier for the int value to be read.
160 * @val: Pointer to a buffer that receives the value read.
161 *
4d65c6bc
SA
162 * Return: 0 if OK, -EPERM if called before sysinfo_detect(), else -ve on
163 * error.
5381c285 164 */
3a8ee3df 165int sysinfo_get_int(struct udevice *dev, int id, int *val);
5381c285
MS
166
167/**
3a8ee3df 168 * sysinfo_get_str() - Read a specific string data value that describes the
5381c285 169 * hardware setup.
3a8ee3df 170 * @dev: The sysinfo instance to gather the data.
5381c285
MS
171 * @id: A unique identifier for the string value to be read.
172 * @size: The size of the buffer to receive the string data.
173 * @val: Pointer to a buffer that receives the value read.
174 *
4d65c6bc
SA
175 * Return: 0 if OK, -EPERM if called before sysinfo_detect(), else -ve on
176 * error.
5381c285 177 */
3a8ee3df 178int sysinfo_get_str(struct udevice *dev, int id, size_t size, char *val);
5381c285
MS
179
180/**
3a8ee3df
SG
181 * sysinfo_get() - Return the sysinfo device for the sysinfo in question.
182 * @devp: Pointer to structure to receive the sysinfo device.
5381c285 183 *
3a8ee3df 184 * Since there can only be at most one sysinfo instance, the API can supply a
5381c285 185 * function that returns the unique device. This is especially useful for use
3a8ee3df 186 * in sysinfo files.
5381c285 187 *
4d65c6bc
SA
188 * Return: 0 if OK, -EPERM if called before sysinfo_detect(), else -ve on
189 * error.
5381c285 190 */
3a8ee3df 191int sysinfo_get(struct udevice **devp);
d42730e8
JJH
192
193/**
3a8ee3df 194 * sysinfo_get_fit_loadable - Get the name of an image to load from FIT
d42730e8
JJH
195 * This function can be used to provide the image names based on runtime
196 * detection. A classic use-case would when DTBOs are used to describe
4d65c6bc 197 * additional daughter cards.
d42730e8 198 *
3a8ee3df 199 * @dev: The sysinfo instance to gather the data.
d42730e8
JJH
200 * @index: Index of the image. Starts at 0 and gets incremented
201 * after each call to this function.
202 * @type: The type of image. For example, "fdt" for DTBs
203 * @strp: A pointer to string. Untouched if the function fails
204 *
205 *
4d65c6bc
SA
206 * Return: 0 if OK, -EPERM if called before sysinfo_detect(), -ENOENT if no
207 * loadable is available else -ve on error.
d42730e8 208 */
3a8ee3df
SG
209int sysinfo_get_fit_loadable(struct udevice *dev, int index, const char *type,
210 const char **strp);
02806e9a
JJH
211
212#else
213
3a8ee3df 214static inline int sysinfo_detect(struct udevice *dev)
02806e9a
JJH
215{
216 return -ENOSYS;
217}
218
3a8ee3df 219static inline int sysinfo_get_bool(struct udevice *dev, int id, bool *val)
02806e9a
JJH
220{
221 return -ENOSYS;
222}
223
3a8ee3df 224static inline int sysinfo_get_int(struct udevice *dev, int id, int *val)
02806e9a
JJH
225{
226 return -ENOSYS;
227}
228
3a8ee3df
SG
229static inline int sysinfo_get_str(struct udevice *dev, int id, size_t size,
230 char *val)
02806e9a
JJH
231{
232 return -ENOSYS;
233}
234
3a8ee3df 235static inline int sysinfo_get(struct udevice **devp)
02806e9a
JJH
236{
237 return -ENOSYS;
238}
239
3a8ee3df
SG
240static inline int sysinfo_get_fit_loadable(struct udevice *dev, int index,
241 const char *type, const char **strp)
02806e9a
JJH
242{
243 return -ENOSYS;
244}
245
246#endif
56a3433e 247#endif