blob: 89afbee619657690a884fb3a7e2b26b01d0e4946 [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_ROOT_H_
10#define _DM_ROOT_H_
11
Heiko Schocherb74fcb42014-05-22 12:43:05 +020012struct udevice;
Simon Glassdd6ab882014-02-26 15:59:18 -070013
14/**
15 * dm_root() - Return pointer to the top of the driver tree
16 *
17 * This function returns pointer to the root node of the driver tree,
18 *
19 * @return pointer to root device, or NULL if not inited yet
20 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +020021struct udevice *dm_root(void);
Simon Glassdd6ab882014-02-26 15:59:18 -070022
Simon Glass1b0deee2016-11-13 14:21:58 -070023struct global_data;
24/**
25 * dm_fixup_for_gd_move() - Handle global_data moving to a new place
26 *
27 * The uclass list is part of global_data. Due to the way lists work, moving
28 * the list will cause it to become invalid. This function fixes that up so
29 * that the uclass list will work correctly.
30 */
31void dm_fixup_for_gd_move(struct global_data *new_gd);
32
Simon Glassdd6ab882014-02-26 15:59:18 -070033/**
Simon Glassb75b15b2020-12-03 16:55:23 -070034 * dm_scan_plat() - Scan all platform data and bind drivers
Simon Glassdd6ab882014-02-26 15:59:18 -070035 *
Simon Glass71fa5b42020-12-03 16:55:18 -070036 * This scans all available plat and creates drivers for each
Simon Glassdd6ab882014-02-26 15:59:18 -070037 *
Simon Glassfef72b72014-07-23 06:55:03 -060038 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
39 * flag. If false bind all drivers.
Simon Glassdd6ab882014-02-26 15:59:18 -070040 * @return 0 if OK, -ve on error
41 */
Simon Glassb75b15b2020-12-03 16:55:23 -070042int dm_scan_plat(bool pre_reloc_only);
Simon Glassdd6ab882014-02-26 15:59:18 -070043
44/**
45 * dm_scan_fdt() - Scan the device tree and bind drivers
46 *
Simon Glasscebcebb2014-07-23 06:55:17 -060047 * This scans the device tree and creates a driver for each node. Only
48 * the top-level subnodes are examined.
Simon Glassdd6ab882014-02-26 15:59:18 -070049 *
Bin Meng004323a2018-10-10 22:06:59 -070050 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
51 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Simon Glassdd6ab882014-02-26 15:59:18 -070052 * @return 0 if OK, -ve on error
53 */
Simon Glass5039cab2020-11-28 17:50:09 -070054int dm_scan_fdt(bool pre_reloc_only);
Simon Glassdd6ab882014-02-26 15:59:18 -070055
56/**
Simon Glass4d71d602020-11-28 17:50:10 -070057 * dm_extended_scan() - Scan the device tree and bind drivers
Patrice Chotardbb3a45b2017-09-04 14:55:56 +020058 *
59 * This calls dm_scna_dft() which scans the device tree and creates a driver
60 * for each node. the top-level subnodes are examined and also all sub-nodes
61 * of "clocks" node.
62 *
Bin Meng004323a2018-10-10 22:06:59 -070063 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
64 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Patrice Chotardbb3a45b2017-09-04 14:55:56 +020065 * @return 0 if OK, -ve on error
66 */
Simon Glass4d71d602020-11-28 17:50:10 -070067int dm_extended_scan(bool pre_reloc_only);
Patrice Chotardbb3a45b2017-09-04 14:55:56 +020068
69/**
Simon Glass97e22e32014-07-23 06:55:23 -060070 * dm_scan_other() - Scan for other devices
71 *
72 * Some devices may not be visible to Driver Model. This weak function can
73 * be provided by boards which wish to create their own devices
74 * programmaticaly. They should do this by calling device_bind() on each
75 * device.
76 *
Bin Meng004323a2018-10-10 22:06:59 -070077 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
78 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
79 * @return 0 if OK, -ve on error
Simon Glass97e22e32014-07-23 06:55:23 -060080 */
81int dm_scan_other(bool pre_reloc_only);
82
83/**
Simon Glassa730c5d2014-07-23 06:55:04 -060084 * dm_init_and_scan() - Initialise Driver Model structures and scan for devices
85 *
86 * This function initialises the roots of the driver tree and uclass trees,
87 * then scans and binds available devices from platform data and the FDT.
88 * This calls dm_init() to set up Driver Model structures.
89 *
Bin Meng004323a2018-10-10 22:06:59 -070090 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
91 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Simon Glassa730c5d2014-07-23 06:55:04 -060092 * @return 0 if OK, -ve on error
93 */
94int dm_init_and_scan(bool pre_reloc_only);
95
96/**
Simon Glass4dbb5cf2014-06-11 23:29:54 -060097 * dm_init() - Initialise Driver Model structures
Simon Glassdd6ab882014-02-26 15:59:18 -070098 *
99 * This function will initialize roots of driver tree and class tree.
100 * This needs to be called before anything uses the DM
101 *
Simon Glassf19d9f22017-05-18 20:09:08 -0600102 * @of_live: Enable live device tree
Simon Glassdd6ab882014-02-26 15:59:18 -0700103 * @return 0 if OK, -ve on error
104 */
Simon Glassf19d9f22017-05-18 20:09:08 -0600105int dm_init(bool of_live);
Simon Glassdd6ab882014-02-26 15:59:18 -0700106
Simon Glass00197582014-07-23 06:55:01 -0600107/**
108 * dm_uninit - Uninitialise Driver Model structures
109 *
110 * All devices will be removed and unbound
111 * @return 0 if OK, -ve on error
112 */
113int dm_uninit(void);
114
Stefan Roese505045d2017-03-27 10:58:53 +0200115#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
116/**
117 * dm_remove_devices_flags - Call remove function of all drivers with
118 * specific removal flags set to selectively
119 * remove drivers
120 *
121 * All devices with the matching flags set will be removed
122 *
123 * @flags: Flags for selective device removal
124 * @return 0 if OK, -ve on error
125 */
126int dm_remove_devices_flags(uint flags);
127#else
128static inline int dm_remove_devices_flags(uint flags) { return 0; }
129#endif
130
Simon Glassdd6ab882014-02-26 15:59:18 -0700131#endif