Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
| 4 | * |
| 5 | * (C) Copyright 2012 |
| 6 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _DM_UCLASS_INTERNAL_H |
| 10 | #define _DM_UCLASS_INTERNAL_H |
| 11 | |
Simon Glass | ee145d6 | 2017-05-18 20:09:09 -0600 | [diff] [blame] | 12 | #include <dm/ofnode.h> |
| 13 | |
Simon Glass | 7074354 | 2021-03-15 17:25:14 +1300 | [diff] [blame] | 14 | /* |
| 15 | * These next two macros DM_UCLASS_INST() and DM_UCLASS_REF() are only allowed |
| 16 | * in code generated by dtoc, because the ordering is important and if other |
| 17 | * instances creep in then they may mess up the ordering expected by dtoc. |
| 18 | * |
| 19 | * It is OK to use them with 'extern' though, since that does not actually |
| 20 | * add a new record to the linker_list. |
| 21 | */ |
| 22 | |
| 23 | /** |
| 24 | * DM_UCLASS_INST() - Declare a uclass ready for run-time use |
| 25 | * |
| 26 | * This adds an actual struct uclass to a list which is found by driver model |
| 27 | * on start-up. |
| 28 | * |
| 29 | * For example: |
| 30 | * |
| 31 | * DM_UCLASS_INST(clk) = { |
| 32 | * .uc_drv = DM_UCLASS_DRIVER_REF(clk), |
| 33 | * ... |
| 34 | * }; |
| 35 | * |
| 36 | * @_name: Name of the uclass. This must be a valid C identifier, used by the |
| 37 | * linker_list. |
| 38 | */ |
| 39 | #define DM_UCLASS_INST(_name) \ |
| 40 | ll_entry_declare(struct uclass, _name, uclass) |
| 41 | |
| 42 | /** |
| 43 | * DM_UCLASS_REF() - Get a reference to a uclass |
| 44 | * |
| 45 | * This is useful for referencing a uclass at build time. Before this is used, |
| 46 | * an extern DM_UCLASS_INST() must have been declared. |
| 47 | * |
| 48 | * For example: |
| 49 | * |
| 50 | * extern DM_UCLASS_INST(clk); |
| 51 | * |
| 52 | * struct uclass *ucs[] = { |
| 53 | * DM_UCLASS_REF(clk), |
| 54 | * } |
| 55 | * |
| 56 | * @_name: Name of the uclass. This must be a valid C identifier, used by the |
| 57 | * linker_list |
| 58 | * @returns struct uclass * for the device |
| 59 | */ |
| 60 | #define DM_UCLASS_REF(_name) \ |
| 61 | ll_entry_ref(struct uclass, _name, uclass) |
| 62 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 63 | /** |
Simon Glass | 96404c2 | 2020-12-22 19:30:26 -0700 | [diff] [blame] | 64 | * uclass_set_priv() - Set the private data for a uclass |
| 65 | * |
| 66 | * This is normally handled by driver model, which automatically allocates |
| 67 | * private data when an 'auto' size if provided by the uclass driver. |
| 68 | * |
| 69 | * Use this function to override normal operation for special situations, such |
| 70 | * as needing to allocate a variable amount of data. |
| 71 | * |
| 72 | * @uc Uclass to update |
| 73 | * @priv New private-data pointer |
| 74 | */ |
| 75 | void uclass_set_priv(struct uclass *uc, void *priv); |
| 76 | |
| 77 | /** |
Simon Glass | b941f56 | 2020-12-16 21:20:30 -0700 | [diff] [blame] | 78 | * uclass_find_next_free_seq() - Get the next free sequence number |
Jean-Jacques Hiblot | a5da300 | 2018-12-07 14:50:39 +0100 | [diff] [blame] | 79 | * |
Simon Glass | b941f56 | 2020-12-16 21:20:30 -0700 | [diff] [blame] | 80 | * This returns the next free sequence number. This is useful only if |
| 81 | * OF_CONTROL is not used. The next free sequence number is simply the |
| 82 | * maximum sequence number used by all devices in the uclass + 1. The value |
| 83 | * returned is always greater than the largest alias, if DM_SEQ_ALIAS is enabled |
| 84 | * and the uclass has the DM_UC_FLAG_SEQ_ALIAS flag. |
| 85 | * |
| 86 | * This allows assigning the sequence number in the binding order. |
Jean-Jacques Hiblot | a5da300 | 2018-12-07 14:50:39 +0100 | [diff] [blame] | 87 | * |
Simon Glass | 1ae093f | 2020-12-16 21:20:08 -0700 | [diff] [blame] | 88 | * @uc: uclass to check |
Simon Glass | b941f56 | 2020-12-16 21:20:30 -0700 | [diff] [blame] | 89 | * @return The next free sequence number |
Jean-Jacques Hiblot | a5da300 | 2018-12-07 14:50:39 +0100 | [diff] [blame] | 90 | */ |
Simon Glass | b941f56 | 2020-12-16 21:20:30 -0700 | [diff] [blame] | 91 | int uclass_find_next_free_seq(struct uclass *uc); |
Jean-Jacques Hiblot | a5da300 | 2018-12-07 14:50:39 +0100 | [diff] [blame] | 92 | |
| 93 | /** |
Przemyslaw Marczak | fa277fc | 2015-04-20 13:32:32 +0200 | [diff] [blame] | 94 | * uclass_get_device_tail() - handle the end of a get_device call |
| 95 | * |
| 96 | * This handles returning an error or probing a device as needed. |
| 97 | * |
| 98 | * @dev: Device that needs to be probed |
| 99 | * @ret: Error to return. If non-zero then the device is not probed |
| 100 | * @devp: Returns the value of 'dev' if there is no error |
| 101 | * @return ret, if non-zero, else the result of the device_probe() call |
| 102 | */ |
| 103 | int uclass_get_device_tail(struct udevice *dev, int ret, struct udevice **devp); |
| 104 | |
| 105 | /** |
Jean-Jacques Hiblot | c4f0248 | 2018-08-09 16:17:42 +0200 | [diff] [blame] | 106 | * dev_get_uclass_index() - Get uclass and index of device |
| 107 | * @dev: - in - Device that we want the uclass/index of |
| 108 | * @ucp: - out - A pointer to the uclass the device belongs to |
| 109 | * |
| 110 | * The device is not prepared for use - this is an internal function. |
| 111 | * |
| 112 | * @return the index of the device in the uclass list or -ENODEV if not found. |
| 113 | */ |
| 114 | int dev_get_uclass_index(struct udevice *dev, struct uclass **ucp); |
| 115 | |
| 116 | /** |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 117 | * uclass_find_device() - Return n-th child of uclass |
| 118 | * @id: Id number of the uclass |
| 119 | * @index: Position of the child in uclass's list |
| 120 | * #devp: Returns pointer to device, or NULL on error |
| 121 | * |
Przemyslaw Marczak | fa277fc | 2015-04-20 13:32:32 +0200 | [diff] [blame] | 122 | * The device is not prepared for use - this is an internal function. |
| 123 | * The function uclass_get_device_tail() can be used to probe the device. |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 124 | * |
| 125 | * @return the uclass pointer of a child at the given index or |
| 126 | * return NULL on error. |
| 127 | */ |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 128 | int uclass_find_device(enum uclass_id id, int index, struct udevice **devp); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 129 | |
| 130 | /** |
Przemyslaw Marczak | f9d156e | 2015-04-15 13:07:17 +0200 | [diff] [blame] | 131 | * uclass_find_first_device() - Return the first device in a uclass |
| 132 | * @id: Id number of the uclass |
| 133 | * #devp: Returns pointer to device, or NULL on error |
| 134 | * |
Przemyslaw Marczak | fa277fc | 2015-04-20 13:32:32 +0200 | [diff] [blame] | 135 | * The device is not prepared for use - this is an internal function. |
| 136 | * The function uclass_get_device_tail() can be used to probe the device. |
Przemyslaw Marczak | f9d156e | 2015-04-15 13:07:17 +0200 | [diff] [blame] | 137 | * |
Simon Glass | 0bb4427 | 2019-09-25 08:55:55 -0600 | [diff] [blame] | 138 | * @return 0 if OK (found or not found), -ve on error |
Przemyslaw Marczak | f9d156e | 2015-04-15 13:07:17 +0200 | [diff] [blame] | 139 | */ |
| 140 | int uclass_find_first_device(enum uclass_id id, struct udevice **devp); |
| 141 | |
| 142 | /** |
| 143 | * uclass_find_next_device() - Return the next device in a uclass |
| 144 | * @devp: On entry, pointer to device to lookup. On exit, returns pointer |
| 145 | * to the next device in the same uclass, or NULL if none |
| 146 | * |
Przemyslaw Marczak | fa277fc | 2015-04-20 13:32:32 +0200 | [diff] [blame] | 147 | * The device is not prepared for use - this is an internal function. |
| 148 | * The function uclass_get_device_tail() can be used to probe the device. |
Przemyslaw Marczak | f9d156e | 2015-04-15 13:07:17 +0200 | [diff] [blame] | 149 | * |
Simon Glass | 0bb4427 | 2019-09-25 08:55:55 -0600 | [diff] [blame] | 150 | * @return 0 if OK (found or not found), -ve on error |
Przemyslaw Marczak | f9d156e | 2015-04-15 13:07:17 +0200 | [diff] [blame] | 151 | */ |
| 152 | int uclass_find_next_device(struct udevice **devp); |
| 153 | |
| 154 | /** |
Przemyslaw Marczak | 2ffdf14 | 2015-04-15 13:07:22 +0200 | [diff] [blame] | 155 | * uclass_find_device_by_name() - Find uclass device based on ID and name |
| 156 | * |
Przemyslaw Marczak | c917772 | 2015-04-20 13:32:34 +0200 | [diff] [blame] | 157 | * This searches for a device with the exactly given name. |
Przemyslaw Marczak | 2ffdf14 | 2015-04-15 13:07:22 +0200 | [diff] [blame] | 158 | * |
| 159 | * The device is NOT probed, it is merely returned. |
| 160 | * |
| 161 | * @id: ID to look up |
| 162 | * @name: name of a device to find |
| 163 | * @devp: Returns pointer to device (the first one with the name) |
| 164 | * @return 0 if OK, -ve on error |
| 165 | */ |
| 166 | int uclass_find_device_by_name(enum uclass_id id, const char *name, |
| 167 | struct udevice **devp); |
| 168 | |
| 169 | /** |
| 170 | * uclass_find_device_by_seq() - Find uclass device based on ID and sequence |
| 171 | * |
Simon Glass | 07e1338 | 2020-12-16 21:20:29 -0700 | [diff] [blame] | 172 | * This searches for a device with the given seq. |
Przemyslaw Marczak | 2ffdf14 | 2015-04-15 13:07:22 +0200 | [diff] [blame] | 173 | * |
| 174 | * The device is NOT probed, it is merely returned. |
| 175 | * |
| 176 | * @id: ID to look up |
Simon Glass | 07e1338 | 2020-12-16 21:20:29 -0700 | [diff] [blame] | 177 | * @seq: Sequence number to find (0=first) |
Przemyslaw Marczak | 2ffdf14 | 2015-04-15 13:07:22 +0200 | [diff] [blame] | 178 | * @devp: Returns pointer to device (there is only one per for each seq) |
Simon Glass | 07e1338 | 2020-12-16 21:20:29 -0700 | [diff] [blame] | 179 | * @return 0 if OK, -ENODEV if not found |
Przemyslaw Marczak | 2ffdf14 | 2015-04-15 13:07:22 +0200 | [diff] [blame] | 180 | */ |
Simon Glass | 07e1338 | 2020-12-16 21:20:29 -0700 | [diff] [blame] | 181 | int uclass_find_device_by_seq(enum uclass_id id, int seq, |
| 182 | struct udevice **devp); |
Przemyslaw Marczak | 2ffdf14 | 2015-04-15 13:07:22 +0200 | [diff] [blame] | 183 | |
| 184 | /** |
Simon Glass | 96f0444 | 2016-01-21 19:43:57 -0700 | [diff] [blame] | 185 | * uclass_find_device_by_of_offset() - Find a uclass device by device tree node |
| 186 | * |
| 187 | * This searches the devices in the uclass for one attached to the given |
| 188 | * device tree node. |
| 189 | * |
| 190 | * The device is NOT probed, it is merely returned. |
| 191 | * |
| 192 | * @id: ID to look up |
| 193 | * @node: Device tree offset to search for (if -ve then -ENODEV is returned) |
| 194 | * @devp: Returns pointer to device (there is only one for each node) |
| 195 | * @return 0 if OK, -ve on error |
| 196 | */ |
| 197 | int uclass_find_device_by_of_offset(enum uclass_id id, int node, |
| 198 | struct udevice **devp); |
| 199 | |
| 200 | /** |
Simon Glass | ee145d6 | 2017-05-18 20:09:09 -0600 | [diff] [blame] | 201 | * uclass_find_device_by_of_node() - Find a uclass device by device tree node |
| 202 | * |
| 203 | * This searches the devices in the uclass for one attached to the given |
| 204 | * device tree node. |
| 205 | * |
| 206 | * The device is NOT probed, it is merely returned. |
| 207 | * |
| 208 | * @id: ID to look up |
| 209 | * @node: Device tree offset to search for (if NULL then -ENODEV is returned) |
| 210 | * @devp: Returns pointer to device (there is only one for each node) |
| 211 | * @return 0 if OK, -ve on error |
| 212 | */ |
| 213 | int uclass_find_device_by_ofnode(enum uclass_id id, ofnode node, |
| 214 | struct udevice **devp); |
| 215 | |
| 216 | /** |
Simon Glass | dc3efdc | 2018-11-18 08:14:30 -0700 | [diff] [blame] | 217 | * uclass_find_device_by_phandle() - Find a uclass device by phandle |
| 218 | * |
| 219 | * This searches the devices in the uclass for one with the given phandle. |
| 220 | * |
| 221 | * The device is NOT probed, it is merely returned. |
| 222 | * |
| 223 | * @id: ID to look up |
| 224 | * @parent: Parent device containing the phandle pointer |
| 225 | * @name: Name of property in the parent device node |
| 226 | * @devp: Returns pointer to device (there is only one for each node) |
| 227 | * @return 0 if OK, -ENOENT if there is no @name present in the node, other |
| 228 | * -ve on error |
| 229 | */ |
| 230 | int uclass_find_device_by_phandle(enum uclass_id id, struct udevice *parent, |
| 231 | const char *name, struct udevice **devp); |
| 232 | |
| 233 | /** |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 234 | * uclass_bind_device() - Associate device with a uclass |
| 235 | * |
| 236 | * Connect the device into uclass's list of devices. |
| 237 | * |
| 238 | * @dev: Pointer to the device |
| 239 | * #return 0 on success, -ve on error |
| 240 | */ |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 241 | int uclass_bind_device(struct udevice *dev); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 242 | |
| 243 | /** |
| 244 | * uclass_unbind_device() - Deassociate device with a uclass |
| 245 | * |
| 246 | * Disconnect the device from uclass's list of devices. |
| 247 | * |
| 248 | * @dev: Pointer to the device |
| 249 | * #return 0 on success, -ve on error |
| 250 | */ |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 251 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 252 | int uclass_unbind_device(struct udevice *dev); |
Simon Glass | 8914c8a | 2015-02-27 22:06:31 -0700 | [diff] [blame] | 253 | #else |
| 254 | static inline int uclass_unbind_device(struct udevice *dev) { return 0; } |
| 255 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 256 | |
| 257 | /** |
Simon Glass | 9c1f382 | 2015-03-05 12:25:22 -0700 | [diff] [blame] | 258 | * uclass_pre_probe_device() - Deal with a device that is about to be probed |
Simon Glass | 5104b98 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 259 | * |
| 260 | * Perform any pre-processing that is needed by the uclass before it can be |
Simon Glass | 9c1f382 | 2015-03-05 12:25:22 -0700 | [diff] [blame] | 261 | * probed. This includes the uclass' pre-probe() method and the parent |
| 262 | * uclass' child_pre_probe() method. |
Simon Glass | 5104b98 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 263 | * |
| 264 | * @dev: Pointer to the device |
| 265 | * #return 0 on success, -ve on error |
| 266 | */ |
Simon Glass | 9c1f382 | 2015-03-05 12:25:22 -0700 | [diff] [blame] | 267 | int uclass_pre_probe_device(struct udevice *dev); |
Simon Glass | 5104b98 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 268 | |
| 269 | /** |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 270 | * uclass_post_probe_device() - Deal with a device that has just been probed |
| 271 | * |
| 272 | * Perform any post-processing of a probed device that is needed by the |
| 273 | * uclass. |
| 274 | * |
| 275 | * @dev: Pointer to the device |
| 276 | * #return 0 on success, -ve on error |
| 277 | */ |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 278 | int uclass_post_probe_device(struct udevice *dev); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 279 | |
| 280 | /** |
| 281 | * uclass_pre_remove_device() - Handle a device which is about to be removed |
| 282 | * |
| 283 | * Perform any pre-processing of a device that is about to be removed. |
| 284 | * |
| 285 | * @dev: Pointer to the device |
| 286 | * #return 0 on success, -ve on error |
| 287 | */ |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 288 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 289 | int uclass_pre_remove_device(struct udevice *dev); |
Simon Glass | 8914c8a | 2015-02-27 22:06:31 -0700 | [diff] [blame] | 290 | #else |
| 291 | static inline int uclass_pre_remove_device(struct udevice *dev) { return 0; } |
| 292 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 293 | |
| 294 | /** |
| 295 | * uclass_find() - Find uclass by its id |
| 296 | * |
| 297 | * @id: Id to serach for |
| 298 | * @return pointer to uclass, or NULL if not found |
| 299 | */ |
| 300 | struct uclass *uclass_find(enum uclass_id key); |
| 301 | |
| 302 | /** |
| 303 | * uclass_destroy() - Destroy a uclass |
| 304 | * |
| 305 | * Destroy a uclass and all its devices |
| 306 | * |
| 307 | * @uc: uclass to destroy |
| 308 | * @return 0 on success, -ve on error |
| 309 | */ |
| 310 | int uclass_destroy(struct uclass *uc); |
| 311 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 312 | #endif |