blob: 30d5a4fb9bf144e8b3c1d7b7e1aab7bb97e58dd9 [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_UCLASS_INTERNAL_H
10#define _DM_UCLASS_INTERNAL_H
11
Simon Glass40bb6372017-05-18 20:09:09 -060012#include <dm/ofnode.h>
13
Simon Glass6494d702014-02-26 15:59:18 -070014/**
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020015 * uclass_get_device_tail() - handle the end of a get_device call
16 *
17 * This handles returning an error or probing a device as needed.
18 *
19 * @dev: Device that needs to be probed
20 * @ret: Error to return. If non-zero then the device is not probed
21 * @devp: Returns the value of 'dev' if there is no error
22 * @return ret, if non-zero, else the result of the device_probe() call
23 */
24int uclass_get_device_tail(struct udevice *dev, int ret, struct udevice **devp);
25
26/**
Jean-Jacques Hiblote7c86562018-08-09 16:17:42 +020027 * dev_get_uclass_index() - Get uclass and index of device
28 * @dev: - in - Device that we want the uclass/index of
29 * @ucp: - out - A pointer to the uclass the device belongs to
30 *
31 * The device is not prepared for use - this is an internal function.
32 *
33 * @return the index of the device in the uclass list or -ENODEV if not found.
34 */
35int dev_get_uclass_index(struct udevice *dev, struct uclass **ucp);
36
37/**
Simon Glass6494d702014-02-26 15:59:18 -070038 * uclass_find_device() - Return n-th child of uclass
39 * @id: Id number of the uclass
40 * @index: Position of the child in uclass's list
41 * #devp: Returns pointer to device, or NULL on error
42 *
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020043 * The device is not prepared for use - this is an internal function.
44 * The function uclass_get_device_tail() can be used to probe the device.
Simon Glass6494d702014-02-26 15:59:18 -070045 *
46 * @return the uclass pointer of a child at the given index or
47 * return NULL on error.
48 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020049int uclass_find_device(enum uclass_id id, int index, struct udevice **devp);
Simon Glass6494d702014-02-26 15:59:18 -070050
51/**
Przemyslaw Marczakc1d6f912015-04-15 13:07:17 +020052 * uclass_find_first_device() - Return the first device in a uclass
53 * @id: Id number of the uclass
54 * #devp: Returns pointer to device, or NULL on error
55 *
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020056 * The device is not prepared for use - this is an internal function.
57 * The function uclass_get_device_tail() can be used to probe the device.
Przemyslaw Marczakc1d6f912015-04-15 13:07:17 +020058 *
59 * @return 0 if OK (found or not found), -1 on error
60 */
61int uclass_find_first_device(enum uclass_id id, struct udevice **devp);
62
63/**
64 * uclass_find_next_device() - Return the next device in a uclass
65 * @devp: On entry, pointer to device to lookup. On exit, returns pointer
66 * to the next device in the same uclass, or NULL if none
67 *
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020068 * The device is not prepared for use - this is an internal function.
69 * The function uclass_get_device_tail() can be used to probe the device.
Przemyslaw Marczakc1d6f912015-04-15 13:07:17 +020070 *
71 * @return 0 if OK (found or not found), -1 on error
72 */
73int uclass_find_next_device(struct udevice **devp);
74
75/**
Przemyslaw Marczake0735a42015-04-15 13:07:22 +020076 * uclass_find_device_by_name() - Find uclass device based on ID and name
77 *
Przemyslaw Marczaka7b82502015-04-20 13:32:34 +020078 * This searches for a device with the exactly given name.
Przemyslaw Marczake0735a42015-04-15 13:07:22 +020079 *
80 * The device is NOT probed, it is merely returned.
81 *
82 * @id: ID to look up
83 * @name: name of a device to find
84 * @devp: Returns pointer to device (the first one with the name)
85 * @return 0 if OK, -ve on error
86 */
87int uclass_find_device_by_name(enum uclass_id id, const char *name,
88 struct udevice **devp);
89
90/**
91 * uclass_find_device_by_seq() - Find uclass device based on ID and sequence
92 *
93 * This searches for a device with the given seq or req_seq.
94 *
95 * For seq, if an active device has this sequence it will be returned.
96 * If there is no such device then this will return -ENODEV.
97 *
98 * For req_seq, if a device (whether activated or not) has this req_seq
99 * value, that device will be returned. This is a strong indication that
100 * the device will receive that sequence when activated.
101 *
102 * The device is NOT probed, it is merely returned.
103 *
104 * @id: ID to look up
105 * @seq_or_req_seq: Sequence number to find (0=first)
106 * @find_req_seq: true to find req_seq, false to find seq
107 * @devp: Returns pointer to device (there is only one per for each seq)
108 * @return 0 if OK, -ve on error
109 */
110int uclass_find_device_by_seq(enum uclass_id id, int seq_or_req_seq,
111 bool find_req_seq, struct udevice **devp);
112
113/**
Simon Glass1b30d612016-01-21 19:43:57 -0700114 * uclass_find_device_by_of_offset() - Find a uclass device by device tree node
115 *
116 * This searches the devices in the uclass for one attached to the given
117 * device tree node.
118 *
119 * The device is NOT probed, it is merely returned.
120 *
121 * @id: ID to look up
122 * @node: Device tree offset to search for (if -ve then -ENODEV is returned)
123 * @devp: Returns pointer to device (there is only one for each node)
124 * @return 0 if OK, -ve on error
125 */
126int uclass_find_device_by_of_offset(enum uclass_id id, int node,
127 struct udevice **devp);
128
129/**
Simon Glass40bb6372017-05-18 20:09:09 -0600130 * uclass_find_device_by_of_node() - Find a uclass device by device tree node
131 *
132 * This searches the devices in the uclass for one attached to the given
133 * device tree node.
134 *
135 * The device is NOT probed, it is merely returned.
136 *
137 * @id: ID to look up
138 * @node: Device tree offset to search for (if NULL then -ENODEV is returned)
139 * @devp: Returns pointer to device (there is only one for each node)
140 * @return 0 if OK, -ve on error
141 */
142int uclass_find_device_by_ofnode(enum uclass_id id, ofnode node,
143 struct udevice **devp);
144
145/**
Simon Glass6494d702014-02-26 15:59:18 -0700146 * uclass_bind_device() - Associate device with a uclass
147 *
148 * Connect the device into uclass's list of devices.
149 *
150 * @dev: Pointer to the device
151 * #return 0 on success, -ve on error
152 */
Heiko Schocher54c5d082014-05-22 12:43:05 +0200153int uclass_bind_device(struct udevice *dev);
Simon Glass6494d702014-02-26 15:59:18 -0700154
155/**
156 * uclass_unbind_device() - Deassociate device with a uclass
157 *
158 * Disconnect the device from uclass's list of devices.
159 *
160 * @dev: Pointer to the device
161 * #return 0 on success, -ve on error
162 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900163#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocher54c5d082014-05-22 12:43:05 +0200164int uclass_unbind_device(struct udevice *dev);
Simon Glass7f9875e2015-02-27 22:06:31 -0700165#else
166static inline int uclass_unbind_device(struct udevice *dev) { return 0; }
167#endif
Simon Glass6494d702014-02-26 15:59:18 -0700168
169/**
Simon Glass02c07b32015-03-05 12:25:22 -0700170 * uclass_pre_probe_device() - Deal with a device that is about to be probed
Simon Glass83c7e432015-01-25 08:27:10 -0700171 *
172 * Perform any pre-processing that is needed by the uclass before it can be
Simon Glass02c07b32015-03-05 12:25:22 -0700173 * probed. This includes the uclass' pre-probe() method and the parent
174 * uclass' child_pre_probe() method.
Simon Glass83c7e432015-01-25 08:27:10 -0700175 *
176 * @dev: Pointer to the device
177 * #return 0 on success, -ve on error
178 */
Simon Glass02c07b32015-03-05 12:25:22 -0700179int uclass_pre_probe_device(struct udevice *dev);
Simon Glass83c7e432015-01-25 08:27:10 -0700180
181/**
Simon Glass6494d702014-02-26 15:59:18 -0700182 * uclass_post_probe_device() - Deal with a device that has just been probed
183 *
184 * Perform any post-processing of a probed device that is needed by the
185 * uclass.
186 *
187 * @dev: Pointer to the device
188 * #return 0 on success, -ve on error
189 */
Heiko Schocher54c5d082014-05-22 12:43:05 +0200190int uclass_post_probe_device(struct udevice *dev);
Simon Glass6494d702014-02-26 15:59:18 -0700191
192/**
193 * uclass_pre_remove_device() - Handle a device which is about to be removed
194 *
195 * Perform any pre-processing of a device that is about to be removed.
196 *
197 * @dev: Pointer to the device
198 * #return 0 on success, -ve on error
199 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900200#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocher54c5d082014-05-22 12:43:05 +0200201int uclass_pre_remove_device(struct udevice *dev);
Simon Glass7f9875e2015-02-27 22:06:31 -0700202#else
203static inline int uclass_pre_remove_device(struct udevice *dev) { return 0; }
204#endif
Simon Glass6494d702014-02-26 15:59:18 -0700205
206/**
207 * uclass_find() - Find uclass by its id
208 *
209 * @id: Id to serach for
210 * @return pointer to uclass, or NULL if not found
211 */
212struct uclass *uclass_find(enum uclass_id key);
213
214/**
215 * uclass_destroy() - Destroy a uclass
216 *
217 * Destroy a uclass and all its devices
218 *
219 * @uc: uclass to destroy
220 * @return 0 on success, -ve on error
221 */
222int uclass_destroy(struct uclass *uc);
223
Simon Glass6494d702014-02-26 15:59:18 -0700224#endif