blob: 6e021253524b1abf8e54e90e7d7a71600b397732 [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 -070034struct sysinfo_ops {
Mario Six5381c282018-07-31 11:44:11 +020035 /**
36 * detect() - Run the hardware info detection procedure for this
37 * device.
38 * @dev: The device containing the information
39 *
40 * This operation might take a long time (e.g. read from EEPROM,
41 * check the presence of a device on a bus etc.), hence this is not
42 * done in the probe() method, but later during operation in this
43 * dedicated method.
44 *
45 * Return: 0 if OK, -ve on error.
46 */
47 int (*detect)(struct udevice *dev);
48
49 /**
50 * get_bool() - Read a specific bool data value that describes the
51 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -070052 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +020053 * @id: A unique identifier for the bool value to be read.
54 * @val: Pointer to a buffer that receives the value read.
55 *
56 * Return: 0 if OK, -ve on error.
57 */
58 int (*get_bool)(struct udevice *dev, int id, bool *val);
59
60 /**
61 * get_int() - Read a specific int data value that describes the
62 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -070063 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +020064 * @id: A unique identifier for the int value to be read.
65 * @val: Pointer to a buffer that receives the value read.
66 *
67 * Return: 0 if OK, -ve on error.
68 */
69 int (*get_int)(struct udevice *dev, int id, int *val);
70
71 /**
72 * get_str() - Read a specific string data value that describes the
73 * hardware setup.
Simon Glass3a8ee3d2020-11-05 06:32:05 -070074 * @dev: The sysinfo instance to gather the data.
Mario Six5381c282018-07-31 11:44:11 +020075 * @id: A unique identifier for the string value to be read.
76 * @size: The size of the buffer to receive the string data.
77 * @val: Pointer to a buffer that receives the value read.
78 *
79 * Return: 0 if OK, -ve on error.
80 */
81 int (*get_str)(struct udevice *dev, int id, size_t size, char *val);
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +020082
83 /**
84 * get_fit_loadable - Get the name of an image to load from FIT
85 * This function can be used to provide the image names based on runtime
86 * detection. A classic use-case would when DTBOs are used to describe
87 * additionnal daughter cards.
88 *
Simon Glass3a8ee3d2020-11-05 06:32:05 -070089 * @dev: The sysinfo instance to gather the data.
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +020090 * @index: Index of the image. Starts at 0 and gets incremented
91 * after each call to this function.
92 * @type: The type of image. For example, "fdt" for DTBs
93 * @strp: A pointer to string. Untouched if the function fails
94 *
95 * Return: 0 if OK, -ENOENT if no loadable is available else -ve on
96 * error.
97 */
98 int (*get_fit_loadable)(struct udevice *dev, int index,
99 const char *type, const char **strp);
Mario Six5381c282018-07-31 11:44:11 +0200100};
101
Simon Glass3a8ee3d2020-11-05 06:32:05 -0700102#define sysinfo_get_ops(dev) ((struct sysinfo_ops *)(dev)->driver->ops)
Mario Six5381c282018-07-31 11:44:11 +0200103
Simon Glass2b8e5c82021-02-04 21:17:21 -0700104#if CONFIG_IS_ENABLED(SYSINFO)
Mario Six5381c282018-07-31 11:44:11 +0200105/**
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