1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2014 Texas Instruments
4 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
8 * As omapdss panel drivers are omapdss specific, but we want to define the
9 * DT-data in generic manner, we convert the compatible strings of the panel and
10 * encoder nodes from "panel-foo" to "omapdss,panel-foo". This way we can have
11 * both correct DT data and omapdss specific drivers.
13 * When we get generic panel drivers to the kernel, this file will be removed.
16 #include <linux/kernel.h>
18 #include <linux/of_graph.h>
19 #include <linux/slab.h>
20 #include <linux/list.h>
22 static struct list_head dss_conv_list __initdata
;
24 static const char prefix
[] __initconst
= "omapdss,";
26 struct dss_conv_node
{
27 struct list_head list
;
28 struct device_node
*node
;
32 static int __init
omapdss_count_strings(const struct property
*prop
)
34 const char *p
= prop
->value
;
38 for (i
= 0; total
< prop
->length
; total
+= l
, p
+= l
, i
++)
44 static void __init
omapdss_update_prop(struct device_node
*node
, char *compat
,
47 struct property
*prop
;
49 prop
= kzalloc(sizeof(*prop
), GFP_KERNEL
);
53 prop
->name
= "compatible";
57 of_update_property(node
, prop
);
60 static void __init
omapdss_prefix_strcpy(char *dst
, int dst_len
,
61 const char *src
, int src_len
)
65 while (total
< src_len
) {
66 size_t l
= strlen(src
) + 1;
69 dst
+= strlen(prefix
);
79 /* prepend compatible property strings with "omapdss," */
80 static void __init
omapdss_omapify_node(struct device_node
*node
)
82 struct property
*prop
;
87 prop
= of_find_property(node
, "compatible", NULL
);
89 if (!prop
|| !prop
->value
)
92 if (strnlen(prop
->value
, prop
->length
) >= prop
->length
)
95 /* is it already prefixed? */
96 if (strncmp(prefix
, prop
->value
, strlen(prefix
)) == 0)
99 num_strs
= omapdss_count_strings(prop
);
101 new_len
= prop
->length
+ strlen(prefix
) * num_strs
;
102 new_compat
= kmalloc(new_len
, GFP_KERNEL
);
106 omapdss_prefix_strcpy(new_compat
, new_len
, prop
->value
, prop
->length
);
108 omapdss_update_prop(node
, new_compat
, new_len
);
111 static void __init
omapdss_add_to_list(struct device_node
*node
, bool root
)
113 struct dss_conv_node
*n
= kmalloc(sizeof(struct dss_conv_node
),
118 list_add(&n
->list
, &dss_conv_list
);
122 static bool __init
omapdss_list_contains(const struct device_node
*node
)
124 struct dss_conv_node
*n
;
126 list_for_each_entry(n
, &dss_conv_list
, list
) {
134 static void __init
omapdss_walk_device(struct device_node
*node
, bool root
)
136 struct device_node
*n
;
138 omapdss_add_to_list(node
, root
);
141 * of_graph_get_remote_port_parent() prints an error if there is no
142 * port/ports node. To avoid that, check first that there's the node.
144 n
= of_get_child_by_name(node
, "ports");
146 n
= of_get_child_by_name(node
, "port");
152 for_each_endpoint_of_node(node
, n
) {
153 struct device_node
*pn
;
155 pn
= of_graph_get_remote_port_parent(n
);
160 if (!of_device_is_available(pn
) || omapdss_list_contains(pn
)) {
165 omapdss_walk_device(pn
, false);
169 static const struct of_device_id omapdss_of_match
[] __initconst
= {
170 { .compatible
= "ti,omap2-dss", },
171 { .compatible
= "ti,omap3-dss", },
172 { .compatible
= "ti,omap4-dss", },
173 { .compatible
= "ti,omap5-dss", },
174 { .compatible
= "ti,dra7-dss", },
178 static int __init
omapdss_boot_init(void)
180 struct device_node
*dss
, *child
;
182 INIT_LIST_HEAD(&dss_conv_list
);
184 dss
= of_find_matching_node(NULL
, omapdss_of_match
);
186 if (dss
== NULL
|| !of_device_is_available(dss
)) {
191 omapdss_walk_device(dss
, true);
193 for_each_available_child_of_node(dss
, child
) {
194 if (!of_property_present(child
, "compatible"))
197 omapdss_walk_device(child
, true);
200 while (!list_empty(&dss_conv_list
)) {
201 struct dss_conv_node
*n
;
203 n
= list_first_entry(&dss_conv_list
, struct dss_conv_node
,
207 omapdss_omapify_node(n
->node
);
210 of_node_put(n
->node
);
217 subsys_initcall(omapdss_boot_init
);