xref: /rk3399_rockchip-uboot/include/dm/device.h (revision c57f806bf2e745c4273dc33c9827781cff46427c)
16494d708SSimon Glass /*
26494d708SSimon Glass  * Copyright (c) 2013 Google, Inc
36494d708SSimon Glass  *
46494d708SSimon Glass  * (C) Copyright 2012
56494d708SSimon Glass  * Pavel Herrmann <morpheus.ibis@gmail.com>
66494d708SSimon Glass  * Marek Vasut <marex@denx.de>
76494d708SSimon Glass  *
86494d708SSimon Glass  * SPDX-License-Identifier:	GPL-2.0+
96494d708SSimon Glass  */
106494d708SSimon Glass 
116494d708SSimon Glass #ifndef _DM_DEVICE_H
126494d708SSimon Glass #define _DM_DEVICE_H
136494d708SSimon Glass 
146494d708SSimon Glass #include <dm/uclass-id.h>
15c9cac3f8SPeng Fan #include <fdtdec.h>
166494d708SSimon Glass #include <linker_lists.h>
172b07f685SMasahiro Yamada #include <linux/compat.h>
182b07f685SMasahiro Yamada #include <linux/kernel.h>
196494d708SSimon Glass #include <linux/list.h>
206494d708SSimon Glass 
216494d708SSimon Glass struct driver_info;
226494d708SSimon Glass 
236494d708SSimon Glass /* Driver is active (probed). Cleared when it is removed */
246494d708SSimon Glass #define DM_FLAG_ACTIVATED		(1 << 0)
256494d708SSimon Glass 
266494d708SSimon Glass /* DM is responsible for allocating and freeing platdata */
27f2bc6fc3SSimon Glass #define DM_FLAG_ALLOC_PDATA		(1 << 1)
286494d708SSimon Glass 
2900606d7eSSimon Glass /* DM should init this device prior to relocation */
3000606d7eSSimon Glass #define DM_FLAG_PRE_RELOC		(1 << 2)
3100606d7eSSimon Glass 
32cdc133bdSSimon Glass /* DM is responsible for allocating and freeing parent_platdata */
33cdc133bdSSimon Glass #define DM_FLAG_ALLOC_PARENT_PDATA	(1 << 3)
34cdc133bdSSimon Glass 
355eaed880SPrzemyslaw Marczak /* DM is responsible for allocating and freeing uclass_platdata */
365eaed880SPrzemyslaw Marczak #define DM_FLAG_ALLOC_UCLASS_PDATA	(1 << 4)
375eaed880SPrzemyslaw Marczak 
382c03c463SSimon Glass /* Allocate driver private data on a DMA boundary */
395eaed880SPrzemyslaw Marczak #define DM_FLAG_ALLOC_PRIV_DMA		(1 << 5)
402c03c463SSimon Glass 
41aed1a4ddSMasahiro Yamada /* Device is bound */
42aed1a4ddSMasahiro Yamada #define DM_FLAG_BOUND			(1 << 6)
43aed1a4ddSMasahiro Yamada 
44a2040facSSimon Glass /* Device name is allocated and should be freed on unbind() */
45fd1c2d9bSSimon Glass #define DM_FLAG_NAME_ALLOCED		(1 << 7)
46a2040facSSimon Glass 
479fa28190SSimon Glass #define DM_FLAG_OF_PLATDATA		(1 << 8)
489fa28190SSimon Glass 
496494d708SSimon Glass /**
5054c5d08aSHeiko Schocher  * struct udevice - An instance of a driver
516494d708SSimon Glass  *
526494d708SSimon Glass  * This holds information about a device, which is a driver bound to a
536494d708SSimon Glass  * particular port or peripheral (essentially a driver instance).
546494d708SSimon Glass  *
556494d708SSimon Glass  * A device will come into existence through a 'bind' call, either due to
566494d708SSimon Glass  * a U_BOOT_DEVICE() macro (in which case platdata is non-NULL) or a node
576494d708SSimon Glass  * in the device tree (in which case of_offset is >= 0). In the latter case
586494d708SSimon Glass  * we translate the device tree information into platdata in a function
596494d708SSimon Glass  * implemented by the driver ofdata_to_platdata method (called just before the
606494d708SSimon Glass  * probe method if the device has a device tree node.
616494d708SSimon Glass  *
626494d708SSimon Glass  * All three of platdata, priv and uclass_priv can be allocated by the
636494d708SSimon Glass  * driver, or you can use the auto_alloc_size members of struct driver and
646494d708SSimon Glass  * struct uclass_driver to have driver model do this automatically.
656494d708SSimon Glass  *
666494d708SSimon Glass  * @driver: The driver used by this device
676494d708SSimon Glass  * @name: Name of device, typically the FDT node name
686494d708SSimon Glass  * @platdata: Configuration data for this device
69cdc133bdSSimon Glass  * @parent_platdata: The parent bus's configuration data for this device
705eaed880SPrzemyslaw Marczak  * @uclass_platdata: The uclass's configuration data for this device
716494d708SSimon Glass  * @of_offset: Device tree node offset for this device (- for none)
7239de8433SSimon Glass  * @driver_data: Driver data word for the entry that matched this device with
7339de8433SSimon Glass  *		its driver
746494d708SSimon Glass  * @parent: Parent of this device, or NULL for the top level device
756494d708SSimon Glass  * @priv: Private data for this device
766494d708SSimon Glass  * @uclass: Pointer to uclass for this device
776494d708SSimon Glass  * @uclass_priv: The uclass's private data for this device
78e59f458dSSimon Glass  * @parent_priv: The parent's private data for this device
796494d708SSimon Glass  * @uclass_node: Used by uclass to link its devices
806494d708SSimon Glass  * @child_head: List of children of this device
816494d708SSimon Glass  * @sibling_node: Next device in list of all devices
826494d708SSimon Glass  * @flags: Flags for this device DM_FLAG_...
835a66a8ffSSimon Glass  * @req_seq: Requested sequence number for this device (-1 = any)
84547cea19SSimon Glass  * @seq: Allocated sequence number for this device (-1 = none). This is set up
85547cea19SSimon Glass  * when the device is probed and will be unique within the device's uclass.
8693c7fe4aSSimon Glass  * @devres_head: List of memory allocations associated with this device.
8793c7fe4aSSimon Glass  *		When CONFIG_DEVRES is enabled, devm_kmalloc() and friends will
8893c7fe4aSSimon Glass  *		add to this list. Memory so-allocated will be freed
8993c7fe4aSSimon Glass  *		automatically when the device is removed / unbound
906494d708SSimon Glass  */
9154c5d08aSHeiko Schocher struct udevice {
923479253dSSimon Glass 	const struct driver *driver;
936494d708SSimon Glass 	const char *name;
946494d708SSimon Glass 	void *platdata;
95cdc133bdSSimon Glass 	void *parent_platdata;
965eaed880SPrzemyslaw Marczak 	void *uclass_platdata;
976494d708SSimon Glass 	int of_offset;
9839de8433SSimon Glass 	ulong driver_data;
9954c5d08aSHeiko Schocher 	struct udevice *parent;
1006494d708SSimon Glass 	void *priv;
1016494d708SSimon Glass 	struct uclass *uclass;
1026494d708SSimon Glass 	void *uclass_priv;
103e59f458dSSimon Glass 	void *parent_priv;
1046494d708SSimon Glass 	struct list_head uclass_node;
1056494d708SSimon Glass 	struct list_head child_head;
1066494d708SSimon Glass 	struct list_head sibling_node;
1076494d708SSimon Glass 	uint32_t flags;
1085a66a8ffSSimon Glass 	int req_seq;
1095a66a8ffSSimon Glass 	int seq;
110e2282d70SMasahiro Yamada #ifdef CONFIG_DEVRES
111608f26c5SMasahiro Yamada 	struct list_head devres_head;
112e2282d70SMasahiro Yamada #endif
1136494d708SSimon Glass };
1146494d708SSimon Glass 
1155a66a8ffSSimon Glass /* Maximum sequence number supported */
1165a66a8ffSSimon Glass #define DM_MAX_SEQ	999
1175a66a8ffSSimon Glass 
1186494d708SSimon Glass /* Returns the operations for a device */
1196494d708SSimon Glass #define device_get_ops(dev)	(dev->driver->ops)
1206494d708SSimon Glass 
1216494d708SSimon Glass /* Returns non-zero if the device is active (probed and not removed) */
1226494d708SSimon Glass #define device_active(dev)	((dev)->flags & DM_FLAG_ACTIVATED)
1236494d708SSimon Glass 
1246494d708SSimon Glass /**
125ae7f4513SSimon Glass  * struct udevice_id - Lists the compatible strings supported by a driver
1266494d708SSimon Glass  * @compatible: Compatible string
1276494d708SSimon Glass  * @data: Data for this compatible string
1286494d708SSimon Glass  */
129ae7f4513SSimon Glass struct udevice_id {
1306494d708SSimon Glass 	const char *compatible;
1316494d708SSimon Glass 	ulong data;
1326494d708SSimon Glass };
1336494d708SSimon Glass 
1340f925822SMasahiro Yamada #if CONFIG_IS_ENABLED(OF_CONTROL)
135f887cb6dSMasahiro Yamada #define of_match_ptr(_ptr)	(_ptr)
136f887cb6dSMasahiro Yamada #else
137f887cb6dSMasahiro Yamada #define of_match_ptr(_ptr)	NULL
1380f925822SMasahiro Yamada #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
139f887cb6dSMasahiro Yamada 
1406494d708SSimon Glass /**
1416494d708SSimon Glass  * struct driver - A driver for a feature or peripheral
1426494d708SSimon Glass  *
1436494d708SSimon Glass  * This holds methods for setting up a new device, and also removing it.
1446494d708SSimon Glass  * The device needs information to set itself up - this is provided either
1456494d708SSimon Glass  * by platdata or a device tree node (which we find by looking up
1466494d708SSimon Glass  * matching compatible strings with of_match).
1476494d708SSimon Glass  *
1486494d708SSimon Glass  * Drivers all belong to a uclass, representing a class of devices of the
1496494d708SSimon Glass  * same type. Common elements of the drivers can be implemented in the uclass,
1506494d708SSimon Glass  * or the uclass can provide a consistent interface to the drivers within
1516494d708SSimon Glass  * it.
1526494d708SSimon Glass  *
1536494d708SSimon Glass  * @name: Device name
1546494d708SSimon Glass  * @id: Identiies the uclass we belong to
1556494d708SSimon Glass  * @of_match: List of compatible strings to match, and any identifying data
1566494d708SSimon Glass  * for each.
1576494d708SSimon Glass  * @bind: Called to bind a device to its driver
1586494d708SSimon Glass  * @probe: Called to probe a device, i.e. activate it
1596494d708SSimon Glass  * @remove: Called to remove a device, i.e. de-activate it
1606494d708SSimon Glass  * @unbind: Called to unbind a device from its driver
1616494d708SSimon Glass  * @ofdata_to_platdata: Called before probe to decode device tree data
1620118ce79SSimon Glass  * @child_post_bind: Called after a new child has been bound
163a327dee0SSimon Glass  * @child_pre_probe: Called before a child device is probed. The device has
164a327dee0SSimon Glass  * memory allocated but it has not yet been probed.
165a327dee0SSimon Glass  * @child_post_remove: Called after a child device is removed. The device
166a327dee0SSimon Glass  * has memory allocated but its device_remove() method has been called.
1676494d708SSimon Glass  * @priv_auto_alloc_size: If non-zero this is the size of the private data
1686494d708SSimon Glass  * to be allocated in the device's ->priv pointer. If zero, then the driver
1696494d708SSimon Glass  * is responsible for allocating any data required.
1706494d708SSimon Glass  * @platdata_auto_alloc_size: If non-zero this is the size of the
1716494d708SSimon Glass  * platform data to be allocated in the device's ->platdata pointer.
1726494d708SSimon Glass  * This is typically only useful for device-tree-aware drivers (those with
1736494d708SSimon Glass  * an of_match), since drivers which use platdata will have the data
1746494d708SSimon Glass  * provided in the U_BOOT_DEVICE() instantiation.
175e59f458dSSimon Glass  * @per_child_auto_alloc_size: Each device can hold private data owned by
176e59f458dSSimon Glass  * its parent. If required this will be automatically allocated if this
177e59f458dSSimon Glass  * value is non-zero.
178cdc133bdSSimon Glass  * @per_child_platdata_auto_alloc_size: A bus likes to store information about
179cdc133bdSSimon Glass  * its children. If non-zero this is the size of this data, to be allocated
180cdc133bdSSimon Glass  * in the child's parent_platdata pointer.
1810040b944SSimon Glass  * @ops: Driver-specific operations. This is typically a list of function
1826494d708SSimon Glass  * pointers defined by the driver, to implement driver functions required by
1836494d708SSimon Glass  * the uclass.
18400606d7eSSimon Glass  * @flags: driver flags - see DM_FLAGS_...
1856494d708SSimon Glass  */
1866494d708SSimon Glass struct driver {
1876494d708SSimon Glass 	char *name;
1886494d708SSimon Glass 	enum uclass_id id;
189ae7f4513SSimon Glass 	const struct udevice_id *of_match;
19054c5d08aSHeiko Schocher 	int (*bind)(struct udevice *dev);
19154c5d08aSHeiko Schocher 	int (*probe)(struct udevice *dev);
19254c5d08aSHeiko Schocher 	int (*remove)(struct udevice *dev);
19354c5d08aSHeiko Schocher 	int (*unbind)(struct udevice *dev);
19454c5d08aSHeiko Schocher 	int (*ofdata_to_platdata)(struct udevice *dev);
1950118ce79SSimon Glass 	int (*child_post_bind)(struct udevice *dev);
196a327dee0SSimon Glass 	int (*child_pre_probe)(struct udevice *dev);
197a327dee0SSimon Glass 	int (*child_post_remove)(struct udevice *dev);
1986494d708SSimon Glass 	int priv_auto_alloc_size;
1996494d708SSimon Glass 	int platdata_auto_alloc_size;
200e59f458dSSimon Glass 	int per_child_auto_alloc_size;
201cdc133bdSSimon Glass 	int per_child_platdata_auto_alloc_size;
2026494d708SSimon Glass 	const void *ops;	/* driver-specific operations */
20300606d7eSSimon Glass 	uint32_t flags;
2046494d708SSimon Glass };
2056494d708SSimon Glass 
2066494d708SSimon Glass /* Declare a new U-Boot driver */
2076494d708SSimon Glass #define U_BOOT_DRIVER(__name)						\
2086494d708SSimon Glass 	ll_entry_declare(struct driver, __name, driver)
2096494d708SSimon Glass 
210*c57f806bSSimon Glass /* Get a pointer to a given driver */
211*c57f806bSSimon Glass #define DM_GET_DRIVER(__name)						\
212*c57f806bSSimon Glass 	ll_entry_get(struct driver, __name, driver)
213*c57f806bSSimon Glass 
2146494d708SSimon Glass /**
2156494d708SSimon Glass  * dev_get_platdata() - Get the platform data for a device
2166494d708SSimon Glass  *
2176494d708SSimon Glass  * This checks that dev is not NULL, but no other checks for now
2186494d708SSimon Glass  *
2196494d708SSimon Glass  * @dev		Device to check
2206494d708SSimon Glass  * @return platform data, or NULL if none
2216494d708SSimon Glass  */
22254c5d08aSHeiko Schocher void *dev_get_platdata(struct udevice *dev);
2236494d708SSimon Glass 
2246494d708SSimon Glass /**
225cdc133bdSSimon Glass  * dev_get_parent_platdata() - Get the parent platform data for a device
226cdc133bdSSimon Glass  *
227cdc133bdSSimon Glass  * This checks that dev is not NULL, but no other checks for now
228cdc133bdSSimon Glass  *
229cdc133bdSSimon Glass  * @dev		Device to check
230cdc133bdSSimon Glass  * @return parent's platform data, or NULL if none
231cdc133bdSSimon Glass  */
232cdc133bdSSimon Glass void *dev_get_parent_platdata(struct udevice *dev);
233cdc133bdSSimon Glass 
234cdc133bdSSimon Glass /**
2355eaed880SPrzemyslaw Marczak  * dev_get_uclass_platdata() - Get the uclass platform data for a device
2365eaed880SPrzemyslaw Marczak  *
2375eaed880SPrzemyslaw Marczak  * This checks that dev is not NULL, but no other checks for now
2385eaed880SPrzemyslaw Marczak  *
2395eaed880SPrzemyslaw Marczak  * @dev		Device to check
2405eaed880SPrzemyslaw Marczak  * @return uclass's platform data, or NULL if none
2415eaed880SPrzemyslaw Marczak  */
2425eaed880SPrzemyslaw Marczak void *dev_get_uclass_platdata(struct udevice *dev);
2435eaed880SPrzemyslaw Marczak 
2445eaed880SPrzemyslaw Marczak /**
2459a79f6e6SSimon Glass  * dev_get_priv() - Get the private data for a device
2469a79f6e6SSimon Glass  *
2479a79f6e6SSimon Glass  * This checks that dev is not NULL, but no other checks for now
2489a79f6e6SSimon Glass  *
2499a79f6e6SSimon Glass  * @dev		Device to check
2509a79f6e6SSimon Glass  * @return private data, or NULL if none
2519a79f6e6SSimon Glass  */
2529a79f6e6SSimon Glass void *dev_get_priv(struct udevice *dev);
2539a79f6e6SSimon Glass 
2549a79f6e6SSimon Glass /**
255bcbe3d15SSimon Glass  * dev_get_parent_priv() - Get the parent private data for a device
256e59f458dSSimon Glass  *
257bcbe3d15SSimon Glass  * The parent private data is data stored in the device but owned by the
258bcbe3d15SSimon Glass  * parent. For example, a USB device may have parent data which contains
259bcbe3d15SSimon Glass  * information about how to talk to the device over USB.
260e59f458dSSimon Glass  *
261e59f458dSSimon Glass  * This checks that dev is not NULL, but no other checks for now
262e59f458dSSimon Glass  *
263e59f458dSSimon Glass  * @dev		Device to check
264e59f458dSSimon Glass  * @return parent data, or NULL if none
265e59f458dSSimon Glass  */
266bcbe3d15SSimon Glass void *dev_get_parent_priv(struct udevice *dev);
267e59f458dSSimon Glass 
268e59f458dSSimon Glass /**
269e564f054SSimon Glass  * dev_get_uclass_priv() - Get the private uclass data for a device
270e564f054SSimon Glass  *
271e564f054SSimon Glass  * This checks that dev is not NULL, but no other checks for now
272e564f054SSimon Glass  *
273e564f054SSimon Glass  * @dev		Device to check
274e564f054SSimon Glass  * @return private uclass data for this device, or NULL if none
275e564f054SSimon Glass  */
276e564f054SSimon Glass void *dev_get_uclass_priv(struct udevice *dev);
277e564f054SSimon Glass 
278e564f054SSimon Glass /**
2799a79f6e6SSimon Glass  * struct dev_get_parent() - Get the parent of a device
2809a79f6e6SSimon Glass  *
2819a79f6e6SSimon Glass  * @child:	Child to check
2829a79f6e6SSimon Glass  * @return parent of child, or NULL if this is the root device
2839a79f6e6SSimon Glass  */
2849a79f6e6SSimon Glass struct udevice *dev_get_parent(struct udevice *child);
2859a79f6e6SSimon Glass 
2869a79f6e6SSimon Glass /**
28739de8433SSimon Glass  * dev_get_driver_data() - get the driver data used to bind a device
2882ef249b4SSimon Glass  *
2892ef249b4SSimon Glass  * When a device is bound using a device tree node, it matches a
2908d1f3a9dSSimon Glass  * particular compatible string in struct udevice_id. This function
29139de8433SSimon Glass  * returns the associated data value for that compatible string. This is
29239de8433SSimon Glass  * the 'data' field in struct udevice_id.
29339de8433SSimon Glass  *
2948d1f3a9dSSimon Glass  * As an example, consider this structure:
2958d1f3a9dSSimon Glass  * static const struct udevice_id tegra_i2c_ids[] = {
2968d1f3a9dSSimon Glass  *	{ .compatible = "nvidia,tegra114-i2c", .data = TYPE_114 },
2978d1f3a9dSSimon Glass  *	{ .compatible = "nvidia,tegra20-i2c", .data = TYPE_STD },
2988d1f3a9dSSimon Glass  *	{ .compatible = "nvidia,tegra20-i2c-dvc", .data = TYPE_DVC },
2998d1f3a9dSSimon Glass  *	{ }
3008d1f3a9dSSimon Glass  * };
3018d1f3a9dSSimon Glass  *
3028d1f3a9dSSimon Glass  * When driver model finds a driver for this it will store the 'data' value
3038d1f3a9dSSimon Glass  * corresponding to the compatible string it matches. This function returns
3048d1f3a9dSSimon Glass  * that value. This allows the driver to handle several variants of a device.
3058d1f3a9dSSimon Glass  *
30639de8433SSimon Glass  * For USB devices, this is the driver_info field in struct usb_device_id.
30739de8433SSimon Glass  *
30839de8433SSimon Glass  * @dev:	Device to check
3098d1f3a9dSSimon Glass  * @return driver data (0 if none is provided)
3102ef249b4SSimon Glass  */
31139de8433SSimon Glass ulong dev_get_driver_data(struct udevice *dev);
3122ef249b4SSimon Glass 
313cc73d37bSPrzemyslaw Marczak /**
314cc73d37bSPrzemyslaw Marczak  * dev_get_driver_ops() - get the device's driver's operations
315cc73d37bSPrzemyslaw Marczak  *
316cc73d37bSPrzemyslaw Marczak  * This checks that dev is not NULL, and returns the pointer to device's
317cc73d37bSPrzemyslaw Marczak  * driver's operations.
318cc73d37bSPrzemyslaw Marczak  *
319cc73d37bSPrzemyslaw Marczak  * @dev:	Device to check
320cc73d37bSPrzemyslaw Marczak  * @return void pointer to driver's operations or NULL for NULL-dev or NULL-ops
321cc73d37bSPrzemyslaw Marczak  */
322cc73d37bSPrzemyslaw Marczak const void *dev_get_driver_ops(struct udevice *dev);
323cc73d37bSPrzemyslaw Marczak 
3248d1f3a9dSSimon Glass /**
325b3670531SSimon Glass  * device_get_uclass_id() - return the uclass ID of a device
326b3670531SSimon Glass  *
327b3670531SSimon Glass  * @dev:	Device to check
328b3670531SSimon Glass  * @return uclass ID for the device
329b3670531SSimon Glass  */
330b3670531SSimon Glass enum uclass_id device_get_uclass_id(struct udevice *dev);
331b3670531SSimon Glass 
3328d1f3a9dSSimon Glass /**
333f9c370dcSPrzemyslaw Marczak  * dev_get_uclass_name() - return the uclass name of a device
334f9c370dcSPrzemyslaw Marczak  *
335f9c370dcSPrzemyslaw Marczak  * This checks that dev is not NULL.
336f9c370dcSPrzemyslaw Marczak  *
337f9c370dcSPrzemyslaw Marczak  * @dev:	Device to check
338f9c370dcSPrzemyslaw Marczak  * @return  pointer to the uclass name for the device
339f9c370dcSPrzemyslaw Marczak  */
340f9c370dcSPrzemyslaw Marczak const char *dev_get_uclass_name(struct udevice *dev);
341f9c370dcSPrzemyslaw Marczak 
3422ef249b4SSimon Glass /**
343997c87bbSSimon Glass  * device_get_child() - Get the child of a device by index
344997c87bbSSimon Glass  *
345997c87bbSSimon Glass  * Returns the numbered child, 0 being the first. This does not use
346997c87bbSSimon Glass  * sequence numbers, only the natural order.
347997c87bbSSimon Glass  *
348997c87bbSSimon Glass  * @dev:	Parent device to check
349997c87bbSSimon Glass  * @index:	Child index
350997c87bbSSimon Glass  * @devp:	Returns pointer to device
3513f416f33SSimon Glass  * @return 0 if OK, -ENODEV if no such device, other error if the device fails
3523f416f33SSimon Glass  *	   to probe
353997c87bbSSimon Glass  */
354997c87bbSSimon Glass int device_get_child(struct udevice *parent, int index, struct udevice **devp);
355997c87bbSSimon Glass 
356997c87bbSSimon Glass /**
3575a66a8ffSSimon Glass  * device_find_child_by_seq() - Find a child device based on a sequence
3585a66a8ffSSimon Glass  *
3595a66a8ffSSimon Glass  * This searches for a device with the given seq or req_seq.
3605a66a8ffSSimon Glass  *
3615a66a8ffSSimon Glass  * For seq, if an active device has this sequence it will be returned.
3625a66a8ffSSimon Glass  * If there is no such device then this will return -ENODEV.
3635a66a8ffSSimon Glass  *
3645a66a8ffSSimon Glass  * For req_seq, if a device (whether activated or not) has this req_seq
3655a66a8ffSSimon Glass  * value, that device will be returned. This is a strong indication that
3665a66a8ffSSimon Glass  * the device will receive that sequence when activated.
3675a66a8ffSSimon Glass  *
3685a66a8ffSSimon Glass  * @parent: Parent device
3695a66a8ffSSimon Glass  * @seq_or_req_seq: Sequence number to find (0=first)
3705a66a8ffSSimon Glass  * @find_req_seq: true to find req_seq, false to find seq
3715a66a8ffSSimon Glass  * @devp: Returns pointer to device (there is only one per for each seq).
3725a66a8ffSSimon Glass  * Set to NULL if none is found
3735a66a8ffSSimon Glass  * @return 0 if OK, -ve on error
3745a66a8ffSSimon Glass  */
3755a66a8ffSSimon Glass int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
3765a66a8ffSSimon Glass 			     bool find_req_seq, struct udevice **devp);
3775a66a8ffSSimon Glass 
378997c87bbSSimon Glass /**
379997c87bbSSimon Glass  * device_get_child_by_seq() - Get a child device based on a sequence
380997c87bbSSimon Glass  *
381997c87bbSSimon Glass  * If an active device has this sequence it will be returned. If there is no
382997c87bbSSimon Glass  * such device then this will check for a device that is requesting this
383997c87bbSSimon Glass  * sequence.
384997c87bbSSimon Glass  *
385997c87bbSSimon Glass  * The device is probed to activate it ready for use.
386997c87bbSSimon Glass  *
387997c87bbSSimon Glass  * @parent: Parent device
388997c87bbSSimon Glass  * @seq: Sequence number to find (0=first)
389997c87bbSSimon Glass  * @devp: Returns pointer to device (there is only one per for each seq)
390997c87bbSSimon Glass  * Set to NULL if none is found
391997c87bbSSimon Glass  * @return 0 if OK, -ve on error
392997c87bbSSimon Glass  */
393997c87bbSSimon Glass int device_get_child_by_seq(struct udevice *parent, int seq,
394997c87bbSSimon Glass 			    struct udevice **devp);
395997c87bbSSimon Glass 
396997c87bbSSimon Glass /**
397997c87bbSSimon Glass  * device_find_child_by_of_offset() - Find a child device based on FDT offset
398997c87bbSSimon Glass  *
399997c87bbSSimon Glass  * Locates a child device by its device tree offset.
400997c87bbSSimon Glass  *
401997c87bbSSimon Glass  * @parent: Parent device
402997c87bbSSimon Glass  * @of_offset: Device tree offset to find
403997c87bbSSimon Glass  * @devp: Returns pointer to device if found, otherwise this is set to NULL
404997c87bbSSimon Glass  * @return 0 if OK, -ve on error
405997c87bbSSimon Glass  */
406997c87bbSSimon Glass int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
407997c87bbSSimon Glass 				   struct udevice **devp);
408997c87bbSSimon Glass 
409997c87bbSSimon Glass /**
410997c87bbSSimon Glass  * device_get_child_by_of_offset() - Get a child device based on FDT offset
411997c87bbSSimon Glass  *
412997c87bbSSimon Glass  * Locates a child device by its device tree offset.
413997c87bbSSimon Glass  *
414997c87bbSSimon Glass  * The device is probed to activate it ready for use.
415997c87bbSSimon Glass  *
416997c87bbSSimon Glass  * @parent: Parent device
417997c87bbSSimon Glass  * @of_offset: Device tree offset to find
418997c87bbSSimon Glass  * @devp: Returns pointer to device if found, otherwise this is set to NULL
419997c87bbSSimon Glass  * @return 0 if OK, -ve on error
420997c87bbSSimon Glass  */
421132f9bfcSSimon Glass int device_get_child_by_of_offset(struct udevice *parent, int of_offset,
422997c87bbSSimon Glass 				  struct udevice **devp);
423997c87bbSSimon Glass 
424a8981d4fSSimon Glass /**
4252693047aSSimon Glass  * device_get_global_by_of_offset() - Get a device based on FDT offset
4262693047aSSimon Glass  *
4272693047aSSimon Glass  * Locates a device by its device tree offset, searching globally throughout
4282693047aSSimon Glass  * the all driver model devices.
4292693047aSSimon Glass  *
4302693047aSSimon Glass  * The device is probed to activate it ready for use.
4312693047aSSimon Glass  *
4322693047aSSimon Glass  * @of_offset: Device tree offset to find
4332693047aSSimon Glass  * @devp: Returns pointer to device if found, otherwise this is set to NULL
4342693047aSSimon Glass  * @return 0 if OK, -ve on error
4352693047aSSimon Glass  */
4362693047aSSimon Glass int device_get_global_by_of_offset(int of_offset, struct udevice **devp);
4372693047aSSimon Glass 
4382693047aSSimon Glass /**
439a8981d4fSSimon Glass  * device_find_first_child() - Find the first child of a device
440a8981d4fSSimon Glass  *
441a8981d4fSSimon Glass  * @parent: Parent device to search
442a8981d4fSSimon Glass  * @devp: Returns first child device, or NULL if none
443a8981d4fSSimon Glass  * @return 0
444a8981d4fSSimon Glass  */
445a8981d4fSSimon Glass int device_find_first_child(struct udevice *parent, struct udevice **devp);
446a8981d4fSSimon Glass 
447a8981d4fSSimon Glass /**
4483f416f33SSimon Glass  * device_find_next_child() - Find the next child of a device
449a8981d4fSSimon Glass  *
450a8981d4fSSimon Glass  * @devp: Pointer to previous child device on entry. Returns pointer to next
451a8981d4fSSimon Glass  *		child device, or NULL if none
452a8981d4fSSimon Glass  * @return 0
453a8981d4fSSimon Glass  */
454a8981d4fSSimon Glass int device_find_next_child(struct udevice **devp);
455a8981d4fSSimon Glass 
456c9cac3f8SPeng Fan /**
457c9cac3f8SPeng Fan  * dev_get_addr() - Get the reg property of a device
458c9cac3f8SPeng Fan  *
459c9cac3f8SPeng Fan  * @dev: Pointer to a device
460c9cac3f8SPeng Fan  *
461c9cac3f8SPeng Fan  * @return addr
462c9cac3f8SPeng Fan  */
463c9cac3f8SPeng Fan fdt_addr_t dev_get_addr(struct udevice *dev);
464c9cac3f8SPeng Fan 
465c5785673SSimon Glass /**
46628027521SStefan Roese  * dev_get_addr_ptr() - Return pointer to the address of the reg property
46728027521SStefan Roese  *                      of a device
46828027521SStefan Roese  *
46928027521SStefan Roese  * @dev: Pointer to a device
47028027521SStefan Roese  *
47128027521SStefan Roese  * @return Pointer to addr, or NULL if there is no such property
47228027521SStefan Roese  */
47328027521SStefan Roese void *dev_get_addr_ptr(struct udevice *dev);
47428027521SStefan Roese 
47528027521SStefan Roese /**
4767c616862SVignesh R  * dev_map_physmem() - Read device address from reg property of the
4777c616862SVignesh R  *                     device node and map the address into CPU address
4787c616862SVignesh R  *                     space.
4797c616862SVignesh R  *
4807c616862SVignesh R  * @dev: Pointer to device
4817c616862SVignesh R  * @size: size of the memory to map
4827c616862SVignesh R  *
4837c616862SVignesh R  * @return  mapped address, or NULL if the device does not have reg
4847c616862SVignesh R  *          property.
4857c616862SVignesh R  */
4867c616862SVignesh R void *dev_map_physmem(struct udevice *dev, unsigned long size);
4877c616862SVignesh R 
4887c616862SVignesh R /**
48969b41388SMugunthan V N  * dev_get_addr_index() - Get the indexed reg property of a device
49069b41388SMugunthan V N  *
49169b41388SMugunthan V N  * @dev: Pointer to a device
49269b41388SMugunthan V N  * @index: the 'reg' property can hold a list of <addr, size> pairs
49369b41388SMugunthan V N  *	   and @index is used to select which one is required
49469b41388SMugunthan V N  *
49569b41388SMugunthan V N  * @return addr
49669b41388SMugunthan V N  */
49769b41388SMugunthan V N fdt_addr_t dev_get_addr_index(struct udevice *dev, int index);
49869b41388SMugunthan V N 
49969b41388SMugunthan V N /**
50043c4d44eSStephen Warren  * dev_get_addr_name() - Get the reg property of a device, indexed by name
50143c4d44eSStephen Warren  *
50243c4d44eSStephen Warren  * @dev: Pointer to a device
50343c4d44eSStephen Warren  * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
50443c4d44eSStephen Warren  *	  'reg-names' property providing named-based identification. @index
50543c4d44eSStephen Warren  *	  indicates the value to search for in 'reg-names'.
50643c4d44eSStephen Warren  *
50743c4d44eSStephen Warren  * @return addr
50843c4d44eSStephen Warren  */
50943c4d44eSStephen Warren fdt_addr_t dev_get_addr_name(struct udevice *dev, const char *name);
51043c4d44eSStephen Warren 
51143c4d44eSStephen Warren /**
512c5785673SSimon Glass  * device_has_children() - check if a device has any children
513c5785673SSimon Glass  *
514c5785673SSimon Glass  * @dev:	Device to check
515c5785673SSimon Glass  * @return true if the device has one or more children
516c5785673SSimon Glass  */
517c5785673SSimon Glass bool device_has_children(struct udevice *dev);
518c5785673SSimon Glass 
519c5785673SSimon Glass /**
520c5785673SSimon Glass  * device_has_active_children() - check if a device has any active children
521c5785673SSimon Glass  *
522c5785673SSimon Glass  * @dev:	Device to check
523c5785673SSimon Glass  * @return true if the device has one or more children and at least one of
524c5785673SSimon Glass  * them is active (probed).
525c5785673SSimon Glass  */
526c5785673SSimon Glass bool device_has_active_children(struct udevice *dev);
527c5785673SSimon Glass 
528c5785673SSimon Glass /**
529c5785673SSimon Glass  * device_is_last_sibling() - check if a device is the last sibling
530c5785673SSimon Glass  *
531c5785673SSimon Glass  * This function can be useful for display purposes, when special action needs
532c5785673SSimon Glass  * to be taken when displaying the last sibling. This can happen when a tree
533c5785673SSimon Glass  * view of devices is being displayed.
534c5785673SSimon Glass  *
535c5785673SSimon Glass  * @dev:	Device to check
536c5785673SSimon Glass  * @return true if there are no more siblings after this one - i.e. is it
537c5785673SSimon Glass  * last in the list.
538c5785673SSimon Glass  */
539c5785673SSimon Glass bool device_is_last_sibling(struct udevice *dev);
540c5785673SSimon Glass 
541f5c67ea0SSimon Glass /**
542f5c67ea0SSimon Glass  * device_set_name() - set the name of a device
543f5c67ea0SSimon Glass  *
544f5c67ea0SSimon Glass  * This must be called in the device's bind() method and no later. Normally
545f5c67ea0SSimon Glass  * this is unnecessary but for probed devices which don't get a useful name
546f5c67ea0SSimon Glass  * this function can be helpful.
547f5c67ea0SSimon Glass  *
548a2040facSSimon Glass  * The name is allocated and will be freed automatically when the device is
549a2040facSSimon Glass  * unbound.
550a2040facSSimon Glass  *
551f5c67ea0SSimon Glass  * @dev:	Device to update
552f5c67ea0SSimon Glass  * @name:	New name (this string is allocated new memory and attached to
553f5c67ea0SSimon Glass  *		the device)
554f5c67ea0SSimon Glass  * @return 0 if OK, -ENOMEM if there is not enough memory to allocate the
555f5c67ea0SSimon Glass  * string
556f5c67ea0SSimon Glass  */
557f5c67ea0SSimon Glass int device_set_name(struct udevice *dev, const char *name);
558f5c67ea0SSimon Glass 
5591e0f2263SBin Meng /**
560a2040facSSimon Glass  * device_set_name_alloced() - note that a device name is allocated
561a2040facSSimon Glass  *
562fd1c2d9bSSimon Glass  * This sets the DM_FLAG_NAME_ALLOCED flag for the device, so that when it is
563a2040facSSimon Glass  * unbound the name will be freed. This avoids memory leaks.
564a2040facSSimon Glass  *
565a2040facSSimon Glass  * @dev:	Device to update
566a2040facSSimon Glass  */
567a2040facSSimon Glass void device_set_name_alloced(struct udevice *dev);
568a2040facSSimon Glass 
569a2040facSSimon Glass /**
57073443b9eSMugunthan V N  * of_device_is_compatible() - check if the device is compatible with the compat
57173443b9eSMugunthan V N  *
57273443b9eSMugunthan V N  * This allows to check whether the device is comaptible with the compat.
57373443b9eSMugunthan V N  *
57473443b9eSMugunthan V N  * @dev:	udevice pointer for which compatible needs to be verified.
57573443b9eSMugunthan V N  * @compat:	Compatible string which needs to verified in the given
57673443b9eSMugunthan V N  *		device
57773443b9eSMugunthan V N  * @return true if OK, false if the compatible is not found
57873443b9eSMugunthan V N  */
57973443b9eSMugunthan V N bool of_device_is_compatible(struct udevice *dev, const char *compat);
58073443b9eSMugunthan V N 
58173443b9eSMugunthan V N /**
58273443b9eSMugunthan V N  * of_machine_is_compatible() - check if the machine is compatible with
58373443b9eSMugunthan V N  *				the compat
58473443b9eSMugunthan V N  *
58573443b9eSMugunthan V N  * This allows to check whether the machine is comaptible with the compat.
58673443b9eSMugunthan V N  *
58773443b9eSMugunthan V N  * @compat:	Compatible string which needs to verified
58873443b9eSMugunthan V N  * @return true if OK, false if the compatible is not found
58973443b9eSMugunthan V N  */
59073443b9eSMugunthan V N bool of_machine_is_compatible(const char *compat);
59173443b9eSMugunthan V N 
59273443b9eSMugunthan V N /**
5931e0f2263SBin Meng  * device_is_on_pci_bus - Test if a device is on a PCI bus
5941e0f2263SBin Meng  *
5951e0f2263SBin Meng  * @dev:	device to test
5961e0f2263SBin Meng  * @return:	true if it is on a PCI bus, false otherwise
5971e0f2263SBin Meng  */
5981e0f2263SBin Meng static inline bool device_is_on_pci_bus(struct udevice *dev)
5991e0f2263SBin Meng {
6001e0f2263SBin Meng 	return device_get_uclass_id(dev->parent) == UCLASS_PCI;
6011e0f2263SBin Meng }
6021e0f2263SBin Meng 
6037aeac5bcSSimon Glass /**
6047aeac5bcSSimon Glass  * device_foreach_child_safe() - iterate through child devices safely
6057aeac5bcSSimon Glass  *
6067aeac5bcSSimon Glass  * This allows the @pos child to be removed in the loop if required.
6077aeac5bcSSimon Glass  *
6087aeac5bcSSimon Glass  * @pos: struct udevice * for the current device
6097aeac5bcSSimon Glass  * @next: struct udevice * for the next device
6107aeac5bcSSimon Glass  * @parent: parent device to scan
6117aeac5bcSSimon Glass  */
6127aeac5bcSSimon Glass #define device_foreach_child_safe(pos, next, parent)	\
6137aeac5bcSSimon Glass 	list_for_each_entry_safe(pos, next, &parent->child_head, sibling_node)
6147aeac5bcSSimon Glass 
615608f26c5SMasahiro Yamada /* device resource management */
616608f26c5SMasahiro Yamada typedef void (*dr_release_t)(struct udevice *dev, void *res);
617608f26c5SMasahiro Yamada typedef int (*dr_match_t)(struct udevice *dev, void *res, void *match_data);
618608f26c5SMasahiro Yamada 
619e2282d70SMasahiro Yamada #ifdef CONFIG_DEVRES
620e2282d70SMasahiro Yamada 
621608f26c5SMasahiro Yamada #ifdef CONFIG_DEBUG_DEVRES
622608f26c5SMasahiro Yamada void *__devres_alloc(dr_release_t release, size_t size, gfp_t gfp,
623608f26c5SMasahiro Yamada 		     const char *name);
624608f26c5SMasahiro Yamada #define _devres_alloc(release, size, gfp) \
625608f26c5SMasahiro Yamada 	__devres_alloc(release, size, gfp, #release)
626608f26c5SMasahiro Yamada #else
627608f26c5SMasahiro Yamada void *_devres_alloc(dr_release_t release, size_t size, gfp_t gfp);
628608f26c5SMasahiro Yamada #endif
629608f26c5SMasahiro Yamada 
630608f26c5SMasahiro Yamada /**
63193c7fe4aSSimon Glass  * devres_alloc() - Allocate device resource data
632608f26c5SMasahiro Yamada  * @release: Release function devres will be associated with
633608f26c5SMasahiro Yamada  * @size: Allocation size
634608f26c5SMasahiro Yamada  * @gfp: Allocation flags
635608f26c5SMasahiro Yamada  *
636608f26c5SMasahiro Yamada  * Allocate devres of @size bytes.  The allocated area is associated
637608f26c5SMasahiro Yamada  * with @release.  The returned pointer can be passed to
638608f26c5SMasahiro Yamada  * other devres_*() functions.
639608f26c5SMasahiro Yamada  *
640608f26c5SMasahiro Yamada  * RETURNS:
641608f26c5SMasahiro Yamada  * Pointer to allocated devres on success, NULL on failure.
642608f26c5SMasahiro Yamada  */
643608f26c5SMasahiro Yamada #define devres_alloc(release, size, gfp) \
644608f26c5SMasahiro Yamada 	_devres_alloc(release, size, gfp | __GFP_ZERO)
645608f26c5SMasahiro Yamada 
646608f26c5SMasahiro Yamada /**
64793c7fe4aSSimon Glass  * devres_free() - Free device resource data
648608f26c5SMasahiro Yamada  * @res: Pointer to devres data to free
649608f26c5SMasahiro Yamada  *
650608f26c5SMasahiro Yamada  * Free devres created with devres_alloc().
651608f26c5SMasahiro Yamada  */
652608f26c5SMasahiro Yamada void devres_free(void *res);
653608f26c5SMasahiro Yamada 
654608f26c5SMasahiro Yamada /**
65593c7fe4aSSimon Glass  * devres_add() - Register device resource
656608f26c5SMasahiro Yamada  * @dev: Device to add resource to
657608f26c5SMasahiro Yamada  * @res: Resource to register
658608f26c5SMasahiro Yamada  *
659608f26c5SMasahiro Yamada  * Register devres @res to @dev.  @res should have been allocated
660608f26c5SMasahiro Yamada  * using devres_alloc().  On driver detach, the associated release
661608f26c5SMasahiro Yamada  * function will be invoked and devres will be freed automatically.
662608f26c5SMasahiro Yamada  */
663608f26c5SMasahiro Yamada void devres_add(struct udevice *dev, void *res);
664608f26c5SMasahiro Yamada 
665608f26c5SMasahiro Yamada /**
66693c7fe4aSSimon Glass  * devres_find() - Find device resource
667608f26c5SMasahiro Yamada  * @dev: Device to lookup resource from
668608f26c5SMasahiro Yamada  * @release: Look for resources associated with this release function
669608f26c5SMasahiro Yamada  * @match: Match function (optional)
670608f26c5SMasahiro Yamada  * @match_data: Data for the match function
671608f26c5SMasahiro Yamada  *
672608f26c5SMasahiro Yamada  * Find the latest devres of @dev which is associated with @release
673608f26c5SMasahiro Yamada  * and for which @match returns 1.  If @match is NULL, it's considered
674608f26c5SMasahiro Yamada  * to match all.
675608f26c5SMasahiro Yamada  *
67693c7fe4aSSimon Glass  * @return pointer to found devres, NULL if not found.
677608f26c5SMasahiro Yamada  */
678608f26c5SMasahiro Yamada void *devres_find(struct udevice *dev, dr_release_t release,
679608f26c5SMasahiro Yamada 		  dr_match_t match, void *match_data);
680608f26c5SMasahiro Yamada 
681608f26c5SMasahiro Yamada /**
68293c7fe4aSSimon Glass  * devres_get() - Find devres, if non-existent, add one atomically
683608f26c5SMasahiro Yamada  * @dev: Device to lookup or add devres for
684608f26c5SMasahiro Yamada  * @new_res: Pointer to new initialized devres to add if not found
685608f26c5SMasahiro Yamada  * @match: Match function (optional)
686608f26c5SMasahiro Yamada  * @match_data: Data for the match function
687608f26c5SMasahiro Yamada  *
688608f26c5SMasahiro Yamada  * Find the latest devres of @dev which has the same release function
689608f26c5SMasahiro Yamada  * as @new_res and for which @match return 1.  If found, @new_res is
690608f26c5SMasahiro Yamada  * freed; otherwise, @new_res is added atomically.
691608f26c5SMasahiro Yamada  *
69293c7fe4aSSimon Glass  * @return ointer to found or added devres.
693608f26c5SMasahiro Yamada  */
694608f26c5SMasahiro Yamada void *devres_get(struct udevice *dev, void *new_res,
695608f26c5SMasahiro Yamada 		 dr_match_t match, void *match_data);
696608f26c5SMasahiro Yamada 
697608f26c5SMasahiro Yamada /**
69893c7fe4aSSimon Glass  * devres_remove() - Find a device resource and remove it
699608f26c5SMasahiro Yamada  * @dev: Device to find resource from
700608f26c5SMasahiro Yamada  * @release: Look for resources associated with this release function
701608f26c5SMasahiro Yamada  * @match: Match function (optional)
702608f26c5SMasahiro Yamada  * @match_data: Data for the match function
703608f26c5SMasahiro Yamada  *
704608f26c5SMasahiro Yamada  * Find the latest devres of @dev associated with @release and for
705608f26c5SMasahiro Yamada  * which @match returns 1.  If @match is NULL, it's considered to
706608f26c5SMasahiro Yamada  * match all.  If found, the resource is removed atomically and
707608f26c5SMasahiro Yamada  * returned.
708608f26c5SMasahiro Yamada  *
70993c7fe4aSSimon Glass  * @return ointer to removed devres on success, NULL if not found.
710608f26c5SMasahiro Yamada  */
711608f26c5SMasahiro Yamada void *devres_remove(struct udevice *dev, dr_release_t release,
712608f26c5SMasahiro Yamada 		    dr_match_t match, void *match_data);
713608f26c5SMasahiro Yamada 
714608f26c5SMasahiro Yamada /**
71593c7fe4aSSimon Glass  * devres_destroy() - Find a device resource and destroy it
716608f26c5SMasahiro Yamada  * @dev: Device to find resource from
717608f26c5SMasahiro Yamada  * @release: Look for resources associated with this release function
718608f26c5SMasahiro Yamada  * @match: Match function (optional)
719608f26c5SMasahiro Yamada  * @match_data: Data for the match function
720608f26c5SMasahiro Yamada  *
721608f26c5SMasahiro Yamada  * Find the latest devres of @dev associated with @release and for
722608f26c5SMasahiro Yamada  * which @match returns 1.  If @match is NULL, it's considered to
723608f26c5SMasahiro Yamada  * match all.  If found, the resource is removed atomically and freed.
724608f26c5SMasahiro Yamada  *
725608f26c5SMasahiro Yamada  * Note that the release function for the resource will not be called,
726608f26c5SMasahiro Yamada  * only the devres-allocated data will be freed.  The caller becomes
727608f26c5SMasahiro Yamada  * responsible for freeing any other data.
728608f26c5SMasahiro Yamada  *
72993c7fe4aSSimon Glass  * @return 0 if devres is found and freed, -ENOENT if not found.
730608f26c5SMasahiro Yamada  */
731608f26c5SMasahiro Yamada int devres_destroy(struct udevice *dev, dr_release_t release,
732608f26c5SMasahiro Yamada 		   dr_match_t match, void *match_data);
733608f26c5SMasahiro Yamada 
734608f26c5SMasahiro Yamada /**
73593c7fe4aSSimon Glass  * devres_release() - Find a device resource and destroy it, calling release
736608f26c5SMasahiro Yamada  * @dev: Device to find resource from
737608f26c5SMasahiro Yamada  * @release: Look for resources associated with this release function
738608f26c5SMasahiro Yamada  * @match: Match function (optional)
739608f26c5SMasahiro Yamada  * @match_data: Data for the match function
740608f26c5SMasahiro Yamada  *
741608f26c5SMasahiro Yamada  * Find the latest devres of @dev associated with @release and for
742608f26c5SMasahiro Yamada  * which @match returns 1.  If @match is NULL, it's considered to
743608f26c5SMasahiro Yamada  * match all.  If found, the resource is removed atomically, the
744608f26c5SMasahiro Yamada  * release function called and the resource freed.
745608f26c5SMasahiro Yamada  *
74693c7fe4aSSimon Glass  * @return 0 if devres is found and freed, -ENOENT if not found.
747608f26c5SMasahiro Yamada  */
748608f26c5SMasahiro Yamada int devres_release(struct udevice *dev, dr_release_t release,
749608f26c5SMasahiro Yamada 		   dr_match_t match, void *match_data);
750608f26c5SMasahiro Yamada 
7512b07f685SMasahiro Yamada /* managed devm_k.alloc/kfree for device drivers */
7522b07f685SMasahiro Yamada /**
75393c7fe4aSSimon Glass  * devm_kmalloc() - Resource-managed kmalloc
7542b07f685SMasahiro Yamada  * @dev: Device to allocate memory for
7552b07f685SMasahiro Yamada  * @size: Allocation size
7562b07f685SMasahiro Yamada  * @gfp: Allocation gfp flags
7572b07f685SMasahiro Yamada  *
7582b07f685SMasahiro Yamada  * Managed kmalloc.  Memory allocated with this function is
7592b07f685SMasahiro Yamada  * automatically freed on driver detach.  Like all other devres
7602b07f685SMasahiro Yamada  * resources, guaranteed alignment is unsigned long long.
7612b07f685SMasahiro Yamada  *
76293c7fe4aSSimon Glass  * @return pointer to allocated memory on success, NULL on failure.
7632b07f685SMasahiro Yamada  */
7642b07f685SMasahiro Yamada void *devm_kmalloc(struct udevice *dev, size_t size, gfp_t gfp);
7652b07f685SMasahiro Yamada static inline void *devm_kzalloc(struct udevice *dev, size_t size, gfp_t gfp)
7662b07f685SMasahiro Yamada {
7672b07f685SMasahiro Yamada 	return devm_kmalloc(dev, size, gfp | __GFP_ZERO);
7682b07f685SMasahiro Yamada }
7692b07f685SMasahiro Yamada static inline void *devm_kmalloc_array(struct udevice *dev,
7702b07f685SMasahiro Yamada 				       size_t n, size_t size, gfp_t flags)
7712b07f685SMasahiro Yamada {
7722b07f685SMasahiro Yamada 	if (size != 0 && n > SIZE_MAX / size)
7732b07f685SMasahiro Yamada 		return NULL;
7742b07f685SMasahiro Yamada 	return devm_kmalloc(dev, n * size, flags);
7752b07f685SMasahiro Yamada }
7762b07f685SMasahiro Yamada static inline void *devm_kcalloc(struct udevice *dev,
7772b07f685SMasahiro Yamada 				 size_t n, size_t size, gfp_t flags)
7782b07f685SMasahiro Yamada {
7792b07f685SMasahiro Yamada 	return devm_kmalloc_array(dev, n, size, flags | __GFP_ZERO);
7802b07f685SMasahiro Yamada }
7812b07f685SMasahiro Yamada 
7822b07f685SMasahiro Yamada /**
78393c7fe4aSSimon Glass  * devm_kfree() - Resource-managed kfree
7842b07f685SMasahiro Yamada  * @dev: Device this memory belongs to
78593c7fe4aSSimon Glass  * @ptr: Memory to free
7862b07f685SMasahiro Yamada  *
7872b07f685SMasahiro Yamada  * Free memory allocated with devm_kmalloc().
7882b07f685SMasahiro Yamada  */
78993c7fe4aSSimon Glass void devm_kfree(struct udevice *dev, void *ptr);
7902b07f685SMasahiro Yamada 
791e2282d70SMasahiro Yamada #else /* ! CONFIG_DEVRES */
792e2282d70SMasahiro Yamada 
793e2282d70SMasahiro Yamada static inline void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp)
794e2282d70SMasahiro Yamada {
795e2282d70SMasahiro Yamada 	return kzalloc(size, gfp);
796e2282d70SMasahiro Yamada }
797e2282d70SMasahiro Yamada 
798e2282d70SMasahiro Yamada static inline void devres_free(void *res)
799e2282d70SMasahiro Yamada {
800e2282d70SMasahiro Yamada 	kfree(res);
801e2282d70SMasahiro Yamada }
802e2282d70SMasahiro Yamada 
803e2282d70SMasahiro Yamada static inline void devres_add(struct udevice *dev, void *res)
804e2282d70SMasahiro Yamada {
805e2282d70SMasahiro Yamada }
806e2282d70SMasahiro Yamada 
807e2282d70SMasahiro Yamada static inline void *devres_find(struct udevice *dev, dr_release_t release,
808e2282d70SMasahiro Yamada 				dr_match_t match, void *match_data)
809e2282d70SMasahiro Yamada {
810e2282d70SMasahiro Yamada 	return NULL;
811e2282d70SMasahiro Yamada }
812e2282d70SMasahiro Yamada 
813e2282d70SMasahiro Yamada static inline void *devres_get(struct udevice *dev, void *new_res,
814e2282d70SMasahiro Yamada 			       dr_match_t match, void *match_data)
815e2282d70SMasahiro Yamada {
816e2282d70SMasahiro Yamada 	return NULL;
817e2282d70SMasahiro Yamada }
818e2282d70SMasahiro Yamada 
819e2282d70SMasahiro Yamada static inline void *devres_remove(struct udevice *dev, dr_release_t release,
820e2282d70SMasahiro Yamada 				  dr_match_t match, void *match_data)
821e2282d70SMasahiro Yamada {
822e2282d70SMasahiro Yamada 	return NULL;
823e2282d70SMasahiro Yamada }
824e2282d70SMasahiro Yamada 
825e2282d70SMasahiro Yamada static inline int devres_destroy(struct udevice *dev, dr_release_t release,
826e2282d70SMasahiro Yamada 				 dr_match_t match, void *match_data)
827e2282d70SMasahiro Yamada {
828e2282d70SMasahiro Yamada 	return 0;
829e2282d70SMasahiro Yamada }
830e2282d70SMasahiro Yamada 
831e2282d70SMasahiro Yamada static inline int devres_release(struct udevice *dev, dr_release_t release,
832e2282d70SMasahiro Yamada 				 dr_match_t match, void *match_data)
833e2282d70SMasahiro Yamada {
834e2282d70SMasahiro Yamada 	return 0;
835e2282d70SMasahiro Yamada }
836e2282d70SMasahiro Yamada 
837e2282d70SMasahiro Yamada static inline void *devm_kmalloc(struct udevice *dev, size_t size, gfp_t gfp)
838e2282d70SMasahiro Yamada {
839e2282d70SMasahiro Yamada 	return kmalloc(size, gfp);
840e2282d70SMasahiro Yamada }
841e2282d70SMasahiro Yamada 
842e2282d70SMasahiro Yamada static inline void *devm_kzalloc(struct udevice *dev, size_t size, gfp_t gfp)
843e2282d70SMasahiro Yamada {
844e2282d70SMasahiro Yamada 	return kzalloc(size, gfp);
845e2282d70SMasahiro Yamada }
846e2282d70SMasahiro Yamada 
847e2282d70SMasahiro Yamada static inline void *devm_kmaloc_array(struct udevice *dev,
848e2282d70SMasahiro Yamada 				      size_t n, size_t size, gfp_t flags)
849e2282d70SMasahiro Yamada {
850e2282d70SMasahiro Yamada 	/* TODO: add kmalloc_array() to linux/compat.h */
851e2282d70SMasahiro Yamada 	if (size != 0 && n > SIZE_MAX / size)
852e2282d70SMasahiro Yamada 		return NULL;
853e2282d70SMasahiro Yamada 	return kmalloc(n * size, flags);
854e2282d70SMasahiro Yamada }
855e2282d70SMasahiro Yamada 
856e2282d70SMasahiro Yamada static inline void *devm_kcalloc(struct udevice *dev,
857e2282d70SMasahiro Yamada 				 size_t n, size_t size, gfp_t flags)
858e2282d70SMasahiro Yamada {
859e2282d70SMasahiro Yamada 	/* TODO: add kcalloc() to linux/compat.h */
860e2282d70SMasahiro Yamada 	return kmalloc(n * size, flags | __GFP_ZERO);
861e2282d70SMasahiro Yamada }
862e2282d70SMasahiro Yamada 
86393c7fe4aSSimon Glass static inline void devm_kfree(struct udevice *dev, void *ptr)
864e2282d70SMasahiro Yamada {
86593c7fe4aSSimon Glass 	kfree(ptr);
866e2282d70SMasahiro Yamada }
867e2282d70SMasahiro Yamada 
868e2282d70SMasahiro Yamada #endif /* ! CONFIG_DEVRES */
8692b07f685SMasahiro Yamada 
87066eaea6cSStefan Roese /**
87166eaea6cSStefan Roese  * dm_set_translation_offset() - Set translation offset
87266eaea6cSStefan Roese  * @offs: Translation offset
87366eaea6cSStefan Roese  *
87466eaea6cSStefan Roese  * Some platforms need a special address translation. Those
87566eaea6cSStefan Roese  * platforms (e.g. mvebu in SPL) can configure a translation
87666eaea6cSStefan Roese  * offset in the DM by calling this function. It will be
87766eaea6cSStefan Roese  * added to all addresses returned in dev_get_addr().
87866eaea6cSStefan Roese  */
87966eaea6cSStefan Roese void dm_set_translation_offset(fdt_addr_t offs);
88066eaea6cSStefan Roese 
88166eaea6cSStefan Roese /**
88266eaea6cSStefan Roese  * dm_get_translation_offset() - Get translation offset
88366eaea6cSStefan Roese  *
88466eaea6cSStefan Roese  * This function returns the translation offset that can
88566eaea6cSStefan Roese  * be configured by calling dm_set_translation_offset().
88666eaea6cSStefan Roese  *
88766eaea6cSStefan Roese  * @return translation offset for the device address (0 as default).
88866eaea6cSStefan Roese  */
88966eaea6cSStefan Roese fdt_addr_t dm_get_translation_offset(void);
89066eaea6cSStefan Roese 
8916494d708SSimon Glass #endif
892