blob: e256d879b25ccc379cf93201b155f31e00269af2 [file] [log] [blame]
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +02001/*
2 * Copyright (C) 2013 Texas Instruments
3 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 */
14
15#include <linux/device.h>
16#include <linux/err.h>
17#include <linux/module.h>
18#include <linux/of.h>
19#include <linux/seq_file.h>
20
Peter Ujfalusi32043da2016-05-27 14:40:49 +030021#include "omapdss.h"
Archit Tanejaef691ff2014-04-22 17:43:48 +053022#include "dss.h"
23
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +020024struct device_node *
25omapdss_of_get_next_port(const struct device_node *parent,
26 struct device_node *prev)
27{
28 struct device_node *port = NULL;
29
30 if (!parent)
31 return NULL;
32
33 if (!prev) {
34 struct device_node *ports;
35 /*
36 * It's the first call, we have to find a port subnode
37 * within this node or within an optional 'ports' node.
38 */
39 ports = of_get_child_by_name(parent, "ports");
40 if (ports)
41 parent = ports;
42
43 port = of_get_child_by_name(parent, "port");
44
45 /* release the 'ports' node */
46 of_node_put(ports);
47 } else {
48 struct device_node *ports;
49
50 ports = of_get_parent(prev);
51 if (!ports)
52 return NULL;
53
54 do {
55 port = of_get_next_child(ports, prev);
56 if (!port) {
57 of_node_put(ports);
58 return NULL;
59 }
60 prev = port;
61 } while (of_node_cmp(port->name, "port") != 0);
Jyri Sarha2b55cb32015-08-07 14:04:29 +030062
63 of_node_put(ports);
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +020064 }
65
66 return port;
67}
68EXPORT_SYMBOL_GPL(omapdss_of_get_next_port);
69
70struct device_node *
71omapdss_of_get_next_endpoint(const struct device_node *parent,
72 struct device_node *prev)
73{
74 struct device_node *ep = NULL;
75
76 if (!parent)
77 return NULL;
78
79 do {
80 ep = of_get_next_child(parent, prev);
81 if (!ep)
82 return NULL;
83 prev = ep;
84 } while (of_node_cmp(ep->name, "endpoint") != 0);
85
86 return ep;
87}
88EXPORT_SYMBOL_GPL(omapdss_of_get_next_endpoint);
89
Archit Tanejaef691ff2014-04-22 17:43:48 +053090struct device_node *dss_of_port_get_parent_device(struct device_node *port)
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +020091{
92 struct device_node *np;
93 int i;
94
Archit Tanejaef691ff2014-04-22 17:43:48 +053095 if (!port)
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +020096 return NULL;
97
Jyri Sarha6266f4b2015-08-07 14:04:30 +030098 np = of_get_parent(port);
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +020099
Archit Tanejaef691ff2014-04-22 17:43:48 +0530100 for (i = 0; i < 2 && np; ++i) {
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +0200101 struct property *prop;
102
103 prop = of_find_property(np, "compatible", NULL);
104
105 if (prop)
106 return np;
107
108 np = of_get_next_parent(np);
109 }
110
111 return NULL;
112}
113
Archit Tanejaef691ff2014-04-22 17:43:48 +0530114u32 dss_of_port_get_port_number(struct device_node *port)
115{
116 int r;
117 u32 reg;
118
119 r = of_property_read_u32(port, "reg", &reg);
120 if (r)
121 reg = 0;
122
123 return reg;
124}
125
126static struct device_node *omapdss_of_get_remote_port(const struct device_node *node)
127{
Peter Chen2ab9f582016-07-15 11:17:03 +0800128 struct device_node *np, *np_parent;
Archit Tanejaef691ff2014-04-22 17:43:48 +0530129
130 np = of_parse_phandle(node, "remote-endpoint", 0);
131 if (!np)
132 return NULL;
133
Peter Chen2ab9f582016-07-15 11:17:03 +0800134 np_parent = of_get_next_parent(np);
135 of_node_put(np);
Archit Tanejaef691ff2014-04-22 17:43:48 +0530136
Peter Chen2ab9f582016-07-15 11:17:03 +0800137 return np_parent;
Archit Tanejaef691ff2014-04-22 17:43:48 +0530138}
139
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +0200140struct device_node *
141omapdss_of_get_first_endpoint(const struct device_node *parent)
142{
143 struct device_node *port, *ep;
144
145 port = omapdss_of_get_next_port(parent, NULL);
146
147 if (!port)
148 return NULL;
149
150 ep = omapdss_of_get_next_endpoint(port, NULL);
151
152 of_node_put(port);
153
154 return ep;
155}
156EXPORT_SYMBOL_GPL(omapdss_of_get_first_endpoint);
157
158struct omap_dss_device *
159omapdss_of_find_source_for_first_ep(struct device_node *node)
160{
161 struct device_node *ep;
Archit Tanejaef691ff2014-04-22 17:43:48 +0530162 struct device_node *src_port;
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +0200163 struct omap_dss_device *src;
164
165 ep = omapdss_of_get_first_endpoint(node);
166 if (!ep)
167 return ERR_PTR(-EINVAL);
168
Archit Tanejaef691ff2014-04-22 17:43:48 +0530169 src_port = omapdss_of_get_remote_port(ep);
170 if (!src_port) {
171 of_node_put(ep);
172 return ERR_PTR(-EINVAL);
173 }
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +0200174
175 of_node_put(ep);
176
Archit Tanejaef691ff2014-04-22 17:43:48 +0530177 src = omap_dss_find_output_by_port_node(src_port);
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +0200178
Archit Tanejaef691ff2014-04-22 17:43:48 +0530179 of_node_put(src_port);
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +0200180
Archit Tanejaef691ff2014-04-22 17:43:48 +0530181 return src ? src : ERR_PTR(-EPROBE_DEFER);
Tomi Valkeinen4e7470d2013-12-03 16:57:40 +0200182}
183EXPORT_SYMBOL_GPL(omapdss_of_find_source_for_first_ep);