blob: c8d629ba9bfba8c6df3a3137aadeddd105895614 [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
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 Schocher54c5d082014-05-22 12:43:05 +020021struct udevice *dm_root(void);
Simon Glass6494d702014-02-26 15:59:18 -070022
Simon Glass2f11cd92016-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 Glass6494d702014-02-26 15:59:18 -070033/**
34 * dm_scan_platdata() - Scan all platform data and bind drivers
35 *
36 * This scans all available platdata and creates drivers for each
37 *
Simon Glass00606d72014-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 Glass6494d702014-02-26 15:59:18 -070040 * @return 0 if OK, -ve on error
41 */
Simon Glass00606d72014-07-23 06:55:03 -060042int dm_scan_platdata(bool pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -070043
44/**
45 * dm_scan_fdt() - Scan the device tree and bind drivers
46 *
Simon Glass0040b942014-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 Glass6494d702014-02-26 15:59:18 -070049 *
50 * @blob: Pointer to device tree blob
Bin Meng6244fc62018-10-10 22:06:59 -070051 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
52 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Simon Glass6494d702014-02-26 15:59:18 -070053 * @return 0 if OK, -ve on error
54 */
Simon Glass00606d72014-07-23 06:55:03 -060055int dm_scan_fdt(const void *blob, bool pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -070056
57/**
Patrice Chotarde81c9862017-09-04 14:55:56 +020058 * dm_extended_scan_fdt() - Scan the device tree and bind drivers
59 *
60 * This calls dm_scna_dft() which scans the device tree and creates a driver
61 * for each node. the top-level subnodes are examined and also all sub-nodes
62 * of "clocks" node.
63 *
64 * @blob: Pointer to device tree blob
Bin Meng6244fc62018-10-10 22:06:59 -070065 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
66 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Patrice Chotarde81c9862017-09-04 14:55:56 +020067 * @return 0 if OK, -ve on error
68 */
69int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only);
70
71/**
Simon Glassbb585032014-07-23 06:55:23 -060072 * dm_scan_other() - Scan for other devices
73 *
74 * Some devices may not be visible to Driver Model. This weak function can
75 * be provided by boards which wish to create their own devices
76 * programmaticaly. They should do this by calling device_bind() on each
77 * device.
78 *
Bin Meng6244fc62018-10-10 22:06:59 -070079 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
80 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
81 * @return 0 if OK, -ve on error
Simon Glassbb585032014-07-23 06:55:23 -060082 */
83int dm_scan_other(bool pre_reloc_only);
84
85/**
Simon Glassab7cd622014-07-23 06:55:04 -060086 * dm_init_and_scan() - Initialise Driver Model structures and scan for devices
87 *
88 * This function initialises the roots of the driver tree and uclass trees,
89 * then scans and binds available devices from platform data and the FDT.
90 * This calls dm_init() to set up Driver Model structures.
91 *
Bin Meng6244fc62018-10-10 22:06:59 -070092 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
93 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
Simon Glassab7cd622014-07-23 06:55:04 -060094 * @return 0 if OK, -ve on error
95 */
96int dm_init_and_scan(bool pre_reloc_only);
97
98/**
Simon Glassf2bc6fc2014-06-11 23:29:54 -060099 * dm_init() - Initialise Driver Model structures
Simon Glass6494d702014-02-26 15:59:18 -0700100 *
101 * This function will initialize roots of driver tree and class tree.
102 * This needs to be called before anything uses the DM
103 *
Simon Glass19c82052017-05-18 20:09:08 -0600104 * @of_live: Enable live device tree
Simon Glass6494d702014-02-26 15:59:18 -0700105 * @return 0 if OK, -ve on error
106 */
Simon Glass19c82052017-05-18 20:09:08 -0600107int dm_init(bool of_live);
Simon Glass6494d702014-02-26 15:59:18 -0700108
Simon Glass9adbd7a2014-07-23 06:55:01 -0600109/**
110 * dm_uninit - Uninitialise Driver Model structures
111 *
112 * All devices will be removed and unbound
113 * @return 0 if OK, -ve on error
114 */
115int dm_uninit(void);
116
Stefan Roesebc85aa42017-03-27 10:58:53 +0200117#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
118/**
119 * dm_remove_devices_flags - Call remove function of all drivers with
120 * specific removal flags set to selectively
121 * remove drivers
122 *
123 * All devices with the matching flags set will be removed
124 *
125 * @flags: Flags for selective device removal
126 * @return 0 if OK, -ve on error
127 */
128int dm_remove_devices_flags(uint flags);
129#else
130static inline int dm_remove_devices_flags(uint flags) { return 0; }
131#endif
132
Simon Glass6494d702014-02-26 15:59:18 -0700133#endif