blob: 83da25bdf59ca29819c6ea7721872a1bc1f39885 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Russell King2a41e602014-01-10 23:23:37 +00002#ifndef COMPONENT_H
3#define COMPONENT_H
4
Russell Kingce657b12015-11-17 12:08:01 +00005#include <linux/stddef.h>
6
Daniel Vetter4d69c802019-02-08 00:27:56 +01007
Russell King2a41e602014-01-10 23:23:37 +00008struct device;
9
Daniel Vetter4d69c802019-02-08 00:27:56 +010010/**
11 * struct component_ops - callbacks for component drivers
12 *
13 * Components are registered with component_add() and unregistered with
14 * component_del().
15 */
Russell King2a41e602014-01-10 23:23:37 +000016struct component_ops {
Daniel Vetter4d69c802019-02-08 00:27:56 +010017 /**
18 * @bind:
19 *
20 * Called through component_bind_all() when the aggregate driver is
21 * ready to bind the overall driver.
22 */
Russell Kingce657b12015-11-17 12:08:01 +000023 int (*bind)(struct device *comp, struct device *master,
24 void *master_data);
Daniel Vetter4d69c802019-02-08 00:27:56 +010025 /**
26 * @unbind:
27 *
28 * Called through component_unbind_all() when the aggregate driver is
29 * ready to bind the overall driver, or when component_bind_all() fails
30 * part-ways through and needs to unbind some already bound components.
31 */
Russell Kingce657b12015-11-17 12:08:01 +000032 void (*unbind)(struct device *comp, struct device *master,
33 void *master_data);
Russell King2a41e602014-01-10 23:23:37 +000034};
35
36int component_add(struct device *, const struct component_ops *);
37void component_del(struct device *, const struct component_ops *);
38
Russell Kingce657b12015-11-17 12:08:01 +000039int component_bind_all(struct device *master, void *master_data);
40void component_unbind_all(struct device *master, void *master_data);
Russell King2a41e602014-01-10 23:23:37 +000041
42struct master;
43
Daniel Vetter4d69c802019-02-08 00:27:56 +010044/**
45 * struct component_master_ops - callback for the aggregate driver
46 *
47 * Aggregate drivers are registered with component_master_add_with_match() and
48 * unregistered with component_master_del().
49 */
Russell King2a41e602014-01-10 23:23:37 +000050struct component_master_ops {
Daniel Vetter4d69c802019-02-08 00:27:56 +010051 /**
52 * @bind:
53 *
54 * Called when all components or the aggregate driver, as specified in
55 * the match list passed to component_master_add_with_match(), are
56 * ready. Usually there are 3 steps to bind an aggregate driver:
57 *
58 * 1. Allocate a structure for the aggregate driver.
59 *
60 * 2. Bind all components to the aggregate driver by calling
61 * component_bind_all() with the aggregate driver structure as opaque
62 * pointer data.
63 *
64 * 3. Register the aggregate driver with the subsystem to publish its
65 * interfaces.
66 *
67 * Note that the lifetime of the aggregate driver does not align with
68 * any of the underlying &struct device instances. Therefore devm cannot
69 * be used and all resources acquired or allocated in this callback must
70 * be explicitly released in the @unbind callback.
71 */
Russell Kingce657b12015-11-17 12:08:01 +000072 int (*bind)(struct device *master);
Daniel Vetter4d69c802019-02-08 00:27:56 +010073 /**
74 * @unbind:
75 *
76 * Called when either the aggregate driver, using
77 * component_master_del(), or one of its components, using
78 * component_del(), is unregistered.
79 */
Russell Kingce657b12015-11-17 12:08:01 +000080 void (*unbind)(struct device *master);
Russell King2a41e602014-01-10 23:23:37 +000081};
82
Russell King2a41e602014-01-10 23:23:37 +000083void component_master_del(struct device *,
84 const struct component_master_ops *);
85
Russell King6955b582014-04-19 11:18:01 +010086struct component_match;
87
88int component_master_add_with_match(struct device *,
89 const struct component_master_ops *, struct component_match *);
Russell Kingce657b12015-11-17 12:08:01 +000090void component_match_add_release(struct device *master,
91 struct component_match **matchptr,
92 void (*release)(struct device *, void *),
Russell King6955b582014-04-19 11:18:01 +010093 int (*compare)(struct device *, void *), void *compare_data);
94
Daniel Vetter4d69c802019-02-08 00:27:56 +010095/**
96 * component_match_add - add a compent match
97 * @master: device with the aggregate driver
98 * @matchptr: pointer to the list of component matches
99 * @compare: compare function to match against all components
100 * @compare_data: opaque pointer passed to the @compare function
101 *
102 * Adds a new component match to the list stored in @matchptr, which the @master
103 * aggregate driver needs to function. The list of component matches pointed to
104 * by @matchptr must be initialized to NULL before adding the first match.
105 *
106 * The allocated match list in @matchptr is automatically released using devm
107 * actions.
108 *
109 * See also component_match_add_release().
110 */
Russell Kingce657b12015-11-17 12:08:01 +0000111static inline void component_match_add(struct device *master,
112 struct component_match **matchptr,
113 int (*compare)(struct device *, void *), void *compare_data)
114{
115 component_match_add_release(master, matchptr, NULL, compare,
116 compare_data);
117}
118
Russell King2a41e602014-01-10 23:23:37 +0000119#endif