e393412faf6637788222a4e3f3c8adf473644c62
[firefly-linux-kernel-4.4.55.git] / drivers / video / of_display_timing.c
1 /*
2  * OF helpers for parsing display timings
3  *
4  * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
5  *
6  * based on of_videomode.c by Sascha Hauer <s.hauer@pengutronix.de>
7  *
8  * This file is released under the GPLv2
9  */
10 #include <linux/export.h>
11 #include <linux/of.h>
12 #include <linux/slab.h>
13 #include <video/display_timing.h>
14 #include <video/of_display_timing.h>
15
16 /**
17  * parse_timing_property - parse timing_entry from device_node
18  * @np: device_node with the property
19  * @name: name of the property
20  * @result: will be set to the return value
21  *
22  * DESCRIPTION:
23  * Every display_timing can be specified with either just the typical value or
24  * a range consisting of min/typ/max. This function helps handling this
25  **/
26 static int parse_timing_property(const struct device_node *np, const char *name,
27                           struct timing_entry *result)
28 {
29         struct property *prop;
30         int length, cells, ret;
31
32         prop = of_find_property(np, name, &length);
33         if (!prop) {
34                 pr_err("%s: could not find property %s\n",
35                         of_node_full_name(np), name);
36                 return -EINVAL;
37         }
38
39         cells = length / sizeof(u32);
40         if (cells == 1) {
41                 ret = of_property_read_u32(np, name, &result->typ);
42                 result->min = result->typ;
43                 result->max = result->typ;
44         } else if (cells == 3) {
45                 ret = of_property_read_u32_array(np, name, &result->min, cells);
46         } else {
47                 pr_err("%s: illegal timing specification in %s\n",
48                         of_node_full_name(np), name);
49                 return -EINVAL;
50         }
51
52         return ret;
53 }
54
55 /**
56  * of_parse_display_timing - parse display_timing entry from device_node
57  * @np: device_node with the properties
58  **/
59 static int of_parse_display_timing(const struct device_node *np,
60                 struct display_timing *dt)
61 {
62         u32 val = 0;
63         int ret = 0;
64 #if defined(CONFIG_FB_ROCKCHIP)
65         struct property *prop;
66         int length;
67 #endif
68
69         memset(dt, 0, sizeof(*dt));
70
71         ret |= parse_timing_property(np, "hback-porch", &dt->hback_porch);
72         ret |= parse_timing_property(np, "hfront-porch", &dt->hfront_porch);
73         ret |= parse_timing_property(np, "hactive", &dt->hactive);
74         ret |= parse_timing_property(np, "hsync-len", &dt->hsync_len);
75         ret |= parse_timing_property(np, "vback-porch", &dt->vback_porch);
76         ret |= parse_timing_property(np, "vfront-porch", &dt->vfront_porch);
77         ret |= parse_timing_property(np, "vactive", &dt->vactive);
78         ret |= parse_timing_property(np, "vsync-len", &dt->vsync_len);
79         ret |= parse_timing_property(np, "clock-frequency", &dt->pixelclock);
80
81         dt->flags = 0;
82         if (!of_property_read_u32(np, "vsync-active", &val))
83                 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
84                                 DISPLAY_FLAGS_VSYNC_LOW;
85         if (!of_property_read_u32(np, "hsync-active", &val))
86                 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
87                                 DISPLAY_FLAGS_HSYNC_LOW;
88         if (!of_property_read_u32(np, "de-active", &val))
89                 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
90                                 DISPLAY_FLAGS_DE_LOW;
91         if (!of_property_read_u32(np, "pixelclk-active", &val))
92                 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
93                                 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
94
95         if (of_property_read_bool(np, "interlaced"))
96                 dt->flags |= DISPLAY_FLAGS_INTERLACED;
97         if (of_property_read_bool(np, "doublescan"))
98                 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
99         if (of_property_read_bool(np, "doubleclk"))
100                 dt->flags |= DISPLAY_FLAGS_DOUBLECLK;
101 #if defined(CONFIG_FB_ROCKCHIP)
102         if (!of_property_read_u32(np, "swap-rg", &val))
103                 dt->flags |= val ? DISPLAY_FLAGS_SWAP_RG : 0;
104         if (!of_property_read_u32(np, "swap-gb", &val))
105                 dt->flags |= val ? DISPLAY_FLAGS_SWAP_GB : 0;
106         if (!of_property_read_u32(np, "swap-rb", &val))
107                 dt->flags |= val ? DISPLAY_FLAGS_SWAP_RB : 0;
108         if (!of_property_read_u32(np, "screen-type", &val))
109                 dt->screen_type = val;
110         if (!of_property_read_u32(np, "lvds-format", &val))
111                 dt->lvds_format = val;
112         if (!of_property_read_u32(np, "out-face", &val))
113                 dt->face = val;
114         if (!of_property_read_u32(np, "color-mode", &val))
115                 dt->color_mode = val;
116         if (!of_property_read_u32(np, "screen-width", &val))
117                 dt->screen_widt = val;
118         if (!of_property_read_u32(np, "screen-hight", &val))
119                 dt->screen_hight = val;
120         prop = of_find_property(np, "dsp-lut", &length);
121         if (prop) {
122                 dt->dsp_lut = kzalloc(length, GFP_KERNEL);
123                 if (dt->dsp_lut)
124                         ret = of_property_read_u32_array(np,
125                                 "dsp-lut", dt->dsp_lut, length >> 2);
126         }
127         prop = of_find_property(np, "cabc-lut", &length);
128         if (prop) {
129                 dt->cabc_lut = kzalloc(length, GFP_KERNEL);
130                 if (dt->cabc_lut)
131                         ret = of_property_read_u32_array(np,
132                                                          "cabc-lut",
133                                                          dt->cabc_lut,
134                                                          length >> 2);
135         }
136
137         prop = of_find_property(np, "cabc-gamma-base", &length);
138         if (prop) {
139                 dt->cabc_gamma_base = kzalloc(length, GFP_KERNEL);
140                 if (dt->cabc_gamma_base)
141                         ret = of_property_read_u32_array(np,
142                                                          "cabc-gamma-base",
143                                                          dt->cabc_gamma_base,
144                                                          length >> 2);
145         }
146 #endif
147
148         if (ret) {
149                 pr_err("%s: error reading timing properties\n",
150                         of_node_full_name(np));
151                 return -EINVAL;
152         }
153
154         return 0;
155 }
156
157 /**
158  * of_get_display_timing - parse a display_timing entry
159  * @np: device_node with the timing subnode
160  * @name: name of the timing node
161  * @dt: display_timing struct to fill
162  **/
163 int of_get_display_timing(struct device_node *np, const char *name,
164                 struct display_timing *dt)
165 {
166         struct device_node *timing_np;
167
168         if (!np)
169                 return -EINVAL;
170
171         timing_np = of_get_child_by_name(np, name);
172         if (!timing_np) {
173                 pr_err("%s: could not find node '%s'\n",
174                         of_node_full_name(np), name);
175                 return -ENOENT;
176         }
177
178         return of_parse_display_timing(timing_np, dt);
179 }
180 EXPORT_SYMBOL_GPL(of_get_display_timing);
181
182 /**
183  * of_get_display_timings - parse all display_timing entries from a device_node
184  * @np: device_node with the subnodes
185  **/
186 struct display_timings *of_get_display_timings(struct device_node *np)
187 {
188         struct device_node *timings_np;
189         struct device_node *entry;
190         struct device_node *native_mode;
191         struct display_timings *disp;
192
193         if (!np)
194                 return NULL;
195
196         timings_np = of_get_child_by_name(np, "display-timings");
197         if (!timings_np) {
198                 pr_err("%s: could not find display-timings node\n",
199                         of_node_full_name(np));
200                 return NULL;
201         }
202
203         disp = kzalloc(sizeof(*disp), GFP_KERNEL);
204         if (!disp) {
205                 pr_err("%s: could not allocate struct disp'\n",
206                         of_node_full_name(np));
207                 goto dispfail;
208         }
209
210         entry = of_parse_phandle(timings_np, "native-mode", 0);
211         /* assume first child as native mode if none provided */
212         if (!entry)
213                 entry = of_get_next_child(timings_np, NULL);
214         /* if there is no child, it is useless to go on */
215         if (!entry) {
216                 pr_err("%s: no timing specifications given\n",
217                         of_node_full_name(np));
218                 goto entryfail;
219         }
220
221         pr_debug("%s: using %s as default timing\n",
222                 of_node_full_name(np), entry->name);
223
224         native_mode = entry;
225
226         disp->num_timings = of_get_child_count(timings_np);
227         if (disp->num_timings == 0) {
228                 /* should never happen, as entry was already found above */
229                 pr_err("%s: no timings specified\n", of_node_full_name(np));
230                 goto entryfail;
231         }
232
233         disp->timings = kzalloc(sizeof(struct display_timing *) *
234                                 disp->num_timings, GFP_KERNEL);
235         if (!disp->timings) {
236                 pr_err("%s: could not allocate timings array\n",
237                         of_node_full_name(np));
238                 goto entryfail;
239         }
240
241         disp->num_timings = 0;
242         disp->native_mode = 0;
243
244         for_each_child_of_node(timings_np, entry) {
245                 struct display_timing *dt;
246                 int r;
247
248                 dt = kzalloc(sizeof(*dt), GFP_KERNEL);
249                 if (!dt) {
250                         pr_err("%s: could not allocate display_timing struct\n",
251                                         of_node_full_name(np));
252                         goto timingfail;
253                 }
254
255                 r = of_parse_display_timing(entry, dt);
256                 if (r) {
257                         /*
258                          * to not encourage wrong devicetrees, fail in case of
259                          * an error
260                          */
261                         pr_err("%s: error in timing %d\n",
262                                 of_node_full_name(np), disp->num_timings + 1);
263                         kfree(dt);
264                         goto timingfail;
265                 }
266
267                 if (native_mode == entry)
268                         disp->native_mode = disp->num_timings;
269
270                 disp->timings[disp->num_timings] = dt;
271                 disp->num_timings++;
272         }
273         of_node_put(timings_np);
274         /*
275          * native_mode points to the device_node returned by of_parse_phandle
276          * therefore call of_node_put on it
277          */
278         of_node_put(native_mode);
279
280         pr_debug("%s: got %d timings. Using timing #%d as default\n",
281                 of_node_full_name(np), disp->num_timings,
282                 disp->native_mode + 1);
283
284         return disp;
285
286 timingfail:
287         of_node_put(native_mode);
288         display_timings_release(disp);
289         disp = NULL;
290 entryfail:
291         kfree(disp);
292 dispfail:
293         of_node_put(timings_np);
294         return NULL;
295 }
296 EXPORT_SYMBOL_GPL(of_get_display_timings);
297
298 /**
299  * of_display_timings_exist - check if a display-timings node is provided
300  * @np: device_node with the timing
301  **/
302 int of_display_timings_exist(struct device_node *np)
303 {
304         struct device_node *timings_np;
305
306         if (!np)
307                 return -EINVAL;
308
309         timings_np = of_parse_phandle(np, "display-timings", 0);
310         if (!timings_np)
311                 return -EINVAL;
312
313         of_node_put(timings_np);
314         return 1;
315 }
316 EXPORT_SYMBOL_GPL(of_display_timings_exist);