]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - include/dm/uclass-internal.h
dm: core: add internal functions for getting the device without probe
[karo-tx-uboot.git] / include / dm / uclass-internal.h
1 /*
2  * Copyright (c) 2013 Google, Inc
3  *
4  * (C) Copyright 2012
5  * Pavel Herrmann <morpheus.ibis@gmail.com>
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #ifndef _DM_UCLASS_INTERNAL_H
11 #define _DM_UCLASS_INTERNAL_H
12
13 /**
14  * uclass_find_device() - Return n-th child of uclass
15  * @id:         Id number of the uclass
16  * @index:      Position of the child in uclass's list
17  * #devp:       Returns pointer to device, or NULL on error
18  *
19  * The device is not prepared for use - this is an internal function
20  *
21  * @return the uclass pointer of a child at the given index or
22  * return NULL on error.
23  */
24 int uclass_find_device(enum uclass_id id, int index, struct udevice **devp);
25
26 /**
27  * uclass_find_first_device() - Return the first device in a uclass
28  * @id:         Id number of the uclass
29  * #devp:       Returns pointer to device, or NULL on error
30  *
31  * The device is not prepared for use - this is an internal function
32  *
33  * @return 0 if OK (found or not found), -1 on error
34  */
35 int uclass_find_first_device(enum uclass_id id, struct udevice **devp);
36
37 /**
38  * uclass_find_next_device() - Return the next device in a uclass
39  * @devp: On entry, pointer to device to lookup. On exit, returns pointer
40  * to the next device in the same uclass, or NULL if none
41  *
42  * The device is not prepared for use - this is an internal function
43  *
44  * @return 0 if OK (found or not found), -1 on error
45  */
46 int uclass_find_next_device(struct udevice **devp);
47
48 /**
49  * uclass_bind_device() - Associate device with a uclass
50  *
51  * Connect the device into uclass's list of devices.
52  *
53  * @dev:        Pointer to the device
54  * #return 0 on success, -ve on error
55  */
56 int uclass_bind_device(struct udevice *dev);
57
58 /**
59  * uclass_unbind_device() - Deassociate device with a uclass
60  *
61  * Disconnect the device from uclass's list of devices.
62  *
63  * @dev:        Pointer to the device
64  * #return 0 on success, -ve on error
65  */
66 int uclass_unbind_device(struct udevice *dev);
67
68 /**
69  * uclass_pre_probe_device() - Deal with a device that is about to be probed
70  *
71  * Perform any pre-processing that is needed by the uclass before it can be
72  * probed. This includes the uclass' pre-probe() method and the parent
73  * uclass' child_pre_probe() method.
74  *
75  * @dev:        Pointer to the device
76  * #return 0 on success, -ve on error
77  */
78 int uclass_pre_probe_device(struct udevice *dev);
79
80 /**
81  * uclass_post_probe_device() - Deal with a device that has just been probed
82  *
83  * Perform any post-processing of a probed device that is needed by the
84  * uclass.
85  *
86  * @dev:        Pointer to the device
87  * #return 0 on success, -ve on error
88  */
89 int uclass_post_probe_device(struct udevice *dev);
90
91 /**
92  * uclass_pre_remove_device() - Handle a device which is about to be removed
93  *
94  * Perform any pre-processing of a device that is about to be removed.
95  *
96  * @dev:        Pointer to the device
97  * #return 0 on success, -ve on error
98  */
99 int uclass_pre_remove_device(struct udevice *dev);
100
101 /**
102  * uclass_find() - Find uclass by its id
103  *
104  * @id:         Id to serach for
105  * @return pointer to uclass, or NULL if not found
106  */
107 struct uclass *uclass_find(enum uclass_id key);
108
109 /**
110  * uclass_destroy() - Destroy a uclass
111  *
112  * Destroy a uclass and all its devices
113  *
114  * @uc: uclass to destroy
115  * @return 0 on success, -ve on error
116  */
117 int uclass_destroy(struct uclass *uc);
118
119 /**
120  * uclass_find_device_by_seq() - Find uclass device based on ID and sequence
121  *
122  * This searches for a device with the given seq or req_seq.
123  *
124  * For seq, if an active device has this sequence it will be returned.
125  * If there is no such device then this will return -ENODEV.
126  *
127  * For req_seq, if a device (whether activated or not) has this req_seq
128  * value, that device will be returned. This is a strong indication that
129  * the device will receive that sequence when activated.
130  *
131  * The device is NOT probed, it is merely returned.
132  *
133  * @id: ID to look up
134  * @seq_or_req_seq: Sequence number to find (0=first)
135  * @find_req_seq: true to find req_seq, false to find seq
136  * @devp: Returns pointer to device (there is only one per for each seq)
137  * @return 0 if OK, -ve on error
138  */
139 int uclass_find_device_by_seq(enum uclass_id id, int seq_or_req_seq,
140                               bool find_req_seq, struct udevice **devp);
141
142 #endif