blob: eebf2d5614c40a1f360081f95aca499b6cfe9b83 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassdd6ab882014-02-26 15:59:18 -07002/*
3 * Copyright (c) 2013 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
Simon Glassdd6ab882014-02-26 15:59:18 -07007 */
8
9#ifndef _DM_UCLASS_H
10#define _DM_UCLASS_H
11
Simon Glassee145d62017-05-18 20:09:09 -060012#include <dm/ofnode.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070013#include <dm/uclass-id.h>
Masahiro Yamada63b3a8f2014-10-07 14:49:13 +090014#include <linker_lists.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070015#include <linux/list.h>
16
17/**
18 * struct uclass - a U-Boot drive class, collecting together similar drivers
19 *
20 * A uclass provides an interface to a particular function, which is
21 * implemented by one or more drivers. Every driver belongs to a uclass even
22 * if it is the only driver in that uclass. An example uclass is GPIO, which
23 * provides the ability to change read inputs, set and clear outputs, etc.
24 * There may be drivers for on-chip SoC GPIO banks, I2C GPIO expanders and
25 * PMIC IO lines, all made available in a unified way through the uclass.
26 *
27 * @priv: Private data for this uclass
28 * @uc_drv: The driver for the uclass itself, not to be confused with a
29 * 'struct driver'
Simon Glass4dbb5cf2014-06-11 23:29:54 -060030 * @dev_head: List of devices in this uclass (devices are attached to their
Simon Glassdd6ab882014-02-26 15:59:18 -070031 * uclass when their bind method is called)
32 * @sibling_node: Next uclass in the linked list of uclasses
33 */
34struct uclass {
35 void *priv;
36 struct uclass_driver *uc_drv;
37 struct list_head dev_head;
38 struct list_head sibling_node;
39};
40
Simon Glass32d8ab62016-07-17 15:23:15 -060041struct driver;
Heiko Schocherb74fcb42014-05-22 12:43:05 +020042struct udevice;
Simon Glassdd6ab882014-02-26 15:59:18 -070043
Simon Glass0ccb0972015-01-25 08:27:05 -070044/* Members of this uclass sequence themselves with aliases */
45#define DM_UC_FLAG_SEQ_ALIAS (1 << 0)
46
Simon Glass7ebd13d2018-10-01 12:22:05 -060047/* Same as DM_FLAG_ALLOC_PRIV_DMA */
48#define DM_UC_FLAG_ALLOC_PRIV_DMA (1 << 5)
49
Simon Glassdd6ab882014-02-26 15:59:18 -070050/**
51 * struct uclass_driver - Driver for the uclass
52 *
53 * A uclass_driver provides a consistent interface to a set of related
54 * drivers.
55 *
56 * @name: Name of uclass driver
57 * @id: ID number of this uclass
58 * @post_bind: Called after a new device is bound to this uclass
59 * @pre_unbind: Called before a device is unbound from this uclass
Simon Glass9c1f3822015-03-05 12:25:22 -070060 * @pre_probe: Called before a new device is probed
Simon Glassdd6ab882014-02-26 15:59:18 -070061 * @post_probe: Called after a new device is probed
62 * @pre_remove: Called before a device is removed
Simon Glassf4c9b3e2015-01-25 08:27:08 -070063 * @child_post_bind: Called after a child is bound to a device in this uclass
Bin Menge9df2212018-09-07 07:51:52 -070064 * @child_pre_probe: Called before a child is probed in this uclass
Simon Glassdd6ab882014-02-26 15:59:18 -070065 * @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.
Przemyslaw Marczakd850e672015-04-15 13:07:18 +020073 * @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.
Simon Glassc23b4282015-01-25 08:27:06 -070076 * @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
Heinrich Schuchardt1777b8e2017-12-17 18:19:43 +010078 * used as a fallback if this member is 0 in the driver.
Simon Glass57f95402015-01-25 08:27:02 -070079 * @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
Heinrich Schuchardt1777b8e2017-12-17 18:19:43 +010082 * a fallback if this member is 0 in the driver.
Simon Glassdd6ab882014-02-26 15:59:18 -070083 * @ops: Uclass operations, providing the consistent interface to devices
84 * within the uclass.
Simon Glass0ccb0972015-01-25 08:27:05 -070085 * @flags: Flags for this uclass (DM_UC_...)
Simon Glassdd6ab882014-02-26 15:59:18 -070086 */
87struct uclass_driver {
88 const char *name;
89 enum uclass_id id;
Heiko Schocherb74fcb42014-05-22 12:43:05 +020090 int (*post_bind)(struct udevice *dev);
91 int (*pre_unbind)(struct udevice *dev);
Simon Glass9c1f3822015-03-05 12:25:22 -070092 int (*pre_probe)(struct udevice *dev);
Heiko Schocherb74fcb42014-05-22 12:43:05 +020093 int (*post_probe)(struct udevice *dev);
94 int (*pre_remove)(struct udevice *dev);
Simon Glassf4c9b3e2015-01-25 08:27:08 -070095 int (*child_post_bind)(struct udevice *dev);
Simon Glass5104b982015-01-25 08:27:10 -070096 int (*child_pre_probe)(struct udevice *dev);
Simon Glassdd6ab882014-02-26 15:59:18 -070097 int (*init)(struct uclass *class);
98 int (*destroy)(struct uclass *class);
99 int priv_auto_alloc_size;
100 int per_device_auto_alloc_size;
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200101 int per_device_platdata_auto_alloc_size;
Simon Glassc23b4282015-01-25 08:27:06 -0700102 int per_child_auto_alloc_size;
Simon Glass57f95402015-01-25 08:27:02 -0700103 int per_child_platdata_auto_alloc_size;
Simon Glassdd6ab882014-02-26 15:59:18 -0700104 const void *ops;
Simon Glass0ccb0972015-01-25 08:27:05 -0700105 uint32_t flags;
Simon Glassdd6ab882014-02-26 15:59:18 -0700106};
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 */
123int uclass_get(enum uclass_id key, struct uclass **ucp);
124
125/**
Simon Glassd19d0732016-10-05 20:42:13 -0600126 * 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 */
131const char *uclass_get_name(enum uclass_id id);
132
133/**
Simon Glass70e35b42017-12-28 13:14:15 -0700134 * 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 */
139enum uclass_id uclass_get_by_name(const char *name);
140
141/**
Simon Glassdd6ab882014-02-26 15:59:18 -0700142 * uclass_get_device() - Get a uclass device based on an ID and index
143 *
Simon Glass4dbb5cf2014-06-11 23:29:54 -0600144 * The device is probed to activate it ready for use.
145 *
Simon Glasscebcebb2014-07-23 06:55:17 -0600146 * @id: ID to look up
Simon Glassdd6ab882014-02-26 15:59:18 -0700147 * @index: Device number within that uclass (0=first)
Simon Glass4dbb5cf2014-06-11 23:29:54 -0600148 * @devp: Returns pointer to device (there is only one per for each ID)
Simon Glassdd6ab882014-02-26 15:59:18 -0700149 * @return 0 if OK, -ve on error
150 */
Simon Glass4dbb5cf2014-06-11 23:29:54 -0600151int uclass_get_device(enum uclass_id id, int index, struct udevice **devp);
Simon Glassdd6ab882014-02-26 15:59:18 -0700152
153/**
Simon Glassc4a9cbe2015-07-30 13:40:40 -0600154 * uclass_get_device_by_name() - Get a uclass device by its name
Przemyslaw Marczaka12a1f52015-04-15 13:07:23 +0200155 *
Przemyslaw Marczakc9177722015-04-20 13:32:34 +0200156 * This searches the devices in the uclass for one with the exactly given name.
Przemyslaw Marczaka12a1f52015-04-15 13:07:23 +0200157 *
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 */
165int uclass_get_device_by_name(enum uclass_id id, const char *name,
166 struct udevice **devp);
167
168/**
Simon Glassdb6f0202014-07-23 06:55:12 -0600169 * 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 */
182int uclass_get_device_by_seq(enum uclass_id id, int seq, struct udevice **devp);
183
184/**
Simon Glassc1464ab2014-07-23 06:55:14 -0600185 * 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 */
197int uclass_get_device_by_of_offset(enum uclass_id id, int node,
198 struct udevice **devp);
199
200/**
Simon Glassee145d62017-05-18 20:09:09 -0600201 * 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 */
213int uclass_get_device_by_ofnode(enum uclass_id id, ofnode node,
214 struct udevice **devp);
215
216/**
Kever Yang66a0b5a2018-02-09 10:56:23 +0800217 * 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 */
229int uclass_get_device_by_phandle_id(enum uclass_id id, uint phandle_id,
230 struct udevice **devp);
231
232/**
Simon Glass75f00df2015-07-02 18:15:38 -0600233 * 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 */
246int uclass_get_device_by_phandle(enum uclass_id id, struct udevice *parent,
247 const char *name, struct udevice **devp);
248
249/**
Simon Glass32d8ab62016-07-17 15:23:15 -0600250 * 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 */
263int uclass_get_device_by_driver(enum uclass_id id, const struct driver *drv,
264 struct udevice **devp);
265
266/**
Simon Glassdd6ab882014-02-26 15:59:18 -0700267 * uclass_first_device() - Get the first device in a uclass
268 *
Simon Glass8f5251d2015-01-25 08:26:57 -0700269 * The device returned is probed if necessary, and ready for use
270 *
Simon Glass98c9fb02017-04-23 20:10:43 -0600271 * This function is useful to start iterating through a list of devices which
272 * are functioning correctly and can be probed.
273 *
Simon Glassdd6ab882014-02-26 15:59:18 -0700274 * @id: Uclass ID to look up
Simon Glass98c9fb02017-04-23 20:10:43 -0600275 * @devp: Returns pointer to the first device in that uclass if no error
276 * occurred, or NULL if there is no first device, or an error occurred with
277 * that device.
Simon Glass832c3f02016-02-11 13:23:25 -0700278 * @return 0 if OK (found or not found), other -ve on error
Simon Glassdd6ab882014-02-26 15:59:18 -0700279 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200280int uclass_first_device(enum uclass_id id, struct udevice **devp);
Simon Glassdd6ab882014-02-26 15:59:18 -0700281
282/**
Simon Glass832c3f02016-02-11 13:23:25 -0700283 * uclass_first_device_err() - Get the first device in a uclass
284 *
285 * The device returned is probed if necessary, and ready for use
286 *
287 * @id: Uclass ID to look up
288 * @devp: Returns pointer to the first device in that uclass, or NULL if none
289 * @return 0 if found, -ENODEV if not found, other -ve on error
290 */
291int uclass_first_device_err(enum uclass_id id, struct udevice **devp);
292
293/**
Simon Glassdd6ab882014-02-26 15:59:18 -0700294 * uclass_next_device() - Get the next device in a uclass
295 *
Simon Glass8f5251d2015-01-25 08:26:57 -0700296 * The device returned is probed if necessary, and ready for use
297 *
Simon Glass98c9fb02017-04-23 20:10:43 -0600298 * This function is useful to start iterating through a list of devices which
299 * are functioning correctly and can be probed.
300 *
Simon Glassdd6ab882014-02-26 15:59:18 -0700301 * @devp: On entry, pointer to device to lookup. On exit, returns pointer
Simon Glass98c9fb02017-04-23 20:10:43 -0600302 * to the next device in the uclass if no error occurred, or NULL if there is
303 * no next device, or an error occurred with that next device.
Simon Glass832c3f02016-02-11 13:23:25 -0700304 * @return 0 if OK (found or not found), other -ve on error
Simon Glassdd6ab882014-02-26 15:59:18 -0700305 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200306int uclass_next_device(struct udevice **devp);
Simon Glassdd6ab882014-02-26 15:59:18 -0700307
308/**
Bin Mengf4254042018-08-03 01:14:34 -0700309 * uclass_first_device_check() - Get the first device in a uclass
Simon Glass3ff83bc2017-04-23 20:10:45 -0600310 *
311 * The device returned is probed if necessary, and ready for use
312 *
313 * This function is useful to start iterating through a list of devices which
314 * are functioning correctly and can be probed.
315 *
316 * @id: Uclass ID to look up
317 * @devp: Returns pointer to the first device in that uclass, or NULL if there
318 * is no first device
319 * @return 0 if OK (found or not found), other -ve on error. If an error occurs
320 * it is still possible to move to the next device.
321 */
322int uclass_first_device_check(enum uclass_id id, struct udevice **devp);
323
324/**
Bin Mengf4254042018-08-03 01:14:34 -0700325 * uclass_next_device_check() - Get the next device in a uclass
Simon Glass3ff83bc2017-04-23 20:10:45 -0600326 *
327 * The device returned is probed if necessary, and ready for use
328 *
329 * This function is useful to start iterating through a list of devices which
330 * are functioning correctly and can be probed.
331 *
332 * @devp: On entry, pointer to device to lookup. On exit, returns pointer
333 * to the next device in the uclass if any
334 * @return 0 if OK (found or not found), other -ve on error. If an error occurs
335 * it is still possible to move to the next device.
336 */
337int uclass_next_device_check(struct udevice **devp);
338
339/**
Simon Glassdb6f0202014-07-23 06:55:12 -0600340 * uclass_resolve_seq() - Resolve a device's sequence number
341 *
342 * On entry dev->seq is -1, and dev->req_seq may be -1 (to allocate a
343 * sequence number automatically, or >= 0 to select a particular number.
344 * If the requested sequence number is in use, then this device will
345 * be allocated another one.
346 *
347 * Note that the device's seq value is not changed by this function.
348 *
349 * @dev: Device for which to allocate sequence number
350 * @return sequence number allocated, or -ve on error
351 */
352int uclass_resolve_seq(struct udevice *dev);
353
354/**
Simon Glassdd6ab882014-02-26 15:59:18 -0700355 * uclass_foreach_dev() - Helper function to iteration through devices
356 *
357 * This creates a for() loop which works through the available devices in
358 * a uclass in order from start to end.
359 *
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200360 * @pos: struct udevice * to hold the current device. Set to NULL when there
Simon Glassdd6ab882014-02-26 15:59:18 -0700361 * are no more devices.
Simon Glass4dbb5cf2014-06-11 23:29:54 -0600362 * @uc: uclass to scan
Simon Glassdd6ab882014-02-26 15:59:18 -0700363 */
Masahiro Yamada5115fda2015-08-11 01:09:43 +0900364#define uclass_foreach_dev(pos, uc) \
365 list_for_each_entry(pos, &uc->dev_head, uclass_node)
Simon Glassdd6ab882014-02-26 15:59:18 -0700366
Simon Glass0a74c962015-11-08 23:47:52 -0700367/**
368 * uclass_foreach_dev_safe() - Helper function to safely iteration through devs
369 *
370 * This creates a for() loop which works through the available devices in
371 * a uclass in order from start to end. Inside the loop, it is safe to remove
372 * @pos if required.
373 *
374 * @pos: struct udevice * to hold the current device. Set to NULL when there
375 * are no more devices.
376 * @next: struct udevice * to hold the next next
377 * @uc: uclass to scan
378 */
379#define uclass_foreach_dev_safe(pos, next, uc) \
380 list_for_each_entry_safe(pos, next, &uc->dev_head, uclass_node)
381
Simon Glassdd6ab882014-02-26 15:59:18 -0700382#endif