interconnect: Allow inter-provider pairs to be configured
This patch adds support for a new boolean 'inter_set' field in struct icc_provider. Setting it to 'true' enables calling '->set' for inter-provider node pairs. All existing users of the interconnect framework allocate this structure with kzalloc, and are therefore unaffected by this change. This makes it easier for hierarchies like exynos-bus, where every bus is probed separately and registers a separate interconnect provider, to model constraints between buses. Signed-off-by: Artur Świgoń <a.swigon@samsung.com> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Acked-by: Krzysztof Kozlowski <krzk@kernel.org> Link: https://lore.kernel.org/r/20200521122841.8867-4-s.nawrocki@samsung.com Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
This commit is contained in:

committed by
Georgi Djakov

parent
0259a41da3
commit
65461e26b1
@@ -41,6 +41,7 @@ struct icc_node *of_icc_xlate_onecell(struct of_phandle_args *spec,
|
||||
* @xlate: provider-specific callback for mapping nodes from phandle arguments
|
||||
* @dev: the device this interconnect provider belongs to
|
||||
* @users: count of active users
|
||||
* @inter_set: whether inter-provider pairs will be configured with @set
|
||||
* @data: pointer to private data
|
||||
*/
|
||||
struct icc_provider {
|
||||
@@ -53,6 +54,7 @@ struct icc_provider {
|
||||
struct icc_node* (*xlate)(struct of_phandle_args *spec, void *data);
|
||||
struct device *dev;
|
||||
int users;
|
||||
bool inter_set;
|
||||
void *data;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user