blob: c420726287ee2891fa5432dcb51a20f59f23f0d8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass6494d702014-02-26 15:59:18 -07002/*
3 * Copyright (C) 2013 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
7 * Marek Vasut <marex@denx.de>
Simon Glass6494d702014-02-26 15:59:18 -07008 */
9
10#ifndef _DM_DEVICE_INTERNAL_H
11#define _DM_DEVICE_INTERNAL_H
12
Simon Glass5b896ed2022-03-04 08:43:03 -070013#include <event.h>
Simon Glass607f9bc2021-03-15 17:25:14 +130014#include <linker_lists.h>
Simon Glass396e3432017-05-18 20:09:05 -060015#include <dm/ofnode.h>
16
17struct device_node;
Heiko Schocher54c5d082014-05-22 12:43:05 +020018struct udevice;
Simon Glass6494d702014-02-26 15:59:18 -070019
Simon Glass607f9bc2021-03-15 17:25:14 +130020/*
21 * These two macros DM_DEVICE_INST and DM_DEVICE_REF are only allowed in code
22 * generated by dtoc, because the ordering is important and if other instances
23 * creep in then they may mess up the ordering expected by dtoc.
24 *
25 * It is OK to use them with 'extern' though, since that does not actually
26 * add a new record to the linker_list.
27 */
28
29/**
30 * DM_DEVICE_INST() - Declare a bound device ready for run-time use
31 *
32 * This adds an actual struct udevice to a list which is found by driver model
33 * on start-up.
34 *
35 * For example:
36 *
37 * extern U_BOOT_DRIVER(sandbox_fixed_clock);
38 * extern DM_UCLASS_INST(clk);
39 *
40 * DM_DEVICE_INST(clk_fixed) = {
41 * .driver = DM_DRIVER_REF(sandbox_fixed_clock),
42 * .name = "sandbox_fixed_clock",
43 * .plat_ = &_sandbox_fixed_clock_plat_clk_fixed,
44 * .uclass = DM_UCLASS_REF(clk),
45 * ...
46 * .seq_ = 0,
47 * };
48 *
49 * @_name: Name of the udevice. This must be a valid C identifier, used by the
50 * linker_list.
51 */
52#define DM_DEVICE_INST(_name) \
53 ll_entry_declare(struct udevice, _name, udevice)
54
55/**
56 * DM_DEVICE_REF() - Get a reference to a device
57 *
58 * This is useful in data structures and code for referencing a udevice at
59 * build time. Before this is used, an extern DM_DEVICE_INST() must have been
60 * declared.
61 *
62 * For example:
63 *
64 * extern DM_DEVICE_INST(clk_fixed);
65 *
66 * struct udevice *devs[] = {
67 * DM_DEVICE_REF(clk_fixed),
68 * };
69 *
70 * @_name: Name of the udevice. This must be a valid C identifier, used by the
71 * linker_list
72 * @returns struct udevice * for the device
73 */
74#define DM_DEVICE_REF(_name) \
75 ll_entry_ref(struct udevice, _name, udevice)
76
77/**
78 * DM_DEVICE_GET() - Get a pointer to a given device
79 *
80 * This is similar to DM_DEVICE_REF() except that it does not need the extern
81 * declaration before it. However it cannot be used in a data structures, only
82 * in code within a function.
83 *
84 * For example:
85 *
86 * void some_function() {
87 * struct udevice *dev = DM_DEVICE_GET(clk_fixed);
88 * ...
89 * }
90 */
91#define DM_DEVICE_GET(__name) \
92 ll_entry_get(struct udevice, __name, udevice)
93
Simon Glass6494d702014-02-26 15:59:18 -070094/**
Simon Glasse80be742020-11-28 17:50:06 -070095 * device_bind() - Create a device and bind it to a driver
Simon Glass6494d702014-02-26 15:59:18 -070096 *
97 * Called to set up a new device attached to a driver. The device will either
Simon Glasscaa4daa2020-12-03 16:55:18 -070098 * have plat, or a device tree node which can be used to create the
99 * plat.
Simon Glass6494d702014-02-26 15:59:18 -0700100 *
101 * Once bound a device exists but is not yet active until device_probe() is
102 * called.
103 *
104 * @parent: Pointer to device's parent, under which this driver will exist
105 * @drv: Device's driver
106 * @name: Name of device (e.g. device tree node name)
Simon Glasscaa4daa2020-12-03 16:55:18 -0700107 * @plat: Pointer to data for this device - the structure is device-
Simon Glass6494d702014-02-26 15:59:18 -0700108 * specific but may include the device's I/O address, etc.. This is NULL for
109 * devices which use device tree.
Simon Glasse80be742020-11-28 17:50:06 -0700110 * @ofnode: Devicetree node for this device. This is ofnode_null() for
111 * devices which don't use devicetree or don't have a node.
Masahiro Yamadae6cabe42015-08-27 12:44:28 +0900112 * @devp: if non-NULL, returns a pointer to the bound device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100113 * Return: 0 if OK, -ve on error
Simon Glass6494d702014-02-26 15:59:18 -0700114 */
Simon Glass734206d2020-11-28 17:50:01 -0700115int device_bind(struct udevice *parent, const struct driver *drv,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700116 const char *name, void *plat, ofnode node,
Simon Glass734206d2020-11-28 17:50:01 -0700117 struct udevice **devp);
Simon Glassd677b002018-06-11 13:07:15 -0600118
Simon Glass6494d702014-02-26 15:59:18 -0700119/**
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600120 * device_bind_with_driver_data() - Create a device and bind it to a driver
121 *
122 * Called to set up a new device attached to a driver, in the case where the
123 * driver was matched to the device by means of a match table that provides
124 * driver_data.
125 *
126 * Once bound a device exists but is not yet active until device_probe() is
127 * called.
128 *
129 * @parent: Pointer to device's parent, under which this driver will exist
130 * @drv: Device's driver
131 * @name: Name of device (e.g. device tree node name)
132 * @driver_data: The driver_data field from the driver's match table.
Simon Glass396e3432017-05-18 20:09:05 -0600133 * @node: Device tree node for this device. This is invalid for devices which
134 * don't use device tree.
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600135 * @devp: if non-NULL, returns a pointer to the bound device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100136 * Return: 0 if OK, -ve on error
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600137 */
138int device_bind_with_driver_data(struct udevice *parent,
139 const struct driver *drv, const char *name,
Simon Glass396e3432017-05-18 20:09:05 -0600140 ulong driver_data, ofnode node,
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600141 struct udevice **devp);
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600142/**
Simon Glass6494d702014-02-26 15:59:18 -0700143 * device_bind_by_name: Create a device and bind it to a driver
144 *
145 * This is a helper function used to bind devices which do not use device
146 * tree.
147 *
148 * @parent: Pointer to device's parent
Bin Meng6244fc62018-10-10 22:06:59 -0700149 * @pre_reloc_only: If true, bind the driver only if its DM_FLAG_PRE_RELOC flag
150 * is set. If false bind the driver always.
Simon Glasscaa4daa2020-12-03 16:55:18 -0700151 * @info: Name and plat for this device
Masahiro Yamadae6cabe42015-08-27 12:44:28 +0900152 * @devp: if non-NULL, returns a pointer to the bound device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100153 * Return: 0 if OK, -ve on error
Simon Glass6494d702014-02-26 15:59:18 -0700154 */
Simon Glass00606d72014-07-23 06:55:03 -0600155int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
Simon Glassa294ead2020-10-03 11:31:33 -0600156 const struct driver_info *info, struct udevice **devp);
Simon Glass6494d702014-02-26 15:59:18 -0700157
158/**
Claudiu Bezneacfecbaf2020-09-07 17:46:33 +0300159 * device_reparent: reparent the device to a new parent
160 *
161 * @dev: pointer to device to be reparented
162 * @new_parent: pointer to new parent device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100163 * Return: 0 if OK, -ve on error
Claudiu Bezneacfecbaf2020-09-07 17:46:33 +0300164 */
165int device_reparent(struct udevice *dev, struct udevice *new_parent);
166
167/**
Simon Glassd1998a92020-12-03 16:55:21 -0700168 * device_of_to_plat() - Read platform data for a device
Simon Glassbcd90cb2019-12-29 21:19:20 -0700169 *
170 * Read platform data for a device (typically from the device tree) so that
171 * the information needed to probe the device is present.
172 *
173 * This may cause some others devices to be probed if this one depends on them,
174 * e.g. a GPIO line will cause a GPIO device to be probed.
175 *
176 * All private data associated with the device is allocated.
177 *
178 * @dev: Pointer to device to process
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100179 * Return: 0 if OK, -ve on error
Simon Glassbcd90cb2019-12-29 21:19:20 -0700180 */
Simon Glassd1998a92020-12-03 16:55:21 -0700181int device_of_to_plat(struct udevice *dev);
Simon Glassbcd90cb2019-12-29 21:19:20 -0700182
183/**
Simon Glass6494d702014-02-26 15:59:18 -0700184 * device_probe() - Probe a device, activating it
185 *
186 * Activate a device so that it is ready for use. All its parents are probed
187 * first.
188 *
189 * @dev: Pointer to device to probe
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100190 * Return: 0 if OK, -ve on error
Simon Glass6494d702014-02-26 15:59:18 -0700191 */
Heiko Schocher54c5d082014-05-22 12:43:05 +0200192int device_probe(struct udevice *dev);
Simon Glass6494d702014-02-26 15:59:18 -0700193
194/**
195 * device_remove() - Remove a device, de-activating it
196 *
197 * De-activate a device so that it is no longer ready for use. All its
198 * children are deactivated first.
199 *
200 * @dev: Pointer to device to remove
Simon Glasse88afcc2017-07-29 11:35:00 -0600201 * @flags: Flags for selective device removal (DM_REMOVE_...)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100202 * Return: 0 if OK, -EKEYREJECTED if not removed due to flags, -EPROBE_DEFER if
Marek Vasutcc6f4c82021-01-24 14:32:46 -0700203 * this is a vital device and flags is DM_REMOVE_NON_VITAL, other -ve on
Simon Glassc51d2e72021-01-24 14:32:45 -0700204 * error (such an error here is normally a very bad thing)
Simon Glass6494d702014-02-26 15:59:18 -0700205 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900206#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Stefan Roese706865a2017-03-20 12:51:48 +0100207int device_remove(struct udevice *dev, uint flags);
Simon Glass3ac435d2014-11-10 17:16:47 -0700208#else
Stefan Roese706865a2017-03-20 12:51:48 +0100209static inline int device_remove(struct udevice *dev, uint flags) { return 0; }
Simon Glass3ac435d2014-11-10 17:16:47 -0700210#endif
Simon Glass6494d702014-02-26 15:59:18 -0700211
212/**
213 * device_unbind() - Unbind a device, destroying it
214 *
215 * Unbind a device and remove all memory used by it
216 *
217 * @dev: Pointer to device to unbind
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100218 * Return: 0 if OK, -ve on error
Simon Glass6494d702014-02-26 15:59:18 -0700219 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900220#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocher54c5d082014-05-22 12:43:05 +0200221int device_unbind(struct udevice *dev);
Marek Vasut66c03152015-02-18 22:36:18 +0100222#else
223static inline int device_unbind(struct udevice *dev) { return 0; }
224#endif
Simon Glass6494d702014-02-26 15:59:18 -0700225
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900226#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Simon Glass3ac435d2014-11-10 17:16:47 -0700227void device_free(struct udevice *dev);
228#else
229static inline void device_free(struct udevice *dev) {}
230#endif
231
Simon Glassf3301772015-07-07 20:53:44 -0600232/**
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +0200233 * device_chld_unbind() - Unbind all device's children from the device if bound
234 * to drv
235 *
236 * On error, the function continues to unbind all children, and reports the
237 * first error.
238 *
239 * @dev: The device that is to be stripped of its children
240 * @drv: The targeted driver
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100241 * Return: 0 on success, -ve on error
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +0200242 */
243#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
244int device_chld_unbind(struct udevice *dev, struct driver *drv);
245#else
246static inline int device_chld_unbind(struct udevice *dev, struct driver *drv)
247{
248 return 0;
249}
250#endif
251
252/**
253 * device_chld_remove() - Stop all device's children
Simon Glassc51d2e72021-01-24 14:32:45 -0700254 *
255 * This continues through all children recursively stopping part-way through if
256 * an error occurs. Return values of -EKEYREJECTED are ignored and processing
257 * continues, since they just indicate that the child did not elect to be
Marek Vasutcc6f4c82021-01-24 14:32:46 -0700258 * removed based on the value of @flags. Return values of -EPROBE_DEFER cause
259 * processing of other children to continue, but the function will return
260 * -EPROBE_DEFER.
Simon Glassc51d2e72021-01-24 14:32:45 -0700261 *
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +0200262 * @dev: The device whose children are to be removed
263 * @drv: The targeted driver
264 * @flags: Flag, if this functions is called in the pre-OS stage
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100265 * Return: 0 on success, -EPROBE_DEFER if any child failed to remove, other
Marek Vasutcc6f4c82021-01-24 14:32:46 -0700266 * -ve on error
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +0200267 */
268#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
269int device_chld_remove(struct udevice *dev, struct driver *drv,
270 uint flags);
271#else
272static inline int device_chld_remove(struct udevice *dev, struct driver *drv,
273 uint flags)
274{
275 return 0;
276}
277#endif
278
279/**
Simon Glass12559f52020-12-22 19:30:27 -0700280 * dev_set_priv() - Set the private data for a device
281 *
282 * This is normally handled by driver model, which automatically allocates
283 * private data when an 'auto' size if provided by the driver.
284 *
285 * Use this function to override normal operation for special situations, such
286 * as needing to allocate a variable amount of data.
287 *
Simon Glasse81bf6d2021-03-15 17:25:41 +1300288 * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver
289 * model code, since the pointer must be within the gd->dm_priv_base region.
290 *
Simon Glass12559f52020-12-22 19:30:27 -0700291 * @dev Device to check
292 * @priv New private-data pointer
293 */
294void dev_set_priv(struct udevice *dev, void *priv);
295
296/**
297 * dev_set_parent_priv() - Set the parent-private data for a device
298 *
299 * This is normally handled by driver model, which automatically allocates
300 * parent-private data when an 'auto' size if provided by the driver.
301 *
302 * Use this function to override normal operation for special situations, such
303 * as needing to allocate a variable amount of data.
304 *
Simon Glasse81bf6d2021-03-15 17:25:41 +1300305 * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver
306 * model code, since the pointer must be within the gd->dm_priv_base region.
307 *
Simon Glass12559f52020-12-22 19:30:27 -0700308 * @dev: Device to update
309 * @parent_priv: New parent-private data
310 */
311void dev_set_parent_priv(struct udevice *dev, void *parent_priv);
312
313/**
314 * dev_set_uclass_priv() - Set the uclass private data for a device
315 *
316 * This is normally handled by driver model, which automatically allocates
317 * uclass-private data when an 'auto' size if provided by the driver.
318 *
319 * Use this function to override normal operation for special situations, such
320 * as needing to allocate a variable amount of data.
321 *
Simon Glasse81bf6d2021-03-15 17:25:41 +1300322 * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver
323 * model code, since the pointer must be within the gd->dm_priv_base region.
324 *
Simon Glass12559f52020-12-22 19:30:27 -0700325 * @dev: Device to update
326 * @uclass_priv: New uclass private data
327 */
328void dev_set_uclass_priv(struct udevice *dev, void *uclass_priv);
329
330/**
331 * dev_set_plat() - Set the platform data for a device
332 *
333 * This is normally handled by driver model, which automatically allocates
334 * platform data when an 'auto' size if provided by the driver.
335 *
336 * Use this function to override normal operation for special situations, such
337 * as needing to allocate a variable amount of data.
338 *
Simon Glasse81bf6d2021-03-15 17:25:41 +1300339 * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver
340 * model code, since the pointer must be within the gd->dm_priv_base region.
341 *
Simon Glass12559f52020-12-22 19:30:27 -0700342 * @dev Device to check
343 * @plat New platform-data pointer
344 */
345void dev_set_plat(struct udevice *dev, void *priv);
346
347/**
348 * dev_set_parent_plat() - Set the parent platform data for a device
349 *
350 * This is normally handled by driver model, which automatically allocates
351 * parent platform data when an 'auto' size if provided by the driver.
352 *
353 * Use this function to override normal operation for special situations, such
354 * as needing to allocate a variable amount of data.
355 *
Simon Glasse81bf6d2021-03-15 17:25:41 +1300356 * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver
357 * model code, since the pointer must be within the gd->dm_priv_base region.
358 *
Simon Glass12559f52020-12-22 19:30:27 -0700359 * @dev: Device to update
360 * @parent_plat: New parent platform data
361 */
362void dev_set_parent_plat(struct udevice *dev, void *parent_plat);
363
364/**
365 * dev_set_uclass_plat() - Set the uclass platform data for a device
366 *
367 * This is normally handled by driver model, which automatically allocates
368 * uclass platform data when an 'auto' size if provided by the driver.
369 *
370 * Use this function to override normal operation for special situations, such
371 * as needing to allocate a variable amount of data.
372 *
Simon Glasse81bf6d2021-03-15 17:25:41 +1300373 * If OF_PLATDATA_RT is enabled, this function cannot be used out of core driver
374 * model code, since the pointer must be within the gd->dm_priv_base region.
375 *
Simon Glass12559f52020-12-22 19:30:27 -0700376 * @dev: Device to update
377 * @uclass_plat: New uclass platform data
378 */
379void dev_set_uclass_plat(struct udevice *dev, void *uclass_plat);
380
381/**
Simon Glassf3301772015-07-07 20:53:44 -0600382 * simple_bus_translate() - translate a bus address to a system address
383 *
384 * This handles the 'ranges' property in a simple bus. It translates the
385 * device address @addr to a system address using this property.
386 *
387 * @dev: Simple bus device (parent of target device)
388 * @addr: Address to translate
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100389 * Return: new address
Simon Glassf3301772015-07-07 20:53:44 -0600390 */
391fdt_addr_t simple_bus_translate(struct udevice *dev, fdt_addr_t addr);
392
Simon Glass89876a52014-06-11 23:29:49 -0600393/* Cast away any volatile pointer */
394#define DM_ROOT_NON_CONST (((gd_t *)gd)->dm_root)
395#define DM_UCLASS_ROOT_NON_CONST (((gd_t *)gd)->uclass_root)
Simon Glass8a715532020-12-19 10:40:17 -0700396#define DM_UCLASS_ROOT_S_NON_CONST (((gd_t *)gd)->uclass_root_s)
Simon Glass89876a52014-06-11 23:29:49 -0600397
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900398/* device resource management */
Masahiro Yamadae2282d72015-07-25 21:52:37 +0900399#ifdef CONFIG_DEVRES
400
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900401/**
402 * devres_release_probe - Release managed resources allocated after probing
403 * @dev: Device to release resources for
404 *
405 * Release all resources allocated for @dev when it was probed or later.
406 * This function is called on driver removal.
407 */
408void devres_release_probe(struct udevice *dev);
409
410/**
411 * devres_release_all - Release all managed resources
412 * @dev: Device to release resources for
413 *
414 * Release all resources associated with @dev. This function is
415 * called on driver unbinding.
416 */
417void devres_release_all(struct udevice *dev);
418
Masahiro Yamadae2282d72015-07-25 21:52:37 +0900419#else /* ! CONFIG_DEVRES */
420
421static inline void devres_release_probe(struct udevice *dev)
422{
423}
424
425static inline void devres_release_all(struct udevice *dev)
426{
427}
428
429#endif /* ! CONFIG_DEVRES */
Simon Glass5b896ed2022-03-04 08:43:03 -0700430
431static inline int device_notify(const struct udevice *dev, enum event_t type)
432{
433#if CONFIG_IS_ENABLED(DM_EVENT)
434 return event_notify(type, &dev, sizeof(dev));
435#else
436 return 0;
437#endif
438}
Simon Glass6494d702014-02-26 15:59:18 -0700439#endif