]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/karo/common/fdt.c
karo: fdt: disable the usb vbus regulator via the 'vbu-supply' phandle
[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         const char *xcvr_status = "disabled";
385
386 #ifndef CONFIG_SYS_LVDS_IF
387         if (xcvr_present) {
388                 if (karo_fdt_flexcan_enabled(blob)) {
389                         karo_fdt_set_lcd_pins(blob, "lcdif_23bit_pins_a");
390                         xcvr_status = "okay";
391                 } else {
392                         karo_fdt_set_lcd_pins(blob, "lcdif_24bit_pins_a");
393                 }
394         } else {
395                 const char *otg_mode = getenv("otg_mode");
396
397                 if (otg_mode && (strcmp(otg_mode, "host") == 0))
398                         karo_fdt_enable_node(blob, "can1", 0);
399
400                 karo_fdt_set_lcd_pins(blob, "lcdif_24bit_pins_a");
401         }
402 #endif
403         fdt_find_and_setprop(blob, "reg_can_xcvr", "status",
404                         xcvr_status, strlen(xcvr_status) + 1, 1);
405 }
406
407 void karo_fdt_del_prop(void *blob, const char *compat, phys_addr_t offs,
408                         const char *prop)
409 {
410         int ret;
411         int offset;
412         const uint32_t *phandle;
413         uint32_t ph = 0;
414
415         offset = fdt_node_offset_by_compat_reg(blob, compat, offs);
416         if (offset <= 0)
417                 return;
418
419         phandle = fdt_getprop(blob, offset, prop, NULL);
420         if (phandle) {
421                 ph = fdt32_to_cpu(*phandle);
422         }
423
424         debug("Removing property '%s' from node %s@%08lx\n", prop, compat, offs);
425         ret = fdt_delprop(blob, offset, prop);
426         if (ret == 0)
427                 karo_set_fdtsize(blob);
428
429         if (!ph)
430                 return;
431
432         offset = fdt_node_offset_by_phandle(blob, ph);
433         if (offset <= 0)
434                 return;
435
436         debug("Removing node @ %08x\n", offset);
437         fdt_del_node(blob, offset);
438         karo_set_fdtsize(blob);
439 }
440
441 static int fdt_init_fb_mode(const void *blob, int off, struct fb_videomode *fb_mode)
442 {
443         const uint32_t *prop;
444
445         memset(fb_mode, 0, sizeof(*fb_mode));
446
447         prop = fdt_getprop(blob, off, "clock-frequency", NULL);
448         if (prop)
449                 fb_mode->pixclock = KHZ2PICOS(fdt32_to_cpu(*prop) / 1000);
450
451         prop = fdt_getprop(blob, off, "hactive", NULL);
452         if (prop)
453                 fb_mode->xres = fdt32_to_cpu(*prop);
454
455         prop = fdt_getprop(blob, off, "vactive", NULL);
456         if (prop)
457                 fb_mode->yres = fdt32_to_cpu(*prop);
458
459         prop = fdt_getprop(blob, off, "hback-porch", NULL);
460         if (prop)
461                 fb_mode->left_margin = fdt32_to_cpu(*prop);
462
463         prop = fdt_getprop(blob, off, "hsync-len", NULL);
464         if (prop)
465                 fb_mode->hsync_len = fdt32_to_cpu(*prop);
466
467         prop = fdt_getprop(blob, off, "hfront-porch", NULL);
468         if (prop)
469                 fb_mode->right_margin = fdt32_to_cpu(*prop);
470
471         prop = fdt_getprop(blob, off, "vback-porch", NULL);
472         if (prop)
473                 fb_mode->upper_margin = fdt32_to_cpu(*prop);
474
475         prop = fdt_getprop(blob, off, "vsync-len", NULL);
476         if (prop)
477                 fb_mode->vsync_len = fdt32_to_cpu(*prop);
478
479         prop = fdt_getprop(blob, off, "vfront-porch", NULL);
480         if (prop)
481                 fb_mode->lower_margin = fdt32_to_cpu(*prop);
482
483         prop = fdt_getprop(blob, off, "hsync-active", NULL);
484         if (prop)
485                 fb_mode->sync |= *prop ? FB_SYNC_VERT_HIGH_ACT : 0;
486
487         prop = fdt_getprop(blob, off, "vsync-active", NULL);
488         if (prop)
489                 fb_mode->sync |= *prop ? FB_SYNC_VERT_HIGH_ACT : 0;
490
491         prop = fdt_getprop(blob, off, "de-active", NULL);
492         if (prop)
493                 fb_mode->sync |= *prop ? 0 : FB_SYNC_OE_LOW_ACT;
494
495         prop = fdt_getprop(blob, off, "pixelclk-active", NULL);
496         if (prop)
497                 fb_mode->sync |= *prop ? 0 : FB_SYNC_CLK_LAT_FALL;
498
499         return 0;
500 }
501
502 static int fdt_update_native_fb_mode(void *blob, int off)
503 {
504         int ret;
505         uint32_t ph;
506
507         ret = fdt_increase_size(blob, 64);
508         if (ret) {
509                 printf("Warning: Failed to increase FDT size: %s\n",
510                         fdt_strerror(ret));
511         }
512         debug("Creating phandle at offset %d\n", off);
513         ph = fdt_create_phandle(blob, off);
514         if (!ph) {
515                 printf("Failed to create phandle for video timing\n");
516                 return -ENOMEM;
517         }
518
519         debug("phandle of %s @ %06x=%04x\n", fdt_get_name(blob, off, NULL),
520                 off, ph);
521         off = fdt_parent_offset(blob, off);
522         if (off < 0)
523                 return off;
524         debug("parent offset=%06x\n", off);
525         ret = fdt_setprop_cell(blob, off, "native-mode", ph);
526         if (ret)
527                 printf("Failed to set property 'native-mode': %s\n",
528                         fdt_strerror(ret));
529         karo_set_fdtsize(blob);
530         return ret;
531 }
532
533 static int karo_fdt_find_video_timings(void *blob)
534 {
535         int off = fdt_path_offset(blob, "display");
536         const char *subnode = "display-timings";
537
538         if (off < 0) {
539                 debug("Could not find node 'display' in FDT: %s\n",
540                         fdt_strerror(off));
541                 return off;
542         }
543
544         off = fdt_subnode_offset(blob, off, subnode);
545         if (off < 0) {
546                 debug("Could not find node '%s' in FDT: %s\n", subnode,
547                         fdt_strerror(off));
548         }
549         return off;
550 }
551
552 int karo_fdt_get_fb_mode(void *blob, const char *name, struct fb_videomode *fb_mode)
553 {
554         int off = karo_fdt_find_video_timings(blob);
555
556         if (off < 0)
557                 return off;
558         while (off > 0) {
559                 const char *n, *endp;
560                 int len, d = 1;
561
562                 off = fdt_next_node(blob, off, &d);
563                 if (off < 0)
564                         return off;
565                 if (d < 1)
566                         return -EINVAL;
567                 if (d > 2) {
568                         debug("Skipping node @ %04x %s depth %d\n", off,
569                                 fdt_get_name(blob, off, NULL), d);
570                         continue;
571                 }
572                 debug("parsing subnode @ %04x %s depth %d\n", off,
573                         fdt_get_name(blob, off, NULL), d);
574
575                 n = fdt_getprop(blob, off, "panel-name", &len);
576                 if (!n) {
577                         n = fdt_get_name(blob, off, NULL);
578                         if (strcasecmp(n, name) == 0) {
579                                 break;
580                         }
581                 } else {
582                         int found = 0;
583
584                         for (endp = n + len; n < endp; n += strlen(n) + 1) {
585                                 debug("Checking panel-name '%s'\n", n);
586                                 if (strcasecmp(n, name) == 0) {
587                                         debug("Using node %s @ %04x\n",
588                                                 fdt_get_name(blob, off, NULL), off);
589                                         found = 1;
590                                         break;
591                                 }
592                         }
593                         if (found)
594                                 break;
595                 }
596         }
597         if (off > 0) {
598                 return fdt_init_fb_mode(blob, off, fb_mode);
599         }
600         return -EINVAL;
601 }
602
603 #define SET_FB_PROP(n, v) ({                                            \
604         int ret;                                                        \
605         ret = fdt_setprop_u32(blob, off, n, v);                         \
606         if (ret) {                                                      \
607                 printf("Failed to set property %s: %s\n", name,         \
608                         fdt_strerror(ret));                             \
609         }                                                               \
610         ret;                                                            \
611 })
612
613
614 int karo_fdt_create_fb_mode(void *blob, const char *name,
615                         struct fb_videomode *fb_mode)
616 {
617         int off = fdt_path_offset(blob, "display");
618         int ret;
619         const char *subnode = "display-timings";
620
621         if (off < 0) {
622                 printf("'display' node not found in FDT\n");
623                 return off;
624         }
625
626         ret = fdt_increase_size(blob, 512);
627         if (ret) {
628                 printf("Failed to increase FDT size: %s\n", fdt_strerror(ret));
629                 return ret;
630         }
631
632         ret = fdt_subnode_offset(blob, off, subnode);
633         if (ret < 0) {
634                 debug("Could not find node '%s' in FDT: %s\n", subnode,
635                         fdt_strerror(ret));
636                 ret = fdt_add_subnode(blob, off, subnode);
637                 if (ret < 0) {
638                         printf("Failed to add %s subnode: %s\n", subnode,
639                                 fdt_strerror(ret));
640                         return ret;
641                 }
642         }
643
644         ret = fdt_add_subnode(blob, ret, name);
645         if (ret < 0) {
646                 printf("Failed to add %s subnode: %s\n", name,
647                         fdt_strerror(ret));
648                 return ret;
649         }
650         off = ret;
651
652         ret = SET_FB_PROP("clock-frequency",
653                         PICOS2KHZ(fb_mode->pixclock) * 1000);
654         if (ret)
655                 goto out;
656         ret = SET_FB_PROP("hactive", fb_mode->xres);
657         if (ret)
658                 goto out;
659         ret = SET_FB_PROP("vactive", fb_mode->yres);
660         if (ret)
661                 goto out;
662         ret = SET_FB_PROP("hback-porch", fb_mode->left_margin);
663         if (ret)
664                 goto out;
665         ret = SET_FB_PROP("hsync-len", fb_mode->hsync_len);
666         if (ret)
667                 goto out;
668         ret = SET_FB_PROP("hfront-porch", fb_mode->right_margin);
669         if (ret)
670                 goto out;
671         ret = SET_FB_PROP("vback-porch", fb_mode->upper_margin);
672         if (ret)
673                 goto out;
674         ret = SET_FB_PROP("vsync-len", fb_mode->vsync_len);
675         if (ret)
676                 goto out;
677         ret = SET_FB_PROP("vfront-porch", fb_mode->lower_margin);
678         if (ret)
679                 goto out;
680         ret = SET_FB_PROP("hsync-active",
681                         fb_mode->sync & FB_SYNC_VERT_HIGH_ACT ? 1 : 0);
682         if (ret)
683                 goto out;
684         ret = SET_FB_PROP("vsync-active",
685                         fb_mode->sync & FB_SYNC_VERT_HIGH_ACT ? 1 : 0);
686         if (ret)
687                 goto out;
688         ret = SET_FB_PROP("de-active",
689                         !(fb_mode->sync & FB_SYNC_OE_LOW_ACT));
690         if (ret)
691                 goto out;
692         ret = SET_FB_PROP("pixelclk-active",
693                         !(fb_mode->sync & FB_SYNC_CLK_LAT_FALL));
694 out:
695         karo_set_fdtsize(blob);
696         return ret;
697 }
698
699 int karo_fdt_update_fb_mode(void *blob, const char *name)
700 {
701         int off = fdt_path_offset(blob, "display");
702         const char *subnode = "display-timings";
703
704         if (off < 0)
705                 return off;
706
707         if (name == NULL) {
708                 int ret;
709
710                 debug("Disabling node '%s' at %03x\n",
711                         fdt_get_name(blob, off, NULL), off);
712                 ret = fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
713                 return ret;
714         }
715
716         off = fdt_subnode_offset(blob, off, subnode);
717         if (off < 0) {
718                 debug("Could not find node '%s' in FDT: %s\n", subnode,
719                         fdt_strerror(off));
720                 return off;
721         }
722         while (off > 0) {
723                 const char *n, *endp;
724                 int len, d = 1;
725
726                 off = fdt_next_node(blob, off, &d);
727                 if (off < 0)
728                         return off;
729                 if (d < 1)
730                         return -EINVAL;
731                 if (d > 2) {
732                         debug("Skipping node @ %04x %s depth %d\n", off,
733                                 fdt_get_name(blob, off, NULL), d);
734                         continue;
735                 }
736                 debug("parsing subnode @ %04x %s depth %d\n", off,
737                         fdt_get_name(blob, off, NULL), d);
738
739                 n = fdt_getprop(blob, off, "panel-name", &len);
740                 if (!n) {
741                         n = fdt_get_name(blob, off, NULL);
742                         if (strcasecmp(n, name) == 0) {
743                                 break;
744                         }
745                 } else {
746                         int found = 0;
747
748                         for (endp = n + len; n < endp; n += strlen(n) + 1) {
749                                 debug("Checking panel-name '%s'\n", n);
750                                 if (strcasecmp(n, name) == 0) {
751                                         debug("Using node %s @ %04x\n",
752                                                 fdt_get_name(blob, off, NULL), off);
753                                         found = 1;
754                                         break;
755                                 }
756                         }
757                         if (found)
758                                 break;
759                 }
760         }
761         if (off > 0)
762                 return fdt_update_native_fb_mode(blob, off);
763         return off;
764 }
765
766 int karo_fdt_get_lcd_bus_width(const void *blob, int default_width)
767 {
768         int off = fdt_path_offset(blob, "display");
769
770         if (off >= 0) {
771                 const uint32_t *prop;
772
773                 prop = fdt_getprop(blob, off, "fsl,data-width", NULL);
774                 if (prop)
775                         return fdt32_to_cpu(*prop);
776         }
777         return default_width;
778 }
779
780 int karo_fdt_get_lvds_mapping(const void *blob, int default_mapping)
781 {
782         int off = fdt_path_offset(blob, "display");
783
784         if (off >= 0) {
785                 const char *prop;
786
787                 prop = fdt_getprop(blob, off, "fsl,data-mapping", NULL);
788                 if (prop)
789                         return strcmp(prop, "jeida") == 0;
790         }
791         return default_mapping;
792 }
793
794 u8 karo_fdt_get_lvds_channels(const void *blob)
795 {
796         static const char *lvds_chans[] = {
797                 "lvds0",
798                 "lvds1",
799         };
800         u8 lvds_chan_mask = 0;
801         int i;
802
803         for (i = 0; i < ARRAY_SIZE(lvds_chans); i++) {
804                 const char *status;
805                 int off = fdt_path_offset(blob, lvds_chans[i]);
806
807                 if (off < 0)
808                         continue;
809
810                 status = fdt_getprop(blob, off, "status", NULL);
811                 if (status && strcmp(status, "okay") == 0) {
812                         debug("%s is enabled\n", lvds_chans[i]);
813                         lvds_chan_mask |= 1 << i;
814                 }
815         }
816         return lvds_chan_mask;
817 }