xref: /rk3399_rockchip-uboot/include/dm/uclass.h (revision 0aca89f213e8a80b8eff5385303341b2304c527d)
1 /*
2  * Copyright (c) 2013 Google, Inc
3  *
4  * (C) Copyright 2012
5  * Pavel Herrmann <morpheus.ibis@gmail.com>
6  *
7  * SPDX-License-Identifier:	GPL-2.0+
8  */
9 
10 #ifndef _DM_UCLASS_H
11 #define _DM_UCLASS_H
12 
13 #include <dm/ofnode.h>
14 #include <dm/uclass-id.h>
15 #include <linker_lists.h>
16 #include <linux/list.h>
17 
18 /**
19  * struct uclass - a U-Boot drive class, collecting together similar drivers
20  *
21  * A uclass provides an interface to a particular function, which is
22  * implemented by one or more drivers. Every driver belongs to a uclass even
23  * if it is the only driver in that uclass. An example uclass is GPIO, which
24  * provides the ability to change read inputs, set and clear outputs, etc.
25  * There may be drivers for on-chip SoC GPIO banks, I2C GPIO expanders and
26  * PMIC IO lines, all made available in a unified way through the uclass.
27  *
28  * @priv: Private data for this uclass
29  * @uc_drv: The driver for the uclass itself, not to be confused with a
30  * 'struct driver'
31  * @dev_head: List of devices in this uclass (devices are attached to their
32  * uclass when their bind method is called)
33  * @sibling_node: Next uclass in the linked list of uclasses
34  */
35 struct uclass {
36 	void *priv;
37 	struct uclass_driver *uc_drv;
38 	struct list_head dev_head;
39 	struct list_head sibling_node;
40 #ifdef CONFIG_USING_KERNEL_DTB_V2
41 	struct list_head *u_boot_dev_head;
42 #endif
43 };
44 
45 struct driver;
46 struct udevice;
47 
48 /* Members of this uclass sequence themselves with aliases */
49 #define DM_UC_FLAG_SEQ_ALIAS			(1 << 0)
50 
51 /**
52  * struct uclass_driver - Driver for the uclass
53  *
54  * A uclass_driver provides a consistent interface to a set of related
55  * drivers.
56  *
57  * @name: Name of uclass driver
58  * @id: ID number of this uclass
59  * @post_bind: Called after a new device is bound to this uclass
60  * @pre_unbind: Called before a device is unbound from this uclass
61  * @pre_probe: Called before a new device is probed
62  * @post_probe: Called after a new device is probed
63  * @pre_remove: Called before a device is removed
64  * @child_post_bind: Called after a child is bound to a device in this uclass
65  * @init: Called to set up the uclass
66  * @destroy: Called to destroy the uclass
67  * @priv_auto_alloc_size: If non-zero this is the size of the private data
68  * to be allocated in the uclass's ->priv pointer. If zero, then the uclass
69  * driver is responsible for allocating any data required.
70  * @per_device_auto_alloc_size: Each device can hold private data owned
71  * by the uclass. If required this will be automatically allocated if this
72  * value is non-zero.
73  * @per_device_platdata_auto_alloc_size: Each device can hold platform data
74  * owned by the uclass as 'dev->uclass_platdata'. If the value is non-zero,
75  * then this will be automatically allocated.
76  * @per_child_auto_alloc_size: Each child device (of a parent in this
77  * uclass) can hold parent data for the device/uclass. This value is only
78  * used as a falback if this member is 0 in the driver.
79  * @per_child_platdata_auto_alloc_size: A bus likes to store information about
80  * its children. If non-zero this is the size of this data, to be allocated
81  * in the child device's parent_platdata pointer. This value is only used as
82  * a falback if this member is 0 in the driver.
83  * @ops: Uclass operations, providing the consistent interface to devices
84  * within the uclass.
85  * @flags: Flags for this uclass (DM_UC_...)
86  */
87 struct uclass_driver {
88 	const char *name;
89 	enum uclass_id id;
90 	int (*post_bind)(struct udevice *dev);
91 	int (*pre_unbind)(struct udevice *dev);
92 	int (*pre_probe)(struct udevice *dev);
93 	int (*post_probe)(struct udevice *dev);
94 	int (*pre_remove)(struct udevice *dev);
95 	int (*child_post_bind)(struct udevice *dev);
96 	int (*child_pre_probe)(struct udevice *dev);
97 	int (*init)(struct uclass *class);
98 	int (*destroy)(struct uclass *class);
99 	int priv_auto_alloc_size;
100 	int per_device_auto_alloc_size;
101 	int per_device_platdata_auto_alloc_size;
102 	int per_child_auto_alloc_size;
103 	int per_child_platdata_auto_alloc_size;
104 	const void *ops;
105 	uint32_t flags;
106 };
107 
108 /* Declare a new uclass_driver */
109 #define UCLASS_DRIVER(__name)						\
110 	ll_entry_declare(struct uclass_driver, __name, uclass)
111 
112 /**
113  * uclass_get() - Get a uclass based on an ID, creating it if needed
114  *
115  * Every uclass is identified by an ID, a number from 0 to n-1 where n is
116  * the number of uclasses. This function allows looking up a uclass by its
117  * ID.
118  *
119  * @key: ID to look up
120  * @ucp: Returns pointer to uclass (there is only one per ID)
121  * @return 0 if OK, -ve on error
122  */
123 int uclass_get(enum uclass_id key, struct uclass **ucp);
124 
125 /**
126  * uclass_get_name() - Get the name of a uclass driver
127  *
128  * @id: ID to look up
129  * @returns the name of the uclass driver for that ID, or NULL if none
130  */
131 const char *uclass_get_name(enum uclass_id id);
132 
133 /**
134  * uclass_get_by_name() - Look up a uclass by its driver name
135  *
136  * @name: Name to look up
137  * @returns the associated uclass ID, or UCLASS_INVALID if not found
138  */
139 enum uclass_id uclass_get_by_name(const char *name);
140 
141 /**
142  * uclass_get_device() - Get a uclass device based on an ID and index
143  *
144  * The device is probed to activate it ready for use.
145  *
146  * @id: ID to look up
147  * @index: Device number within that uclass (0=first)
148  * @devp: Returns pointer to device (there is only one per for each ID)
149  * @return 0 if OK, -ve on error
150  */
151 int uclass_get_device(enum uclass_id id, int index, struct udevice **devp);
152 
153 /**
154  * uclass_get_device_by_name() - Get a uclass device by its name
155  *
156  * This searches the devices in the uclass for one with the exactly given name.
157  *
158  * The device is probed to activate it ready for use.
159  *
160  * @id: ID to look up
161  * @name: name of a device to get
162  * @devp: Returns pointer to device (the first one with the name)
163  * @return 0 if OK, -ve on error
164  */
165 int uclass_get_device_by_name(enum uclass_id id, const char *name,
166 			      struct udevice **devp);
167 
168 /**
169  * uclass_get_device_by_seq() - Get a uclass device based on an ID and sequence
170  *
171  * If an active device has this sequence it will be returned. If there is no
172  * such device then this will check for a device that is requesting this
173  * sequence.
174  *
175  * The device is probed to activate it ready for use.
176  *
177  * @id: ID to look up
178  * @seq: Sequence number to find (0=first)
179  * @devp: Returns pointer to device (there is only one for each seq)
180  * @return 0 if OK, -ve on error
181  */
182 int uclass_get_device_by_seq(enum uclass_id id, int seq, struct udevice **devp);
183 
184 /**
185  * uclass_get_device_by_of_offset() - Get a uclass device by device tree node
186  *
187  * This searches the devices in the uclass for one attached to the given
188  * device tree node.
189  *
190  * The device is probed to activate it ready for use.
191  *
192  * @id: ID to look up
193  * @node: Device tree offset to search for (if -ve then -ENODEV is returned)
194  * @devp: Returns pointer to device (there is only one for each node)
195  * @return 0 if OK, -ve on error
196  */
197 int uclass_get_device_by_of_offset(enum uclass_id id, int node,
198 				   struct udevice **devp);
199 
200 /**
201  * uclass_get_device_by_ofnode() - Get a uclass device by device tree node
202  *
203  * This searches the devices in the uclass for one attached to the given
204  * device tree node.
205  *
206  * The device is probed to activate it ready for use.
207  *
208  * @id: ID to look up
209  * @np: Device tree node to search for (if NULL then -ENODEV is returned)
210  * @devp: Returns pointer to device (there is only one for each node)
211  * @return 0 if OK, -ve on error
212  */
213 int uclass_get_device_by_ofnode(enum uclass_id id, ofnode node,
214 				struct udevice **devp);
215 
216 /**
217  * uclass_get_device_by_phandle_id() - Get a uclass device by phandle id
218  *
219  * This searches the devices in the uclass for one with the given phandle id.
220  *
221  * The device is probed to activate it ready for use.
222  *
223  * @id: uclass ID to look up
224  * @phandle_id: the phandle id to look up
225  * @devp: Returns pointer to device (there is only one for each node)
226  * @return 0 if OK, -ENODEV if there is no device match the phandle, other
227  *	-ve on error
228  */
229 int uclass_get_device_by_phandle_id(enum uclass_id id, uint phandle_id,
230 				    struct udevice **devp);
231 
232 /**
233  * uclass_get_device_by_phandle() - Get a uclass device by phandle
234  *
235  * This searches the devices in the uclass for one with the given phandle.
236  *
237  * The device is probed to activate it ready for use.
238  *
239  * @id: uclass ID to look up
240  * @parent: Parent device containing the phandle pointer
241  * @name: Name of property in the parent device node
242  * @devp: Returns pointer to device (there is only one for each node)
243  * @return 0 if OK, -ENOENT if there is no @name present in the node, other
244  *	-ve on error
245  */
246 int uclass_get_device_by_phandle(enum uclass_id id, struct udevice *parent,
247 				 const char *name, struct udevice **devp);
248 
249 /**
250  * uclass_get_device_by_driver() - Get a uclass device for a driver
251  *
252  * This searches the devices in the uclass for one that uses the given
253  * driver. Use DM_GET_DRIVER(name) for the @drv argument, where 'name' is
254  * the driver name - as used in U_BOOT_DRIVER(name).
255  *
256  * The device is probed to activate it ready for use.
257  *
258  * @id: ID to look up
259  * @drv: Driver to look for
260  * @devp: Returns pointer to the first device with that driver
261  * @return 0 if OK, -ve on error
262  */
263 int uclass_get_device_by_driver(enum uclass_id id, const struct driver *drv,
264 				struct udevice **devp);
265 
266 /**
267  * uclass_first_device() - Get the first device in a uclass
268  *
269  * The device returned is probed if necessary, and ready for use
270  * Devices that fail to probe are skipped
271  *
272  * This function is useful to start iterating through a list of devices which
273  * are functioning correctly and can be probed.
274  *
275  * @id: Uclass ID to look up
276  * @devp: Returns pointer to the first device in that uclass if no error
277  * occurred, or NULL if there is no usable device
278  */
279 void uclass_first_device(enum uclass_id id, struct udevice **devp);
280 
281 /**
282  * uclass_next_device() - Get the next device in a uclass
283  *
284  * The device returned is probed if necessary, and ready for use
285  * Devices that fail to probe are skipped
286  *
287  * This function is useful to start iterating through a list of devices which
288  * are functioning correctly and can be probed.
289  *
290  * @devp: On entry, pointer to device to lookup. On exit, returns pointer
291  * to the next device in the uclass if no error occurred, or NULL if there is
292  * no next device
293  */
294 void uclass_next_device(struct udevice **devp);
295 
296 /**
297  * uclass_first_device_err() - Get the first device in a uclass
298  *
299  * The device returned is probed if necessary, and ready for use
300  *
301  * @id: Uclass ID to look up
302  * @devp: Returns pointer to the first device in that uclass, or NULL if none
303  * Return: 0 if found, -ENODEV if not found, other -ve on error
304  */
305 int uclass_first_device_err(enum uclass_id id, struct udevice **devp);
306 
307 /**
308  * uclass_next_device_err() - Get the next device in a uclass
309  *
310  * The device returned is probed if necessary, and ready for use
311  *
312  * @devp: On entry, pointer to device to lookup. On exit, returns pointer
313  * to the next device in the uclass if no error occurred, or -ENODEV if
314  * there is no next device.
315  * @return 0 if found, -ENODEV if not found, other -ve on error
316  */
317 int uclass_next_device_err(struct udevice **devp);
318 
319 /**
320  * uclass_first_device_check() - Get the first device in a uclass
321  *
322  * The device returned is probed if necessary, and ready for use
323  *
324  * This function is useful to start iterating through a list of devices which
325  * are functioning correctly and can be probed.
326  *
327  * @id: Uclass ID to look up
328  * @devp: Returns pointer to the first device in that uclass, or NULL if there
329  * is no first device
330  * @return 0 if OK (found or not found), other -ve on error. If an error occurs
331  * it is still possible to move to the next device.
332  */
333 int uclass_first_device_check(enum uclass_id id, struct udevice **devp);
334 
335 /**
336  * uclass_next_device_check() - Get the next device in a uclass
337  *
338  * The device returned is probed if necessary, and ready for use
339  *
340  * This function is useful to start iterating through a list of devices which
341  * are functioning correctly and can be probed.
342  *
343  * @devp: On entry, pointer to device to lookup. On exit, returns pointer
344  * to the next device in the uclass if any
345  * @return 0 if OK (found or not found), other -ve on error. If an error occurs
346  * it is still possible to move to the next device.
347  */
348 int uclass_next_device_check(struct udevice **devp);
349 
350 /**
351  * uclass_first_device_drvdata() - Find the first device with given driver data
352  *
353  * This searches through the devices for a particular uclass looking for one
354  * that has the given driver data.
355  *
356  * @id: Uclass ID to check
357  * @driver_data: Driver data to search for
358  * @devp: Returns pointer to the first matching device in that uclass, if found
359  * @return 0 if found, -ENODEV if not found, other -ve on error
360  */
361 int uclass_first_device_drvdata(enum uclass_id id, ulong driver_data,
362 				struct udevice **devp);
363 
364 /**
365  * uclass_resolve_seq() - Resolve a device's sequence number
366  *
367  * On entry dev->seq is -1, and dev->req_seq may be -1 (to allocate a
368  * sequence number automatically, or >= 0 to select a particular number.
369  * If the requested sequence number is in use, then this device will
370  * be allocated another one.
371  *
372  * Note that the device's seq value is not changed by this function.
373  *
374  * @dev: Device for which to allocate sequence number
375  * @return sequence number allocated, or -ve on error
376  */
377 int uclass_resolve_seq(struct udevice *dev);
378 
379 /**
380  * uclass_id_foreach_dev() - Helper function to iteration through devices
381  *
382  * This creates a for() loop which works through the available devices in
383  * a uclass ID in order from start to end.
384  *
385  * If for some reason the uclass cannot be found, this does nothing.
386  *
387  * @id: enum uclass_id ID to use
388  * @pos: struct udevice * to hold the current device. Set to NULL when there
389  * are no more devices.
390  * @uc: temporary uclass variable (struct udevice *)
391  */
392 #define uclass_id_foreach_dev(id, pos, uc) \
393 	if (!uclass_get(id, &uc)) \
394 		list_for_each_entry(pos, &uc->dev_head, uclass_node)
395 
396 /**
397  * uclass_foreach_dev() - Helper function to iteration through devices
398  *
399  * This creates a for() loop which works through the available devices in
400  * a uclass in order from start to end.
401  *
402  * @pos: struct udevice * to hold the current device. Set to NULL when there
403  * are no more devices.
404  * @uc: uclass to scan
405  */
406 #define uclass_foreach_dev(pos, uc)	\
407 	list_for_each_entry(pos, &uc->dev_head, uclass_node)
408 
409 /**
410  * uclass_foreach_dev_safe() - Helper function to safely iteration through devs
411  *
412  * This creates a for() loop which works through the available devices in
413  * a uclass in order from start to end. Inside the loop, it is safe to remove
414  * @pos if required.
415  *
416  * @pos: struct udevice * to hold the current device. Set to NULL when there
417  * are no more devices.
418  * @next: struct udevice * to hold the next next
419  * @uc: uclass to scan
420  */
421 #define uclass_foreach_dev_safe(pos, next, uc)	\
422 	list_for_each_entry_safe(pos, next, &uc->dev_head, uclass_node)
423 
424 /**
425  * uclass_foreach_dev_probe() - Helper function to iteration through devices
426  * of given uclass
427  *
428  * This creates a for() loop which works through the available devices in
429  * a uclass in order from start to end. Devices are probed if necessary,
430  * and ready for use.
431  *
432  * @id: Uclass ID
433  * @dev: struct udevice * to hold the current device. Set to NULL when there
434  * are no more devices.
435  */
436 #define uclass_foreach_dev_probe(id, dev)	\
437 	for (int _ret = uclass_first_device_err(id, &dev); !_ret && dev; \
438 	     _ret = uclass_next_device_err(&dev))
439 
440 #endif
441