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>
16 #include <linux/tty.h>
18 #include <linux/slab.h>
20 #include <asm/uaccess.h>
25 static u16 green2
[] = {
28 static u16 blue2
[] = {
33 0x0000, 0xaaaa, 0x5555, 0xffff
35 static u16 green4
[] = {
36 0x0000, 0xaaaa, 0x5555, 0xffff
38 static u16 blue4
[] = {
39 0x0000, 0xaaaa, 0x5555, 0xffff
43 0x0000, 0x0000, 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0xaaaa, 0xaaaa
45 static u16 green8
[] = {
46 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0x0000, 0x0000, 0x5555, 0xaaaa
48 static u16 blue8
[] = {
49 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa
52 static u16 red16
[] = {
53 0x0000, 0x0000, 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0xaaaa, 0xaaaa,
54 0x5555, 0x5555, 0x5555, 0x5555, 0xffff, 0xffff, 0xffff, 0xffff
56 static u16 green16
[] = {
57 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0x0000, 0x0000, 0x5555, 0xaaaa,
58 0x5555, 0x5555, 0xffff, 0xffff, 0x5555, 0x5555, 0xffff, 0xffff
60 static u16 blue16
[] = {
61 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa,
62 0x5555, 0xffff, 0x5555, 0xffff, 0x5555, 0xffff, 0x5555, 0xffff
65 static struct fb_cmap default_2_colors
= {
66 0, 2, red2
, green2
, blue2
, NULL
68 static struct fb_cmap default_8_colors
= {
69 0, 8, red8
, green8
, blue8
, NULL
71 static struct fb_cmap default_4_colors
= {
72 0, 4, red4
, green4
, blue4
, NULL
74 static struct fb_cmap default_16_colors
= {
75 0, 16, red16
, green16
, blue16
, NULL
80 * fb_alloc_cmap - allocate a colormap
81 * @cmap: frame buffer colormap structure
82 * @len: length of @cmap
83 * @transp: boolean, 1 if there is transparency, 0 otherwise
85 * Allocates memory for a colormap @cmap. @len is the
86 * number of entries in the palette.
88 * Returns -1 errno on error, or zero on success.
92 int fb_alloc_cmap(struct fb_cmap
*cmap
, int len
, int transp
)
94 int size
= len
*sizeof(u16
);
96 if (cmap
->len
!= len
) {
97 fb_dealloc_cmap(cmap
);
100 if (!(cmap
->red
= kmalloc(size
, GFP_ATOMIC
)))
102 if (!(cmap
->green
= kmalloc(size
, GFP_ATOMIC
)))
104 if (!(cmap
->blue
= kmalloc(size
, GFP_ATOMIC
)))
107 if (!(cmap
->transp
= kmalloc(size
, GFP_ATOMIC
)))
114 fb_copy_cmap(fb_default_cmap(len
), cmap
);
118 fb_dealloc_cmap(cmap
);
123 * fb_dealloc_cmap - deallocate a colormap
124 * @cmap: frame buffer colormap structure
126 * Deallocates a colormap that was previously allocated with
131 void fb_dealloc_cmap(struct fb_cmap
*cmap
)
138 cmap
->red
= cmap
->green
= cmap
->blue
= cmap
->transp
= NULL
;
143 * fb_copy_cmap - copy a colormap
144 * @from: frame buffer colormap structure
145 * @to: frame buffer colormap structure
147 * Copy contents of colormap from @from to @to.
150 int fb_copy_cmap(struct fb_cmap
*from
, struct fb_cmap
*to
)
152 int tooff
= 0, fromoff
= 0;
155 if (to
->start
> from
->start
)
156 fromoff
= to
->start
- from
->start
;
158 tooff
= from
->start
- to
->start
;
159 size
= to
->len
- tooff
;
160 if (size
> (int) (from
->len
- fromoff
))
161 size
= from
->len
- fromoff
;
166 memcpy(to
->red
+tooff
, from
->red
+fromoff
, size
);
167 memcpy(to
->green
+tooff
, from
->green
+fromoff
, size
);
168 memcpy(to
->blue
+tooff
, from
->blue
+fromoff
, size
);
169 if (from
->transp
&& to
->transp
)
170 memcpy(to
->transp
+tooff
, from
->transp
+fromoff
, size
);
174 int fb_cmap_to_user(struct fb_cmap
*from
, struct fb_cmap_user
*to
)
176 int tooff
= 0, fromoff
= 0;
179 if (to
->start
> from
->start
)
180 fromoff
= to
->start
- from
->start
;
182 tooff
= from
->start
- to
->start
;
183 size
= to
->len
- tooff
;
184 if (size
> (int) (from
->len
- fromoff
))
185 size
= from
->len
- fromoff
;
190 if (copy_to_user(to
->red
+tooff
, from
->red
+fromoff
, size
))
192 if (copy_to_user(to
->green
+tooff
, from
->green
+fromoff
, size
))
194 if (copy_to_user(to
->blue
+tooff
, from
->blue
+fromoff
, size
))
196 if (from
->transp
&& to
->transp
)
197 if (copy_to_user(to
->transp
+tooff
, from
->transp
+fromoff
, size
))
203 * fb_set_cmap - set the colormap
204 * @cmap: frame buffer colormap structure
205 * @info: frame buffer info structure
207 * Sets the colormap @cmap for a screen of device @info.
209 * Returns negative errno on error, or zero on success.
213 int fb_set_cmap(struct fb_cmap
*cmap
, struct fb_info
*info
)
216 u16
*red
, *green
, *blue
, *transp
;
217 u_int hred
, hgreen
, hblue
, htransp
= 0xffff;
222 transp
= cmap
->transp
;
225 if (start
< 0 || (!info
->fbops
->fb_setcolreg
&&
226 !info
->fbops
->fb_setcmap
))
228 if (info
->fbops
->fb_setcmap
)
229 return info
->fbops
->fb_setcmap(cmap
, info
);
230 for (i
= 0; i
< cmap
->len
; i
++) {
236 if (info
->fbops
->fb_setcolreg(start
++,
237 hred
, hgreen
, hblue
, htransp
,
244 int fb_set_user_cmap(struct fb_cmap_user
*cmap
, struct fb_info
*info
)
247 u16 __user
*red
, *green
, *blue
, *transp
;
248 u_int hred
, hgreen
, hblue
, htransp
= 0xffff;
253 transp
= cmap
->transp
;
256 if (start
< 0 || (!info
->fbops
->fb_setcolreg
&&
257 !info
->fbops
->fb_setcmap
))
260 /* If we can batch, do it */
261 if (info
->fbops
->fb_setcmap
&& cmap
->len
> 1) {
263 int size
= cmap
->len
* sizeof(u16
);
266 memset(&umap
, 0, sizeof(struct fb_cmap
));
267 rc
= fb_alloc_cmap(&umap
, cmap
->len
, transp
!= NULL
);
270 if (copy_from_user(umap
.red
, red
, size
) ||
271 copy_from_user(umap
.green
, green
, size
) ||
272 copy_from_user(umap
.blue
, blue
, size
) ||
273 (transp
&& copy_from_user(umap
.transp
, transp
, size
))) {
278 rc
= info
->fbops
->fb_setcmap(&umap
, info
);
279 fb_dealloc_cmap(&umap
);
283 for (i
= 0; i
< cmap
->len
; i
++, red
++, blue
++, green
++) {
284 if (get_user(hred
, red
) ||
285 get_user(hgreen
, green
) ||
286 get_user(hblue
, blue
) ||
287 (transp
&& get_user(htransp
, transp
)))
289 if (info
->fbops
->fb_setcolreg(start
++,
290 hred
, hgreen
, hblue
, htransp
,
300 * fb_default_cmap - get default colormap
301 * @len: size of palette for a depth
303 * Gets the default colormap for a specific screen depth. @len
304 * is the size of the palette for a particular screen depth.
306 * Returns pointer to a frame buffer colormap structure.
310 struct fb_cmap
*fb_default_cmap(int len
)
313 return &default_2_colors
;
315 return &default_4_colors
;
317 return &default_8_colors
;
318 return &default_16_colors
;
323 * fb_invert_cmaps - invert all defaults colormaps
325 * Invert all default colormaps.
329 void fb_invert_cmaps(void)
333 for (i
= 0; i
< 2; i
++) {
335 green2
[i
] = ~green2
[i
];
336 blue2
[i
] = ~blue2
[i
];
338 for (i
= 0; i
< 4; i
++) {
340 green4
[i
] = ~green4
[i
];
341 blue4
[i
] = ~blue4
[i
];
343 for (i
= 0; i
< 8; i
++) {
345 green8
[i
] = ~green8
[i
];
346 blue8
[i
] = ~blue8
[i
];
348 for (i
= 0; i
< 16; i
++) {
349 red16
[i
] = ~red16
[i
];
350 green16
[i
] = ~green16
[i
];
351 blue16
[i
] = ~blue16
[i
];
357 * Visible symbols for modules
360 EXPORT_SYMBOL(fb_alloc_cmap
);
361 EXPORT_SYMBOL(fb_dealloc_cmap
);
362 EXPORT_SYMBOL(fb_copy_cmap
);
363 EXPORT_SYMBOL(fb_set_cmap
);
364 EXPORT_SYMBOL(fb_default_cmap
);
365 EXPORT_SYMBOL(fb_invert_cmaps
);