blob: 01038a6aade017805c00707be104ed271f8cbdcd [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001/* SPDX-License-Identifier: GPL-2.0 */
Philipp Zabelfd9fdb72014-02-10 22:01:48 +01002/*
3 * OF graph binding parsing helpers
4 *
5 * Copyright (C) 2012 - 2013 Samsung Electronics Co., Ltd.
6 * Author: Sylwester Nawrocki <s.nawrocki@samsung.com>
7 *
8 * Copyright (C) 2012 Renesas Electronics Corp.
9 * Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010010 */
11#ifndef __LINUX_OF_GRAPH_H
12#define __LINUX_OF_GRAPH_H
13
Mark Brown01218bf12015-03-26 09:47:55 -070014#include <linux/types.h>
Arnd Bergmann011d6f52016-05-02 12:59:19 +020015#include <linux/errno.h>
Mark Brown01218bf12015-03-26 09:47:55 -070016
Philipp Zabelf2a575f2014-02-14 11:53:56 +010017/**
18 * struct of_endpoint - the OF graph endpoint data structure
19 * @port: identifier (value of reg property) of a port this endpoint belongs to
20 * @id: identifier (value of reg property) of this endpoint
21 * @local_node: pointer to device_node of this endpoint
22 */
23struct of_endpoint {
24 unsigned int port;
25 unsigned int id;
26 const struct device_node *local_node;
27};
28
Philipp Zabelee890592014-04-14 17:53:25 +020029/**
30 * for_each_endpoint_of_node - iterate over every endpoint in a device node
31 * @parent: parent device node containing ports and endpoints
32 * @child: loop variable pointing to the current endpoint node
33 *
34 * When breaking out of the loop, of_node_put(child) has to be called manually.
35 */
36#define for_each_endpoint_of_node(parent, child) \
37 for (child = of_graph_get_next_endpoint(parent, NULL); child != NULL; \
38 child = of_graph_get_next_endpoint(parent, child))
39
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010040#ifdef CONFIG_OF
Philipp Zabelf2a575f2014-02-14 11:53:56 +010041int of_graph_parse_endpoint(const struct device_node *node,
42 struct of_endpoint *endpoint);
Kuninori Morimotoac1e6952017-04-20 01:32:47 +000043int of_graph_get_endpoint_count(const struct device_node *np);
Philipp Zabelbfe446e2014-03-11 11:21:11 +010044struct device_node *of_graph_get_port_by_id(struct device_node *node, u32 id);
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010045struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
46 struct device_node *previous);
Hyungwon Hwang8ccd0d02015-06-12 21:59:01 +090047struct device_node *of_graph_get_endpoint_by_regs(
48 const struct device_node *parent, int port_reg, int reg);
Kuninori Morimoto4c9c3d52017-04-20 01:31:42 +000049struct device_node *of_graph_get_remote_endpoint(
50 const struct device_node *node);
Kuninori Morimoto0ef472a2017-04-20 01:32:17 +000051struct device_node *of_graph_get_port_parent(struct device_node *node);
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010052struct device_node *of_graph_get_remote_port_parent(
53 const struct device_node *node);
54struct device_node *of_graph_get_remote_port(const struct device_node *node);
Rob Herringb85ad492017-02-03 12:39:03 -060055struct device_node *of_graph_get_remote_node(const struct device_node *node,
56 u32 port, u32 endpoint);
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010057#else
58
Philipp Zabelf2a575f2014-02-14 11:53:56 +010059static inline int of_graph_parse_endpoint(const struct device_node *node,
Philipp Zabel00fd9612014-03-07 15:49:54 +010060 struct of_endpoint *endpoint)
Philipp Zabelf2a575f2014-02-14 11:53:56 +010061{
62 return -ENOSYS;
63}
64
Kuninori Morimotoac1e6952017-04-20 01:32:47 +000065static inline int of_graph_get_endpoint_count(const struct device_node *np)
66{
67 return 0;
68}
69
Philipp Zabelbfe446e2014-03-11 11:21:11 +010070static inline struct device_node *of_graph_get_port_by_id(
71 struct device_node *node, u32 id)
72{
73 return NULL;
74}
75
Philipp Zabelfd9fdb72014-02-10 22:01:48 +010076static inline struct device_node *of_graph_get_next_endpoint(
77 const struct device_node *parent,
78 struct device_node *previous)
79{
80 return NULL;
81}
82
Inki Daece0bdb82015-06-23 16:06:44 +090083static inline struct device_node *of_graph_get_endpoint_by_regs(
Hyungwon Hwang8ccd0d02015-06-12 21:59:01 +090084 const struct device_node *parent, int port_reg, int reg)
85{
86 return NULL;
87}
88
Kuninori Morimoto4c9c3d52017-04-20 01:31:42 +000089static inline struct device_node *of_graph_get_remote_endpoint(
90 const struct device_node *node)
91{
92 return NULL;
93}
94
Kuninori Morimoto0ef472a2017-04-20 01:32:17 +000095static inline struct device_node *of_graph_get_port_parent(
96 struct device_node *node)
97{
98 return NULL;
99}
100
Philipp Zabelfd9fdb72014-02-10 22:01:48 +0100101static inline struct device_node *of_graph_get_remote_port_parent(
102 const struct device_node *node)
103{
104 return NULL;
105}
106
107static inline struct device_node *of_graph_get_remote_port(
108 const struct device_node *node)
109{
110 return NULL;
111}
Rob Herringb85ad492017-02-03 12:39:03 -0600112static inline struct device_node *of_graph_get_remote_node(
113 const struct device_node *node,
114 u32 port, u32 endpoint)
115{
116 return NULL;
117}
Philipp Zabelfd9fdb72014-02-10 22:01:48 +0100118
119#endif /* CONFIG_OF */
120
121#endif /* __LINUX_OF_GRAPH_H */