blob: 5a4d50cbbea7d5553b84eeb2df2279fcbb40ff5f [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>
7 * Marek Vasut <marex@denx.de>
Simon Glassdd6ab882014-02-26 15:59:18 -07008 */
9
10#ifndef _DM_DEVICE_INTERNAL_H
11#define _DM_DEVICE_INTERNAL_H
12
Simon Glass322b2902017-05-18 20:09:05 -060013#include <dm/ofnode.h>
14
15struct device_node;
Heiko Schocherb74fcb42014-05-22 12:43:05 +020016struct udevice;
Simon Glassdd6ab882014-02-26 15:59:18 -070017
18/**
19 * device_bind() - Create a device and bind it to a driver
20 *
21 * Called to set up a new device attached to a driver. The device will either
22 * have platdata, or a device tree node which can be used to create the
23 * platdata.
24 *
25 * Once bound a device exists but is not yet active until device_probe() is
26 * called.
27 *
28 * @parent: Pointer to device's parent, under which this driver will exist
29 * @drv: Device's driver
30 * @name: Name of device (e.g. device tree node name)
31 * @platdata: Pointer to data for this device - the structure is device-
32 * specific but may include the device's I/O address, etc.. This is NULL for
33 * devices which use device tree.
34 * @of_offset: Offset of device tree node for this device. This is -1 for
35 * devices which don't use device tree.
Masahiro Yamadae1cc1f02015-08-27 12:44:28 +090036 * @devp: if non-NULL, returns a pointer to the bound device
Simon Glassdd6ab882014-02-26 15:59:18 -070037 * @return 0 if OK, -ve on error
38 */
Simon Glassa626dff2015-03-25 12:21:54 -060039int device_bind(struct udevice *parent, const struct driver *drv,
Simon Glassdd6ab882014-02-26 15:59:18 -070040 const char *name, void *platdata, int of_offset,
Heiko Schocherb74fcb42014-05-22 12:43:05 +020041 struct udevice **devp);
Simon Glassdd6ab882014-02-26 15:59:18 -070042
43/**
Stephen Warren8c93df12016-05-11 15:26:24 -060044 * device_bind_with_driver_data() - Create a device and bind it to a driver
45 *
46 * Called to set up a new device attached to a driver, in the case where the
47 * driver was matched to the device by means of a match table that provides
48 * driver_data.
49 *
50 * Once bound a device exists but is not yet active until device_probe() is
51 * called.
52 *
53 * @parent: Pointer to device's parent, under which this driver will exist
54 * @drv: Device's driver
55 * @name: Name of device (e.g. device tree node name)
56 * @driver_data: The driver_data field from the driver's match table.
Simon Glass322b2902017-05-18 20:09:05 -060057 * @node: Device tree node for this device. This is invalid for devices which
58 * don't use device tree.
Stephen Warren8c93df12016-05-11 15:26:24 -060059 * @devp: if non-NULL, returns a pointer to the bound device
60 * @return 0 if OK, -ve on error
61 */
62int device_bind_with_driver_data(struct udevice *parent,
63 const struct driver *drv, const char *name,
Simon Glass322b2902017-05-18 20:09:05 -060064 ulong driver_data, ofnode node,
Stephen Warren8c93df12016-05-11 15:26:24 -060065 struct udevice **devp);
Stephen Warren8c93df12016-05-11 15:26:24 -060066/**
Simon Glassdd6ab882014-02-26 15:59:18 -070067 * device_bind_by_name: Create a device and bind it to a driver
68 *
69 * This is a helper function used to bind devices which do not use device
70 * tree.
71 *
72 * @parent: Pointer to device's parent
Simon Glassfef72b72014-07-23 06:55:03 -060073 * @pre_reloc_only: If true, bind the driver only if its DM_INIT_F flag is set.
74 * If false bind the driver always.
Simon Glassdd6ab882014-02-26 15:59:18 -070075 * @info: Name and platdata for this device
Masahiro Yamadae1cc1f02015-08-27 12:44:28 +090076 * @devp: if non-NULL, returns a pointer to the bound device
Simon Glassdd6ab882014-02-26 15:59:18 -070077 * @return 0 if OK, -ve on error
78 */
Simon Glassfef72b72014-07-23 06:55:03 -060079int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
80 const struct driver_info *info, struct udevice **devp);
Simon Glassdd6ab882014-02-26 15:59:18 -070081
82/**
83 * device_probe() - Probe a device, activating it
84 *
85 * Activate a device so that it is ready for use. All its parents are probed
86 * first.
87 *
88 * @dev: Pointer to device to probe
89 * @return 0 if OK, -ve on error
90 */
Heiko Schocherb74fcb42014-05-22 12:43:05 +020091int device_probe(struct udevice *dev);
Simon Glassdd6ab882014-02-26 15:59:18 -070092
93/**
94 * device_remove() - Remove a device, de-activating it
95 *
96 * De-activate a device so that it is no longer ready for use. All its
97 * children are deactivated first.
98 *
99 * @dev: Pointer to device to remove
Simon Glass856e0202017-07-29 11:35:00 -0600100 * @flags: Flags for selective device removal (DM_REMOVE_...)
Simon Glassdd6ab882014-02-26 15:59:18 -0700101 * @return 0 if OK, -ve on error (an error here is normally a very bad thing)
102 */
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900103#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Stefan Roese80b5bc92017-03-20 12:51:48 +0100104int device_remove(struct udevice *dev, uint flags);
Simon Glassb38ea5a2014-11-10 17:16:47 -0700105#else
Stefan Roese80b5bc92017-03-20 12:51:48 +0100106static inline int device_remove(struct udevice *dev, uint flags) { return 0; }
Simon Glassb38ea5a2014-11-10 17:16:47 -0700107#endif
Simon Glassdd6ab882014-02-26 15:59:18 -0700108
109/**
110 * device_unbind() - Unbind a device, destroying it
111 *
112 * Unbind a device and remove all memory used by it
113 *
114 * @dev: Pointer to device to unbind
115 * @return 0 if OK, -ve on error
116 */
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900117#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200118int device_unbind(struct udevice *dev);
Marek Vasut45a93352015-02-18 22:36:18 +0100119#else
120static inline int device_unbind(struct udevice *dev) { return 0; }
121#endif
Simon Glassdd6ab882014-02-26 15:59:18 -0700122
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900123#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Simon Glassb38ea5a2014-11-10 17:16:47 -0700124void device_free(struct udevice *dev);
125#else
126static inline void device_free(struct udevice *dev) {}
127#endif
128
Simon Glass59b61962015-07-07 20:53:44 -0600129/**
130 * simple_bus_translate() - translate a bus address to a system address
131 *
132 * This handles the 'ranges' property in a simple bus. It translates the
133 * device address @addr to a system address using this property.
134 *
135 * @dev: Simple bus device (parent of target device)
136 * @addr: Address to translate
137 * @return new address
138 */
139fdt_addr_t simple_bus_translate(struct udevice *dev, fdt_addr_t addr);
140
Simon Glass34a1d352014-06-11 23:29:49 -0600141/* Cast away any volatile pointer */
142#define DM_ROOT_NON_CONST (((gd_t *)gd)->dm_root)
143#define DM_UCLASS_ROOT_NON_CONST (((gd_t *)gd)->uclass_root)
144
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900145/* device resource management */
Masahiro Yamada029bfca2015-07-25 21:52:37 +0900146#ifdef CONFIG_DEVRES
147
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900148/**
149 * devres_release_probe - Release managed resources allocated after probing
150 * @dev: Device to release resources for
151 *
152 * Release all resources allocated for @dev when it was probed or later.
153 * This function is called on driver removal.
154 */
155void devres_release_probe(struct udevice *dev);
156
157/**
158 * devres_release_all - Release all managed resources
159 * @dev: Device to release resources for
160 *
161 * Release all resources associated with @dev. This function is
162 * called on driver unbinding.
163 */
164void devres_release_all(struct udevice *dev);
165
Masahiro Yamada029bfca2015-07-25 21:52:37 +0900166#else /* ! CONFIG_DEVRES */
167
168static inline void devres_release_probe(struct udevice *dev)
169{
170}
171
172static inline void devres_release_all(struct udevice *dev)
173{
174}
175
176#endif /* ! CONFIG_DEVRES */
Simon Glassdd6ab882014-02-26 15:59:18 -0700177#endif