blob: 96a1b13668275600ffd18a93384c5f38fd0c4a35 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/fbcmap.c -- Colormap handling for frame buffer devices
3 *
4 * Created 15 Jun 1997 by Geert Uytterhoeven
5 *
6 * 2001 - Documented with DocBook
7 * - Brad Douglas <brad@neruo.com>
8 *
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
11 * more details.
12 */
13
14#include <linux/string.h>
15#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fb.h>
17#include <linux/slab.h>
Krzysztof Helt84902b72007-10-16 01:29:04 -070018#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Helge Delleradf6b202006-12-08 02:40:27 -080020static u16 red2[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 0x0000, 0xaaaa
22};
Helge Delleradf6b202006-12-08 02:40:27 -080023static u16 green2[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 0x0000, 0xaaaa
25};
Helge Delleradf6b202006-12-08 02:40:27 -080026static u16 blue2[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 0x0000, 0xaaaa
28};
29
Helge Delleradf6b202006-12-08 02:40:27 -080030static u16 red4[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 0x0000, 0xaaaa, 0x5555, 0xffff
32};
Helge Delleradf6b202006-12-08 02:40:27 -080033static u16 green4[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 0x0000, 0xaaaa, 0x5555, 0xffff
35};
Helge Delleradf6b202006-12-08 02:40:27 -080036static u16 blue4[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 0x0000, 0xaaaa, 0x5555, 0xffff
38};
39
Helge Delleradf6b202006-12-08 02:40:27 -080040static u16 red8[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 0x0000, 0x0000, 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0xaaaa, 0xaaaa
42};
Helge Delleradf6b202006-12-08 02:40:27 -080043static u16 green8[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0x0000, 0x0000, 0x5555, 0xaaaa
45};
Helge Delleradf6b202006-12-08 02:40:27 -080046static u16 blue8[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa
48};
49
Helge Delleradf6b202006-12-08 02:40:27 -080050static u16 red16[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 0x0000, 0x0000, 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0xaaaa, 0xaaaa,
52 0x5555, 0x5555, 0x5555, 0x5555, 0xffff, 0xffff, 0xffff, 0xffff
53};
Helge Delleradf6b202006-12-08 02:40:27 -080054static u16 green16[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 0x0000, 0x0000, 0xaaaa, 0xaaaa, 0x0000, 0x0000, 0x5555, 0xaaaa,
56 0x5555, 0x5555, 0xffff, 0xffff, 0x5555, 0x5555, 0xffff, 0xffff
57};
Helge Delleradf6b202006-12-08 02:40:27 -080058static u16 blue16[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa, 0x0000, 0xaaaa,
60 0x5555, 0xffff, 0x5555, 0xffff, 0x5555, 0xffff, 0x5555, 0xffff
61};
62
Helge Delleradf6b202006-12-08 02:40:27 -080063static const struct fb_cmap default_2_colors = {
64 .len=2, .red=red2, .green=green2, .blue=blue2
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
Helge Delleradf6b202006-12-08 02:40:27 -080066static const struct fb_cmap default_8_colors = {
67 .len=8, .red=red8, .green=green8, .blue=blue8
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
Helge Delleradf6b202006-12-08 02:40:27 -080069static const struct fb_cmap default_4_colors = {
70 .len=4, .red=red4, .green=green4, .blue=blue4
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
Helge Delleradf6b202006-12-08 02:40:27 -080072static const struct fb_cmap default_16_colors = {
73 .len=16, .red=red16, .green=green16, .blue=blue16
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
76
Helge Delleradf6b202006-12-08 02:40:27 -080077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/**
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
Randy Dunlap22a95942010-11-26 05:20:25 +000083 * @flags: flags for kmalloc memory allocation
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 *
85 * Allocates memory for a colormap @cmap. @len is the
86 * number of entries in the palette.
87 *
Alan Currydb77ec22006-03-27 01:17:30 -080088 * Returns negative errno on error, or zero on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *
90 */
91
Dan Carpenter1e7c7802010-11-16 12:11:02 +030092int fb_alloc_cmap_gfp(struct fb_cmap *cmap, int len, int transp, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Dan Carpenterc3531032010-11-13 13:06:38 +030094 int size = len * sizeof(u16);
Dan Carpenter1e7c7802010-11-16 12:11:02 +030095 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Dan Carpenterc3531032010-11-13 13:06:38 +030097 if (cmap->len != len) {
98 fb_dealloc_cmap(cmap);
99 if (!len)
100 return 0;
101
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300102 cmap->red = kmalloc(size, flags);
Dan Carpenterc3531032010-11-13 13:06:38 +0300103 if (!cmap->red)
104 goto fail;
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300105 cmap->green = kmalloc(size, flags);
Dan Carpenterc3531032010-11-13 13:06:38 +0300106 if (!cmap->green)
107 goto fail;
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300108 cmap->blue = kmalloc(size, flags);
Dan Carpenterc3531032010-11-13 13:06:38 +0300109 if (!cmap->blue)
110 goto fail;
111 if (transp) {
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300112 cmap->transp = kmalloc(size, flags);
Dan Carpenterc3531032010-11-13 13:06:38 +0300113 if (!cmap->transp)
114 goto fail;
115 } else {
116 cmap->transp = NULL;
117 }
118 }
119 cmap->start = 0;
120 cmap->len = len;
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300121 ret = fb_copy_cmap(fb_default_cmap(len), cmap);
122 if (ret)
123 goto fail;
Dan Carpenterc3531032010-11-13 13:06:38 +0300124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126fail:
Dan Carpenterc3531032010-11-13 13:06:38 +0300127 fb_dealloc_cmap(cmap);
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300128 return ret;
129}
130
131int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp)
132{
133 return fb_alloc_cmap_gfp(cmap, len, transp, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136/**
137 * fb_dealloc_cmap - deallocate a colormap
138 * @cmap: frame buffer colormap structure
139 *
140 * Deallocates a colormap that was previously allocated with
141 * fb_alloc_cmap().
142 *
143 */
144
145void fb_dealloc_cmap(struct fb_cmap *cmap)
146{
147 kfree(cmap->red);
148 kfree(cmap->green);
149 kfree(cmap->blue);
150 kfree(cmap->transp);
151
152 cmap->red = cmap->green = cmap->blue = cmap->transp = NULL;
153 cmap->len = 0;
154}
155
156/**
157 * fb_copy_cmap - copy a colormap
158 * @from: frame buffer colormap structure
159 * @to: frame buffer colormap structure
160 *
161 * Copy contents of colormap from @from to @to.
162 */
163
Helge Delleradf6b202006-12-08 02:40:27 -0800164int fb_copy_cmap(const struct fb_cmap *from, struct fb_cmap *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Kees Cook9778c4d2017-01-24 15:18:24 -0800166 unsigned int tooff = 0, fromoff = 0;
167 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Pawan Kumar03b1b6b2013-10-31 16:19:44 +0530169 if (!to || !from)
170 return -EINVAL;
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (to->start > from->start)
173 fromoff = to->start - from->start;
174 else
175 tooff = from->start - to->start;
Kees Cook9778c4d2017-01-24 15:18:24 -0800176 if (fromoff >= from->len || tooff >= to->len)
177 return -EINVAL;
178
179 size = min_t(size_t, to->len - tooff, from->len - fromoff);
180 if (size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return -EINVAL;
182 size *= sizeof(u16);
183
Pawan Kumar03b1b6b2013-10-31 16:19:44 +0530184 if (from->red && to->red)
185 memcpy(to->red+tooff, from->red+fromoff, size);
186 if (from->green && to->green)
187 memcpy(to->green+tooff, from->green+fromoff, size);
188 if (from->blue && to->blue)
189 memcpy(to->blue+tooff, from->blue+fromoff, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (from->transp && to->transp)
191 memcpy(to->transp+tooff, from->transp+fromoff, size);
192 return 0;
193}
194
Helge Delleradf6b202006-12-08 02:40:27 -0800195int fb_cmap_to_user(const struct fb_cmap *from, struct fb_cmap_user *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Kees Cook9778c4d2017-01-24 15:18:24 -0800197 unsigned int tooff = 0, fromoff = 0;
198 size_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Teow Wan Yee35e83552016-11-22 16:31:48 +0800200 if (!to || !from || (int)(to->start) < 0)
Pawan Kumar03b1b6b2013-10-31 16:19:44 +0530201 return -EINVAL;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (to->start > from->start)
204 fromoff = to->start - from->start;
205 else
206 tooff = from->start - to->start;
Shalabh Jaina2b52372013-11-12 15:10:44 -0800207
Kees Cook9778c4d2017-01-24 15:18:24 -0800208 if (fromoff >= from->len || tooff >= to->len)
209 return -EINVAL;
210
211 size = min_t(size_t, to->len - tooff, from->len - fromoff);
212 if (size == 0)
razorloves7cc38472017-06-07 06:16:56 -0500213 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 size *= sizeof(u16);
215
Pawan Kumar03b1b6b2013-10-31 16:19:44 +0530216 if (from->red && to->red)
217 if (copy_to_user(to->red+tooff, from->red+fromoff, size))
218 return -EFAULT;
219 if (from->green && to->green)
220 if (copy_to_user(to->green+tooff, from->green+fromoff, size))
221 return -EFAULT;
222 if (from->blue && to->blue)
223 if (copy_to_user(to->blue+tooff, from->blue+fromoff, size))
224 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (from->transp && to->transp)
226 if (copy_to_user(to->transp+tooff, from->transp+fromoff, size))
227 return -EFAULT;
228 return 0;
229}
230
231/**
232 * fb_set_cmap - set the colormap
233 * @cmap: frame buffer colormap structure
234 * @info: frame buffer info structure
235 *
236 * Sets the colormap @cmap for a screen of device @info.
237 *
238 * Returns negative errno on error, or zero on success.
239 *
240 */
241
242int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *info)
243{
Michal Januszewski03e259a2005-07-27 11:46:08 -0700244 int i, start, rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 u16 *red, *green, *blue, *transp;
246 u_int hred, hgreen, hblue, htransp = 0xffff;
247
248 red = cmap->red;
249 green = cmap->green;
250 blue = cmap->blue;
251 transp = cmap->transp;
252 start = cmap->start;
253
Benjamin Herrenschmidt71494372005-05-01 08:59:22 -0700254 if (start < 0 || (!info->fbops->fb_setcolreg &&
255 !info->fbops->fb_setcmap))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return -EINVAL;
Michal Januszewski03e259a2005-07-27 11:46:08 -0700257 if (info->fbops->fb_setcmap) {
258 rc = info->fbops->fb_setcmap(cmap, info);
259 } else {
260 for (i = 0; i < cmap->len; i++) {
261 hred = *red++;
262 hgreen = *green++;
263 hblue = *blue++;
264 if (transp)
265 htransp = *transp++;
266 if (info->fbops->fb_setcolreg(start++,
267 hred, hgreen, hblue,
268 htransp, info))
269 break;
270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
Michal Januszewski03e259a2005-07-27 11:46:08 -0700272 if (rc == 0)
273 fb_copy_cmap(cmap, &info->cmap);
274
275 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *info)
279{
Michal Januszewski03e259a2005-07-27 11:46:08 -0700280 int rc, size = cmap->len * sizeof(u16);
281 struct fb_cmap umap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300283 if (size < 0 || size < cmap->len)
284 return -E2BIG;
285
Michal Januszewski03e259a2005-07-27 11:46:08 -0700286 memset(&umap, 0, sizeof(struct fb_cmap));
Dan Carpenter1e7c7802010-11-16 12:11:02 +0300287 rc = fb_alloc_cmap_gfp(&umap, cmap->len, cmap->transp != NULL,
288 GFP_KERNEL);
Michal Januszewski03e259a2005-07-27 11:46:08 -0700289 if (rc)
Benjamin Herrenschmidt71494372005-05-01 08:59:22 -0700290 return rc;
Michal Januszewski03e259a2005-07-27 11:46:08 -0700291 if (copy_from_user(umap.red, cmap->red, size) ||
292 copy_from_user(umap.green, cmap->green, size) ||
293 copy_from_user(umap.blue, cmap->blue, size) ||
294 (cmap->transp && copy_from_user(umap.transp, cmap->transp, size))) {
Andrea Righi1f5e31d2009-02-04 15:12:03 -0800295 rc = -EFAULT;
296 goto out;
Benjamin Herrenschmidt71494372005-05-01 08:59:22 -0700297 }
Michal Januszewski03e259a2005-07-27 11:46:08 -0700298 umap.start = cmap->start;
Andrea Righi1f5e31d2009-02-04 15:12:03 -0800299 if (!lock_fb_info(info)) {
300 rc = -ENODEV;
301 goto out;
302 }
303 if (cmap->start < 0 || (!info->fbops->fb_setcolreg &&
304 !info->fbops->fb_setcmap)) {
305 rc = -EINVAL;
306 goto out1;
307 }
Michal Januszewski03e259a2005-07-27 11:46:08 -0700308 rc = fb_set_cmap(&umap, info);
Andrea Righi1f5e31d2009-02-04 15:12:03 -0800309out1:
310 unlock_fb_info(info);
311out:
Michal Januszewski03e259a2005-07-27 11:46:08 -0700312 fb_dealloc_cmap(&umap);
313 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/**
317 * fb_default_cmap - get default colormap
318 * @len: size of palette for a depth
319 *
320 * Gets the default colormap for a specific screen depth. @len
321 * is the size of the palette for a particular screen depth.
322 *
323 * Returns pointer to a frame buffer colormap structure.
324 *
325 */
326
Helge Delleradf6b202006-12-08 02:40:27 -0800327const struct fb_cmap *fb_default_cmap(int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 if (len <= 2)
330 return &default_2_colors;
331 if (len <= 4)
332 return &default_4_colors;
333 if (len <= 8)
334 return &default_8_colors;
335 return &default_16_colors;
336}
337
338
339/**
340 * fb_invert_cmaps - invert all defaults colormaps
341 *
342 * Invert all default colormaps.
343 *
344 */
345
346void fb_invert_cmaps(void)
347{
348 u_int i;
349
Helge Delleradf6b202006-12-08 02:40:27 -0800350 for (i = 0; i < ARRAY_SIZE(red2); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 red2[i] = ~red2[i];
352 green2[i] = ~green2[i];
353 blue2[i] = ~blue2[i];
354 }
Helge Delleradf6b202006-12-08 02:40:27 -0800355 for (i = 0; i < ARRAY_SIZE(red4); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 red4[i] = ~red4[i];
357 green4[i] = ~green4[i];
358 blue4[i] = ~blue4[i];
359 }
Helge Delleradf6b202006-12-08 02:40:27 -0800360 for (i = 0; i < ARRAY_SIZE(red8); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 red8[i] = ~red8[i];
362 green8[i] = ~green8[i];
363 blue8[i] = ~blue8[i];
364 }
Helge Delleradf6b202006-12-08 02:40:27 -0800365 for (i = 0; i < ARRAY_SIZE(red16); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 red16[i] = ~red16[i];
367 green16[i] = ~green16[i];
368 blue16[i] = ~blue16[i];
369 }
370}
371
372
373 /*
374 * Visible symbols for modules
375 */
376
377EXPORT_SYMBOL(fb_alloc_cmap);
378EXPORT_SYMBOL(fb_dealloc_cmap);
379EXPORT_SYMBOL(fb_copy_cmap);
380EXPORT_SYMBOL(fb_set_cmap);
381EXPORT_SYMBOL(fb_default_cmap);
382EXPORT_SYMBOL(fb_invert_cmaps);