blob: c045d316b0724710543cfefa3b163a8cdde11f85 [file] [log] [blame]
Mario Six5381c282018-07-31 11:44:11 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2017
4 * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
5 */
6
7/*
8 * This uclass encapsulates hardware methods to gather information about a
Simon Glass3a8ee3d2020-11-05 06:32:05 -07009 * sysinfo or a specific device such as hard-wired GPIOs on GPIO expanders,
Mario Six5381c282018-07-31 11:44:11 +020010 * read-only data in flash ICs, or similar.
11 *
12 * The interface offers functions to read the usual standard data types (bool,
13 * int, string) from the device, each of which is identified by a static
14 * numeric ID (which will usually be defined as a enum in a header file).
15 *
Simon Glass3a8ee3d2020-11-05 06:32:05 -070016 * If for example the sysinfo had a read-only serial number flash IC, we could
Mario Six5381c282018-07-31 11:44:11 +020017 * call
18 *
Simon Glass3a8ee3d2020-11-05 06:32:05 -070019 * ret = sysinfo_detect(dev);
Mario Six5381c282018-07-31 11:44:11 +020020 * if (ret) {
Simon Glass3a8ee3d2020-11-05 06:32:05 -070021 * debug("sysinfo device not found.");
Mario Six5381c282018-07-31 11:44:11 +020022 * return ret;
23 * }
24 *
Simon Glass3a8ee3d2020-11-05 06:32:05 -070025 * ret = sysinfo_get_int(dev, ID_SERIAL_NUMBER, &serial);
Mario Six5381c282018-07-31 11:44:11 +020026 * if (ret) {
27 * debug("Error when reading serial number from device.");
28 * return ret;
29 * }
30 *
31 * to read the serial number.
32 */
33
Simon Glass3a8ee3d2020-11-05 06:32:05 -070034#if CONFIG_IS_ENABLED(SYSINFO)
35struct sysinfo_ops {
Mario Six5381c282018-07-31 11:44:11 +020036 /**
37 * detect() - Run the hardware info detection procedure for this
38 * device.
39 * @dev: The device containing the information
40 *
41 * This operation might take a long time (e.g. read from EEPROM,
42 * check the presence of a device on a bus etc.), hence this is not
43 * done in the probe() method, but later during operation in this
44 * dedicated method.
45 *
46 * Return: 0 if OK, -ve on error.
47 */
48 int (*detect)(struct udevice *dev);
49
50 /**
51 * get_bool() - Read a specific bool data value that describes the
52 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -070053 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +020054 * @id: A unique identifier for the bool value to be read.
55 * @val: Pointer to a buffer that receives the value read.
56 *
57 * Return: 0 if OK, -ve on error.
58 */
59 int (*get_bool)(struct udevice *dev, int id, bool *val);
60
61 /**
62 * get_int() - Read a specific int data value that describes the
63 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -070064 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +020065 * @id: A unique identifier for the int value to be read.
66 * @val: Pointer to a buffer that receives the value read.
67 *
68 * Return: 0 if OK, -ve on error.
69 */
70 int (*get_int)(struct udevice *dev, int id, int *val);
71
72 /**
73 * get_str() - Read a specific string data value that describes the
74 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -070075 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +020076 * @id: A unique identifier for the string value to be read.
77 * @size: The size of the buffer to receive the string data.
78 * @val: Pointer to a buffer that receives the value read.
79 *
80 * Return: 0 if OK, -ve on error.
81 */
82 int (*get_str)(struct udevice *dev, int id, size_t size, char *val);
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +020083
84 /**
85 * get_fit_loadable - Get the name of an image to load from FIT
86 * This function can be used to provide the image names based on runtime
87 * detection. A classic use-case would when DTBOs are used to describe
88 * additionnal daughter cards.
89 *
Simon Glass3a8ee3d2020-11-05 06:32:05 -070090 * @dev: The sysinfo instance to gather the data.
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +020091 * @index: Index of the image. Starts at 0 and gets incremented
92 * after each call to this function.
93 * @type: The type of image. For example, "fdt" for DTBs
94 * @strp: A pointer to string. Untouched if the function fails
95 *
96 * Return: 0 if OK, -ENOENT if no loadable is available else -ve on
97 * error.
98 */
99 int (*get_fit_loadable)(struct udevice *dev, int index,
100 const char *type, const char **strp);
Mario Six5381c282018-07-31 11:44:11 +0200101};
102
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700103#define sysinfo_get_ops(dev) ((struct sysinfo_ops *)(dev)->driver->ops)
Mario Six5381c282018-07-31 11:44:11 +0200104
105/**
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700106 * sysinfo_detect() - Run the hardware info detection procedure for this device.
Mario Six5381c282018-07-31 11:44:11 +0200107 *
108 * @dev: The device containing the information
109 *
110 * Return: 0 if OK, -ve on error.
111 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700112int sysinfo_detect(struct udevice *dev);
Mario Six5381c282018-07-31 11:44:11 +0200113
114/**
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700115 * sysinfo_get_bool() - Read a specific bool data value that describes the
Mario Six5381c282018-07-31 11:44:11 +0200116 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700117 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +0200118 * @id: A unique identifier for the bool value to be read.
119 * @val: Pointer to a buffer that receives the value read.
120 *
121 * Return: 0 if OK, -ve on error.
122 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700123int sysinfo_get_bool(struct udevice *dev, int id, bool *val);
Mario Six5381c282018-07-31 11:44:11 +0200124
125/**
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700126 * sysinfo_get_int() - Read a specific int data value that describes the
Mario Six5381c282018-07-31 11:44:11 +0200127 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700128 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +0200129 * @id: A unique identifier for the int value to be read.
130 * @val: Pointer to a buffer that receives the value read.
131 *
132 * Return: 0 if OK, -ve on error.
133 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700134int sysinfo_get_int(struct udevice *dev, int id, int *val);
Mario Six5381c282018-07-31 11:44:11 +0200135
136/**
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700137 * sysinfo_get_str() - Read a specific string data value that describes the
Mario Six5381c282018-07-31 11:44:11 +0200138 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700139 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +0200140 * @id: A unique identifier for the string value to be read.
141 * @size: The size of the buffer to receive the string data.
142 * @val: Pointer to a buffer that receives the value read.
143 *
144 * Return: 0 if OK, -ve on error.
145 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700146int sysinfo_get_str(struct udevice *dev, int id, size_t size, char *val);
Mario Six5381c282018-07-31 11:44:11 +0200147
148/**
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700149 * sysinfo_get() - Return the sysinfo device for the sysinfo in question.
150 * @devp: Pointer to structure to receive the sysinfo device.
Mario Six5381c282018-07-31 11:44:11 +0200151 *
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700152 * Since there can only be at most one sysinfo instance, the API can supply a
Mario Six5381c282018-07-31 11:44:11 +0200153 * function that returns the unique device. This is especially useful for use
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700154 * in sysinfo files.
Mario Six5381c282018-07-31 11:44:11 +0200155 *
156 * Return: 0 if OK, -ve on error.
157 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700158int sysinfo_get(struct udevice **devp);
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +0200159
160/**
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700161 * sysinfo_get_fit_loadable - Get the name of an image to load from FIT
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +0200162 * This function can be used to provide the image names based on runtime
163 * detection. A classic use-case would when DTBOs are used to describe
164 * additionnal daughter cards.
165 *
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700166 * @dev: The sysinfo instance to gather the data.
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +0200167 * @index: Index of the image. Starts at 0 and gets incremented
168 * after each call to this function.
169 * @type: The type of image. For example, "fdt" for DTBs
170 * @strp: A pointer to string. Untouched if the function fails
171 *
172 *
173 * Return: 0 if OK, -ENOENT if no loadable is available else -ve on
174 * error.
175 */
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700176int sysinfo_get_fit_loadable(struct udevice *dev, int index, const char *type,
177 const char **strp);
Jean-Jacques Hiblot02806e92019-10-22 16:39:20 +0200178
179#else
180
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700181static inline int sysinfo_detect(struct udevice *dev)
Jean-Jacques Hiblot02806e92019-10-22 16:39:20 +0200182{
183 return -ENOSYS;
184}
185
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700186static inline int sysinfo_get_bool(struct udevice *dev, int id, bool *val)
Jean-Jacques Hiblot02806e92019-10-22 16:39:20 +0200187{
188 return -ENOSYS;
189}
190
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700191static inline int sysinfo_get_int(struct udevice *dev, int id, int *val)
Jean-Jacques Hiblot02806e92019-10-22 16:39:20 +0200192{
193 return -ENOSYS;
194}
195
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700196static inline int sysinfo_get_str(struct udevice *dev, int id, size_t size,
197 char *val)
Jean-Jacques Hiblot02806e92019-10-22 16:39:20 +0200198{
199 return -ENOSYS;
200}
201
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700202static inline int sysinfo_get(struct udevice **devp)
Jean-Jacques Hiblot02806e92019-10-22 16:39:20 +0200203{
204 return -ENOSYS;
205}
206
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700207static inline int sysinfo_get_fit_loadable(struct udevice *dev, int index,
208 const char *type, const char **strp)
Jean-Jacques Hiblot02806e92019-10-22 16:39:20 +0200209{
210 return -ENOSYS;
211}
212
213#endif