]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/karo/common/karo.h
karo: move 'is_lvds()' to common/karo.h
[karo-tx-uboot.git] / board / karo / common / karo.h
1 /*
2  * (C) Copyright 2012 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 struct fb_videomode;
18
19 #ifdef CONFIG_SYS_LVDS_IF
20 #define is_lvds()                       1
21 #else
22 #define is_lvds()                       0
23 #endif
24
25 #ifdef CONFIG_OF_LIBFDT
26 void karo_fdt_remove_node(void *blob, const char *node);
27 void karo_fdt_move_fdt(void);
28 void karo_fdt_fixup_touchpanel(void *blob, const char *panels[],
29                         size_t num_panels);
30 void karo_fdt_fixup_usb_otg(void *blob, const char *node, const char *phy);
31 void karo_fdt_fixup_flexcan(void *blob, int xcvr_present);
32 void karo_fdt_del_prop(void *blob, const char *compat, phys_addr_t offs,
33                 const char *prop);
34 void karo_fdt_enable_node(void *blob, const char *node, int enable);
35 int karo_fdt_get_fb_mode(void *blob, const char *name,
36                 struct fb_videomode *fb_mode);
37 int karo_fdt_update_fb_mode(void *blob, const char *name);
38 int karo_fdt_create_fb_mode(void *blob, const char *name,
39                         struct fb_videomode *mode);
40 int karo_fdt_get_lcd_bus_width(const void *blob, int default_width);
41 int karo_fdt_get_lvds_mapping(const void *blob, int default_mapping);
42 u8 karo_fdt_get_lvds_channels(const void *blob);
43 int karo_fdt_get_backlight_polarity(const void *blob);
44 #else
45 static inline void karo_fdt_remove_node(void *blob, const char *node)
46 {
47 }
48 static inline void karo_fdt_move_fdt(void)
49 {
50 }
51 static inline void karo_fdt_fixup_touchpanel(void *blob, const char *panels[],
52                                         size_t num_panels)
53 {
54 }
55 static inline void karo_fdt_fixup_usb_otg(void *blob, const char *node,
56                                         const char *phy)
57 {
58 }
59 static inline void karo_fdt_fixup_flexcan(void *blob, int xcvr_present)
60 {
61 }
62 static inline void karo_fdt_del_prop(void *blob, const char *compat,
63                                 phys_addr_t offs, const char *prop)
64 {
65 }
66 static inline void karo_fdt_enable_node(void *blob, const char *node,
67                                         int enable)
68 {
69 }
70 static inline int karo_fdt_get_fb_mode(void *blob, const char *name,
71                                 struct fb_videomode *fb_mode)
72 {
73         return 0;
74 }
75 static inline int karo_fdt_update_fb_mode(void *blob, const char *name)
76 {
77         return 0;
78 }
79 static inline int karo_fdt_create_fb_mode(void *blob,
80                                         const char *name,
81                                         struct fb_videomode *mode)
82 {
83         return 0;
84 }
85 static inline int karo_fdt_get_lcd_bus_width(const void *blob, int default_width)
86 {
87         return default_width;
88 }
89 static inline int karo_fdt_get_lvds_mapping(const void *blob, int default_mapping)
90 {
91         return default_mapping;
92 }
93 static inline u8 karo_fdt_get_lvds_channels(const void *blob)
94 {
95         return 0;
96 }
97 static inline int karo_fdt_get_backlight_polarity(const void *blob)
98 {
99         return getenv_yesno("backlight_polarity");
100 }
101 #endif
102
103 static inline const char *karo_get_vmode(const char *video_mode)
104 {
105         const char *vmode = NULL;
106
107         if (video_mode == NULL || strlen(video_mode) == 0)
108                 return NULL;
109
110         vmode = strchr(video_mode, ':');
111         return vmode ? vmode + 1 : video_mode;
112 }
113
114 #ifdef CONFIG_SPLASH_SCREEN
115 int karo_load_splashimage(int mode);
116 #else
117 static inline int karo_load_splashimage(int mode)
118 {
119         return 0;
120 }
121 #endif
122
123 #ifdef CONFIG_CMD_NAND
124 int karo_load_nand_part(const char *part, void *addr, size_t len);
125 #else
126 static inline int karo_load_nand_part(const char *part, void *addr, size_t len)
127 {
128         return -EOPNOTSUPP;
129 }
130 #endif
131
132 #ifdef CONFIG_CMD_MMC
133 int karo_load_mmc_part(const char *part, void *addr, size_t len);
134 #else
135 static inline int karo_load_mmc_part(const char *part, void *addr, size_t len)
136 {
137         return -EOPNOTSUPP;
138 }
139 #endif
140
141 static inline int karo_load_part(const char *part, void *addr, size_t len)
142 {
143         int ret;
144
145         ret = karo_load_nand_part(part, addr, len);
146         if (ret == -EOPNOTSUPP)
147                 return karo_load_mmc_part(part, addr, len);
148         return ret;
149 }