blob: c086004318308aaa9348d8931f12f1028b665e25 [file] [log] [blame]
Simon Glass6494d702014-02-26 15:59:18 -07001/*
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
Simon Glass40bb6372017-05-18 20:09:09 -060013#include <dm/ofnode.h>
14
Simon Glass6494d702014-02-26 15:59:18 -070015/**
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020016 * uclass_get_device_tail() - handle the end of a get_device call
17 *
18 * This handles returning an error or probing a device as needed.
19 *
20 * @dev: Device that needs to be probed
21 * @ret: Error to return. If non-zero then the device is not probed
22 * @devp: Returns the value of 'dev' if there is no error
23 * @return ret, if non-zero, else the result of the device_probe() call
24 */
25int uclass_get_device_tail(struct udevice *dev, int ret, struct udevice **devp);
26
27/**
Simon Glass6494d702014-02-26 15:59:18 -070028 * uclass_find_device() - Return n-th child of uclass
29 * @id: Id number of the uclass
30 * @index: Position of the child in uclass's list
31 * #devp: Returns pointer to device, or NULL on error
32 *
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020033 * The device is not prepared for use - this is an internal function.
34 * The function uclass_get_device_tail() can be used to probe the device.
Simon Glass6494d702014-02-26 15:59:18 -070035 *
36 * @return the uclass pointer of a child at the given index or
37 * return NULL on error.
38 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020039int uclass_find_device(enum uclass_id id, int index, struct udevice **devp);
Simon Glass6494d702014-02-26 15:59:18 -070040
41/**
Przemyslaw Marczakc1d6f912015-04-15 13:07:17 +020042 * uclass_find_first_device() - Return the first device in a uclass
43 * @id: Id number of the uclass
44 * #devp: Returns pointer to device, or NULL on error
45 *
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020046 * The device is not prepared for use - this is an internal function.
47 * The function uclass_get_device_tail() can be used to probe the device.
Przemyslaw Marczakc1d6f912015-04-15 13:07:17 +020048 *
49 * @return 0 if OK (found or not found), -1 on error
50 */
51int uclass_find_first_device(enum uclass_id id, struct udevice **devp);
52
53/**
54 * uclass_find_next_device() - Return the next device in a uclass
55 * @devp: On entry, pointer to device to lookup. On exit, returns pointer
56 * to the next device in the same uclass, or NULL if none
57 *
Przemyslaw Marczak794d5212015-04-20 13:32:32 +020058 * The device is not prepared for use - this is an internal function.
59 * The function uclass_get_device_tail() can be used to probe the device.
Przemyslaw Marczakc1d6f912015-04-15 13:07:17 +020060 *
61 * @return 0 if OK (found or not found), -1 on error
62 */
63int uclass_find_next_device(struct udevice **devp);
64
65/**
Przemyslaw Marczake0735a42015-04-15 13:07:22 +020066 * uclass_find_device_by_name() - Find uclass device based on ID and name
67 *
Przemyslaw Marczaka7b82502015-04-20 13:32:34 +020068 * This searches for a device with the exactly given name.
Przemyslaw Marczake0735a42015-04-15 13:07:22 +020069 *
70 * The device is NOT probed, it is merely returned.
71 *
72 * @id: ID to look up
73 * @name: name of a device to find
74 * @devp: Returns pointer to device (the first one with the name)
75 * @return 0 if OK, -ve on error
76 */
77int uclass_find_device_by_name(enum uclass_id id, const char *name,
78 struct udevice **devp);
79
80/**
81 * uclass_find_device_by_seq() - Find uclass device based on ID and sequence
82 *
83 * This searches for a device with the given seq or req_seq.
84 *
85 * For seq, if an active device has this sequence it will be returned.
86 * If there is no such device then this will return -ENODEV.
87 *
88 * For req_seq, if a device (whether activated or not) has this req_seq
89 * value, that device will be returned. This is a strong indication that
90 * the device will receive that sequence when activated.
91 *
92 * The device is NOT probed, it is merely returned.
93 *
94 * @id: ID to look up
95 * @seq_or_req_seq: Sequence number to find (0=first)
96 * @find_req_seq: true to find req_seq, false to find seq
97 * @devp: Returns pointer to device (there is only one per for each seq)
98 * @return 0 if OK, -ve on error
99 */
100int uclass_find_device_by_seq(enum uclass_id id, int seq_or_req_seq,
101 bool find_req_seq, struct udevice **devp);
102
103/**
Simon Glass1b30d612016-01-21 19:43:57 -0700104 * uclass_find_device_by_of_offset() - Find a uclass device by device tree node
105 *
106 * This searches the devices in the uclass for one attached to the given
107 * device tree node.
108 *
109 * The device is NOT probed, it is merely returned.
110 *
111 * @id: ID to look up
112 * @node: Device tree offset to search for (if -ve then -ENODEV is returned)
113 * @devp: Returns pointer to device (there is only one for each node)
114 * @return 0 if OK, -ve on error
115 */
116int uclass_find_device_by_of_offset(enum uclass_id id, int node,
117 struct udevice **devp);
118
119/**
Simon Glass40bb6372017-05-18 20:09:09 -0600120 * uclass_find_device_by_of_node() - Find a uclass device by device tree node
121 *
122 * This searches the devices in the uclass for one attached to the given
123 * device tree node.
124 *
125 * The device is NOT probed, it is merely returned.
126 *
127 * @id: ID to look up
128 * @node: Device tree offset to search for (if NULL then -ENODEV is returned)
129 * @devp: Returns pointer to device (there is only one for each node)
130 * @return 0 if OK, -ve on error
131 */
132int uclass_find_device_by_ofnode(enum uclass_id id, ofnode node,
133 struct udevice **devp);
134
135/**
Simon Glass6494d702014-02-26 15:59:18 -0700136 * uclass_bind_device() - Associate device with a uclass
137 *
138 * Connect the device into uclass's list of devices.
139 *
140 * @dev: Pointer to the device
141 * #return 0 on success, -ve on error
142 */
Heiko Schocher54c5d082014-05-22 12:43:05 +0200143int uclass_bind_device(struct udevice *dev);
Simon Glass6494d702014-02-26 15:59:18 -0700144
145/**
146 * uclass_unbind_device() - Deassociate device with a uclass
147 *
148 * Disconnect the device from uclass's list of devices.
149 *
150 * @dev: Pointer to the device
151 * #return 0 on success, -ve on error
152 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900153#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocher54c5d082014-05-22 12:43:05 +0200154int uclass_unbind_device(struct udevice *dev);
Simon Glass7f9875e2015-02-27 22:06:31 -0700155#else
156static inline int uclass_unbind_device(struct udevice *dev) { return 0; }
157#endif
Simon Glass6494d702014-02-26 15:59:18 -0700158
159/**
Simon Glass02c07b32015-03-05 12:25:22 -0700160 * uclass_pre_probe_device() - Deal with a device that is about to be probed
Simon Glass83c7e432015-01-25 08:27:10 -0700161 *
162 * Perform any pre-processing that is needed by the uclass before it can be
Simon Glass02c07b32015-03-05 12:25:22 -0700163 * probed. This includes the uclass' pre-probe() method and the parent
164 * uclass' child_pre_probe() method.
Simon Glass83c7e432015-01-25 08:27:10 -0700165 *
166 * @dev: Pointer to the device
167 * #return 0 on success, -ve on error
168 */
Simon Glass02c07b32015-03-05 12:25:22 -0700169int uclass_pre_probe_device(struct udevice *dev);
Simon Glass83c7e432015-01-25 08:27:10 -0700170
171/**
Simon Glass6494d702014-02-26 15:59:18 -0700172 * uclass_post_probe_device() - Deal with a device that has just been probed
173 *
174 * Perform any post-processing of a probed device that is needed by the
175 * uclass.
176 *
177 * @dev: Pointer to the device
178 * #return 0 on success, -ve on error
179 */
Heiko Schocher54c5d082014-05-22 12:43:05 +0200180int uclass_post_probe_device(struct udevice *dev);
Simon Glass6494d702014-02-26 15:59:18 -0700181
182/**
183 * uclass_pre_remove_device() - Handle a device which is about to be removed
184 *
185 * Perform any pre-processing of a device that is about to be removed.
186 *
187 * @dev: Pointer to the device
188 * #return 0 on success, -ve on error
189 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900190#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocher54c5d082014-05-22 12:43:05 +0200191int uclass_pre_remove_device(struct udevice *dev);
Simon Glass7f9875e2015-02-27 22:06:31 -0700192#else
193static inline int uclass_pre_remove_device(struct udevice *dev) { return 0; }
194#endif
Simon Glass6494d702014-02-26 15:59:18 -0700195
196/**
197 * uclass_find() - Find uclass by its id
198 *
199 * @id: Id to serach for
200 * @return pointer to uclass, or NULL if not found
201 */
202struct uclass *uclass_find(enum uclass_id key);
203
204/**
205 * uclass_destroy() - Destroy a uclass
206 *
207 * Destroy a uclass and all its devices
208 *
209 * @uc: uclass to destroy
210 * @return 0 on success, -ve on error
211 */
212int uclass_destroy(struct uclass *uc);
213
Simon Glass6494d702014-02-26 15:59:18 -0700214#endif