blob: fd6a486702eac372c9221f4c6ff50c1cdc9ddbc5 [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
9 * board or a specific device such as hard-wired GPIOs on GPIO expanders,
10 * 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 *
16 * If for example the board had a read-only serial number flash IC, we could
17 * call
18 *
19 * ret = board_detect(dev);
20 * if (ret) {
21 * debug("board device not found.");
22 * return ret;
23 * }
24 *
25 * ret = board_get_int(dev, ID_SERIAL_NUMBER, &serial);
26 * if (ret) {
27 * debug("Error when reading serial number from device.");
28 * return ret;
29 * }
30 *
31 * to read the serial number.
32 */
33
34struct board_ops {
35 /**
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.
52 * @dev: The board instance to gather the data.
53 * @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.
63 * @dev: The board instance to gather the data.
64 * @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.
74 * @dev: The board instance to gather the data.
75 * @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 *
89 * @dev: The board instance to gather the data.
90 * @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
102#define board_get_ops(dev) ((struct board_ops *)(dev)->driver->ops)
103
104/**
105 * board_detect() - Run the hardware info detection procedure for this device.
106 *
107 * @dev: The device containing the information
108 *
109 * Return: 0 if OK, -ve on error.
110 */
111int board_detect(struct udevice *dev);
112
113/**
114 * board_get_bool() - Read a specific bool data value that describes the
115 * hardware setup.
116 * @dev: The board instance to gather the data.
117 * @id: A unique identifier for the bool value to be read.
118 * @val: Pointer to a buffer that receives the value read.
119 *
120 * Return: 0 if OK, -ve on error.
121 */
122int board_get_bool(struct udevice *dev, int id, bool *val);
123
124/**
125 * board_get_int() - Read a specific int data value that describes the
126 * hardware setup.
127 * @dev: The board instance to gather the data.
128 * @id: A unique identifier for the int value to be read.
129 * @val: Pointer to a buffer that receives the value read.
130 *
131 * Return: 0 if OK, -ve on error.
132 */
133int board_get_int(struct udevice *dev, int id, int *val);
134
135/**
136 * board_get_str() - Read a specific string data value that describes the
137 * hardware setup.
138 * @dev: The board instance to gather the data.
139 * @id: A unique identifier for the string value to be read.
140 * @size: The size of the buffer to receive the string data.
141 * @val: Pointer to a buffer that receives the value read.
142 *
143 * Return: 0 if OK, -ve on error.
144 */
145int board_get_str(struct udevice *dev, int id, size_t size, char *val);
146
147/**
148 * board_get() - Return the board device for the board in question.
149 * @devp: Pointer to structure to receive the board device.
150 *
151 * Since there can only be at most one board instance, the API can supply a
152 * function that returns the unique device. This is especially useful for use
153 * in board files.
154 *
155 * Return: 0 if OK, -ve on error.
156 */
157int board_get(struct udevice **devp);
Jean-Jacques Hiblotd42730e2019-10-22 16:39:19 +0200158
159/**
160 * board_get_fit_loadable - Get the name of an image to load from FIT
161 * This function can be used to provide the image names based on runtime
162 * detection. A classic use-case would when DTBOs are used to describe
163 * additionnal daughter cards.
164 *
165 * @dev: The board instance to gather the data.
166 * @index: Index of the image. Starts at 0 and gets incremented
167 * after each call to this function.
168 * @type: The type of image. For example, "fdt" for DTBs
169 * @strp: A pointer to string. Untouched if the function fails
170 *
171 *
172 * Return: 0 if OK, -ENOENT if no loadable is available else -ve on
173 * error.
174 */
175int board_get_fit_loadable(struct udevice *dev, int index,
176 const char *type, const char **strp);