2019-05-19 15:08:20 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2005-04-17 02:20:36 +04:00
/*
* Backlight Lowlevel Control Abstraction
*
* Copyright ( C ) 2003 , 2004 Hewlett - Packard Company
*
*/
2012-05-30 02:07:16 +04:00
# define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2005-04-17 02:20:36 +04:00
# include <linux/module.h>
# include <linux/init.h>
# include <linux/device.h>
# include <linux/backlight.h>
# include <linux/notifier.h>
# include <linux/ctype.h>
# include <linux/err.h>
# include <linux/fb.h>
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 11:04:11 +03:00
# include <linux/slab.h>
2005-04-17 02:20:36 +04:00
2007-02-10 18:04:08 +03:00
# ifdef CONFIG_PMAC_BACKLIGHT
# include <asm/backlight.h>
# endif
2006-12-08 13:40:47 +03:00
2020-07-19 11:07:34 +03:00
/**
* DOC : overview
*
* The backlight core supports implementing backlight drivers .
*
* A backlight driver registers a driver using
* devm_backlight_device_register ( ) . The properties of the backlight
* driver such as type and max_brightness must be specified .
* When the core detect changes in for example brightness or power state
* the update_status ( ) operation is called . The backlight driver shall
* implement this operation and use it to adjust backlight .
*
* Several sysfs attributes are provided by the backlight core : :
*
* - brightness R / W , set the requested brightness level
* - actual_brightness RO , the brightness level used by the HW
* - max_brightness RO , the maximum brightness level supported
*
* See Documentation / ABI / stable / sysfs - class - backlight for the full list .
*
* The backlight can be adjusted using the sysfs interface , and
* the backlight driver may also support adjusting backlight using
* a hot - key or some other platform or firmware specific way .
*
* The driver must implement the get_brightness ( ) operation if
* the HW do not support all the levels that can be specified in
* brightness , thus providing user - space access to the actual level
* via the actual_brightness attribute .
*
* When the backlight changes this is reported to user - space using
* an uevent connected to the actual_brightness attribute .
* When brightness is set by platform specific means , for example
* a hot - key to adjust backlight , the driver must notify the backlight
* core that brightness has changed using backlight_force_update ( ) .
*
* The backlight driver core receives notifications from fbdev and
* if the event is FB_EVENT_BLANK and if the value of blank , from the
* FBIOBLANK ioctrl , results in a change in the backlight state the
* update_status ( ) operation is called .
*/
2013-10-11 17:27:43 +04:00
static struct list_head backlight_dev_list ;
static struct mutex backlight_dev_list_mutex ;
2014-05-21 17:39:54 +04:00
static struct blocking_notifier_head backlight_notifier ;
2013-10-11 17:27:43 +04:00
2011-09-10 22:13:01 +04:00
static const char * const backlight_types [ ] = {
2011-03-23 02:30:21 +03:00
[ BACKLIGHT_RAW ] = " raw " ,
[ BACKLIGHT_PLATFORM ] = " platform " ,
[ BACKLIGHT_FIRMWARE ] = " firmware " ,
} ;
2019-07-09 22:00:05 +03:00
static const char * const backlight_scale_types [ ] = {
[ BACKLIGHT_SCALE_UNKNOWN ] = " unknown " ,
[ BACKLIGHT_SCALE_LINEAR ] = " linear " ,
[ BACKLIGHT_SCALE_NON_LINEAR ] = " non-linear " ,
} ;
2023-07-19 11:15:37 +03:00
# if defined(CONFIG_FB_CORE) || (defined(CONFIG_FB_CORE_MODULE) && \
defined ( CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE ) )
2020-07-19 11:07:34 +03:00
/*
* fb_notifier_callback
*
* This callback gets called when something important happens inside a
* framebuffer driver . The backlight core only cares about FB_BLANK_UNBLANK
* which is reported to the driver using backlight_update_status ( )
* as a state change .
*
* There may be several fbdev ' s connected to the backlight device ,
* in which case they are kept track of . A state change is only reported
* if there is a change in backlight for the specified fbdev .
2006-12-08 13:40:47 +03:00
*/
static int fb_notifier_callback ( struct notifier_block * self ,
unsigned long event , void * data )
{
struct backlight_device * bd ;
struct fb_event * evdata = data ;
2014-04-04 01:48:54 +04:00
int node = evdata - > info - > node ;
int fb_blank = 0 ;
2006-12-08 13:40:47 +03:00
/* If we aren't interested in this event, skip it immediately ... */
2019-05-28 12:02:55 +03:00
if ( event ! = FB_EVENT_BLANK )
2006-12-08 13:40:47 +03:00
return 0 ;
bd = container_of ( self , struct backlight_device , fb_notif ) ;
2007-02-11 02:07:48 +03:00
mutex_lock ( & bd - > ops_lock ) ;
2020-07-19 11:07:25 +03:00
if ( ! bd - > ops )
goto out ;
if ( bd - > ops - > check_fb & & ! bd - > ops - > check_fb ( bd , evdata - > info ) )
goto out ;
fb_blank = * ( int * ) evdata - > data ;
if ( fb_blank = = FB_BLANK_UNBLANK & & ! bd - > fb_bl_on [ node ] ) {
bd - > fb_bl_on [ node ] = true ;
if ( ! bd - > use_count + + ) {
bd - > props . state & = ~ BL_CORE_FBBLANK ;
bd - > props . fb_blank = FB_BLANK_UNBLANK ;
backlight_update_status ( bd ) ;
}
} else if ( fb_blank ! = FB_BLANK_UNBLANK & & bd - > fb_bl_on [ node ] ) {
bd - > fb_bl_on [ node ] = false ;
if ( ! ( - - bd - > use_count ) ) {
bd - > props . state | = BL_CORE_FBBLANK ;
bd - > props . fb_blank = fb_blank ;
backlight_update_status ( bd ) ;
2006-12-08 13:40:47 +03:00
}
2020-07-19 11:07:25 +03:00
}
out :
2007-02-11 02:07:48 +03:00
mutex_unlock ( & bd - > ops_lock ) ;
2006-12-08 13:40:47 +03:00
return 0 ;
}
static int backlight_register_fb ( struct backlight_device * bd )
{
memset ( & bd - > fb_notif , 0 , sizeof ( bd - > fb_notif ) ) ;
bd - > fb_notif . notifier_call = fb_notifier_callback ;
return fb_register_client ( & bd - > fb_notif ) ;
}
static void backlight_unregister_fb ( struct backlight_device * bd )
{
fb_unregister_client ( & bd - > fb_notif ) ;
}
# else
static inline int backlight_register_fb ( struct backlight_device * bd )
{
return 0 ;
}
static inline void backlight_unregister_fb ( struct backlight_device * bd )
{
}
2023-07-19 11:15:37 +03:00
# endif /* CONFIG_FB_CORE */
2006-12-08 13:40:47 +03:00
2009-07-14 20:06:02 +04:00
static void backlight_generate_event ( struct backlight_device * bd ,
enum backlight_update_reason reason )
{
char * envp [ 2 ] ;
switch ( reason ) {
case BACKLIGHT_UPDATE_SYSFS :
envp [ 0 ] = " SOURCE=sysfs " ;
break ;
case BACKLIGHT_UPDATE_HOTKEY :
envp [ 0 ] = " SOURCE=hotkey " ;
break ;
default :
envp [ 0 ] = " SOURCE=unknown " ;
break ;
}
envp [ 1 ] = NULL ;
kobject_uevent_env ( & bd - > dev . kobj , KOBJ_CHANGE , envp ) ;
2009-09-20 21:44:47 +04:00
sysfs_notify ( & bd - > dev . kobj , NULL , " actual_brightness " ) ;
2009-07-14 20:06:02 +04:00
}
2013-07-25 02:05:30 +04:00
static ssize_t bl_power_show ( struct device * dev , struct device_attribute * attr ,
char * buf )
2005-04-17 02:20:36 +04:00
{
2007-07-09 15:17:24 +04:00
struct backlight_device * bd = to_backlight_device ( dev ) ;
2005-04-17 02:20:36 +04:00
2007-02-11 02:07:48 +03:00
return sprintf ( buf , " %d \n " , bd - > props . power ) ;
2005-04-17 02:20:36 +04:00
}
2013-07-25 02:05:30 +04:00
static ssize_t bl_power_store ( struct device * dev , struct device_attribute * attr ,
const char * buf , size_t count )
2005-04-17 02:20:36 +04:00
{
2008-12-03 11:43:48 +03:00
int rc ;
2007-07-09 15:17:24 +04:00
struct backlight_device * bd = to_backlight_device ( dev ) ;
2017-05-17 23:55:07 +03:00
unsigned long power , old_power ;
2005-04-17 02:20:36 +04:00
2012-01-11 03:09:19 +04:00
rc = kstrtoul ( buf , 0 , & power ) ;
2008-12-03 11:43:48 +03:00
if ( rc )
return rc ;
2005-04-17 02:20:36 +04:00
2008-12-03 11:43:48 +03:00
rc = - ENXIO ;
2007-02-11 02:07:48 +03:00
mutex_lock ( & bd - > ops_lock ) ;
if ( bd - > ops ) {
2012-05-30 02:07:16 +04:00
pr_debug ( " set power to %lu \n " , power ) ;
2008-01-14 02:01:13 +03:00
if ( bd - > props . power ! = power ) {
2017-05-17 23:55:07 +03:00
old_power = bd - > props . power ;
2008-01-14 02:01:13 +03:00
bd - > props . power = power ;
2017-05-17 23:55:07 +03:00
rc = backlight_update_status ( bd ) ;
if ( rc )
bd - > props . power = old_power ;
else
rc = count ;
} else {
rc = count ;
2008-01-14 02:01:13 +03:00
}
2006-03-31 14:31:49 +04:00
}
2007-02-11 02:07:48 +03:00
mutex_unlock ( & bd - > ops_lock ) ;
2005-04-17 02:20:36 +04:00
return rc ;
}
2013-07-25 02:05:30 +04:00
static DEVICE_ATTR_RW ( bl_power ) ;
2005-04-17 02:20:36 +04:00
2013-07-25 02:05:30 +04:00
static ssize_t brightness_show ( struct device * dev ,
2007-07-09 15:17:24 +04:00
struct device_attribute * attr , char * buf )
2005-04-17 02:20:36 +04:00
{
2007-07-09 15:17:24 +04:00
struct backlight_device * bd = to_backlight_device ( dev ) ;
2005-04-17 02:20:36 +04:00
2007-02-11 02:07:48 +03:00
return sprintf ( buf , " %d \n " , bd - > props . brightness ) ;
2005-04-17 02:20:36 +04:00
}
2016-04-27 15:45:02 +03:00
int backlight_device_set_brightness ( struct backlight_device * bd ,
unsigned long brightness )
2005-04-17 02:20:36 +04:00
{
2016-04-27 15:45:02 +03:00
int rc = - ENXIO ;
2005-04-17 02:20:36 +04:00
2007-02-11 02:07:48 +03:00
mutex_lock ( & bd - > ops_lock ) ;
if ( bd - > ops ) {
if ( brightness > bd - > props . max_brightness )
2006-03-31 14:31:49 +04:00
rc = - EINVAL ;
else {
2012-05-30 02:07:16 +04:00
pr_debug ( " set brightness to %lu \n " , brightness ) ;
2009-01-08 17:11:30 +03:00
bd - > props . brightness = brightness ;
2017-05-17 23:55:07 +03:00
rc = backlight_update_status ( bd ) ;
2006-03-31 14:31:49 +04:00
}
}
2007-02-11 02:07:48 +03:00
mutex_unlock ( & bd - > ops_lock ) ;
2005-04-17 02:20:36 +04:00
2009-07-14 20:06:02 +04:00
backlight_generate_event ( bd , BACKLIGHT_UPDATE_SYSFS ) ;
2005-04-17 02:20:36 +04:00
return rc ;
}
2016-04-27 15:45:02 +03:00
EXPORT_SYMBOL ( backlight_device_set_brightness ) ;
static ssize_t brightness_store ( struct device * dev ,
struct device_attribute * attr , const char * buf , size_t count )
{
int rc ;
struct backlight_device * bd = to_backlight_device ( dev ) ;
unsigned long brightness ;
rc = kstrtoul ( buf , 0 , & brightness ) ;
if ( rc )
return rc ;
rc = backlight_device_set_brightness ( bd , brightness ) ;
return rc ? rc : count ;
}
2013-07-25 02:05:30 +04:00
static DEVICE_ATTR_RW ( brightness ) ;
2005-04-17 02:20:36 +04:00
2013-07-25 02:05:30 +04:00
static ssize_t type_show ( struct device * dev , struct device_attribute * attr ,
char * buf )
2011-03-23 02:30:21 +03:00
{
struct backlight_device * bd = to_backlight_device ( dev ) ;
return sprintf ( buf , " %s \n " , backlight_types [ bd - > props . type ] ) ;
}
2013-07-25 02:05:30 +04:00
static DEVICE_ATTR_RO ( type ) ;
2011-03-23 02:30:21 +03:00
2013-07-25 02:05:30 +04:00
static ssize_t max_brightness_show ( struct device * dev ,
2007-07-09 15:17:24 +04:00
struct device_attribute * attr , char * buf )
2005-04-17 02:20:36 +04:00
{
2007-07-09 15:17:24 +04:00
struct backlight_device * bd = to_backlight_device ( dev ) ;
2005-04-17 02:20:36 +04:00
2007-02-11 02:07:48 +03:00
return sprintf ( buf , " %d \n " , bd - > props . max_brightness ) ;
2006-03-31 14:31:49 +04:00
}
2013-07-25 02:05:30 +04:00
static DEVICE_ATTR_RO ( max_brightness ) ;
2006-03-31 14:31:49 +04:00
2013-07-25 02:05:30 +04:00
static ssize_t actual_brightness_show ( struct device * dev ,
2007-07-09 15:17:24 +04:00
struct device_attribute * attr , char * buf )
2006-03-31 14:31:49 +04:00
{
int rc = - ENXIO ;
2007-07-09 15:17:24 +04:00
struct backlight_device * bd = to_backlight_device ( dev ) ;
2006-03-31 14:31:49 +04:00
2007-02-11 02:07:48 +03:00
mutex_lock ( & bd - > ops_lock ) ;
2021-09-07 15:47:51 +03:00
if ( bd - > ops & & bd - > ops - > get_brightness ) {
rc = bd - > ops - > get_brightness ( bd ) ;
if ( rc > = 0 )
rc = sprintf ( buf , " %d \n " , rc ) ;
} else {
2014-05-30 14:10:49 +04:00
rc = sprintf ( buf , " %d \n " , bd - > props . brightness ) ;
2021-09-07 15:47:51 +03:00
}
2007-02-11 02:07:48 +03:00
mutex_unlock ( & bd - > ops_lock ) ;
2005-04-17 02:20:36 +04:00
return rc ;
}
2013-07-25 02:05:30 +04:00
static DEVICE_ATTR_RO ( actual_brightness ) ;
2005-04-17 02:20:36 +04:00
2019-07-09 22:00:05 +03:00
static ssize_t scale_show ( struct device * dev ,
struct device_attribute * attr , char * buf )
{
struct backlight_device * bd = to_backlight_device ( dev ) ;
if ( WARN_ON ( bd - > props . scale > BACKLIGHT_SCALE_NON_LINEAR ) )
return sprintf ( buf , " unknown \n " ) ;
return sprintf ( buf , " %s \n " , backlight_scale_types [ bd - > props . scale ] ) ;
}
static DEVICE_ATTR_RO ( scale ) ;
2007-08-11 13:27:19 +04:00
static struct class * backlight_class ;
2007-07-09 15:17:24 +04:00
2013-07-04 02:05:16 +04:00
# ifdef CONFIG_PM_SLEEP
static int backlight_suspend ( struct device * dev )
2009-01-07 00:00:19 +03:00
{
struct backlight_device * bd = to_backlight_device ( dev ) ;
2010-11-24 23:57:14 +03:00
mutex_lock ( & bd - > ops_lock ) ;
if ( bd - > ops & & bd - > ops - > options & BL_CORE_SUSPENDRESUME ) {
2009-01-07 00:00:19 +03:00
bd - > props . state | = BL_CORE_SUSPENDED ;
backlight_update_status ( bd ) ;
}
2010-11-24 23:57:14 +03:00
mutex_unlock ( & bd - > ops_lock ) ;
2009-01-07 00:00:19 +03:00
return 0 ;
}
static int backlight_resume ( struct device * dev )
{
struct backlight_device * bd = to_backlight_device ( dev ) ;
2010-11-24 23:57:14 +03:00
mutex_lock ( & bd - > ops_lock ) ;
if ( bd - > ops & & bd - > ops - > options & BL_CORE_SUSPENDRESUME ) {
2009-01-07 00:00:19 +03:00
bd - > props . state & = ~ BL_CORE_SUSPENDED ;
backlight_update_status ( bd ) ;
}
2010-11-24 23:57:14 +03:00
mutex_unlock ( & bd - > ops_lock ) ;
2009-01-07 00:00:19 +03:00
return 0 ;
}
2013-07-04 02:05:16 +04:00
# endif
static SIMPLE_DEV_PM_OPS ( backlight_class_dev_pm_ops , backlight_suspend ,
backlight_resume ) ;
2009-01-07 00:00:19 +03:00
2007-07-09 15:17:24 +04:00
static void bl_device_release ( struct device * dev )
2005-04-17 02:20:36 +04:00
{
struct backlight_device * bd = to_backlight_device ( dev ) ;
kfree ( bd ) ;
}
2013-07-25 02:05:30 +04:00
static struct attribute * bl_device_attrs [ ] = {
& dev_attr_bl_power . attr ,
& dev_attr_brightness . attr ,
& dev_attr_actual_brightness . attr ,
& dev_attr_max_brightness . attr ,
2019-07-09 22:00:05 +03:00
& dev_attr_scale . attr ,
2013-07-25 02:05:30 +04:00
& dev_attr_type . attr ,
NULL ,
2005-04-17 02:20:36 +04:00
} ;
2013-07-25 02:05:30 +04:00
ATTRIBUTE_GROUPS ( bl_device ) ;
2005-04-17 02:20:36 +04:00
2009-07-14 20:06:02 +04:00
/**
* backlight_force_update - tell the backlight subsystem that hardware state
* has changed
* @ bd : the backlight device to update
2020-06-23 17:04:36 +03:00
* @ reason : reason for update
2009-07-14 20:06:02 +04:00
*
* Updates the internal state of the backlight in response to a hardware event ,
2020-07-19 11:07:34 +03:00
* and generates an uevent to notify userspace . A backlight driver shall call
* backlight_force_update ( ) when the backlight is changed using , for example ,
* a hot - key . The updated brightness is read using get_brightness ( ) and the
* brightness value is reported using an uevent .
2009-07-14 20:06:02 +04:00
*/
void backlight_force_update ( struct backlight_device * bd ,
enum backlight_update_reason reason )
{
2021-09-07 15:47:51 +03:00
int brightness ;
2009-07-14 20:06:02 +04:00
mutex_lock ( & bd - > ops_lock ) ;
2021-09-07 15:47:51 +03:00
if ( bd - > ops & & bd - > ops - > get_brightness ) {
brightness = bd - > ops - > get_brightness ( bd ) ;
if ( brightness > = 0 )
bd - > props . brightness = brightness ;
else
dev_err ( & bd - > dev ,
" Could not update brightness from device: %pe \n " ,
ERR_PTR ( brightness ) ) ;
}
2009-07-14 20:06:02 +04:00
mutex_unlock ( & bd - > ops_lock ) ;
backlight_generate_event ( bd , reason ) ;
}
EXPORT_SYMBOL ( backlight_force_update ) ;
2020-07-19 11:07:34 +03:00
/* deprecated - use devm_backlight_device_register() */
2006-12-19 23:56:15 +03:00
struct backlight_device * backlight_device_register ( const char * name ,
2010-02-18 00:39:44 +03:00
struct device * parent , void * devdata , const struct backlight_ops * ops ,
const struct backlight_properties * props )
2005-04-17 02:20:36 +04:00
{
struct backlight_device * new_bd ;
2007-07-09 15:17:24 +04:00
int rc ;
2005-04-17 02:20:36 +04:00
2007-07-09 15:17:24 +04:00
pr_debug ( " backlight_device_register: name=%s \n " , name ) ;
2005-04-17 02:20:36 +04:00
2007-02-11 02:07:48 +03:00
new_bd = kzalloc ( sizeof ( struct backlight_device ) , GFP_KERNEL ) ;
2007-02-08 03:12:28 +03:00
if ( ! new_bd )
2006-03-10 04:33:36 +03:00
return ERR_PTR ( - ENOMEM ) ;
2005-04-17 02:20:36 +04:00
2007-02-09 01:25:09 +03:00
mutex_init ( & new_bd - > update_lock ) ;
2007-02-11 02:07:48 +03:00
mutex_init ( & new_bd - > ops_lock ) ;
2005-04-17 02:20:36 +04:00
2007-07-09 15:17:24 +04:00
new_bd - > dev . class = backlight_class ;
new_bd - > dev . parent = parent ;
new_bd - > dev . release = bl_device_release ;
2013-07-04 02:04:56 +04:00
dev_set_name ( & new_bd - > dev , " %s " , name ) ;
2007-07-09 15:17:24 +04:00
dev_set_drvdata ( & new_bd - > dev , devdata ) ;
2010-02-18 00:39:44 +03:00
/* Set default properties */
2011-03-23 02:30:21 +03:00
if ( props ) {
2010-02-18 00:39:44 +03:00
memcpy ( & new_bd - > props , props ,
sizeof ( struct backlight_properties ) ) ;
2011-03-23 02:30:21 +03:00
if ( props - > type < = 0 | | props - > type > = BACKLIGHT_TYPE_MAX ) {
WARN ( 1 , " %s: invalid backlight type " , name ) ;
new_bd - > props . type = BACKLIGHT_RAW ;
}
} else {
new_bd - > props . type = BACKLIGHT_RAW ;
}
2010-02-18 00:39:44 +03:00
2007-07-09 15:17:24 +04:00
rc = device_register ( & new_bd - > dev ) ;
2007-02-08 03:12:28 +03:00
if ( rc ) {
2014-02-07 12:43:21 +04:00
put_device ( & new_bd - > dev ) ;
2005-04-17 02:20:36 +04:00
return ERR_PTR ( rc ) ;
}
2006-12-08 13:40:47 +03:00
rc = backlight_register_fb ( new_bd ) ;
2007-02-08 01:25:50 +03:00
if ( rc ) {
2007-07-09 15:17:24 +04:00
device_unregister ( & new_bd - > dev ) ;
2007-02-08 01:25:50 +03:00
return ERR_PTR ( rc ) ;
}
2007-07-09 15:17:24 +04:00
new_bd - > ops = ops ;
2005-04-17 02:20:36 +04:00
2007-02-10 18:04:08 +03:00
# ifdef CONFIG_PMAC_BACKLIGHT
mutex_lock ( & pmac_backlight_mutex ) ;
if ( ! pmac_backlight )
pmac_backlight = new_bd ;
mutex_unlock ( & pmac_backlight_mutex ) ;
# endif
2013-10-11 17:27:43 +04:00
mutex_lock ( & backlight_dev_list_mutex ) ;
list_add ( & new_bd - > entry , & backlight_dev_list ) ;
mutex_unlock ( & backlight_dev_list_mutex ) ;
2014-05-21 17:39:54 +04:00
blocking_notifier_call_chain ( & backlight_notifier ,
BACKLIGHT_REGISTERED , new_bd ) ;
2005-04-17 02:20:36 +04:00
return new_bd ;
}
EXPORT_SYMBOL ( backlight_device_register ) ;
2020-07-19 11:07:34 +03:00
/** backlight_device_get_by_type - find first backlight device of a type
* @ type : the type of backlight device
*
* Look up the first backlight device of the specified type
*
* RETURNS :
*
* Pointer to backlight device if any was found . Otherwise NULL .
*/
2016-04-27 15:45:02 +03:00
struct backlight_device * backlight_device_get_by_type ( enum backlight_type type )
2013-10-11 17:27:43 +04:00
{
bool found = false ;
struct backlight_device * bd ;
mutex_lock ( & backlight_dev_list_mutex ) ;
list_for_each_entry ( bd , & backlight_dev_list , entry ) {
if ( bd - > props . type = = type ) {
found = true ;
break ;
}
}
mutex_unlock ( & backlight_dev_list_mutex ) ;
2016-04-27 15:45:02 +03:00
return found ? bd : NULL ;
}
EXPORT_SYMBOL ( backlight_device_get_by_type ) ;
2020-05-09 17:16:10 +03:00
/**
* backlight_device_get_by_name - Get backlight device by name
* @ name : Device name
*
* This function looks up a backlight device by its name . It obtains a reference
* on the backlight device and it is the caller ' s responsibility to drop the
2022-12-15 10:19:01 +03:00
* reference by calling put_device ( ) .
2020-05-09 17:16:10 +03:00
*
* Returns :
* A pointer to the backlight device if found , otherwise NULL .
*/
struct backlight_device * backlight_device_get_by_name ( const char * name )
{
struct device * dev ;
dev = class_find_device_by_name ( backlight_class , name ) ;
return dev ? to_backlight_device ( dev ) : NULL ;
}
EXPORT_SYMBOL ( backlight_device_get_by_name ) ;
2020-07-19 11:07:34 +03:00
/* deprecated - use devm_backlight_device_unregister() */
2005-04-17 02:20:36 +04:00
void backlight_device_unregister ( struct backlight_device * bd )
{
if ( ! bd )
return ;
2013-10-11 17:27:43 +04:00
mutex_lock ( & backlight_dev_list_mutex ) ;
list_del ( & bd - > entry ) ;
mutex_unlock ( & backlight_dev_list_mutex ) ;
2007-02-10 18:04:08 +03:00
# ifdef CONFIG_PMAC_BACKLIGHT
mutex_lock ( & pmac_backlight_mutex ) ;
if ( pmac_backlight = = bd )
pmac_backlight = NULL ;
mutex_unlock ( & pmac_backlight_mutex ) ;
# endif
2014-05-21 17:39:54 +04:00
blocking_notifier_call_chain ( & backlight_notifier ,
BACKLIGHT_UNREGISTERED , bd ) ;
2007-02-11 02:07:48 +03:00
mutex_lock ( & bd - > ops_lock ) ;
bd - > ops = NULL ;
mutex_unlock ( & bd - > ops_lock ) ;
2005-04-17 02:20:36 +04:00
2006-12-08 13:40:47 +03:00
backlight_unregister_fb ( bd ) ;
2007-07-09 15:17:24 +04:00
device_unregister ( & bd - > dev ) ;
2005-04-17 02:20:36 +04:00
}
EXPORT_SYMBOL ( backlight_device_unregister ) ;
2013-07-04 02:05:13 +04:00
static void devm_backlight_device_release ( struct device * dev , void * res )
{
struct backlight_device * backlight = * ( struct backlight_device * * ) res ;
backlight_device_unregister ( backlight ) ;
}
static int devm_backlight_device_match ( struct device * dev , void * res ,
void * data )
{
struct backlight_device * * r = res ;
return * r = = data ;
}
2014-05-21 17:39:54 +04:00
/**
* backlight_register_notifier - get notified of backlight ( un ) registration
* @ nb : notifier block with the notifier to call on backlight ( un ) registration
*
* Register a notifier to get notified when backlight devices get registered
* or unregistered .
2020-07-19 11:07:34 +03:00
*
* RETURNS :
*
* 0 on success , otherwise a negative error code
2014-05-21 17:39:54 +04:00
*/
int backlight_register_notifier ( struct notifier_block * nb )
{
return blocking_notifier_chain_register ( & backlight_notifier , nb ) ;
}
EXPORT_SYMBOL ( backlight_register_notifier ) ;
/**
* backlight_unregister_notifier - unregister a backlight notifier
* @ nb : notifier block to unregister
*
* Register a notifier to get notified when backlight devices get registered
* or unregistered .
2020-07-19 11:07:34 +03:00
*
* RETURNS :
*
* 0 on success , otherwise a negative error code
2014-05-21 17:39:54 +04:00
*/
int backlight_unregister_notifier ( struct notifier_block * nb )
{
return blocking_notifier_chain_unregister ( & backlight_notifier , nb ) ;
}
EXPORT_SYMBOL ( backlight_unregister_notifier ) ;
2013-07-04 02:05:13 +04:00
/**
2020-07-19 11:07:34 +03:00
* devm_backlight_device_register - register a new backlight device
2013-07-04 02:05:13 +04:00
* @ dev : the device to register
* @ name : the name of the device
2020-07-19 11:07:34 +03:00
* @ parent : a pointer to the parent device ( often the same as @ dev )
2013-07-04 02:05:13 +04:00
* @ devdata : an optional pointer to be stored for private driver use
* @ ops : the backlight operations structure
* @ props : the backlight properties
*
2020-07-19 11:07:34 +03:00
* Creates and registers new backlight device . When a backlight device
* is registered the configuration must be specified in the @ props
* parameter . See description of & backlight_properties .
*
* RETURNS :
2013-07-04 02:05:13 +04:00
*
2020-07-19 11:07:34 +03:00
* struct backlight on success , or an ERR_PTR on error
2013-07-04 02:05:13 +04:00
*/
struct backlight_device * devm_backlight_device_register ( struct device * dev ,
const char * name , struct device * parent , void * devdata ,
const struct backlight_ops * ops ,
const struct backlight_properties * props )
{
struct backlight_device * * ptr , * backlight ;
ptr = devres_alloc ( devm_backlight_device_release , sizeof ( * ptr ) ,
GFP_KERNEL ) ;
if ( ! ptr )
return ERR_PTR ( - ENOMEM ) ;
backlight = backlight_device_register ( name , parent , devdata , ops ,
props ) ;
if ( ! IS_ERR ( backlight ) ) {
* ptr = backlight ;
devres_add ( dev , ptr ) ;
} else {
devres_free ( ptr ) ;
}
return backlight ;
}
EXPORT_SYMBOL ( devm_backlight_device_register ) ;
/**
2020-07-19 11:07:34 +03:00
* devm_backlight_device_unregister - unregister backlight device
2013-07-04 02:05:13 +04:00
* @ dev : the device to unregister
* @ bd : the backlight device to unregister
*
2020-07-19 11:07:34 +03:00
* Deallocates a backlight allocated with devm_backlight_device_register ( ) .
2013-07-04 02:05:13 +04:00
* Normally this function will not need to be called and the resource management
2020-07-19 11:07:34 +03:00
* code will ensure that the resources are freed .
2013-07-04 02:05:13 +04:00
*/
void devm_backlight_device_unregister ( struct device * dev ,
struct backlight_device * bd )
{
int rc ;
rc = devres_release ( dev , devm_backlight_device_release ,
devm_backlight_device_match , bd ) ;
WARN_ON ( rc ) ;
}
EXPORT_SYMBOL ( devm_backlight_device_unregister ) ;
2012-12-18 04:01:06 +04:00
# ifdef CONFIG_OF
2013-02-07 04:43:02 +04:00
static int of_parent_match ( struct device * dev , const void * data )
2012-12-18 04:01:06 +04:00
{
return dev - > parent & & dev - > parent - > of_node = = data ;
}
/**
* of_find_backlight_by_node ( ) - find backlight device by device - tree node
* @ node : device - tree node of the backlight device
*
* Returns a pointer to the backlight device corresponding to the given DT
* node or NULL if no such backlight device exists or if the device hasn ' t
* been probed yet .
*
* This function obtains a reference on the backlight device and it is the
* caller ' s responsibility to drop the reference by calling put_device ( ) on
* the backlight device ' s . dev field .
*/
struct backlight_device * of_find_backlight_by_node ( struct device_node * node )
{
struct device * dev ;
dev = class_find_device ( backlight_class , NULL , node , of_parent_match ) ;
return dev ? to_backlight_device ( dev ) : NULL ;
}
EXPORT_SYMBOL ( of_find_backlight_by_node ) ;
# endif
2020-07-19 11:07:43 +03:00
static struct backlight_device * of_find_backlight ( struct device * dev )
2018-01-24 19:35:30 +03:00
{
struct backlight_device * bd = NULL ;
struct device_node * np ;
if ( ! dev )
return NULL ;
if ( IS_ENABLED ( CONFIG_OF ) & & dev - > of_node ) {
np = of_parse_phandle ( dev - > of_node , " backlight " , 0 ) ;
if ( np ) {
bd = of_find_backlight_by_node ( np ) ;
of_node_put ( np ) ;
if ( ! bd )
return ERR_PTR ( - EPROBE_DEFER ) ;
}
}
return bd ;
}
2018-01-24 19:37:23 +03:00
static void devm_backlight_release ( void * data )
{
2020-07-19 11:07:42 +03:00
struct backlight_device * bd = data ;
2022-02-13 10:41:39 +03:00
put_device ( & bd - > dev ) ;
2018-01-24 19:37:23 +03:00
}
/**
2020-07-19 11:07:34 +03:00
* devm_of_find_backlight - find backlight for a device
* @ dev : the device
2018-01-24 19:37:23 +03:00
*
2020-07-19 11:07:34 +03:00
* This function looks for a property named ' backlight ' on the DT node
* connected to @ dev and looks up the backlight device . The lookup is
* device managed so the reference to the backlight device is automatically
2018-01-24 19:37:23 +03:00
* dropped on driver detach .
2020-07-19 11:07:34 +03:00
*
* RETURNS :
*
* A pointer to the backlight device if found .
* Error pointer - EPROBE_DEFER if the DT property is set , but no backlight
* device is found . NULL if there ' s no backlight property .
2018-01-24 19:37:23 +03:00
*/
struct backlight_device * devm_of_find_backlight ( struct device * dev )
{
struct backlight_device * bd ;
int ret ;
bd = of_find_backlight ( dev ) ;
if ( IS_ERR_OR_NULL ( bd ) )
return bd ;
2022-02-13 10:41:39 +03:00
ret = devm_add_action_or_reset ( dev , devm_backlight_release , bd ) ;
if ( ret )
2018-01-24 19:37:23 +03:00
return ERR_PTR ( ret ) ;
2022-02-13 10:41:39 +03:00
2018-01-24 19:37:23 +03:00
return bd ;
}
EXPORT_SYMBOL ( devm_of_find_backlight ) ;
2005-04-17 02:20:36 +04:00
static void __exit backlight_class_exit ( void )
{
2007-07-09 15:17:24 +04:00
class_destroy ( backlight_class ) ;
2005-04-17 02:20:36 +04:00
}
static int __init backlight_class_init ( void )
{
2023-03-13 21:18:35 +03:00
backlight_class = class_create ( " backlight " ) ;
2007-07-09 15:17:24 +04:00
if ( IS_ERR ( backlight_class ) ) {
2012-05-30 02:07:16 +04:00
pr_warn ( " Unable to create backlight class; errno = %ld \n " ,
PTR_ERR ( backlight_class ) ) ;
2007-07-09 15:17:24 +04:00
return PTR_ERR ( backlight_class ) ;
}
2013-07-25 02:05:30 +04:00
backlight_class - > dev_groups = bl_device_groups ;
2013-07-04 02:05:16 +04:00
backlight_class - > pm = & backlight_class_dev_pm_ops ;
2013-10-11 17:27:43 +04:00
INIT_LIST_HEAD ( & backlight_dev_list ) ;
mutex_init ( & backlight_dev_list_mutex ) ;
2014-05-21 17:39:54 +04:00
BLOCKING_INIT_NOTIFIER_HEAD ( & backlight_notifier ) ;
2007-07-09 15:17:24 +04:00
return 0 ;
2005-04-17 02:20:36 +04:00
}
/*
* if this is compiled into the kernel , we need to ensure that the
* class is registered before users of the class try to register lcd ' s
*/
postcore_initcall ( backlight_class_init ) ;
module_exit ( backlight_class_exit ) ;
MODULE_LICENSE ( " GPL " ) ;
MODULE_AUTHOR ( " Jamey Hicks <jamey.hicks@hp.com>, Andrew Zabolotny <zap@homelink.ru> " ) ;
MODULE_DESCRIPTION ( " Backlight Lowlevel Control Abstraction " ) ;