blob: e888fb993c01baf898c8ab7e57b73a8a8c09722a [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>
Simon Glass6494d702014-02-26 15:59:18 -07007 */
8
9#ifndef _DM_ROOT_H_
10#define _DM_ROOT_H_
11
Heiko Schocher54c5d082014-05-22 12:43:05 +020012struct udevice;
Simon Glass6494d702014-02-26 15:59:18 -070013
Simon Glass3fa9f552021-03-15 17:25:16 +130014/* Head of the uclass list if CONFIG_OF_PLATDATA_INST is enabled */
15extern struct list_head uclass_head;
16
Simon Glass6494d702014-02-26 15:59:18 -070017/**
18 * dm_root() - Return pointer to the top of the driver tree
19 *
20 * This function returns pointer to the root node of the driver tree,
21 *
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +010022 * Return: pointer to root device, or NULL if not inited yet
Simon Glass6494d702014-02-26 15:59:18 -070023 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020024struct udevice *dm_root(void);
Simon Glass6494d702014-02-26 15:59:18 -070025
Simon Glass2f11cd92016-11-13 14:21:58 -070026struct global_data;
27/**
28 * dm_fixup_for_gd_move() - Handle global_data moving to a new place
29 *
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +010030 * @new_gd: Pointer to the new global data
31 *
Simon Glass2f11cd92016-11-13 14:21:58 -070032 * The uclass list is part of global_data. Due to the way lists work, moving
33 * the list will cause it to become invalid. This function fixes that up so
34 * that the uclass list will work correctly.
35 */
36void dm_fixup_for_gd_move(struct global_data *new_gd);
37
Simon Glass6494d702014-02-26 15:59:18 -070038/**
Simon Glass8a8d24b2020-12-03 16:55:23 -070039 * dm_scan_plat() - Scan all platform data and bind drivers
Simon Glass6494d702014-02-26 15:59:18 -070040 *
Simon Glasscaa4daa2020-12-03 16:55:18 -070041 * This scans all available plat and creates drivers for each
Simon Glass6494d702014-02-26 15:59:18 -070042 *
Simon Glass00606d72014-07-23 06:55:03 -060043 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
44 * flag. If false bind all drivers.
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +010045 * Return: 0 if OK, -ve on error
Simon Glass6494d702014-02-26 15:59:18 -070046 */
Simon Glass8a8d24b2020-12-03 16:55:23 -070047int dm_scan_plat(bool pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -070048
49/**
50 * dm_scan_fdt() - Scan the device tree and bind drivers
51 *
Simon Glass0040b942014-07-23 06:55:17 -060052 * This scans the device tree and creates a driver for each node. Only
53 * the top-level subnodes are examined.
Simon Glass6494d702014-02-26 15:59:18 -070054 *
Bin Meng6244fc62018-10-10 22:06:59 -070055 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
56 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +010057 * Return: 0 if OK, -ve on error
Simon Glass6494d702014-02-26 15:59:18 -070058 */
Simon Glass725e4fc2020-11-28 17:50:09 -070059int dm_scan_fdt(bool pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -070060
61/**
Simon Glass8ee05b52020-11-28 17:50:10 -070062 * dm_extended_scan() - Scan the device tree and bind drivers
Patrice Chotarde81c9862017-09-04 14:55:56 +020063 *
64 * This calls dm_scna_dft() which scans the device tree and creates a driver
65 * for each node. the top-level subnodes are examined and also all sub-nodes
66 * of "clocks" node.
67 *
Bin Meng6244fc62018-10-10 22:06:59 -070068 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
69 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +010070 * Return: 0 if OK, -ve on error
Patrice Chotarde81c9862017-09-04 14:55:56 +020071 */
Simon Glass8ee05b52020-11-28 17:50:10 -070072int dm_extended_scan(bool pre_reloc_only);
Patrice Chotarde81c9862017-09-04 14:55:56 +020073
74/**
Simon Glassbb585032014-07-23 06:55:23 -060075 * dm_scan_other() - Scan for other devices
76 *
77 * Some devices may not be visible to Driver Model. This weak function can
78 * be provided by boards which wish to create their own devices
79 * programmaticaly. They should do this by calling device_bind() on each
80 * device.
81 *
Bin Meng6244fc62018-10-10 22:06:59 -070082 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
83 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +010084 * Return: 0 if OK, -ve on error
Simon Glassbb585032014-07-23 06:55:23 -060085 */
86int dm_scan_other(bool pre_reloc_only);
87
88/**
Simon Glassab7cd622014-07-23 06:55:04 -060089 * dm_init_and_scan() - Initialise Driver Model structures and scan for devices
90 *
91 * This function initialises the roots of the driver tree and uclass trees,
92 * then scans and binds available devices from platform data and the FDT.
93 * This calls dm_init() to set up Driver Model structures.
94 *
Bin Meng6244fc62018-10-10 22:06:59 -070095 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
96 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +010097 * Return: 0 if OK, -ve on error
Simon Glassab7cd622014-07-23 06:55:04 -060098 */
99int dm_init_and_scan(bool pre_reloc_only);
100
101/**
Simon Glassf2bc6fc2014-06-11 23:29:54 -0600102 * dm_init() - Initialise Driver Model structures
Simon Glass6494d702014-02-26 15:59:18 -0700103 *
104 * This function will initialize roots of driver tree and class tree.
105 * This needs to be called before anything uses the DM
106 *
Simon Glass19c82052017-05-18 20:09:08 -0600107 * @of_live: Enable live device tree
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +0100108 * Return: 0 if OK, -ve on error
Simon Glass6494d702014-02-26 15:59:18 -0700109 */
Simon Glass19c82052017-05-18 20:09:08 -0600110int dm_init(bool of_live);
Simon Glass6494d702014-02-26 15:59:18 -0700111
Simon Glass9adbd7a2014-07-23 06:55:01 -0600112/**
113 * dm_uninit - Uninitialise Driver Model structures
114 *
115 * All devices will be removed and unbound
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +0100116 * Return: 0 if OK, -ve on error
Simon Glass9adbd7a2014-07-23 06:55:01 -0600117 */
118int dm_uninit(void);
119
Stefan Roesebc85aa42017-03-27 10:58:53 +0200120#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
121/**
122 * dm_remove_devices_flags - Call remove function of all drivers with
123 * specific removal flags set to selectively
124 * remove drivers
125 *
126 * All devices with the matching flags set will be removed
127 *
128 * @flags: Flags for selective device removal
Patrick Delaunay0cdd7de2022-01-12 10:53:43 +0100129 * Return: 0 if OK, -ve on error
Stefan Roesebc85aa42017-03-27 10:58:53 +0200130 */
131int dm_remove_devices_flags(uint flags);
132#else
133static inline int dm_remove_devices_flags(uint flags) { return 0; }
134#endif
135
Simon Glass6476c4d2021-12-16 20:59:32 -0700136/**
137 * dm_get_stats() - Get some stats for driver mode
138 *
139 * @device_countp: Returns total number of devices that are bound
140 * @uclass_countp: Returns total number of uclasses in use
141 */
142void dm_get_stats(int *device_countp, int *uclass_countp);
143
Simon Glass6494d702014-02-26 15:59:18 -0700144#endif