blob: 7ba064bd53f62a470923143a36eff221c15c27e1 [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_UCLASS_INTERNAL_H
10#define _DM_UCLASS_INTERNAL_H
11
Simon Glassee145d62017-05-18 20:09:09 -060012#include <dm/ofnode.h>
13
Simon Glassdd6ab882014-02-26 15:59:18 -070014/**
Przemyslaw Marczakfa277fc2015-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/**
Simon Glassdd6ab882014-02-26 15:59:18 -070027 * uclass_find_device() - Return n-th child of uclass
28 * @id: Id number of the uclass
29 * @index: Position of the child in uclass's list
30 * #devp: Returns pointer to device, or NULL on error
31 *
Przemyslaw Marczakfa277fc2015-04-20 13:32:32 +020032 * The device is not prepared for use - this is an internal function.
33 * The function uclass_get_device_tail() can be used to probe the device.
Simon Glassdd6ab882014-02-26 15:59:18 -070034 *
35 * @return the uclass pointer of a child at the given index or
36 * return NULL on error.
37 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +020038int uclass_find_device(enum uclass_id id, int index, struct udevice **devp);
Simon Glassdd6ab882014-02-26 15:59:18 -070039
40/**
Przemyslaw Marczakf9d156e2015-04-15 13:07:17 +020041 * uclass_find_first_device() - Return the first device in a uclass
42 * @id: Id number of the uclass
43 * #devp: Returns pointer to device, or NULL on error
44 *
Przemyslaw Marczakfa277fc2015-04-20 13:32:32 +020045 * The device is not prepared for use - this is an internal function.
46 * The function uclass_get_device_tail() can be used to probe the device.
Przemyslaw Marczakf9d156e2015-04-15 13:07:17 +020047 *
48 * @return 0 if OK (found or not found), -1 on error
49 */
50int uclass_find_first_device(enum uclass_id id, struct udevice **devp);
51
52/**
53 * uclass_find_next_device() - Return the next device in a uclass
54 * @devp: On entry, pointer to device to lookup. On exit, returns pointer
55 * to the next device in the same uclass, or NULL if none
56 *
Przemyslaw Marczakfa277fc2015-04-20 13:32:32 +020057 * The device is not prepared for use - this is an internal function.
58 * The function uclass_get_device_tail() can be used to probe the device.
Przemyslaw Marczakf9d156e2015-04-15 13:07:17 +020059 *
60 * @return 0 if OK (found or not found), -1 on error
61 */
62int uclass_find_next_device(struct udevice **devp);
63
64/**
Przemyslaw Marczak2ffdf142015-04-15 13:07:22 +020065 * uclass_find_device_by_name() - Find uclass device based on ID and name
66 *
Przemyslaw Marczakc9177722015-04-20 13:32:34 +020067 * This searches for a device with the exactly given name.
Przemyslaw Marczak2ffdf142015-04-15 13:07:22 +020068 *
69 * The device is NOT probed, it is merely returned.
70 *
71 * @id: ID to look up
72 * @name: name of a device to find
73 * @devp: Returns pointer to device (the first one with the name)
74 * @return 0 if OK, -ve on error
75 */
76int uclass_find_device_by_name(enum uclass_id id, const char *name,
77 struct udevice **devp);
78
79/**
80 * uclass_find_device_by_seq() - Find uclass device based on ID and sequence
81 *
82 * This searches for a device with the given seq or req_seq.
83 *
84 * For seq, if an active device has this sequence it will be returned.
85 * If there is no such device then this will return -ENODEV.
86 *
87 * For req_seq, if a device (whether activated or not) has this req_seq
88 * value, that device will be returned. This is a strong indication that
89 * the device will receive that sequence when activated.
90 *
91 * The device is NOT probed, it is merely returned.
92 *
93 * @id: ID to look up
94 * @seq_or_req_seq: Sequence number to find (0=first)
95 * @find_req_seq: true to find req_seq, false to find seq
96 * @devp: Returns pointer to device (there is only one per for each seq)
97 * @return 0 if OK, -ve on error
98 */
99int uclass_find_device_by_seq(enum uclass_id id, int seq_or_req_seq,
100 bool find_req_seq, struct udevice **devp);
101
102/**
Simon Glass96f04442016-01-21 19:43:57 -0700103 * uclass_find_device_by_of_offset() - Find a uclass device by device tree node
104 *
105 * This searches the devices in the uclass for one attached to the given
106 * device tree node.
107 *
108 * The device is NOT probed, it is merely returned.
109 *
110 * @id: ID to look up
111 * @node: Device tree offset to search for (if -ve then -ENODEV is returned)
112 * @devp: Returns pointer to device (there is only one for each node)
113 * @return 0 if OK, -ve on error
114 */
115int uclass_find_device_by_of_offset(enum uclass_id id, int node,
116 struct udevice **devp);
117
118/**
Simon Glassee145d62017-05-18 20:09:09 -0600119 * uclass_find_device_by_of_node() - Find a uclass device by device tree node
120 *
121 * This searches the devices in the uclass for one attached to the given
122 * device tree node.
123 *
124 * The device is NOT probed, it is merely returned.
125 *
126 * @id: ID to look up
127 * @node: Device tree offset to search for (if NULL then -ENODEV is returned)
128 * @devp: Returns pointer to device (there is only one for each node)
129 * @return 0 if OK, -ve on error
130 */
131int uclass_find_device_by_ofnode(enum uclass_id id, ofnode node,
132 struct udevice **devp);
133
134/**
Simon Glassdd6ab882014-02-26 15:59:18 -0700135 * uclass_bind_device() - Associate device with a uclass
136 *
137 * Connect the device into uclass's list of devices.
138 *
139 * @dev: Pointer to the device
140 * #return 0 on success, -ve on error
141 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200142int uclass_bind_device(struct udevice *dev);
Simon Glassdd6ab882014-02-26 15:59:18 -0700143
144/**
145 * uclass_unbind_device() - Deassociate device with a uclass
146 *
147 * Disconnect the device from uclass's list of devices.
148 *
149 * @dev: Pointer to the device
150 * #return 0 on success, -ve on error
151 */
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900152#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200153int uclass_unbind_device(struct udevice *dev);
Simon Glass8914c8a2015-02-27 22:06:31 -0700154#else
155static inline int uclass_unbind_device(struct udevice *dev) { return 0; }
156#endif
Simon Glassdd6ab882014-02-26 15:59:18 -0700157
158/**
Simon Glass9c1f3822015-03-05 12:25:22 -0700159 * uclass_pre_probe_device() - Deal with a device that is about to be probed
Simon Glass5104b982015-01-25 08:27:10 -0700160 *
161 * Perform any pre-processing that is needed by the uclass before it can be
Simon Glass9c1f3822015-03-05 12:25:22 -0700162 * probed. This includes the uclass' pre-probe() method and the parent
163 * uclass' child_pre_probe() method.
Simon Glass5104b982015-01-25 08:27:10 -0700164 *
165 * @dev: Pointer to the device
166 * #return 0 on success, -ve on error
167 */
Simon Glass9c1f3822015-03-05 12:25:22 -0700168int uclass_pre_probe_device(struct udevice *dev);
Simon Glass5104b982015-01-25 08:27:10 -0700169
170/**
Simon Glassdd6ab882014-02-26 15:59:18 -0700171 * uclass_post_probe_device() - Deal with a device that has just been probed
172 *
173 * Perform any post-processing of a probed device that is needed by the
174 * uclass.
175 *
176 * @dev: Pointer to the device
177 * #return 0 on success, -ve on error
178 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200179int uclass_post_probe_device(struct udevice *dev);
Simon Glassdd6ab882014-02-26 15:59:18 -0700180
181/**
182 * uclass_pre_remove_device() - Handle a device which is about to be removed
183 *
184 * Perform any pre-processing of a device that is about to be removed.
185 *
186 * @dev: Pointer to the device
187 * #return 0 on success, -ve on error
188 */
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900189#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200190int uclass_pre_remove_device(struct udevice *dev);
Simon Glass8914c8a2015-02-27 22:06:31 -0700191#else
192static inline int uclass_pre_remove_device(struct udevice *dev) { return 0; }
193#endif
Simon Glassdd6ab882014-02-26 15:59:18 -0700194
195/**
196 * uclass_find() - Find uclass by its id
197 *
198 * @id: Id to serach for
199 * @return pointer to uclass, or NULL if not found
200 */
201struct uclass *uclass_find(enum uclass_id key);
202
203/**
204 * uclass_destroy() - Destroy a uclass
205 *
206 * Destroy a uclass and all its devices
207 *
208 * @uc: uclass to destroy
209 * @return 0 on success, -ve on error
210 */
211int uclass_destroy(struct uclass *uc);
212
Simon Glassdd6ab882014-02-26 15:59:18 -0700213#endif