blob: 81aa3129c17d75cbf67daf7d8226abb630c9d22a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fbsysfs.c - framebuffer device class and attributes
3 *
4 * Copyright (c) 2004 James Simmons <jsimmons@infradead.org>
5 *
6 * This program is free software you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12/*
13 * Note: currently there's only stubs for framebuffer_alloc and
14 * framebuffer_release here. The reson for that is that until all drivers
15 * are converted to use it a sysfsification will open OOPSable races.
16 */
17
18#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/fb.h>
21#include <linux/console.h>
Michael Hanselmann5474c122006-06-25 05:47:08 -070022#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Antonino A. Daplas1a6600b2006-10-03 01:14:50 -070024#define FB_SYSFS_FLAG_ATTR 1
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/**
27 * framebuffer_alloc - creates a new frame buffer info structure
28 *
29 * @size: size of driver private data, can be zero
30 * @dev: pointer to the device for this fb, this can be NULL
31 *
32 * Creates a new frame buffer info structure. Also reserves @size bytes
33 * for driver private data (info->par). info->par (if any) will be
34 * aligned to sizeof(long).
35 *
36 * Returns the new structure, or NULL if an error occured.
37 *
38 */
39struct fb_info *framebuffer_alloc(size_t size, struct device *dev)
40{
41#define BYTES_PER_LONG (BITS_PER_LONG/8)
42#define PADDING (BYTES_PER_LONG - (sizeof(struct fb_info) % BYTES_PER_LONG))
43 int fb_info_size = sizeof(struct fb_info);
44 struct fb_info *info;
45 char *p;
46
47 if (size)
48 fb_info_size += PADDING;
49
Antonino A. Daplasdef1ede2006-01-09 20:53:45 -080050 p = kzalloc(fb_info_size + size, GFP_KERNEL);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (!p)
53 return NULL;
Antonino A. Daplasdef1ede2006-01-09 20:53:45 -080054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 info = (struct fb_info *) p;
56
57 if (size)
58 info->par = p + fb_info_size;
59
60 info->device = dev;
61
Michael Hanselmann5474c122006-06-25 05:47:08 -070062#ifdef CONFIG_FB_BACKLIGHT
Richard Purdie37ce69a2007-02-10 14:10:33 +000063 mutex_init(&info->bl_curve_mutex);
Michael Hanselmann5474c122006-06-25 05:47:08 -070064#endif
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return info;
67#undef PADDING
68#undef BYTES_PER_LONG
69}
70EXPORT_SYMBOL(framebuffer_alloc);
71
72/**
73 * framebuffer_release - marks the structure available for freeing
74 *
75 * @info: frame buffer info structure
76 *
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -070077 * Drop the reference count of the device embedded in the
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * framebuffer info structure.
79 *
80 */
81void framebuffer_release(struct fb_info *info)
82{
83 kfree(info);
84}
85EXPORT_SYMBOL(framebuffer_release);
86
87static int activate(struct fb_info *fb_info, struct fb_var_screeninfo *var)
88{
89 int err;
90
91 var->activate |= FB_ACTIVATE_FORCE;
92 acquire_console_sem();
93 fb_info->flags |= FBINFO_MISC_USEREVENT;
94 err = fb_set_var(fb_info, var);
95 fb_info->flags &= ~FBINFO_MISC_USEREVENT;
96 release_console_sem();
97 if (err)
98 return err;
99 return 0;
100}
101
102static int mode_string(char *buf, unsigned int offset,
103 const struct fb_videomode *mode)
104{
105 char m = 'U';
Daniel R Thompson9dac73a2006-06-26 00:27:00 -0700106 char v = 'p';
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (mode->flag & FB_MODE_IS_DETAILED)
109 m = 'D';
110 if (mode->flag & FB_MODE_IS_VESA)
111 m = 'V';
112 if (mode->flag & FB_MODE_IS_STANDARD)
113 m = 'S';
Daniel R Thompson9dac73a2006-06-26 00:27:00 -0700114
115 if (mode->vmode & FB_VMODE_INTERLACED)
116 v = 'i';
117 if (mode->vmode & FB_VMODE_DOUBLE)
118 v = 'd';
119
120 return snprintf(&buf[offset], PAGE_SIZE - offset, "%c:%dx%d%c-%d\n",
121 m, mode->xres, mode->yres, v, mode->refresh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700124static ssize_t store_mode(struct device *device, struct device_attribute *attr,
125 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700127 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 char mstr[100];
129 struct fb_var_screeninfo var;
130 struct fb_modelist *modelist;
131 struct fb_videomode *mode;
132 struct list_head *pos;
133 size_t i;
134 int err;
135
136 memset(&var, 0, sizeof(var));
137
138 list_for_each(pos, &fb_info->modelist) {
139 modelist = list_entry(pos, struct fb_modelist, list);
140 mode = &modelist->mode;
141 i = mode_string(mstr, 0, mode);
142 if (strncmp(mstr, buf, max(count, i)) == 0) {
143
144 var = fb_info->var;
145 fb_videomode_to_var(&var, mode);
146 if ((err = activate(fb_info, &var)))
147 return err;
148 fb_info->mode = mode;
149 return count;
150 }
151 }
152 return -EINVAL;
153}
154
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700155static ssize_t show_mode(struct device *device, struct device_attribute *attr,
156 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700158 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if (!fb_info->mode)
161 return 0;
162
163 return mode_string(buf, 0, fb_info->mode);
164}
165
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700166static ssize_t store_modes(struct device *device,
167 struct device_attribute *attr,
168 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700170 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 LIST_HEAD(old_list);
172 int i = count / sizeof(struct fb_videomode);
173
174 if (i * sizeof(struct fb_videomode) != count)
175 return -EINVAL;
176
177 acquire_console_sem();
178 list_splice(&fb_info->modelist, &old_list);
Geert Uytterhoeven9791d762007-02-12 00:55:19 -0800179 fb_videomode_to_modelist((const struct fb_videomode *)buf, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 &fb_info->modelist);
181 if (fb_new_modelist(fb_info)) {
182 fb_destroy_modelist(&fb_info->modelist);
183 list_splice(&old_list, &fb_info->modelist);
184 } else
185 fb_destroy_modelist(&old_list);
186
187 release_console_sem();
188
189 return 0;
190}
191
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700192static ssize_t show_modes(struct device *device, struct device_attribute *attr,
193 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700195 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 unsigned int i;
197 struct list_head *pos;
198 struct fb_modelist *modelist;
199 const struct fb_videomode *mode;
200
201 i = 0;
202 list_for_each(pos, &fb_info->modelist) {
203 modelist = list_entry(pos, struct fb_modelist, list);
204 mode = &modelist->mode;
205 i += mode_string(buf, i, mode);
206 }
207 return i;
208}
209
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700210static ssize_t store_bpp(struct device *device, struct device_attribute *attr,
211 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700213 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct fb_var_screeninfo var;
215 char ** last = NULL;
216 int err;
217
218 var = fb_info->var;
219 var.bits_per_pixel = simple_strtoul(buf, last, 0);
220 if ((err = activate(fb_info, &var)))
221 return err;
222 return count;
223}
224
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700225static ssize_t show_bpp(struct device *device, struct device_attribute *attr,
226 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700228 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->var.bits_per_pixel);
230}
231
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700232static ssize_t store_rotate(struct device *device,
233 struct device_attribute *attr,
234 const char *buf, size_t count)
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800235{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700236 struct fb_info *fb_info = dev_get_drvdata(device);
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800237 struct fb_var_screeninfo var;
238 char **last = NULL;
239 int err;
240
241 var = fb_info->var;
242 var.rotate = simple_strtoul(buf, last, 0);
243
244 if ((err = activate(fb_info, &var)))
245 return err;
246
247 return count;
248}
249
250
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700251static ssize_t show_rotate(struct device *device,
252 struct device_attribute *attr, char *buf)
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800253{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700254 struct fb_info *fb_info = dev_get_drvdata(device);
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800255
256 return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->var.rotate);
257}
258
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700259static ssize_t store_virtual(struct device *device,
260 struct device_attribute *attr,
261 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700263 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 struct fb_var_screeninfo var;
265 char *last = NULL;
266 int err;
267
268 var = fb_info->var;
269 var.xres_virtual = simple_strtoul(buf, &last, 0);
270 last++;
271 if (last - buf >= count)
272 return -EINVAL;
273 var.yres_virtual = simple_strtoul(last, &last, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 if ((err = activate(fb_info, &var)))
276 return err;
277 return count;
278}
279
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700280static ssize_t show_virtual(struct device *device,
281 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700283 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xres_virtual,
Jon Smirle2c16492005-06-13 15:52:36 -0700285 fb_info->var.yres_virtual);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700288static ssize_t show_stride(struct device *device,
289 struct device_attribute *attr, char *buf)
James Simmonsc14e2cf2005-10-24 21:46:21 +0100290{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700291 struct fb_info *fb_info = dev_get_drvdata(device);
James Simmonsc14e2cf2005-10-24 21:46:21 +0100292 return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->fix.line_length);
293}
294
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700295static ssize_t store_blank(struct device *device,
296 struct device_attribute *attr,
297 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700299 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 char *last = NULL;
301 int err;
302
303 acquire_console_sem();
304 fb_info->flags |= FBINFO_MISC_USEREVENT;
305 err = fb_blank(fb_info, simple_strtoul(buf, &last, 0));
306 fb_info->flags &= ~FBINFO_MISC_USEREVENT;
307 release_console_sem();
308 if (err < 0)
309 return err;
310 return count;
311}
312
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700313static ssize_t show_blank(struct device *device,
314 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700316// struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return 0;
318}
319
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700320static ssize_t store_console(struct device *device,
321 struct device_attribute *attr,
322 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700324// struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return 0;
326}
327
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700328static ssize_t show_console(struct device *device,
329 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700331// struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return 0;
333}
334
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700335static ssize_t store_cursor(struct device *device,
336 struct device_attribute *attr,
337 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700339// struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return 0;
341}
342
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700343static ssize_t show_cursor(struct device *device,
344 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700346// struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return 0;
348}
349
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700350static ssize_t store_pan(struct device *device,
351 struct device_attribute *attr,
352 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700354 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct fb_var_screeninfo var;
356 char *last = NULL;
357 int err;
358
359 var = fb_info->var;
360 var.xoffset = simple_strtoul(buf, &last, 0);
361 last++;
362 if (last - buf >= count)
363 return -EINVAL;
364 var.yoffset = simple_strtoul(last, &last, 0);
365
366 acquire_console_sem();
367 err = fb_pan_display(fb_info, &var);
368 release_console_sem();
369
370 if (err < 0)
371 return err;
372 return count;
373}
374
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700375static ssize_t show_pan(struct device *device,
376 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700378 struct fb_info *fb_info = dev_get_drvdata(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return snprintf(buf, PAGE_SIZE, "%d,%d\n", fb_info->var.xoffset,
Antonino A. Daplasc4270632007-05-08 00:37:30 -0700380 fb_info->var.yoffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700383static ssize_t show_name(struct device *device,
384 struct device_attribute *attr, char *buf)
James Simmons02459ea2005-07-30 23:49:54 +0100385{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700386 struct fb_info *fb_info = dev_get_drvdata(device);
James Simmons02459ea2005-07-30 23:49:54 +0100387
388 return snprintf(buf, PAGE_SIZE, "%s\n", fb_info->fix.id);
389}
390
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700391static ssize_t store_fbstate(struct device *device,
392 struct device_attribute *attr,
393 const char *buf, size_t count)
Matthew Garrett30420f82006-01-09 20:53:01 -0800394{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700395 struct fb_info *fb_info = dev_get_drvdata(device);
Matthew Garrett30420f82006-01-09 20:53:01 -0800396 u32 state;
397 char *last = NULL;
398
399 state = simple_strtoul(buf, &last, 0);
400
401 acquire_console_sem();
402 fb_set_suspend(fb_info, (int)state);
403 release_console_sem();
404
405 return count;
406}
407
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700408static ssize_t show_fbstate(struct device *device,
409 struct device_attribute *attr, char *buf)
Matthew Garrett30420f82006-01-09 20:53:01 -0800410{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700411 struct fb_info *fb_info = dev_get_drvdata(device);
Matthew Garrett30420f82006-01-09 20:53:01 -0800412 return snprintf(buf, PAGE_SIZE, "%d\n", fb_info->state);
413}
414
Michael Hanselmann5474c122006-06-25 05:47:08 -0700415#ifdef CONFIG_FB_BACKLIGHT
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700416static ssize_t store_bl_curve(struct device *device,
417 struct device_attribute *attr,
418 const char *buf, size_t count)
Michael Hanselmann5474c122006-06-25 05:47:08 -0700419{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700420 struct fb_info *fb_info = dev_get_drvdata(device);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700421 u8 tmp_curve[FB_BACKLIGHT_LEVELS];
422 unsigned int i;
423
Michael Hanselmann25981de2006-09-25 16:25:07 -0700424 /* Some drivers don't use framebuffer_alloc(), but those also
425 * don't have backlights.
426 */
427 if (!fb_info || !fb_info->bl_dev)
428 return -ENODEV;
429
Michael Hanselmann5474c122006-06-25 05:47:08 -0700430 if (count != (FB_BACKLIGHT_LEVELS / 8 * 24))
431 return -EINVAL;
432
433 for (i = 0; i < (FB_BACKLIGHT_LEVELS / 8); ++i)
434 if (sscanf(&buf[i * 24],
435 "%2hhx %2hhx %2hhx %2hhx %2hhx %2hhx %2hhx %2hhx\n",
436 &tmp_curve[i * 8 + 0],
437 &tmp_curve[i * 8 + 1],
438 &tmp_curve[i * 8 + 2],
439 &tmp_curve[i * 8 + 3],
440 &tmp_curve[i * 8 + 4],
441 &tmp_curve[i * 8 + 5],
442 &tmp_curve[i * 8 + 6],
443 &tmp_curve[i * 8 + 7]) != 8)
444 return -EINVAL;
445
446 /* If there has been an error in the input data, we won't
447 * reach this loop.
448 */
Richard Purdie37ce69a2007-02-10 14:10:33 +0000449 mutex_lock(&fb_info->bl_curve_mutex);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700450 for (i = 0; i < FB_BACKLIGHT_LEVELS; ++i)
451 fb_info->bl_curve[i] = tmp_curve[i];
Richard Purdie37ce69a2007-02-10 14:10:33 +0000452 mutex_unlock(&fb_info->bl_curve_mutex);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700453
454 return count;
455}
456
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700457static ssize_t show_bl_curve(struct device *device,
458 struct device_attribute *attr, char *buf)
Michael Hanselmann5474c122006-06-25 05:47:08 -0700459{
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700460 struct fb_info *fb_info = dev_get_drvdata(device);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700461 ssize_t len = 0;
462 unsigned int i;
463
Michael Hanselmann25981de2006-09-25 16:25:07 -0700464 /* Some drivers don't use framebuffer_alloc(), but those also
465 * don't have backlights.
466 */
467 if (!fb_info || !fb_info->bl_dev)
468 return -ENODEV;
469
Richard Purdie37ce69a2007-02-10 14:10:33 +0000470 mutex_lock(&fb_info->bl_curve_mutex);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700471 for (i = 0; i < FB_BACKLIGHT_LEVELS; i += 8)
472 len += snprintf(&buf[len], PAGE_SIZE,
473 "%02x %02x %02x %02x %02x %02x %02x %02x\n",
474 fb_info->bl_curve[i + 0],
475 fb_info->bl_curve[i + 1],
476 fb_info->bl_curve[i + 2],
477 fb_info->bl_curve[i + 3],
478 fb_info->bl_curve[i + 4],
479 fb_info->bl_curve[i + 5],
480 fb_info->bl_curve[i + 6],
481 fb_info->bl_curve[i + 7]);
Richard Purdie37ce69a2007-02-10 14:10:33 +0000482 mutex_unlock(&fb_info->bl_curve_mutex);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700483
484 return len;
485}
486#endif
487
Jon Smirl913e7ec2006-04-12 19:43:35 -0400488/* When cmap is added back in it should be a binary attribute
489 * not a text one. Consideration should also be given to converting
490 * fbdev to use configfs instead of sysfs */
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700491static struct device_attribute device_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 __ATTR(bits_per_pixel, S_IRUGO|S_IWUSR, show_bpp, store_bpp),
493 __ATTR(blank, S_IRUGO|S_IWUSR, show_blank, store_blank),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 __ATTR(console, S_IRUGO|S_IWUSR, show_console, store_console),
495 __ATTR(cursor, S_IRUGO|S_IWUSR, show_cursor, store_cursor),
496 __ATTR(mode, S_IRUGO|S_IWUSR, show_mode, store_mode),
497 __ATTR(modes, S_IRUGO|S_IWUSR, show_modes, store_modes),
498 __ATTR(pan, S_IRUGO|S_IWUSR, show_pan, store_pan),
499 __ATTR(virtual_size, S_IRUGO|S_IWUSR, show_virtual, store_virtual),
James Simmons02459ea2005-07-30 23:49:54 +0100500 __ATTR(name, S_IRUGO, show_name, NULL),
James Simmonsc14e2cf2005-10-24 21:46:21 +0100501 __ATTR(stride, S_IRUGO, show_stride, NULL),
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800502 __ATTR(rotate, S_IRUGO|S_IWUSR, show_rotate, store_rotate),
Matthew Garrett30420f82006-01-09 20:53:01 -0800503 __ATTR(state, S_IRUGO|S_IWUSR, show_fbstate, store_fbstate),
Michael Hanselmann5474c122006-06-25 05:47:08 -0700504#ifdef CONFIG_FB_BACKLIGHT
505 __ATTR(bl_curve, S_IRUGO|S_IWUSR, show_bl_curve, store_bl_curve),
506#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507};
508
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700509int fb_init_device(struct fb_info *fb_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Antonino A. Daplas1a6600b2006-10-03 01:14:50 -0700511 int i, error = 0;
512
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700513 dev_set_drvdata(fb_info->dev, fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Antonino A. Daplas1a6600b2006-10-03 01:14:50 -0700515 fb_info->class_flag |= FB_SYSFS_FLAG_ATTR;
516
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700517 for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
518 error = device_create_file(fb_info->dev, &device_attrs[i]);
Antonino A. Daplas1a6600b2006-10-03 01:14:50 -0700519
520 if (error)
521 break;
522 }
523
524 if (error) {
525 while (--i >= 0)
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700526 device_remove_file(fb_info->dev, &device_attrs[i]);
Antonino A. Daplas1a6600b2006-10-03 01:14:50 -0700527 fb_info->class_flag &= ~FB_SYSFS_FLAG_ATTR;
528 }
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return 0;
531}
532
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700533void fb_cleanup_device(struct fb_info *fb_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 unsigned int i;
536
Antonino A. Daplas1a6600b2006-10-03 01:14:50 -0700537 if (fb_info->class_flag & FB_SYSFS_FLAG_ATTR) {
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -0700538 for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
539 device_remove_file(fb_info->dev, &device_attrs[i]);
Antonino A. Daplas1a6600b2006-10-03 01:14:50 -0700540
541 fb_info->class_flag &= ~FB_SYSFS_FLAG_ATTR;
542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Michael Hanselmann5474c122006-06-25 05:47:08 -0700545#ifdef CONFIG_FB_BACKLIGHT
546/* This function generates a linear backlight curve
547 *
548 * 0: off
549 * 1-7: min
550 * 8-127: linear from min to max
551 */
552void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max)
553{
554 unsigned int i, flat, count, range = (max - min);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Richard Purdie37ce69a2007-02-10 14:10:33 +0000556 mutex_lock(&fb_info->bl_curve_mutex);
557
Michael Hanselmann5474c122006-06-25 05:47:08 -0700558 fb_info->bl_curve[0] = off;
559
560 for (flat = 1; flat < (FB_BACKLIGHT_LEVELS / 16); ++flat)
561 fb_info->bl_curve[flat] = min;
562
563 count = FB_BACKLIGHT_LEVELS * 15 / 16;
564 for (i = 0; i < count; ++i)
565 fb_info->bl_curve[flat + i] = min + (range * (i + 1) / count);
Richard Purdie37ce69a2007-02-10 14:10:33 +0000566
567 mutex_unlock(&fb_info->bl_curve_mutex);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700568}
569EXPORT_SYMBOL_GPL(fb_bl_default_curve);
570#endif