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
)
85 kfree(info
->apertures
);
88 EXPORT_SYMBOL(framebuffer_release
);
90 static int activate(struct fb_info
*fb_info
, struct fb_var_screeninfo
*var
)
94 var
->activate
|= FB_ACTIVATE_FORCE
;
96 fb_info
->flags
|= FBINFO_MISC_USEREVENT
;
97 err
= fb_set_var(fb_info
, var
);
98 fb_info
->flags
&= ~FBINFO_MISC_USEREVENT
;
105 static int mode_string(char *buf
, unsigned int offset
,
106 const struct fb_videomode
*mode
)
111 if (mode
->flag
& FB_MODE_IS_DETAILED
)
113 if (mode
->flag
& FB_MODE_IS_VESA
)
115 if (mode
->flag
& FB_MODE_IS_STANDARD
)
118 if (mode
->vmode
& FB_VMODE_INTERLACED
)
120 if (mode
->vmode
& FB_VMODE_DOUBLE
)
123 return snprintf(&buf
[offset
], PAGE_SIZE
- offset
, "%c:%dx%d%c-%d\n",
124 m
, mode
->xres
, mode
->yres
, v
, mode
->refresh
);
127 static ssize_t
store_mode(struct device
*device
, struct device_attribute
*attr
,
128 const char *buf
, size_t count
)
130 struct fb_info
*fb_info
= dev_get_drvdata(device
);
132 struct fb_var_screeninfo var
;
133 struct fb_modelist
*modelist
;
134 struct fb_videomode
*mode
;
135 struct list_head
*pos
;
139 memset(&var
, 0, sizeof(var
));
141 list_for_each(pos
, &fb_info
->modelist
) {
142 modelist
= list_entry(pos
, struct fb_modelist
, list
);
143 mode
= &modelist
->mode
;
144 i
= mode_string(mstr
, 0, mode
);
145 if (strncmp(mstr
, buf
, max(count
, i
)) == 0) {
148 fb_videomode_to_var(&var
, mode
);
149 if ((err
= activate(fb_info
, &var
)))
151 fb_info
->mode
= mode
;
158 static ssize_t
show_mode(struct device
*device
, struct device_attribute
*attr
,
161 struct fb_info
*fb_info
= dev_get_drvdata(device
);
166 return mode_string(buf
, 0, fb_info
->mode
);
169 static ssize_t
store_modes(struct device
*device
,
170 struct device_attribute
*attr
,
171 const char *buf
, size_t count
)
173 struct fb_info
*fb_info
= dev_get_drvdata(device
);
175 int i
= count
/ sizeof(struct fb_videomode
);
177 if (i
* sizeof(struct fb_videomode
) != count
)
181 if (!lock_fb_info(fb_info
)) {
186 list_splice(&fb_info
->modelist
, &old_list
);
187 fb_videomode_to_modelist((const struct fb_videomode
*)buf
, i
,
189 if (fb_new_modelist(fb_info
)) {
190 fb_destroy_modelist(&fb_info
->modelist
);
191 list_splice(&old_list
, &fb_info
->modelist
);
193 fb_destroy_modelist(&old_list
);
195 unlock_fb_info(fb_info
);
201 static ssize_t
show_modes(struct device
*device
, struct device_attribute
*attr
,
204 struct fb_info
*fb_info
= dev_get_drvdata(device
);
206 struct list_head
*pos
;
207 struct fb_modelist
*modelist
;
208 const struct fb_videomode
*mode
;
211 list_for_each(pos
, &fb_info
->modelist
) {
212 modelist
= list_entry(pos
, struct fb_modelist
, list
);
213 mode
= &modelist
->mode
;
214 i
+= mode_string(buf
, i
, mode
);
219 static ssize_t
store_bpp(struct device
*device
, struct device_attribute
*attr
,
220 const char *buf
, size_t count
)
222 struct fb_info
*fb_info
= dev_get_drvdata(device
);
223 struct fb_var_screeninfo var
;
228 var
.bits_per_pixel
= simple_strtoul(buf
, last
, 0);
229 if ((err
= activate(fb_info
, &var
)))
234 static ssize_t
show_bpp(struct device
*device
, struct device_attribute
*attr
,
237 struct fb_info
*fb_info
= dev_get_drvdata(device
);
238 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->var
.bits_per_pixel
);
241 static ssize_t
store_rotate(struct device
*device
,
242 struct device_attribute
*attr
,
243 const char *buf
, size_t count
)
245 struct fb_info
*fb_info
= dev_get_drvdata(device
);
246 struct fb_var_screeninfo var
;
251 var
.rotate
= simple_strtoul(buf
, last
, 0);
253 if ((err
= activate(fb_info
, &var
)))
260 static ssize_t
show_rotate(struct device
*device
,
261 struct device_attribute
*attr
, char *buf
)
263 struct fb_info
*fb_info
= dev_get_drvdata(device
);
265 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->var
.rotate
);
268 static ssize_t
store_virtual(struct device
*device
,
269 struct device_attribute
*attr
,
270 const char *buf
, size_t count
)
272 struct fb_info
*fb_info
= dev_get_drvdata(device
);
273 struct fb_var_screeninfo var
;
278 var
.xres_virtual
= simple_strtoul(buf
, &last
, 0);
280 if (last
- buf
>= count
)
282 var
.yres_virtual
= simple_strtoul(last
, &last
, 0);
284 if ((err
= activate(fb_info
, &var
)))
289 static ssize_t
show_virtual(struct device
*device
,
290 struct device_attribute
*attr
, char *buf
)
292 struct fb_info
*fb_info
= dev_get_drvdata(device
);
293 return snprintf(buf
, PAGE_SIZE
, "%d,%d\n", fb_info
->var
.xres_virtual
,
294 fb_info
->var
.yres_virtual
);
297 static ssize_t
show_stride(struct device
*device
,
298 struct device_attribute
*attr
, char *buf
)
300 struct fb_info
*fb_info
= dev_get_drvdata(device
);
301 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->fix
.line_length
);
304 static ssize_t
store_blank(struct device
*device
,
305 struct device_attribute
*attr
,
306 const char *buf
, size_t count
)
308 struct fb_info
*fb_info
= dev_get_drvdata(device
);
313 fb_info
->flags
|= FBINFO_MISC_USEREVENT
;
314 err
= fb_blank(fb_info
, simple_strtoul(buf
, &last
, 0));
315 fb_info
->flags
&= ~FBINFO_MISC_USEREVENT
;
322 static ssize_t
show_blank(struct device
*device
,
323 struct device_attribute
*attr
, char *buf
)
325 // struct fb_info *fb_info = dev_get_drvdata(device);
329 static ssize_t
store_console(struct device
*device
,
330 struct device_attribute
*attr
,
331 const char *buf
, size_t count
)
333 // struct fb_info *fb_info = dev_get_drvdata(device);
337 static ssize_t
show_console(struct device
*device
,
338 struct device_attribute
*attr
, char *buf
)
340 // struct fb_info *fb_info = dev_get_drvdata(device);
344 static ssize_t
store_cursor(struct device
*device
,
345 struct device_attribute
*attr
,
346 const char *buf
, size_t count
)
348 // struct fb_info *fb_info = dev_get_drvdata(device);
352 static ssize_t
show_cursor(struct device
*device
,
353 struct device_attribute
*attr
, char *buf
)
355 // struct fb_info *fb_info = dev_get_drvdata(device);
359 static ssize_t
store_pan(struct device
*device
,
360 struct device_attribute
*attr
,
361 const char *buf
, size_t count
)
363 struct fb_info
*fb_info
= dev_get_drvdata(device
);
364 struct fb_var_screeninfo var
;
369 var
.xoffset
= simple_strtoul(buf
, &last
, 0);
371 if (last
- buf
>= count
)
373 var
.yoffset
= simple_strtoul(last
, &last
, 0);
376 err
= fb_pan_display(fb_info
, &var
);
384 static ssize_t
show_pan(struct device
*device
,
385 struct device_attribute
*attr
, char *buf
)
387 struct fb_info
*fb_info
= dev_get_drvdata(device
);
388 return snprintf(buf
, PAGE_SIZE
, "%d,%d\n", fb_info
->var
.xoffset
,
389 fb_info
->var
.yoffset
);
392 static ssize_t
show_name(struct device
*device
,
393 struct device_attribute
*attr
, char *buf
)
395 struct fb_info
*fb_info
= dev_get_drvdata(device
);
397 return snprintf(buf
, PAGE_SIZE
, "%s\n", fb_info
->fix
.id
);
400 static ssize_t
store_fbstate(struct device
*device
,
401 struct device_attribute
*attr
,
402 const char *buf
, size_t count
)
404 struct fb_info
*fb_info
= dev_get_drvdata(device
);
408 state
= simple_strtoul(buf
, &last
, 0);
411 if (!lock_fb_info(fb_info
)) {
416 fb_set_suspend(fb_info
, (int)state
);
418 unlock_fb_info(fb_info
);
424 static ssize_t
show_fbstate(struct device
*device
,
425 struct device_attribute
*attr
, char *buf
)
427 struct fb_info
*fb_info
= dev_get_drvdata(device
);
428 return snprintf(buf
, PAGE_SIZE
, "%d\n", fb_info
->state
);
431 #ifdef CONFIG_FB_BACKLIGHT
432 static ssize_t
store_bl_curve(struct device
*device
,
433 struct device_attribute
*attr
,
434 const char *buf
, size_t count
)
436 struct fb_info
*fb_info
= dev_get_drvdata(device
);
437 u8 tmp_curve
[FB_BACKLIGHT_LEVELS
];
440 /* Some drivers don't use framebuffer_alloc(), but those also
441 * don't have backlights.
443 if (!fb_info
|| !fb_info
->bl_dev
)
446 if (count
!= (FB_BACKLIGHT_LEVELS
/ 8 * 24))
449 for (i
= 0; i
< (FB_BACKLIGHT_LEVELS
/ 8); ++i
)
450 if (sscanf(&buf
[i
* 24],
451 "%2hhx %2hhx %2hhx %2hhx %2hhx %2hhx %2hhx %2hhx\n",
452 &tmp_curve
[i
* 8 + 0],
453 &tmp_curve
[i
* 8 + 1],
454 &tmp_curve
[i
* 8 + 2],
455 &tmp_curve
[i
* 8 + 3],
456 &tmp_curve
[i
* 8 + 4],
457 &tmp_curve
[i
* 8 + 5],
458 &tmp_curve
[i
* 8 + 6],
459 &tmp_curve
[i
* 8 + 7]) != 8)
462 /* If there has been an error in the input data, we won't
465 mutex_lock(&fb_info
->bl_curve_mutex
);
466 for (i
= 0; i
< FB_BACKLIGHT_LEVELS
; ++i
)
467 fb_info
->bl_curve
[i
] = tmp_curve
[i
];
468 mutex_unlock(&fb_info
->bl_curve_mutex
);
473 static ssize_t
show_bl_curve(struct device
*device
,
474 struct device_attribute
*attr
, char *buf
)
476 struct fb_info
*fb_info
= dev_get_drvdata(device
);
480 /* Some drivers don't use framebuffer_alloc(), but those also
481 * don't have backlights.
483 if (!fb_info
|| !fb_info
->bl_dev
)
486 mutex_lock(&fb_info
->bl_curve_mutex
);
487 for (i
= 0; i
< FB_BACKLIGHT_LEVELS
; i
+= 8)
488 len
+= snprintf(&buf
[len
], PAGE_SIZE
,
489 "%02x %02x %02x %02x %02x %02x %02x %02x\n",
490 fb_info
->bl_curve
[i
+ 0],
491 fb_info
->bl_curve
[i
+ 1],
492 fb_info
->bl_curve
[i
+ 2],
493 fb_info
->bl_curve
[i
+ 3],
494 fb_info
->bl_curve
[i
+ 4],
495 fb_info
->bl_curve
[i
+ 5],
496 fb_info
->bl_curve
[i
+ 6],
497 fb_info
->bl_curve
[i
+ 7]);
498 mutex_unlock(&fb_info
->bl_curve_mutex
);
504 /* When cmap is added back in it should be a binary attribute
505 * not a text one. Consideration should also be given to converting
506 * fbdev to use configfs instead of sysfs */
507 static struct device_attribute device_attrs
[] = {
508 __ATTR(bits_per_pixel
, S_IRUGO
|S_IWUSR
, show_bpp
, store_bpp
),
509 __ATTR(blank
, S_IRUGO
|S_IWUSR
, show_blank
, store_blank
),
510 __ATTR(console
, S_IRUGO
|S_IWUSR
, show_console
, store_console
),
511 __ATTR(cursor
, S_IRUGO
|S_IWUSR
, show_cursor
, store_cursor
),
512 __ATTR(mode
, S_IRUGO
|S_IWUSR
, show_mode
, store_mode
),
513 __ATTR(modes
, S_IRUGO
|S_IWUSR
, show_modes
, store_modes
),
514 __ATTR(pan
, S_IRUGO
|S_IWUSR
, show_pan
, store_pan
),
515 __ATTR(virtual_size
, S_IRUGO
|S_IWUSR
, show_virtual
, store_virtual
),
516 __ATTR(name
, S_IRUGO
, show_name
, NULL
),
517 __ATTR(stride
, S_IRUGO
, show_stride
, NULL
),
518 __ATTR(rotate
, S_IRUGO
|S_IWUSR
, show_rotate
, store_rotate
),
519 __ATTR(state
, S_IRUGO
|S_IWUSR
, show_fbstate
, store_fbstate
),
520 #ifdef CONFIG_FB_BACKLIGHT
521 __ATTR(bl_curve
, S_IRUGO
|S_IWUSR
, show_bl_curve
, store_bl_curve
),
525 int fb_init_device(struct fb_info
*fb_info
)
529 dev_set_drvdata(fb_info
->dev
, fb_info
);
531 fb_info
->class_flag
|= FB_SYSFS_FLAG_ATTR
;
533 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++) {
534 error
= device_create_file(fb_info
->dev
, &device_attrs
[i
]);
542 device_remove_file(fb_info
->dev
, &device_attrs
[i
]);
543 fb_info
->class_flag
&= ~FB_SYSFS_FLAG_ATTR
;
549 void fb_cleanup_device(struct fb_info
*fb_info
)
553 if (fb_info
->class_flag
& FB_SYSFS_FLAG_ATTR
) {
554 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++)
555 device_remove_file(fb_info
->dev
, &device_attrs
[i
]);
557 fb_info
->class_flag
&= ~FB_SYSFS_FLAG_ATTR
;
561 #ifdef CONFIG_FB_BACKLIGHT
562 /* This function generates a linear backlight curve
566 * 8-127: linear from min to max
568 void fb_bl_default_curve(struct fb_info
*fb_info
, u8 off
, u8 min
, u8 max
)
570 unsigned int i
, flat
, count
, range
= (max
- min
);
572 mutex_lock(&fb_info
->bl_curve_mutex
);
574 fb_info
->bl_curve
[0] = off
;
576 for (flat
= 1; flat
< (FB_BACKLIGHT_LEVELS
/ 16); ++flat
)
577 fb_info
->bl_curve
[flat
] = min
;
579 count
= FB_BACKLIGHT_LEVELS
* 15 / 16;
580 for (i
= 0; i
< count
; ++i
)
581 fb_info
->bl_curve
[flat
+ i
] = min
+ (range
* (i
+ 1) / count
);
583 mutex_unlock(&fb_info
->bl_curve_mutex
);
585 EXPORT_SYMBOL_GPL(fb_bl_default_curve
);