Merge branch develop-3.10 into develop-3.10-next
[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(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_get_display_timing - parse display_timing entry from device_node
57  * @np: device_node with the properties
58  **/
59 static struct display_timing *of_get_display_timing(struct device_node *np)
60 {
61         struct display_timing *dt;
62         u32 val = 0;
63         int ret = 0;
64 #if defined(CONFIG_FB_ROCKCHIP) || defined(CONFIG_DRM_ROCKCHIP)
65         struct property *prop;
66         int length;
67 #endif
68         dt = kzalloc(sizeof(*dt), GFP_KERNEL);
69         if (!dt) {
70                 pr_err("%s: could not allocate display_timing struct\n",
71                         of_node_full_name(np));
72                 return NULL;
73         }
74
75         ret |= parse_timing_property(np, "hback-porch", &dt->hback_porch);
76         ret |= parse_timing_property(np, "hfront-porch", &dt->hfront_porch);
77         ret |= parse_timing_property(np, "hactive", &dt->hactive);
78         ret |= parse_timing_property(np, "hsync-len", &dt->hsync_len);
79         ret |= parse_timing_property(np, "vback-porch", &dt->vback_porch);
80         ret |= parse_timing_property(np, "vfront-porch", &dt->vfront_porch);
81         ret |= parse_timing_property(np, "vactive", &dt->vactive);
82         ret |= parse_timing_property(np, "vsync-len", &dt->vsync_len);
83         ret |= parse_timing_property(np, "clock-frequency", &dt->pixelclock);
84
85         dt->flags = 0;
86         if (!of_property_read_u32(np, "vsync-active", &val))
87                 dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH :
88                                 DISPLAY_FLAGS_VSYNC_LOW;
89         if (!of_property_read_u32(np, "hsync-active", &val))
90                 dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH :
91                                 DISPLAY_FLAGS_HSYNC_LOW;
92         if (!of_property_read_u32(np, "de-active", &val))
93                 dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH :
94                                 DISPLAY_FLAGS_DE_LOW;
95         if (!of_property_read_u32(np, "pixelclk-active", &val))
96                 dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE :
97                                 DISPLAY_FLAGS_PIXDATA_NEGEDGE;
98
99         if (of_property_read_bool(np, "interlaced"))
100                 dt->flags |= DISPLAY_FLAGS_INTERLACED;
101         if (of_property_read_bool(np, "doublescan"))
102                 dt->flags |= DISPLAY_FLAGS_DOUBLESCAN;
103
104 #if defined(CONFIG_FB_ROCKCHIP) || defined(CONFIG_DRM_ROCKCHIP)
105         if (!of_property_read_u32(np, "swap-rg", &val))
106                 dt->flags |= val ? DISPLAY_FLAGS_SWAP_RG : 0;
107         if (!of_property_read_u32(np, "swap-gb", &val))
108                 dt->flags |= val ? DISPLAY_FLAGS_SWAP_GB : 0;
109         if (!of_property_read_u32(np, "swap-rb", &val))
110                 dt->flags |= val ? DISPLAY_FLAGS_SWAP_RB : 0;
111         if (!of_property_read_u32(np, "screen-type", &val))
112                 dt->screen_type = val;
113         if (!of_property_read_u32(np, "lvds-format", &val))
114                 dt->lvds_format = val;
115         if (!of_property_read_u32(np, "out-face", &val))
116                 dt->face = val;
117         if (!of_property_read_u32(np, "color-mode", &val))
118                 dt->color_mode = val;
119         prop = of_find_property(np, "dsp-lut", &length);
120         if (prop) {
121                 dt->dsp_lut = kzalloc(length, GFP_KERNEL);
122                 if (dt->dsp_lut)
123                         ret = of_property_read_u32_array(np,
124                                 "dsp-lut",dt->dsp_lut, length >> 2);
125         }
126         prop = of_find_property(np, "cabc-lut", &length);
127         if (prop) {
128                 dt->cabc_lut = kzalloc(length, GFP_KERNEL);
129                 if (dt->cabc_lut)
130                         ret = of_property_read_u32_array(np,
131                                                          "cabc-lut",
132                                                          dt->cabc_lut,
133                                                          length >> 2);
134         }
135 #endif
136
137         if (ret) {
138                 pr_err("%s: error reading timing properties\n",
139                         of_node_full_name(np));
140                 kfree(dt);
141                 return NULL;
142         }
143
144         return dt;
145 }
146
147 /**
148  * of_get_display_timings - parse all display_timing entries from a device_node
149  * @np: device_node with the subnodes
150  **/
151 struct display_timings *of_get_display_timings(struct device_node *np)
152 {
153         struct device_node *timings_np;
154         struct device_node *entry;
155         struct device_node *native_mode;
156         struct display_timings *disp;
157
158         if (!np) {
159                 pr_err("%s: no devicenode given\n", of_node_full_name(np));
160                 return NULL;
161         }
162
163         timings_np = of_find_node_by_name(np, "display-timings");
164         if (!timings_np) {
165                 pr_err("%s: could not find display-timings node\n",
166                         of_node_full_name(np));
167                 return NULL;
168         }
169
170         disp = kzalloc(sizeof(*disp), GFP_KERNEL);
171         if (!disp) {
172                 pr_err("%s: could not allocate struct disp'\n",
173                         of_node_full_name(np));
174                 goto dispfail;
175         }
176
177         entry = of_parse_phandle(timings_np, "native-mode", 0);
178         /* assume first child as native mode if none provided */
179         if (!entry)
180                 entry = of_get_next_child(np, NULL);
181         /* if there is no child, it is useless to go on */
182         if (!entry) {
183                 pr_err("%s: no timing specifications given\n",
184                         of_node_full_name(np));
185                 goto entryfail;
186         }
187
188         pr_debug("%s: using %s as default timing\n",
189                 of_node_full_name(np), entry->name);
190
191         native_mode = entry;
192
193         disp->num_timings = of_get_child_count(timings_np);
194         if (disp->num_timings == 0) {
195                 /* should never happen, as entry was already found above */
196                 pr_err("%s: no timings specified\n", of_node_full_name(np));
197                 goto entryfail;
198         }
199
200         disp->timings = kzalloc(sizeof(struct display_timing *) *
201                                 disp->num_timings, GFP_KERNEL);
202         if (!disp->timings) {
203                 pr_err("%s: could not allocate timings array\n",
204                         of_node_full_name(np));
205                 goto entryfail;
206         }
207
208         disp->num_timings = 0;
209         disp->native_mode = 0;
210
211         for_each_child_of_node(timings_np, entry) {
212                 struct display_timing *dt;
213
214                 dt = of_get_display_timing(entry);
215                 if (!dt) {
216                         /*
217                          * to not encourage wrong devicetrees, fail in case of
218                          * an error
219                          */
220                         pr_err("%s: error in timing %d\n",
221                                 of_node_full_name(np), disp->num_timings + 1);
222                         goto timingfail;
223                 }
224
225                 if (native_mode == entry)
226                         disp->native_mode = disp->num_timings;
227
228                 disp->timings[disp->num_timings] = dt;
229                 disp->num_timings++;
230         }
231         of_node_put(timings_np);
232         /*
233          * native_mode points to the device_node returned by of_parse_phandle
234          * therefore call of_node_put on it
235          */
236         of_node_put(native_mode);
237
238         pr_debug("%s: got %d timings. Using timing #%d as default\n",
239                 of_node_full_name(np), disp->num_timings,
240                 disp->native_mode + 1);
241
242         return disp;
243
244 timingfail:
245         if (native_mode)
246                 of_node_put(native_mode);
247         display_timings_release(disp);
248 entryfail:
249         kfree(disp);
250 dispfail:
251         of_node_put(timings_np);
252         return NULL;
253 }
254 EXPORT_SYMBOL_GPL(of_get_display_timings);
255
256 /**
257  * of_display_timings_exist - check if a display-timings node is provided
258  * @np: device_node with the timing
259  **/
260 int of_display_timings_exist(struct device_node *np)
261 {
262         struct device_node *timings_np;
263
264         if (!np)
265                 return -EINVAL;
266
267         timings_np = of_parse_phandle(np, "display-timings", 0);
268         if (!timings_np)
269                 return -EINVAL;
270
271         of_node_put(timings_np);
272         return 1;
273 }
274 EXPORT_SYMBOL_GPL(of_display_timings_exist);