2 * linux/drivers/video/fbcmap.c -- Colormap handling for frame buffer devices
4 * Created 15 Jun 1997 by Geert Uytterhoeven
6 * 2001 - Documented with DocBook
7 * - Brad Douglas <brad@neruo.com>
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file COPYING in the main directory of this archive for
14 #include <linux/string.h>
15 #include <linux/module.h>
17 #include <linux/slab.h>
18 #include <linux/uaccess.h>
20 static u16 red2[] __read_mostly = {
23 static u16 green2[] __read_mostly = {
26 static u16 blue2[] __read_mostly = {
30 static u16 red4[] __read_mostly = {
31 0x0000, 0xaaaa, 0x5555, 0xffff
33 static u16 green4[] __read_mostly = {
34 0x0000, 0xaaaa, 0x5555, 0xffff
36 static u16 blue4[] __read_mostly = {
37 0x0000, 0xaaaa, 0x5555, 0xffff
40 static u16 red8[] __read_mostly = {
41 0x0000, 0x0000, 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0xaaaa, 0xaaaa
43 static u16 green8[] __read_mostly = {
44 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0x0000, 0x0000, 0x5555, 0xaaaa
46 static u16 blue8[] __read_mostly = {
47 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa
50 static u16 red16[] __read_mostly = {
51 0x0000, 0x0000, 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0xaaaa, 0xaaaa,
52 0x5555, 0x5555, 0x5555, 0x5555, 0xffff, 0xffff, 0xffff, 0xffff
54 static u16 green16[] __read_mostly = {
55 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0x0000, 0x0000, 0x5555, 0xaaaa,
56 0x5555, 0x5555, 0xffff, 0xffff, 0x5555, 0x5555, 0xffff, 0xffff
58 static u16 blue16[] __read_mostly = {
59 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa,
60 0x5555, 0xffff, 0x5555, 0xffff, 0x5555, 0xffff, 0x5555, 0xffff
63 static const struct fb_cmap default_2_colors = {
64 .len=2, .red=red2, .green=green2, .blue=blue2
66 static const struct fb_cmap default_8_colors = {
67 .len=8, .red=red8, .green=green8, .blue=blue8
69 static const struct fb_cmap default_4_colors = {
70 .len=4, .red=red4, .green=green4, .blue=blue4
72 static const struct fb_cmap default_16_colors = {
73 .len=16, .red=red16, .green=green16, .blue=blue16
79 * fb_alloc_cmap - allocate a colormap
80 * @cmap: frame buffer colormap structure
81 * @len: length of @cmap
82 * @transp: boolean, 1 if there is transparency, 0 otherwise
84 * Allocates memory for a colormap @cmap. @len is the
85 * number of entries in the palette.
87 * Returns negative errno on error, or zero on success.
91 int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp)
93 int size = len*sizeof(u16);
95 if (cmap->len != len) {
96 fb_dealloc_cmap(cmap);
99 if (!(cmap->red = kmalloc(size, GFP_ATOMIC)))
101 if (!(cmap->green = kmalloc(size, GFP_ATOMIC)))
103 if (!(cmap->blue = kmalloc(size, GFP_ATOMIC)))
106 if (!(cmap->transp = kmalloc(size, GFP_ATOMIC)))
113 fb_copy_cmap(fb_default_cmap(len), cmap);
117 fb_dealloc_cmap(cmap);
122 * fb_dealloc_cmap - deallocate a colormap
123 * @cmap: frame buffer colormap structure
125 * Deallocates a colormap that was previously allocated with
130 void fb_dealloc_cmap(struct fb_cmap *cmap)
137 cmap->red = cmap->green = cmap->blue = cmap->transp = NULL;
142 * fb_copy_cmap - copy a colormap
143 * @from: frame buffer colormap structure
144 * @to: frame buffer colormap structure
146 * Copy contents of colormap from @from to @to.
149 int fb_copy_cmap(const struct fb_cmap *from, struct fb_cmap *to)
151 int tooff = 0, fromoff = 0;
154 if (to->start > from->start)
155 fromoff = to->start - from->start;
157 tooff = from->start - to->start;
158 size = to->len - tooff;
159 if (size > (int) (from->len - fromoff))
160 size = from->len - fromoff;
165 memcpy(to->red+tooff, from->red+fromoff, size);
166 memcpy(to->green+tooff, from->green+fromoff, size);
167 memcpy(to->blue+tooff, from->blue+fromoff, size);
168 if (from->transp && to->transp)
169 memcpy(to->transp+tooff, from->transp+fromoff, size);
173 int fb_cmap_to_user(const struct fb_cmap *from, struct fb_cmap_user *to)
175 int tooff = 0, fromoff = 0;
178 if (to->start > from->start)
179 fromoff = to->start - from->start;
181 tooff = from->start - to->start;
182 size = to->len - tooff;
183 if (size > (int) (from->len - fromoff))
184 size = from->len - fromoff;
189 if (copy_to_user(to->red+tooff, from->red+fromoff, size))
191 if (copy_to_user(to->green+tooff, from->green+fromoff, size))
193 if (copy_to_user(to->blue+tooff, from->blue+fromoff, size))
195 if (from->transp && to->transp)
196 if (copy_to_user(to->transp+tooff, from->transp+fromoff, size))
202 * fb_set_cmap - set the colormap
203 * @cmap: frame buffer colormap structure
204 * @info: frame buffer info structure
206 * Sets the colormap @cmap for a screen of device @info.
208 * Returns negative errno on error, or zero on success.
212 int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *info)
214 int i, start, rc = 0;
215 u16 *red, *green, *blue, *transp;
216 u_int hred, hgreen, hblue, htransp = 0xffff;
221 transp = cmap->transp;
224 if (start < 0 || (!info->fbops->fb_setcolreg &&
225 !info->fbops->fb_setcmap))
227 if (info->fbops->fb_setcmap) {
228 rc = info->fbops->fb_setcmap(cmap, info);
230 for (i = 0; i < cmap->len; i++) {
236 if (info->fbops->fb_setcolreg(start++,
243 fb_copy_cmap(cmap, &info->cmap);
248 int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *info)
250 int rc, size = cmap->len * sizeof(u16);
253 if (cmap->start < 0 || (!info->fbops->fb_setcolreg &&
254 !info->fbops->fb_setcmap))
257 memset(&umap, 0, sizeof(struct fb_cmap));
258 rc = fb_alloc_cmap(&umap, cmap->len, cmap->transp != NULL);
261 if (copy_from_user(umap.red, cmap->red, size) ||
262 copy_from_user(umap.green, cmap->green, size) ||
263 copy_from_user(umap.blue, cmap->blue, size) ||
264 (cmap->transp && copy_from_user(umap.transp, cmap->transp, size))) {
265 fb_dealloc_cmap(&umap);
268 umap.start = cmap->start;
269 rc = fb_set_cmap(&umap, info);
270 fb_dealloc_cmap(&umap);
275 * fb_default_cmap - get default colormap
276 * @len: size of palette for a depth
278 * Gets the default colormap for a specific screen depth. @len
279 * is the size of the palette for a particular screen depth.
281 * Returns pointer to a frame buffer colormap structure.
285 const struct fb_cmap *fb_default_cmap(int len)
288 return &default_2_colors;
290 return &default_4_colors;
292 return &default_8_colors;
293 return &default_16_colors;
298 * fb_invert_cmaps - invert all defaults colormaps
300 * Invert all default colormaps.
304 void fb_invert_cmaps(void)
308 for (i = 0; i < ARRAY_SIZE(red2); i++) {
310 green2[i] = ~green2[i];
311 blue2[i] = ~blue2[i];
313 for (i = 0; i < ARRAY_SIZE(red4); i++) {
315 green4[i] = ~green4[i];
316 blue4[i] = ~blue4[i];
318 for (i = 0; i < ARRAY_SIZE(red8); i++) {
320 green8[i] = ~green8[i];
321 blue8[i] = ~blue8[i];
323 for (i = 0; i < ARRAY_SIZE(red16); i++) {
324 red16[i] = ~red16[i];
325 green16[i] = ~green16[i];
326 blue16[i] = ~blue16[i];
332 * Visible symbols for modules
335 EXPORT_SYMBOL(fb_alloc_cmap);
336 EXPORT_SYMBOL(fb_dealloc_cmap);
337 EXPORT_SYMBOL(fb_copy_cmap);
338 EXPORT_SYMBOL(fb_set_cmap);
339 EXPORT_SYMBOL(fb_default_cmap);
340 EXPORT_SYMBOL(fb_invert_cmaps);