blob: 2cabc87338fb97f6f8ff1ea993a902e39757405e [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 * Marek Vasut <marex@denx.de>
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#ifndef _DM_DEVICE_INTERNAL_H
12#define _DM_DEVICE_INTERNAL_H
13
Heiko Schocher54c5d082014-05-22 12:43:05 +020014struct udevice;
Simon Glass6494d702014-02-26 15:59:18 -070015
16/**
17 * device_bind() - Create a device and bind it to a driver
18 *
19 * Called to set up a new device attached to a driver. The device will either
20 * have platdata, or a device tree node which can be used to create the
21 * platdata.
22 *
23 * Once bound a device exists but is not yet active until device_probe() is
24 * called.
25 *
26 * @parent: Pointer to device's parent, under which this driver will exist
27 * @drv: Device's driver
28 * @name: Name of device (e.g. device tree node name)
29 * @platdata: Pointer to data for this device - the structure is device-
30 * specific but may include the device's I/O address, etc.. This is NULL for
31 * devices which use device tree.
32 * @of_offset: Offset of device tree node for this device. This is -1 for
33 * devices which don't use device tree.
Masahiro Yamadae6cabe42015-08-27 12:44:28 +090034 * @devp: if non-NULL, returns a pointer to the bound device
Simon Glass6494d702014-02-26 15:59:18 -070035 * @return 0 if OK, -ve on error
36 */
Simon Glass34792532015-03-25 12:21:54 -060037int device_bind(struct udevice *parent, const struct driver *drv,
Simon Glass6494d702014-02-26 15:59:18 -070038 const char *name, void *platdata, int of_offset,
Heiko Schocher54c5d082014-05-22 12:43:05 +020039 struct udevice **devp);
Simon Glass6494d702014-02-26 15:59:18 -070040
41/**
Stephen Warrendaac3bf2016-05-11 15:26:24 -060042 * device_bind_with_driver_data() - Create a device and bind it to a driver
43 *
44 * Called to set up a new device attached to a driver, in the case where the
45 * driver was matched to the device by means of a match table that provides
46 * driver_data.
47 *
48 * Once bound a device exists but is not yet active until device_probe() is
49 * called.
50 *
51 * @parent: Pointer to device's parent, under which this driver will exist
52 * @drv: Device's driver
53 * @name: Name of device (e.g. device tree node name)
54 * @driver_data: The driver_data field from the driver's match table.
55 * @of_offset: Offset of device tree node for this device. This is -1 for
56 * devices which don't use device tree.
57 * @devp: if non-NULL, returns a pointer to the bound device
58 * @return 0 if OK, -ve on error
59 */
60int device_bind_with_driver_data(struct udevice *parent,
61 const struct driver *drv, const char *name,
62 ulong driver_data, int of_offset,
63 struct udevice **devp);
64
65/**
Simon Glass6494d702014-02-26 15:59:18 -070066 * device_bind_by_name: Create a device and bind it to a driver
67 *
68 * This is a helper function used to bind devices which do not use device
69 * tree.
70 *
71 * @parent: Pointer to device's parent
Simon Glass00606d72014-07-23 06:55:03 -060072 * @pre_reloc_only: If true, bind the driver only if its DM_INIT_F flag is set.
73 * If false bind the driver always.
Simon Glass6494d702014-02-26 15:59:18 -070074 * @info: Name and platdata for this device
Masahiro Yamadae6cabe42015-08-27 12:44:28 +090075 * @devp: if non-NULL, returns a pointer to the bound device
Simon Glass6494d702014-02-26 15:59:18 -070076 * @return 0 if OK, -ve on error
77 */
Simon Glass00606d72014-07-23 06:55:03 -060078int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
79 const struct driver_info *info, struct udevice **devp);
Simon Glass6494d702014-02-26 15:59:18 -070080
81/**
82 * device_probe() - Probe a device, activating it
83 *
84 * Activate a device so that it is ready for use. All its parents are probed
85 * first.
86 *
87 * @dev: Pointer to device to probe
88 * @return 0 if OK, -ve on error
89 */
Heiko Schocher54c5d082014-05-22 12:43:05 +020090int device_probe(struct udevice *dev);
Simon Glass6494d702014-02-26 15:59:18 -070091
92/**
93 * device_remove() - Remove a device, de-activating it
94 *
95 * De-activate a device so that it is no longer ready for use. All its
96 * children are deactivated first.
97 *
98 * @dev: Pointer to device to remove
Stefan Roese706865a2017-03-20 12:51:48 +010099 * @flags: Flags for selective device removal
Simon Glass6494d702014-02-26 15:59:18 -0700100 * @return 0 if OK, -ve on error (an error here is normally a very bad thing)
101 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900102#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Stefan Roese706865a2017-03-20 12:51:48 +0100103int device_remove(struct udevice *dev, uint flags);
Simon Glass3ac435d2014-11-10 17:16:47 -0700104#else
Stefan Roese706865a2017-03-20 12:51:48 +0100105static inline int device_remove(struct udevice *dev, uint flags) { return 0; }
Simon Glass3ac435d2014-11-10 17:16:47 -0700106#endif
Simon Glass6494d702014-02-26 15:59:18 -0700107
108/**
109 * device_unbind() - Unbind a device, destroying it
110 *
111 * Unbind a device and remove all memory used by it
112 *
113 * @dev: Pointer to device to unbind
114 * @return 0 if OK, -ve on error
115 */
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900116#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Heiko Schocher54c5d082014-05-22 12:43:05 +0200117int device_unbind(struct udevice *dev);
Marek Vasut66c03152015-02-18 22:36:18 +0100118#else
119static inline int device_unbind(struct udevice *dev) { return 0; }
120#endif
Simon Glass6494d702014-02-26 15:59:18 -0700121
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900122#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
Simon Glass3ac435d2014-11-10 17:16:47 -0700123void device_free(struct udevice *dev);
124#else
125static inline void device_free(struct udevice *dev) {}
126#endif
127
Simon Glassf3301772015-07-07 20:53:44 -0600128/**
129 * simple_bus_translate() - translate a bus address to a system address
130 *
131 * This handles the 'ranges' property in a simple bus. It translates the
132 * device address @addr to a system address using this property.
133 *
134 * @dev: Simple bus device (parent of target device)
135 * @addr: Address to translate
136 * @return new address
137 */
138fdt_addr_t simple_bus_translate(struct udevice *dev, fdt_addr_t addr);
139
Simon Glass89876a52014-06-11 23:29:49 -0600140/* Cast away any volatile pointer */
141#define DM_ROOT_NON_CONST (((gd_t *)gd)->dm_root)
142#define DM_UCLASS_ROOT_NON_CONST (((gd_t *)gd)->uclass_root)
143
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900144/* device resource management */
Masahiro Yamadae2282d72015-07-25 21:52:37 +0900145#ifdef CONFIG_DEVRES
146
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900147/**
148 * devres_release_probe - Release managed resources allocated after probing
149 * @dev: Device to release resources for
150 *
151 * Release all resources allocated for @dev when it was probed or later.
152 * This function is called on driver removal.
153 */
154void devres_release_probe(struct udevice *dev);
155
156/**
157 * devres_release_all - Release all managed resources
158 * @dev: Device to release resources for
159 *
160 * Release all resources associated with @dev. This function is
161 * called on driver unbinding.
162 */
163void devres_release_all(struct udevice *dev);
164
Masahiro Yamadae2282d72015-07-25 21:52:37 +0900165#else /* ! CONFIG_DEVRES */
166
167static inline void devres_release_probe(struct udevice *dev)
168{
169}
170
171static inline void devres_release_all(struct udevice *dev)
172{
173}
174
175#endif /* ! CONFIG_DEVRES */
Simon Glass6494d702014-02-26 15:59:18 -0700176#endif