2 * fbsysfs.c - framebuffer device class and attributes
4 * Copyright (c) 2004 James Simmons <jsimmons@infradead.org>
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.
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.
18 #include <linux/kernel.h>
19 #include <linux/slab.h>
21 #include <linux/console.h>
22 #include <linux/module.h>
24 #define FB_SYSFS_FLAG_ATTR 1
27 * framebuffer_alloc - creates a new frame buffer info structure
29 * @size: size of driver private data, can be zero
30 * @dev: pointer to the device for this fb, this can be NULL
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).
36 * Returns the new structure, or NULL if an error occurred.
39 struct fb_info
*framebuffer_alloc(size_t size
, struct device
*dev
)
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
);
48 fb_info_size
+= PADDING
;
50 p
= kzalloc(fb_info_size
+ size
, GFP_KERNEL
);
55 info
= (struct fb_info
*) p
;
58 info
->par
= p
+ fb_info_size
;
62 #ifdef CONFIG_FB_BACKLIGHT
63 mutex_init(&info
->bl_curve_mutex
);
70 EXPORT_SYMBOL(framebuffer_alloc
);
73 * framebuffer_release - marks the structure available for freeing
75 * @info: frame buffer info structure
77 * Drop the reference count of the device embedded in the
78 * framebuffer info structure.
81 void framebuffer_release(struct fb_info
*info
)
83 kfree(info
->apertures
);
86 EXPORT_SYMBOL(framebuffer_release
);
88 static int activate(struct fb_info
*fb_info
, struct fb_var_screeninfo
*var
)
92 var
->activate
|= FB_ACTIVATE_FORCE
;
94 fb_info
->flags
|= FBINFO_MISC_USEREVENT
;
95 err
= fb_set_var(fb_info
, var
);
96 fb_info
->flags
&= ~FBINFO_MISC_USEREVENT
;
103 static int mode_string(char *buf
, unsigned int offset
,
104 const struct fb_videomode
*mode
)
109 if (mode
->flag
& FB_MODE_IS_DETAILED
)
111 if (mode
->flag
& FB_MODE_IS_VESA
)
113 if (mode
->flag
& FB_MODE_IS_STANDARD
)
116 if (mode
->vmode
& FB_VMODE_INTERLACED
)
118 if (mode
->vmode
& FB_VMODE_DOUBLE
)
121 return snprintf(&buf
[offset
], PAGE_SIZE
- offset
, "%c:%dx%d%c-%d\n",
122 m
, mode
->xres
, mode
->yres
, v
, mode
->refresh
);
125 static ssize_t
store_mode(struct device
*device
, struct device_attribute
*attr
,
126 const char *buf
, size_t count
)
128 struct fb_info
*fb_info
= dev_get_drvdata(device
);
130 struct fb_var_screeninfo var
;
131 struct fb_modelist
*modelist
;
132 struct fb_videomode
*mode
;
133 struct list_head
*pos
;
137 memset(&var
, 0, sizeof(var
));
139 list_for_each(pos
, &fb_info
->modelist
) {
140 modelist
= list_entry(pos
, struct fb_modelist
, list
);
141 mode
= &modelist
->mode
;
142 i
= mode_string(mstr
, 0, mode
);
143 if (strncmp(mstr
, buf
, max(count
, i
)) == 0) {
146 fb_videomode_to_var(&var
, mode
);
147 if ((err
= activate(fb_info
, &var
)))
149 fb_info
->mode
= mode
;
156 static ssize_t
show_mode(struct device
*device
, struct device_attribute
*attr
,
159 struct fb_info
*fb_info
= dev_get_drvdata(device
);
164 return mode_string(buf
, 0, fb_info
->mode
);
167 static ssize_t
store_modes(struct device
*device
,
168 struct device_attribute
*attr
,
169 const char *buf
, size_t count
)
171 struct fb_info
*fb_info
= dev_get_drvdata(device
);
173 int i
= count
/ sizeof(struct fb_videomode
);
175 if (i
* sizeof(struct fb_videomode
) != count
)
178 if (!lock_fb_info(fb_info
))
181 list_splice(&fb_info
->modelist
, &old_list
);
182 fb_videomode_to_modelist((const struct fb_videomode
*)buf
, i
,
184 if (fb_new_modelist(fb_info
)) {
185 fb_destroy_modelist(&fb_info
->modelist
);
186 list_splice(&old_list
, &fb_info
->modelist
);
188 fb_destroy_modelist(&old_list
);
191 unlock_fb_info(fb_info
);
196 static ssize_t
show_modes(struct device
*device
, struct device_attribute
*attr
,
199 struct fb_info
*fb_info
= dev_get_drvdata(device
);
201 struct list_head
*pos
;
202 struct fb_modelist
*modelist
;
203 const struct fb_videomode
*mode
;
206 list_for_each(pos
, &fb_info
->modelist
) {
207 modelist
= list_entry(pos
, struct fb_modelist
, list
);
208 mode
= &modelist
->mode
;
209 i
+= mode_string(buf
, i
, mode
);
214 static ssize_t
store_bpp(struct device
*device
, struct device_attribute
*attr
,
215 const char *buf
, size_t count
)
217 struct fb_info
*fb_info
= dev_get_drvdata(device
);
218 struct fb_var_screeninfo var
;
223 var
.bits_per_pixel
= simple_strtoul(buf
, last
, 0);
224 if ((err
= activate(fb_info
, &var
)))
229 static ssize_t
show_bpp(struct device
*device
, struct device_attribute
*attr
,
232 struct fb_info
*fb_info
= dev_get_drvdata(device
);
233 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->var
.bits_per_pixel
);
236 static ssize_t
store_rotate(struct device
*device
,
237 struct device_attribute
*attr
,
238 const char *buf
, size_t count
)
240 struct fb_info
*fb_info
= dev_get_drvdata(device
);
241 struct fb_var_screeninfo var
;
246 var
.rotate
= simple_strtoul(buf
, last
, 0);
248 if ((err
= activate(fb_info
, &var
)))
255 static ssize_t
show_rotate(struct device
*device
,
256 struct device_attribute
*attr
, char *buf
)
258 struct fb_info
*fb_info
= dev_get_drvdata(device
);
260 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->var
.rotate
);
263 static ssize_t
store_virtual(struct device
*device
,
264 struct device_attribute
*attr
,
265 const char *buf
, size_t count
)
267 struct fb_info
*fb_info
= dev_get_drvdata(device
);
268 struct fb_var_screeninfo var
;
273 var
.xres_virtual
= simple_strtoul(buf
, &last
, 0);
275 if (last
- buf
>= count
)
277 var
.yres_virtual
= simple_strtoul(last
, &last
, 0);
279 if ((err
= activate(fb_info
, &var
)))
284 static ssize_t
show_virtual(struct device
*device
,
285 struct device_attribute
*attr
, char *buf
)
287 struct fb_info
*fb_info
= dev_get_drvdata(device
);
288 return snprintf(buf
, PAGE_SIZE
, "%d,%d\n", fb_info
->var
.xres_virtual
,
289 fb_info
->var
.yres_virtual
);
292 static ssize_t
show_stride(struct device
*device
,
293 struct device_attribute
*attr
, char *buf
)
295 struct fb_info
*fb_info
= dev_get_drvdata(device
);
296 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->fix
.line_length
);
299 static ssize_t
store_blank(struct device
*device
,
300 struct device_attribute
*attr
,
301 const char *buf
, size_t count
)
303 struct fb_info
*fb_info
= dev_get_drvdata(device
);
308 fb_info
->flags
|= FBINFO_MISC_USEREVENT
;
309 err
= fb_blank(fb_info
, simple_strtoul(buf
, &last
, 0));
310 fb_info
->flags
&= ~FBINFO_MISC_USEREVENT
;
317 static ssize_t
show_blank(struct device
*device
,
318 struct device_attribute
*attr
, char *buf
)
320 // struct fb_info *fb_info = dev_get_drvdata(device);
324 static ssize_t
store_console(struct device
*device
,
325 struct device_attribute
*attr
,
326 const char *buf
, size_t count
)
328 // struct fb_info *fb_info = dev_get_drvdata(device);
332 static ssize_t
show_console(struct device
*device
,
333 struct device_attribute
*attr
, char *buf
)
335 // struct fb_info *fb_info = dev_get_drvdata(device);
339 static ssize_t
store_cursor(struct device
*device
,
340 struct device_attribute
*attr
,
341 const char *buf
, size_t count
)
343 // struct fb_info *fb_info = dev_get_drvdata(device);
347 static ssize_t
show_cursor(struct device
*device
,
348 struct device_attribute
*attr
, char *buf
)
350 // struct fb_info *fb_info = dev_get_drvdata(device);
354 static ssize_t
store_pan(struct device
*device
,
355 struct device_attribute
*attr
,
356 const char *buf
, size_t count
)
358 struct fb_info
*fb_info
= dev_get_drvdata(device
);
359 struct fb_var_screeninfo var
;
364 var
.xoffset
= simple_strtoul(buf
, &last
, 0);
366 if (last
- buf
>= count
)
368 var
.yoffset
= simple_strtoul(last
, &last
, 0);
371 err
= fb_pan_display(fb_info
, &var
);
379 static ssize_t
show_pan(struct device
*device
,
380 struct device_attribute
*attr
, char *buf
)
382 struct fb_info
*fb_info
= dev_get_drvdata(device
);
383 return snprintf(buf
, PAGE_SIZE
, "%d,%d\n", fb_info
->var
.xoffset
,
384 fb_info
->var
.yoffset
);
387 static ssize_t
show_name(struct device
*device
,
388 struct device_attribute
*attr
, char *buf
)
390 struct fb_info
*fb_info
= dev_get_drvdata(device
);
392 return snprintf(buf
, PAGE_SIZE
, "%s\n", fb_info
->fix
.id
);
395 static ssize_t
store_fbstate(struct device
*device
,
396 struct device_attribute
*attr
,
397 const char *buf
, size_t count
)
399 struct fb_info
*fb_info
= dev_get_drvdata(device
);
403 state
= simple_strtoul(buf
, &last
, 0);
405 if (!lock_fb_info(fb_info
))
408 fb_set_suspend(fb_info
, (int)state
);
410 unlock_fb_info(fb_info
);
415 static ssize_t
show_fbstate(struct device
*device
,
416 struct device_attribute
*attr
, char *buf
)
418 struct fb_info
*fb_info
= dev_get_drvdata(device
);
419 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->state
);
422 #ifdef CONFIG_FB_BACKLIGHT
423 static ssize_t
store_bl_curve(struct device
*device
,
424 struct device_attribute
*attr
,
425 const char *buf
, size_t count
)
427 struct fb_info
*fb_info
= dev_get_drvdata(device
);
428 u8 tmp_curve
[FB_BACKLIGHT_LEVELS
];
431 /* Some drivers don't use framebuffer_alloc(), but those also
432 * don't have backlights.
434 if (!fb_info
|| !fb_info
->bl_dev
)
437 if (count
!= (FB_BACKLIGHT_LEVELS
/ 8 * 24))
440 for (i
= 0; i
< (FB_BACKLIGHT_LEVELS
/ 8); ++i
)
441 if (sscanf(&buf
[i
* 24],
442 "%2hhx %2hhx %2hhx %2hhx %2hhx %2hhx %2hhx %2hhx\n",
443 &tmp_curve
[i
* 8 + 0],
444 &tmp_curve
[i
* 8 + 1],
445 &tmp_curve
[i
* 8 + 2],
446 &tmp_curve
[i
* 8 + 3],
447 &tmp_curve
[i
* 8 + 4],
448 &tmp_curve
[i
* 8 + 5],
449 &tmp_curve
[i
* 8 + 6],
450 &tmp_curve
[i
* 8 + 7]) != 8)
453 /* If there has been an error in the input data, we won't
456 mutex_lock(&fb_info
->bl_curve_mutex
);
457 for (i
= 0; i
< FB_BACKLIGHT_LEVELS
; ++i
)
458 fb_info
->bl_curve
[i
] = tmp_curve
[i
];
459 mutex_unlock(&fb_info
->bl_curve_mutex
);
464 static ssize_t
show_bl_curve(struct device
*device
,
465 struct device_attribute
*attr
, char *buf
)
467 struct fb_info
*fb_info
= dev_get_drvdata(device
);
471 /* Some drivers don't use framebuffer_alloc(), but those also
472 * don't have backlights.
474 if (!fb_info
|| !fb_info
->bl_dev
)
477 mutex_lock(&fb_info
->bl_curve_mutex
);
478 for (i
= 0; i
< FB_BACKLIGHT_LEVELS
; i
+= 8)
479 len
+= snprintf(&buf
[len
], PAGE_SIZE
,
480 "%02x %02x %02x %02x %02x %02x %02x %02x\n",
481 fb_info
->bl_curve
[i
+ 0],
482 fb_info
->bl_curve
[i
+ 1],
483 fb_info
->bl_curve
[i
+ 2],
484 fb_info
->bl_curve
[i
+ 3],
485 fb_info
->bl_curve
[i
+ 4],
486 fb_info
->bl_curve
[i
+ 5],
487 fb_info
->bl_curve
[i
+ 6],
488 fb_info
->bl_curve
[i
+ 7]);
489 mutex_unlock(&fb_info
->bl_curve_mutex
);
495 /* When cmap is added back in it should be a binary attribute
496 * not a text one. Consideration should also be given to converting
497 * fbdev to use configfs instead of sysfs */
498 static struct device_attribute device_attrs
[] = {
499 __ATTR(bits_per_pixel
, S_IRUGO
|S_IWUSR
, show_bpp
, store_bpp
),
500 __ATTR(blank
, S_IRUGO
|S_IWUSR
, show_blank
, store_blank
),
501 __ATTR(console
, S_IRUGO
|S_IWUSR
, show_console
, store_console
),
502 __ATTR(cursor
, S_IRUGO
|S_IWUSR
, show_cursor
, store_cursor
),
503 __ATTR(mode
, S_IRUGO
|S_IWUSR
, show_mode
, store_mode
),
504 __ATTR(modes
, S_IRUGO
|S_IWUSR
, show_modes
, store_modes
),
505 __ATTR(pan
, S_IRUGO
|S_IWUSR
, show_pan
, store_pan
),
506 __ATTR(virtual_size
, S_IRUGO
|S_IWUSR
, show_virtual
, store_virtual
),
507 __ATTR(name
, S_IRUGO
, show_name
, NULL
),
508 __ATTR(stride
, S_IRUGO
, show_stride
, NULL
),
509 __ATTR(rotate
, S_IRUGO
|S_IWUSR
, show_rotate
, store_rotate
),
510 __ATTR(state
, S_IRUGO
|S_IWUSR
, show_fbstate
, store_fbstate
),
511 #ifdef CONFIG_FB_BACKLIGHT
512 __ATTR(bl_curve
, S_IRUGO
|S_IWUSR
, show_bl_curve
, store_bl_curve
),
516 int fb_init_device(struct fb_info
*fb_info
)
520 dev_set_drvdata(fb_info
->dev
, fb_info
);
522 fb_info
->class_flag
|= FB_SYSFS_FLAG_ATTR
;
524 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++) {
525 error
= device_create_file(fb_info
->dev
, &device_attrs
[i
]);
533 device_remove_file(fb_info
->dev
, &device_attrs
[i
]);
534 fb_info
->class_flag
&= ~FB_SYSFS_FLAG_ATTR
;
540 void fb_cleanup_device(struct fb_info
*fb_info
)
544 if (fb_info
->class_flag
& FB_SYSFS_FLAG_ATTR
) {
545 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++)
546 device_remove_file(fb_info
->dev
, &device_attrs
[i
]);
548 fb_info
->class_flag
&= ~FB_SYSFS_FLAG_ATTR
;
552 #ifdef CONFIG_FB_BACKLIGHT
553 /* This function generates a linear backlight curve
557 * 8-127: linear from min to max
559 void fb_bl_default_curve(struct fb_info
*fb_info
, u8 off
, u8 min
, u8 max
)
561 unsigned int i
, flat
, count
, range
= (max
- min
);
563 mutex_lock(&fb_info
->bl_curve_mutex
);
565 fb_info
->bl_curve
[0] = off
;
567 for (flat
= 1; flat
< (FB_BACKLIGHT_LEVELS
/ 16); ++flat
)
568 fb_info
->bl_curve
[flat
] = min
;
570 count
= FB_BACKLIGHT_LEVELS
* 15 / 16;
571 for (i
= 0; i
< count
; ++i
)
572 fb_info
->bl_curve
[flat
+ i
] = min
+ (range
* (i
+ 1) / count
);
574 mutex_unlock(&fb_info
->bl_curve_mutex
);
576 EXPORT_SYMBOL_GPL(fb_bl_default_curve
);