blob: f93b6abbe258193a64e2bfaada6d6554196b2e22 [file] [log] [blame]
Thomas Gleixner55716d22019-06-01 10:08:42 +02001// SPDX-License-Identifier: GPL-2.0-only
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +02002/*
3 * OF helpers for parsing display timings
4 *
5 * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
6 *
7 * based on of_videomode.c by Sascha Hauer <s.hauer@pengutronix.de>
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +02008 */
9#include <linux/export.h>
10#include <linux/of.h>
11#include <linux/slab.h>
12#include <video/display_timing.h>
13#include <video/of_display_timing.h>
14
15/**
16 * parse_timing_property - parse timing_entry from device_node
17 * @np: device_node with the property
18 * @name: name of the property
19 * @result: will be set to the return value
20 *
21 * DESCRIPTION:
22 * Every display_timing can be specified with either just the typical value or
23 * a range consisting of min/typ/max. This function helps handling this
24 **/
Steffen Trumtrarf5836622013-05-27 12:33:05 +000025static int parse_timing_property(const struct device_node *np, const char *name,
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020026 struct timing_entry *result)
27{
28 struct property *prop;
29 int length, cells, ret;
30
31 prop = of_find_property(np, name, &length);
32 if (!prop) {
Rob Herring6d7e6532017-08-07 17:22:13 +020033 pr_err("%pOF: could not find property %s\n", np, name);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020034 return -EINVAL;
35 }
36
37 cells = length / sizeof(u32);
38 if (cells == 1) {
39 ret = of_property_read_u32(np, name, &result->typ);
40 result->min = result->typ;
41 result->max = result->typ;
42 } else if (cells == 3) {
43 ret = of_property_read_u32_array(np, name, &result->min, cells);
44 } else {
Rob Herring6d7e6532017-08-07 17:22:13 +020045 pr_err("%pOF: illegal timing specification in %s\n", np, name);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020046 return -EINVAL;
47 }
48
49 return ret;
50}
51
52/**
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +030053 * of_parse_display_timing - parse display_timing entry from device_node
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020054 * @np: device_node with the properties
Sam Ravnborg89194892020-11-28 23:40:47 +010055 * @dt: display_timing that contains the result. I may be partially written in case of errors
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020056 **/
Linus Torvalds2e17c5a2013-07-09 16:04:31 -070057static int of_parse_display_timing(const struct device_node *np,
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +030058 struct display_timing *dt)
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020059{
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020060 u32 val = 0;
61 int ret = 0;
62
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +030063 memset(dt, 0, sizeof(*dt));
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020064
65 ret |= parse_timing_property(np, "hback-porch", &dt->hback_porch);
66 ret |= parse_timing_property(np, "hfront-porch", &dt->hfront_porch);
67 ret |= parse_timing_property(np, "hactive", &dt->hactive);
68 ret |= parse_timing_property(np, "hsync-len", &dt->hsync_len);
69 ret |= parse_timing_property(np, "vback-porch", &dt->vback_porch);
70 ret |= parse_timing_property(np, "vfront-porch", &dt->vfront_porch);
71 ret |= parse_timing_property(np, "vactive", &dt->vactive);
72 ret |= parse_timing_property(np, "vsync-len", &dt->vsync_len);
73 ret |= parse_timing_property(np, "clock-frequency", &dt->pixelclock);
74
Tomi Valkeinen06a33072013-03-12 10:26:45 +020075 dt->flags = 0;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020076 if (!of_property_read_u32(np, "vsync-active", &val))
Tomi Valkeinen06a33072013-03-12 10:26:45 +020077 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
78 DISPLAY_FLAGS_VSYNC_LOW;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020079 if (!of_property_read_u32(np, "hsync-active", &val))
Tomi Valkeinen06a33072013-03-12 10:26:45 +020080 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
81 DISPLAY_FLAGS_HSYNC_LOW;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020082 if (!of_property_read_u32(np, "de-active", &val))
Tomi Valkeinen06a33072013-03-12 10:26:45 +020083 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020084 DISPLAY_FLAGS_DE_LOW;
85 if (!of_property_read_u32(np, "pixelclk-active", &val))
Tomi Valkeinen06a33072013-03-12 10:26:45 +020086 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020087 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
88
Peter Ujfalusibd9642b2016-09-22 13:35:26 +030089 if (!of_property_read_u32(np, "syncclk-active", &val))
90 dt->flags |= val ? DISPLAY_FLAGS_SYNC_POSEDGE :
91 DISPLAY_FLAGS_SYNC_NEGEDGE;
92 else if (dt->flags & (DISPLAY_FLAGS_PIXDATA_POSEDGE |
93 DISPLAY_FLAGS_PIXDATA_NEGEDGE))
94 dt->flags |= dt->flags & DISPLAY_FLAGS_PIXDATA_POSEDGE ?
95 DISPLAY_FLAGS_SYNC_POSEDGE :
96 DISPLAY_FLAGS_SYNC_NEGEDGE;
97
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +020098 if (of_property_read_bool(np, "interlaced"))
Tomi Valkeinen06a33072013-03-12 10:26:45 +020099 dt->flags |= DISPLAY_FLAGS_INTERLACED;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200100 if (of_property_read_bool(np, "doublescan"))
Tomi Valkeinen06a33072013-03-12 10:26:45 +0200101 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
Steffen Trumtrar2d178a42013-05-27 12:33:34 +0000102 if (of_property_read_bool(np, "doubleclk"))
103 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200104
105 if (ret) {
Rob Herring6d7e6532017-08-07 17:22:13 +0200106 pr_err("%pOF: error reading timing properties\n", np);
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +0300107 return -EINVAL;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200108 }
109
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +0300110 return 0;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200111}
112
113/**
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300114 * of_get_display_timing - parse a display_timing entry
115 * @np: device_node with the timing subnode
116 * @name: name of the timing node
117 * @dt: display_timing struct to fill
118 **/
Laurent Pinchartf5a000c2016-10-03 16:55:48 +0300119int of_get_display_timing(const struct device_node *np, const char *name,
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300120 struct display_timing *dt)
121{
122 struct device_node *timing_np;
Douglas Anderson4faba502019-07-22 11:24:36 -0700123 int ret;
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300124
Lucas Stachdc427152014-05-13 14:58:21 +0200125 if (!np)
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300126 return -EINVAL;
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300127
Andrzej Hajda60119a12013-09-25 13:51:31 +0200128 timing_np = of_get_child_by_name(np, name);
Douglas Anderson892e8ba2019-07-22 11:24:37 -0700129 if (!timing_np)
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300130 return -ENOENT;
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300131
Douglas Anderson4faba502019-07-22 11:24:36 -0700132 ret = of_parse_display_timing(timing_np, dt);
133
134 of_node_put(timing_np);
135
136 return ret;
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300137}
138EXPORT_SYMBOL_GPL(of_get_display_timing);
139
140/**
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200141 * of_get_display_timings - parse all display_timing entries from a device_node
142 * @np: device_node with the subnodes
143 **/
Laurent Pinchartf5a000c2016-10-03 16:55:48 +0300144struct display_timings *of_get_display_timings(const struct device_node *np)
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200145{
146 struct device_node *timings_np;
147 struct device_node *entry;
148 struct device_node *native_mode;
149 struct display_timings *disp;
150
Lucas Stachdc427152014-05-13 14:58:21 +0200151 if (!np)
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200152 return NULL;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200153
Andrzej Hajda60119a12013-09-25 13:51:31 +0200154 timings_np = of_get_child_by_name(np, "display-timings");
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200155 if (!timings_np) {
Rob Herring6d7e6532017-08-07 17:22:13 +0200156 pr_err("%pOF: could not find display-timings node\n", np);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200157 return NULL;
158 }
159
160 disp = kzalloc(sizeof(*disp), GFP_KERNEL);
161 if (!disp) {
Rob Herring6d7e6532017-08-07 17:22:13 +0200162 pr_err("%pOF: could not allocate struct disp'\n", np);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200163 goto dispfail;
164 }
165
166 entry = of_parse_phandle(timings_np, "native-mode", 0);
167 /* assume first child as native mode if none provided */
168 if (!entry)
Boris BREZILLON80c68c12014-05-09 15:53:12 +0200169 entry = of_get_next_child(timings_np, NULL);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200170 /* if there is no child, it is useless to go on */
171 if (!entry) {
Rob Herring6d7e6532017-08-07 17:22:13 +0200172 pr_err("%pOF: no timing specifications given\n", np);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200173 goto entryfail;
174 }
175
Rob Herring5c63e402018-10-08 12:57:36 +0200176 pr_debug("%pOF: using %pOFn as default timing\n", np, entry);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200177
178 native_mode = entry;
179
180 disp->num_timings = of_get_child_count(timings_np);
181 if (disp->num_timings == 0) {
182 /* should never happen, as entry was already found above */
Rob Herring6d7e6532017-08-07 17:22:13 +0200183 pr_err("%pOF: no timings specified\n", np);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200184 goto entryfail;
185 }
186
Kees Cook6396bb22018-06-12 14:03:40 -0700187 disp->timings = kcalloc(disp->num_timings,
188 sizeof(struct display_timing *),
189 GFP_KERNEL);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200190 if (!disp->timings) {
Rob Herring6d7e6532017-08-07 17:22:13 +0200191 pr_err("%pOF: could not allocate timings array\n", np);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200192 goto entryfail;
193 }
194
195 disp->num_timings = 0;
196 disp->native_mode = 0;
197
198 for_each_child_of_node(timings_np, entry) {
199 struct display_timing *dt;
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +0300200 int r;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200201
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +0300202 dt = kzalloc(sizeof(*dt), GFP_KERNEL);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200203 if (!dt) {
Rob Herring6d7e6532017-08-07 17:22:13 +0200204 pr_err("%pOF: could not allocate display_timing struct\n",
205 np);
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +0300206 goto timingfail;
207 }
208
Tomi Valkeinenffa3fd22013-05-16 15:36:38 +0300209 r = of_parse_display_timing(entry, dt);
Tomi Valkeinenfcf7e6e2013-05-16 15:29:06 +0300210 if (r) {
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200211 /*
212 * to not encourage wrong devicetrees, fail in case of
213 * an error
214 */
Rob Herring6d7e6532017-08-07 17:22:13 +0200215 pr_err("%pOF: error in timing %d\n",
216 np, disp->num_timings + 1);
Sudip Mukherjeed663bab2015-09-30 15:24:08 +0530217 kfree(dt);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200218 goto timingfail;
219 }
220
221 if (native_mode == entry)
222 disp->native_mode = disp->num_timings;
223
224 disp->timings[disp->num_timings] = dt;
225 disp->num_timings++;
226 }
227 of_node_put(timings_np);
228 /*
229 * native_mode points to the device_node returned by of_parse_phandle
230 * therefore call of_node_put on it
231 */
232 of_node_put(native_mode);
233
Rob Herring6d7e6532017-08-07 17:22:13 +0200234 pr_debug("%pOF: got %d timings. Using timing #%d as default\n",
235 np, disp->num_timings,
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200236 disp->native_mode + 1);
237
238 return disp;
239
240timingfail:
Julia Lawall68ecfe22014-08-08 12:07:55 +0200241 of_node_put(native_mode);
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200242 display_timings_release(disp);
Dan Carpenter62795a02014-07-11 12:21:36 +0300243 disp = NULL;
Steffen Trumtrarcc3f4142012-10-04 15:32:52 +0200244entryfail:
245 kfree(disp);
246dispfail:
247 of_node_put(timings_np);
248 return NULL;
249}
250EXPORT_SYMBOL_GPL(of_get_display_timings);