]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/karo/common/fdt.c
karo: fdt: check for error when disabling the can xceiver regulator
[karo-tx-uboot.git] / board / karo / common / fdt.c
1 /*
2  * (C) Copyright 2012,2013 Lothar Waßmann <LW@KARO-electronics.de>
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * version 2 as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16 */
17
18 #include <common.h>
19 #include <errno.h>
20 #include <libfdt.h>
21 #include <fdt_support.h>
22 #include <nand.h>
23 #include <mxcfb.h>
24 #include <linux/list.h>
25 #include <linux/fb.h>
26 #include <jffs2/load_kernel.h>
27 #include <malloc.h>
28
29 #include "karo.h"
30
31 #ifdef CONFIG_MAX_DTB_SIZE
32 #define MAX_DTB_SIZE    CONFIG_MAX_DTB_SIZE
33 #else
34 #define MAX_DTB_SIZE    SZ_64K
35 #endif
36
37 DECLARE_GLOBAL_DATA_PTR;
38
39 static void karo_set_fdtsize(void *fdt)
40 {
41         size_t fdtsize = getenv_ulong("fdtsize", 16, 0);
42
43         if (fdtsize == fdt_totalsize(fdt)) {
44                 return;
45         }
46         debug("FDT size changed from %u to %u\n",
47                 fdtsize, fdt_totalsize(fdt));
48         setenv_hex("fdtsize", fdt_totalsize(fdt));
49 }
50
51 static int karo_load_part(const char *part, void *addr, size_t len)
52 {
53         int ret;
54         struct mtd_device *dev;
55         struct part_info *part_info;
56         u8 part_num;
57         size_t actual;
58
59         debug("Initializing mtd_parts\n");
60         ret = mtdparts_init();
61         if (ret)
62                 return ret;
63
64         debug("Trying to find NAND partition '%s'\n", part);
65         ret = find_dev_and_part(part, &dev, &part_num, &part_info);
66         if (ret) {
67                 printf("Failed to find flash partition '%s': %d\n",
68                         part, ret);
69
70                 return ret;
71         }
72         debug("Found partition '%s': offset=%08x size=%08x\n",
73                 part, part_info->offset, part_info->size);
74         if (part_info->size < len) {
75                 printf("Warning: partition '%s' smaller than requested size: %u; truncating data to %u byte\n",
76                         part, len, part_info->size);
77                 len = part_info->size;
78         }
79         debug("Reading NAND partition '%s' to %p\n", part, addr);
80         ret = nand_read_skip_bad(&nand_info[0], part_info->offset, &len,
81                                 &actual, len, addr);
82         if (ret) {
83                 printf("Failed to load partition '%s' to %p\n", part, addr);
84                 return ret;
85         }
86         if (actual < len)
87                 printf("Read only %u of %u bytes due to bad blocks\n",
88                         actual, len);
89
90         debug("Read %u byte from partition '%s' @ offset %08x\n",
91                 len, part, part_info->offset);
92         return 0;
93 }
94
95 static void *karo_fdt_load_dtb(void)
96 {
97         int ret;
98         void *fdt = (void *)getenv_ulong("fdtaddr", 16, CONFIG_SYS_FDT_ADDR);
99
100         if (had_ctrlc()) {
101                 printf("aborting DTB load\n");
102                 return NULL;
103         }
104
105         /* clear FDT header in memory */
106         memset(fdt, 0, 4);
107
108         ret = karo_load_part("dtb", fdt, MAX_DTB_SIZE);
109         if (ret) {
110                 printf("Failed to load dtb from flash: %d\n", ret);
111                 return NULL;
112         }
113
114         if (fdt_check_header(fdt)) {
115                 debug("No valid DTB in flash\n");
116                 return NULL;
117         }
118         debug("Using DTB from flash\n");
119         karo_set_fdtsize(fdt);
120         return fdt;
121 }
122
123 void karo_fdt_move_fdt(void)
124 {
125         void *fdt;
126         unsigned long fdt_addr = getenv_ulong("fdtaddr", 16, 0);
127
128         if (working_fdt) {
129                 debug("DTB already loaded\n");
130                 return;
131         }
132
133         setenv("fdtsize", 0);
134
135         if (!fdt_addr) {
136                 fdt_addr = CONFIG_SYS_FDT_ADDR;
137                 printf("fdtaddr is not set; using default: %08lx\n",
138                         fdt_addr);
139         }
140
141         fdt = karo_fdt_load_dtb();
142         if (fdt == NULL) {
143                 fdt = (void *)gd->fdt_blob;
144                 if (fdt == NULL) {
145 #ifdef CONFIG_OF_EMBED
146                         printf("Compiled in FDT not found");
147 #else
148                         printf("No FDT found");
149 #endif
150                         printf("; creating empty DTB\n");
151                         fdt = (void *)fdt_addr;
152                         fdt_create_empty_tree(fdt, 256);
153                 } else {
154                         printf("No DTB in flash; using default DTB\n");
155                 }
156                 debug("Checking FDT header @ %p\n", fdt);
157                 if (fdt_check_header(fdt)) {
158                         printf("ERROR: No valid DTB found at %p\n", fdt);
159                         return;
160                 }
161                 debug("Moving FDT from %p..%p to %08lx..%08lx\n",
162                         fdt, fdt + fdt_totalsize(fdt) - 1,
163                         fdt_addr, fdt_addr + fdt_totalsize(fdt) - 1);
164                 memmove((void *)fdt_addr, fdt, fdt_totalsize(fdt));
165         }
166         set_working_fdt_addr((void *)fdt_addr);
167         gd->fdt_blob = fdt;
168         karo_set_fdtsize(fdt);
169 }
170
171 void karo_fdt_remove_node(void *blob, const char *node)
172 {
173         int off = fdt_path_offset(blob, node);
174         int ret;
175
176         debug("Removing node '%s' from DT\n", node);
177
178         if (off < 0) {
179                 printf("Could not find node '%s': %s\n", node,
180                         fdt_strerror(off));
181         } else {
182                 ret = fdt_del_node(blob, off);
183                 if (ret)
184                         printf("Failed to remove node '%s': %s\n",
185                                 node, fdt_strerror(ret));
186         }
187         karo_set_fdtsize(blob);
188 }
189
190 void karo_fdt_enable_node(void *blob, const char *node, int enable)
191 {
192         int off = fdt_path_offset(blob, node);
193
194         debug("%sabling node '%s'\n", enable ? "En" : "Dis", node);
195         if (off < 0) {
196                 printf("Could not find node '%s': %s\n", node,
197                         fdt_strerror(off));
198                 return;
199         }
200         fdt_set_node_status(blob, off,
201                         enable ? FDT_STATUS_OKAY : FDT_STATUS_DISABLED, 0);
202
203         karo_set_fdtsize(blob);
204 }
205
206 static void fdt_disable_tp_node(void *blob, const char *name)
207 {
208         int offs = fdt_node_offset_by_compatible(blob, -1, name);
209
210         if (offs < 0) {
211                 debug("node '%s' not found: %s\n", name, fdt_strerror(offs));
212                 return;
213         }
214
215         debug("Disabling node '%s'\n", name);
216         fdt_set_node_status(blob, offs, FDT_STATUS_DISABLED, 0);
217 }
218
219 void karo_fdt_fixup_touchpanel(void *blob, const char *panels[],
220                         size_t num_panels)
221 {
222         int i;
223         const char *model = getenv("touchpanel");
224
225         for (i = 0; i < num_panels; i++) {
226                 const char *tp = panels[i];
227
228                 if (model != NULL) {
229                         if (strcmp(model, tp) == 0)
230                                 continue;
231                         while (tp != NULL) {
232                                 if (*tp != '\0' && strcmp(model, tp + 1) == 0)
233                                         break;
234                                 tp = strpbrk(tp + 1, ",-");
235                         }
236                         if (tp != NULL)
237                                 continue;
238                 }
239                 fdt_disable_tp_node(blob, panels[i]);
240         }
241         karo_set_fdtsize(blob);
242 }
243
244 static int karo_fdt_disable_node_phandle(void *blob, const char *parent,
245                                         const char *name)
246 {
247         const uint32_t *ph;
248         int off;
249
250         off = fdt_path_offset(blob, parent);
251         if (off < 0) {
252                 printf("Failed to find node '%s'\n", parent);
253                 return off;
254         }
255
256         ph = fdt_getprop(blob, off, name, NULL);
257         if (ph == NULL) {
258                 printf("Failed to find '%s' phandle in node '%s'\n", name,
259                         fdt_get_name(blob, off, NULL));
260                 return -FDT_ERR_NOTFOUND;
261         }
262
263         off = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*ph));
264         if (off <= 0) {
265                 printf("Failed to find '%s' node via phandle %04x\n",
266                         name, fdt32_to_cpu(*ph));
267                 return -FDT_ERR_NOTFOUND;
268         }
269         return fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
270 }
271
272 void karo_fdt_fixup_usb_otg(void *blob, const char *node, const char *phy)
273 {
274         const char *otg_mode = getenv("otg_mode");
275         int off;
276         int ret;
277         int disable_otg = 0;
278         int disable_phy_pins = 1;
279
280         debug("OTG mode is '%s'\n", otg_mode ? otg_mode : "<UNSET>");
281
282         off = fdt_path_offset(blob, node);
283         if (off < 0) {
284                 debug("Failed to find node %s\n", node);
285                 return;
286         }
287
288         if (otg_mode && (strcmp(otg_mode, "device") == 0 ||
289                                 strcmp(otg_mode, "gadget") == 0)) {
290                 debug("Setting dr_mode to 'peripheral'\n");
291                 ret = fdt_setprop_string(blob, off, "dr_mode", "peripheral");
292         } else if (otg_mode && strcmp(otg_mode, "host") == 0) {
293                 debug("Setting dr_mode to 'host'\n");
294                 ret = fdt_setprop_string(blob, off, "dr_mode", "host");
295                 disable_phy_pins = 0;
296         } else if (otg_mode && strcmp(otg_mode, "otg") == 0) {
297                 debug("Setting dr_mode to 'host'\n");
298                 ret = fdt_setprop_string(blob, off, "dr_mode", "otg");
299         } else {
300                 if (otg_mode && strcmp(otg_mode, "none") != 0)
301                         printf("Invalid 'otg_mode' setting '%s'; disabling usbotg port\n",
302                                 otg_mode);
303                 disable_otg = 1;
304                 ret = 0;
305         }
306
307         if ((!disable_phy_pins && !disable_otg) || ret)
308                 goto out;
309
310         ret = karo_fdt_disable_node_phandle(blob, node, "vbus-supply");
311         if (ret)
312                 goto out;
313
314         if (disable_otg) {
315                 debug("Disabling usbphy\n");
316                 ret = fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
317                 if (ret)
318                         goto out;
319
320                 ret = karo_fdt_disable_node_phandle(blob, node, phy);
321         }
322 out:
323         if (ret)
324                 printf("Failed to update usbotg: %s\n", fdt_strerror(ret));
325         else
326                 debug("node '%s' updated\n", node);
327         karo_set_fdtsize(blob);
328 }
329
330 static inline int karo_fdt_flexcan_enabled(void *blob)
331 {
332         static const char *can_ifs[] = {
333                 "can0",
334                 "can1",
335         };
336         size_t i;
337
338         for (i = 0; i < ARRAY_SIZE(can_ifs); i++) {
339                 const char *status;
340                 int off = fdt_path_offset(blob, can_ifs[i]);
341
342                 if (off < 0) {
343                         debug("node '%s' not found\n", can_ifs[i]);
344                         continue;
345                 }
346                 status = fdt_getprop(blob, off, "status", NULL);
347                 if (status && strcmp(status, "okay") == 0) {
348                         debug("%s is enabled\n", can_ifs[i]);
349                         return 1;
350                 }
351         }
352         debug("can driver is disabled\n");
353         return 0;
354 }
355
356 static inline void karo_fdt_set_lcd_pins(void *blob, const char *name)
357 {
358         int off = fdt_path_offset(blob, name);
359         u32 ph;
360         const struct fdt_property *pc;
361         int len;
362
363         if (off < 0)
364                 return;
365
366         ph = fdt_create_phandle(blob, off);
367         if (!ph)
368                 return;
369
370         off = fdt_path_offset(blob, "display");
371         if (off < 0)
372                 return;
373
374         pc = fdt_get_property(blob, off, "pinctrl-0", &len);
375         if (!pc || len < sizeof(ph))
376                 return;
377
378         memcpy((void *)pc->data, &ph, sizeof(ph));
379         fdt_setprop_cell(blob, off, "pinctrl-0", ph);
380 }
381
382 void karo_fdt_fixup_flexcan(void *blob, int xcvr_present)
383 {
384         int ret;
385         const char *xcvr_status = "disabled";
386
387 #ifndef CONFIG_SYS_LVDS_IF
388         if (xcvr_present) {
389                 if (karo_fdt_flexcan_enabled(blob)) {
390                         karo_fdt_set_lcd_pins(blob, "lcdif_23bit_pins_a");
391                         xcvr_status = "okay";
392                 } else {
393                         karo_fdt_set_lcd_pins(blob, "lcdif_24bit_pins_a");
394                 }
395         } else {
396                 const char *otg_mode = getenv("otg_mode");
397
398                 if (otg_mode && (strcmp(otg_mode, "host") == 0))
399                         karo_fdt_enable_node(blob, "can1", 0);
400
401                 karo_fdt_set_lcd_pins(blob, "lcdif_24bit_pins_a");
402         }
403 #endif
404         debug("Disabling CAN XCVR\n");
405         ret = fdt_find_and_setprop(blob, "reg_can_xcvr", "status",
406                                 xcvr_status, strlen(xcvr_status) + 1, 1);
407         if (ret)
408                 printf("Failed to disable CAN transceiver switch: %s\n",
409                         fdt_strerror(ret));
410 }
411
412 void karo_fdt_del_prop(void *blob, const char *compat, phys_addr_t offs,
413                         const char *prop)
414 {
415         int ret;
416         int offset;
417         const uint32_t *phandle;
418         uint32_t ph = 0;
419
420         offset = fdt_node_offset_by_compat_reg(blob, compat, offs);
421         if (offset <= 0)
422                 return;
423
424         phandle = fdt_getprop(blob, offset, prop, NULL);
425         if (phandle) {
426                 ph = fdt32_to_cpu(*phandle);
427         }
428
429         debug("Removing property '%s' from node %s@%08lx\n", prop, compat, offs);
430         ret = fdt_delprop(blob, offset, prop);
431         if (ret == 0)
432                 karo_set_fdtsize(blob);
433
434         if (!ph)
435                 return;
436
437         offset = fdt_node_offset_by_phandle(blob, ph);
438         if (offset <= 0)
439                 return;
440
441         debug("Removing node @ %08x\n", offset);
442         fdt_del_node(blob, offset);
443         karo_set_fdtsize(blob);
444 }
445
446 static int fdt_init_fb_mode(const void *blob, int off, struct fb_videomode *fb_mode)
447 {
448         const uint32_t *prop;
449
450         memset(fb_mode, 0, sizeof(*fb_mode));
451
452         prop = fdt_getprop(blob, off, "clock-frequency", NULL);
453         if (prop)
454                 fb_mode->pixclock = KHZ2PICOS(fdt32_to_cpu(*prop) / 1000);
455
456         prop = fdt_getprop(blob, off, "hactive", NULL);
457         if (prop)
458                 fb_mode->xres = fdt32_to_cpu(*prop);
459
460         prop = fdt_getprop(blob, off, "vactive", NULL);
461         if (prop)
462                 fb_mode->yres = fdt32_to_cpu(*prop);
463
464         prop = fdt_getprop(blob, off, "hback-porch", NULL);
465         if (prop)
466                 fb_mode->left_margin = fdt32_to_cpu(*prop);
467
468         prop = fdt_getprop(blob, off, "hsync-len", NULL);
469         if (prop)
470                 fb_mode->hsync_len = fdt32_to_cpu(*prop);
471
472         prop = fdt_getprop(blob, off, "hfront-porch", NULL);
473         if (prop)
474                 fb_mode->right_margin = fdt32_to_cpu(*prop);
475
476         prop = fdt_getprop(blob, off, "vback-porch", NULL);
477         if (prop)
478                 fb_mode->upper_margin = fdt32_to_cpu(*prop);
479
480         prop = fdt_getprop(blob, off, "vsync-len", NULL);
481         if (prop)
482                 fb_mode->vsync_len = fdt32_to_cpu(*prop);
483
484         prop = fdt_getprop(blob, off, "vfront-porch", NULL);
485         if (prop)
486                 fb_mode->lower_margin = fdt32_to_cpu(*prop);
487
488         prop = fdt_getprop(blob, off, "hsync-active", NULL);
489         if (prop)
490                 fb_mode->sync |= *prop ? FB_SYNC_VERT_HIGH_ACT : 0;
491
492         prop = fdt_getprop(blob, off, "vsync-active", NULL);
493         if (prop)
494                 fb_mode->sync |= *prop ? FB_SYNC_VERT_HIGH_ACT : 0;
495
496         prop = fdt_getprop(blob, off, "de-active", NULL);
497         if (prop)
498                 fb_mode->sync |= *prop ? 0 : FB_SYNC_OE_LOW_ACT;
499
500         prop = fdt_getprop(blob, off, "pixelclk-active", NULL);
501         if (prop)
502                 fb_mode->sync |= *prop ? 0 : FB_SYNC_CLK_LAT_FALL;
503
504         return 0;
505 }
506
507 static int fdt_update_native_fb_mode(void *blob, int off)
508 {
509         int ret;
510         uint32_t ph;
511
512         ret = fdt_increase_size(blob, 64);
513         if (ret) {
514                 printf("Warning: Failed to increase FDT size: %s\n",
515                         fdt_strerror(ret));
516         }
517         debug("Creating phandle at offset %d\n", off);
518         ph = fdt_create_phandle(blob, off);
519         if (!ph) {
520                 printf("Failed to create phandle for video timing\n");
521                 return -ENOMEM;
522         }
523
524         debug("phandle of %s @ %06x=%04x\n", fdt_get_name(blob, off, NULL),
525                 off, ph);
526         off = fdt_parent_offset(blob, off);
527         if (off < 0)
528                 return off;
529         debug("parent offset=%06x\n", off);
530         ret = fdt_setprop_cell(blob, off, "native-mode", ph);
531         if (ret)
532                 printf("Failed to set property 'native-mode': %s\n",
533                         fdt_strerror(ret));
534         karo_set_fdtsize(blob);
535         return ret;
536 }
537
538 static int karo_fdt_find_video_timings(void *blob)
539 {
540         int off = fdt_path_offset(blob, "display");
541         const char *subnode = "display-timings";
542
543         if (off < 0) {
544                 debug("Could not find node 'display' in FDT: %s\n",
545                         fdt_strerror(off));
546                 return off;
547         }
548
549         off = fdt_subnode_offset(blob, off, subnode);
550         if (off < 0) {
551                 debug("Could not find node '%s' in FDT: %s\n", subnode,
552                         fdt_strerror(off));
553         }
554         return off;
555 }
556
557 int karo_fdt_get_fb_mode(void *blob, const char *name, struct fb_videomode *fb_mode)
558 {
559         int off = karo_fdt_find_video_timings(blob);
560
561         if (off < 0)
562                 return off;
563         while (off > 0) {
564                 const char *n, *endp;
565                 int len, d = 1;
566
567                 off = fdt_next_node(blob, off, &d);
568                 if (off < 0)
569                         return off;
570                 if (d < 1)
571                         return -EINVAL;
572                 if (d > 2) {
573                         debug("Skipping node @ %04x %s depth %d\n", off,
574                                 fdt_get_name(blob, off, NULL), d);
575                         continue;
576                 }
577                 debug("parsing subnode @ %04x %s depth %d\n", off,
578                         fdt_get_name(blob, off, NULL), d);
579
580                 n = fdt_getprop(blob, off, "panel-name", &len);
581                 if (!n) {
582                         n = fdt_get_name(blob, off, NULL);
583                         if (strcasecmp(n, name) == 0) {
584                                 break;
585                         }
586                 } else {
587                         int found = 0;
588
589                         for (endp = n + len; n < endp; n += strlen(n) + 1) {
590                                 debug("Checking panel-name '%s'\n", n);
591                                 if (strcasecmp(n, name) == 0) {
592                                         debug("Using node %s @ %04x\n",
593                                                 fdt_get_name(blob, off, NULL), off);
594                                         found = 1;
595                                         break;
596                                 }
597                         }
598                         if (found)
599                                 break;
600                 }
601         }
602         if (off > 0) {
603                 return fdt_init_fb_mode(blob, off, fb_mode);
604         }
605         return -EINVAL;
606 }
607
608 #define SET_FB_PROP(n, v) ({                                            \
609         int ret;                                                        \
610         ret = fdt_setprop_u32(blob, off, n, v);                         \
611         if (ret) {                                                      \
612                 printf("Failed to set property %s: %s\n", name,         \
613                         fdt_strerror(ret));                             \
614         }                                                               \
615         ret;                                                            \
616 })
617
618
619 int karo_fdt_create_fb_mode(void *blob, const char *name,
620                         struct fb_videomode *fb_mode)
621 {
622         int off = fdt_path_offset(blob, "display");
623         int ret;
624         const char *subnode = "display-timings";
625
626         if (off < 0) {
627                 printf("'display' node not found in FDT\n");
628                 return off;
629         }
630
631         ret = fdt_increase_size(blob, 512);
632         if (ret) {
633                 printf("Failed to increase FDT size: %s\n", fdt_strerror(ret));
634                 return ret;
635         }
636
637         ret = fdt_subnode_offset(blob, off, subnode);
638         if (ret < 0) {
639                 debug("Could not find node '%s' in FDT: %s\n", subnode,
640                         fdt_strerror(ret));
641                 ret = fdt_add_subnode(blob, off, subnode);
642                 if (ret < 0) {
643                         printf("Failed to add %s subnode: %s\n", subnode,
644                                 fdt_strerror(ret));
645                         return ret;
646                 }
647         }
648
649         ret = fdt_add_subnode(blob, ret, name);
650         if (ret < 0) {
651                 printf("Failed to add %s subnode: %s\n", name,
652                         fdt_strerror(ret));
653                 return ret;
654         }
655         off = ret;
656
657         ret = SET_FB_PROP("clock-frequency",
658                         PICOS2KHZ(fb_mode->pixclock) * 1000);
659         if (ret)
660                 goto out;
661         ret = SET_FB_PROP("hactive", fb_mode->xres);
662         if (ret)
663                 goto out;
664         ret = SET_FB_PROP("vactive", fb_mode->yres);
665         if (ret)
666                 goto out;
667         ret = SET_FB_PROP("hback-porch", fb_mode->left_margin);
668         if (ret)
669                 goto out;
670         ret = SET_FB_PROP("hsync-len", fb_mode->hsync_len);
671         if (ret)
672                 goto out;
673         ret = SET_FB_PROP("hfront-porch", fb_mode->right_margin);
674         if (ret)
675                 goto out;
676         ret = SET_FB_PROP("vback-porch", fb_mode->upper_margin);
677         if (ret)
678                 goto out;
679         ret = SET_FB_PROP("vsync-len", fb_mode->vsync_len);
680         if (ret)
681                 goto out;
682         ret = SET_FB_PROP("vfront-porch", fb_mode->lower_margin);
683         if (ret)
684                 goto out;
685         ret = SET_FB_PROP("hsync-active",
686                         fb_mode->sync & FB_SYNC_VERT_HIGH_ACT ? 1 : 0);
687         if (ret)
688                 goto out;
689         ret = SET_FB_PROP("vsync-active",
690                         fb_mode->sync & FB_SYNC_VERT_HIGH_ACT ? 1 : 0);
691         if (ret)
692                 goto out;
693         ret = SET_FB_PROP("de-active",
694                         !(fb_mode->sync & FB_SYNC_OE_LOW_ACT));
695         if (ret)
696                 goto out;
697         ret = SET_FB_PROP("pixelclk-active",
698                         !(fb_mode->sync & FB_SYNC_CLK_LAT_FALL));
699 out:
700         karo_set_fdtsize(blob);
701         return ret;
702 }
703
704 int karo_fdt_update_fb_mode(void *blob, const char *name)
705 {
706         int off = fdt_path_offset(blob, "display");
707         const char *subnode = "display-timings";
708
709         if (off < 0)
710                 return off;
711
712         if (name == NULL) {
713                 int ret;
714
715                 debug("Disabling node '%s' at %03x\n",
716                         fdt_get_name(blob, off, NULL), off);
717                 ret = fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
718                 return ret;
719         }
720
721         off = fdt_subnode_offset(blob, off, subnode);
722         if (off < 0) {
723                 debug("Could not find node '%s' in FDT: %s\n", subnode,
724                         fdt_strerror(off));
725                 return off;
726         }
727         while (off > 0) {
728                 const char *n, *endp;
729                 int len, d = 1;
730
731                 off = fdt_next_node(blob, off, &d);
732                 if (off < 0)
733                         return off;
734                 if (d < 1)
735                         return -EINVAL;
736                 if (d > 2) {
737                         debug("Skipping node @ %04x %s depth %d\n", off,
738                                 fdt_get_name(blob, off, NULL), d);
739                         continue;
740                 }
741                 debug("parsing subnode @ %04x %s depth %d\n", off,
742                         fdt_get_name(blob, off, NULL), d);
743
744                 n = fdt_getprop(blob, off, "panel-name", &len);
745                 if (!n) {
746                         n = fdt_get_name(blob, off, NULL);
747                         if (strcasecmp(n, name) == 0) {
748                                 break;
749                         }
750                 } else {
751                         int found = 0;
752
753                         for (endp = n + len; n < endp; n += strlen(n) + 1) {
754                                 debug("Checking panel-name '%s'\n", n);
755                                 if (strcasecmp(n, name) == 0) {
756                                         debug("Using node %s @ %04x\n",
757                                                 fdt_get_name(blob, off, NULL), off);
758                                         found = 1;
759                                         break;
760                                 }
761                         }
762                         if (found)
763                                 break;
764                 }
765         }
766         if (off > 0)
767                 return fdt_update_native_fb_mode(blob, off);
768         return off;
769 }
770
771 int karo_fdt_get_lcd_bus_width(const void *blob, int default_width)
772 {
773         int off = fdt_path_offset(blob, "display");
774
775         if (off >= 0) {
776                 const uint32_t *prop;
777
778                 prop = fdt_getprop(blob, off, "fsl,data-width", NULL);
779                 if (prop)
780                         return fdt32_to_cpu(*prop);
781         }
782         return default_width;
783 }
784
785 int karo_fdt_get_lvds_mapping(const void *blob, int default_mapping)
786 {
787         int off = fdt_path_offset(blob, "display");
788
789         if (off >= 0) {
790                 const char *prop;
791
792                 prop = fdt_getprop(blob, off, "fsl,data-mapping", NULL);
793                 if (prop)
794                         return strcmp(prop, "jeida") == 0;
795         }
796         return default_mapping;
797 }
798
799 u8 karo_fdt_get_lvds_channels(const void *blob)
800 {
801         static const char *lvds_chans[] = {
802                 "lvds0",
803                 "lvds1",
804         };
805         u8 lvds_chan_mask = 0;
806         int i;
807
808         for (i = 0; i < ARRAY_SIZE(lvds_chans); i++) {
809                 const char *status;
810                 int off = fdt_path_offset(blob, lvds_chans[i]);
811
812                 if (off < 0)
813                         continue;
814
815                 status = fdt_getprop(blob, off, "status", NULL);
816                 if (status && strcmp(status, "okay") == 0) {
817                         debug("%s is enabled\n", lvds_chans[i]);
818                         lvds_chan_mask |= 1 << i;
819                 }
820         }
821         return lvds_chan_mask;
822 }