cregit-Linux how code gets into the kernel

Release 4.14 drivers/video/backlight/backlight.c

/*
 * Backlight Lowlevel Control Abstraction
 *
 * Copyright (C) 2003,2004 Hewlett-Packard Company
 *
 */


#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#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 <linux/slab.h>

#ifdef CONFIG_PMAC_BACKLIGHT
#include <asm/backlight.h>
#endif


static struct list_head backlight_dev_list;

static struct mutex backlight_dev_list_mutex;

static struct blocking_notifier_head backlight_notifier;


static const char *const backlight_types[] = {
	[BACKLIGHT_RAW] = "raw",
	[BACKLIGHT_PLATFORM] = "platform",
	[BACKLIGHT_FIRMWARE] = "firmware",
};

#if defined(CONFIG_FB) || (defined(CONFIG_FB_MODULE) && \
			   defined(CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE))
/* This callback gets called when something important happens inside a
 * framebuffer driver. We're looking if that important event is blanking,
 * and if it is and necessary, we're switching backlight power as well ...
 */

static int fb_notifier_callback(struct notifier_block *self, unsigned long event, void *data) { struct backlight_device *bd; struct fb_event *evdata = data; int node = evdata->info->node; int fb_blank = 0; /* If we aren't interested in this event, skip it immediately ... */ if (event != FB_EVENT_BLANK && event != FB_EVENT_CONBLANK) return 0; bd = container_of(self, struct backlight_device, fb_notif); mutex_lock(&bd->ops_lock); if (bd->ops) if (!bd->ops->check_fb || bd->ops->check_fb(bd, evdata->info)) { 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); } } } mutex_unlock(&bd->ops_lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
James Simmons10843.90%111.11%
Liu Ying10141.06%222.22%
Richard Purdie3514.23%555.56%
Bruno Prémont20.81%111.11%
Total246100.00%9100.00%


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); }

Contributors

PersonTokensPropCommitsCommitProp
James Simmons45100.00%1100.00%
Total45100.00%1100.00%


static void backlight_unregister_fb(struct backlight_device *bd) { fb_unregister_client(&bd->fb_notif); }

Contributors

PersonTokensPropCommitsCommitProp
James Simmons19100.00%1100.00%
Total19100.00%1100.00%

#else
static inline int backlight_register_fb(struct backlight_device *bd) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
James Simmons15100.00%1100.00%
Total15100.00%1100.00%


static inline void backlight_unregister_fb(struct backlight_device *bd) { }

Contributors

PersonTokensPropCommitsCommitProp
James Simmons11100.00%1100.00%
Total11100.00%1100.00%

#endif /* CONFIG_FB */
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); sysfs_notify(&bd->dev.kobj, NULL, "actual_brightness"); }

Contributors

PersonTokensPropCommitsCommitProp
Matthew Garrett8085.11%150.00%
Henrique de Moraes Holschuh1414.89%150.00%
Total94100.00%2100.00%


static ssize_t bl_power_show(struct device *dev, struct device_attribute *attr, char *buf) { struct backlight_device *bd = to_backlight_device(dev); return sprintf(buf, "%d\n", bd->props.power); }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas3272.73%120.00%
Richard Purdie1125.00%360.00%
Greg Kroah-Hartman12.27%120.00%
Total44100.00%5100.00%


static ssize_t bl_power_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 power, old_power; rc = kstrtoul(buf, 0, &power); if (rc) return rc; rc = -ENXIO; mutex_lock(&bd->ops_lock); if (bd->ops) { pr_debug("set power to %lu\n", power); if (bd->props.power != power) { old_power = bd->props.power; bd->props.power = power; rc = backlight_update_status(bd); if (rc) bd->props.power = old_power; else rc = count; } else { rc = count; } } mutex_unlock(&bd->ops_lock); return rc; }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas7546.88%17.69%
Sudip Mukherjee3220.00%17.69%
Richard Purdie2314.38%646.15%
Pavel Machek159.38%17.69%
Helge Deller127.50%17.69%
Jingoo Han21.25%215.38%
Greg Kroah-Hartman10.62%17.69%
Total160100.00%13100.00%

static DEVICE_ATTR_RW(bl_power);
static ssize_t brightness_show(struct device *dev, struct device_attribute *attr, char *buf) { struct backlight_device *bd = to_backlight_device(dev); return sprintf(buf, "%d\n", bd->props.brightness); }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas3272.73%120.00%
Richard Purdie1125.00%360.00%
Greg Kroah-Hartman12.27%120.00%
Total44100.00%5100.00%


int backlight_device_set_brightness(struct backlight_device *bd, unsigned long brightness) { int rc = -ENXIO; mutex_lock(&bd->ops_lock); if (bd->ops) { if (brightness > bd->props.max_brightness) rc = -EINVAL; else { pr_debug("set brightness to %lu\n", brightness); bd->props.brightness = brightness; rc = backlight_update_status(bd); } } mutex_unlock(&bd->ops_lock); backlight_generate_event(bd, BACKLIGHT_UPDATE_SYSFS); return rc; }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas4547.87%110.00%
Richard Purdie2627.66%440.00%
Aaron Lu88.51%110.00%
Matthew Garrett77.45%110.00%
Pavel Machek55.32%110.00%
Sudip Mukherjee22.13%110.00%
Jingoo Han11.06%110.00%
Total94100.00%10100.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; }

Contributors

PersonTokensPropCommitsCommitProp
Aaron Lu76100.00%1100.00%
Total76100.00%1100.00%

static DEVICE_ATTR_RW(brightness);
static ssize_t type_show(struct device *dev, struct device_attribute *attr, char *buf) { struct backlight_device *bd = to_backlight_device(dev); return sprintf(buf, "%s\n", backlight_types[bd->props.type]); }

Contributors

PersonTokensPropCommitsCommitProp
Matthew Garrett4697.87%150.00%
Greg Kroah-Hartman12.13%150.00%
Total47100.00%2100.00%

static DEVICE_ATTR_RO(type);
static ssize_t max_brightness_show(struct device *dev, struct device_attribute *attr, char *buf) { struct backlight_device *bd = to_backlight_device(dev); return sprintf(buf, "%d\n", bd->props.max_brightness); }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas3170.45%120.00%
Richard Purdie1227.27%360.00%
Greg Kroah-Hartman12.27%120.00%
Total44100.00%5100.00%

static DEVICE_ATTR_RO(max_brightness);
static ssize_t actual_brightness_show(struct device *dev, struct device_attribute *attr, char *buf) { int rc = -ENXIO; struct backlight_device *bd = to_backlight_device(dev); mutex_lock(&bd->ops_lock); if (bd->ops && bd->ops->get_brightness) rc = sprintf(buf, "%d\n", bd->ops->get_brightness(bd)); else rc = sprintf(buf, "%d\n", bd->props.brightness); mutex_unlock(&bd->ops_lock); return rc; }

Contributors

PersonTokensPropCommitsCommitProp
Richard Purdie7170.30%457.14%
Andrzej Hajda1615.84%114.29%
Antonino A. Daplas1312.87%114.29%
Greg Kroah-Hartman10.99%114.29%
Total101100.00%7100.00%

static DEVICE_ATTR_RO(actual_brightness); static struct class *backlight_class; #ifdef CONFIG_PM_SLEEP
static int backlight_suspend(struct device *dev) { struct backlight_device *bd = to_backlight_device(dev); mutex_lock(&bd->ops_lock); if (bd->ops && bd->ops->options & BL_CORE_SUSPENDRESUME) { bd->props.state |= BL_CORE_SUSPENDED; backlight_update_status(bd); } mutex_unlock(&bd->ops_lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Richard Purdie5681.16%150.00%
Uwe Kleine-König1318.84%150.00%
Total69100.00%2100.00%


static int backlight_resume(struct device *dev) { struct backlight_device *bd = to_backlight_device(dev); mutex_lock(&bd->ops_lock); if (bd->ops && bd->ops->options & BL_CORE_SUSPENDRESUME) { bd->props.state &= ~BL_CORE_SUSPENDED; backlight_update_status(bd); } mutex_unlock(&bd->ops_lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Richard Purdie5781.43%150.00%
Uwe Kleine-König1318.57%150.00%
Total70100.00%2100.00%

#endif static SIMPLE_DEV_PM_OPS(backlight_class_dev_pm_ops, backlight_suspend, backlight_resume);
static void bl_device_release(struct device *dev) { struct backlight_device *bd = to_backlight_device(dev); kfree(bd); }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas2492.31%150.00%
Richard Purdie27.69%150.00%
Total26100.00%2100.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, &dev_attr_type.attr, NULL, }; ATTRIBUTE_GROUPS(bl_device); /** * backlight_force_update - tell the backlight subsystem that hardware state * has changed * @bd: the backlight device to update * * Updates the internal state of the backlight in response to a hardware event, * and generate a uevent to notify userspace */
void backlight_force_update(struct backlight_device *bd, enum backlight_update_reason reason) { mutex_lock(&bd->ops_lock); if (bd->ops && bd->ops->get_brightness) bd->props.brightness = bd->ops->get_brightness(bd); mutex_unlock(&bd->ops_lock); backlight_generate_event(bd, reason); }

Contributors

PersonTokensPropCommitsCommitProp
Matthew Garrett64100.00%1100.00%
Total64100.00%1100.00%

EXPORT_SYMBOL(backlight_force_update); /** * backlight_device_register - create and register a new object of * backlight_device class. * @name: the name of the new object(must be the same as the name of the * respective framebuffer device). * @parent: a pointer to the parent device * @devdata: an optional pointer to be stored for private driver use. The * methods may retrieve it by using bl_get_data(bd). * @ops: the backlight operations structure. * * Creates and registers new backlight device. Returns either an * ERR_PTR() or a pointer to the newly allocated device. */
struct backlight_device *backlight_device_register(const char *name, struct device *parent, void *devdata, const struct backlight_ops *ops, const struct backlight_properties *props) { struct backlight_device *new_bd; int rc; pr_debug("backlight_device_register: name=%s\n", name); new_bd = kzalloc(sizeof(struct backlight_device), GFP_KERNEL); if (!new_bd) return ERR_PTR(-ENOMEM); mutex_init(&new_bd->update_lock); mutex_init(&new_bd->ops_lock); new_bd->dev.class = backlight_class; new_bd->dev.parent = parent; new_bd->dev.release = bl_device_release; dev_set_name(&new_bd->dev, "%s", name); dev_set_drvdata(&new_bd->dev, devdata); /* Set default properties */ if (props) { memcpy(&new_bd->props, props, sizeof(struct backlight_properties)); 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; } rc = device_register(&new_bd->dev); if (rc) { put_device(&new_bd->dev); return ERR_PTR(rc); } rc = backlight_register_fb(new_bd); if (rc) { device_unregister(&new_bd->dev); return ERR_PTR(rc); } new_bd->ops = ops; #ifdef CONFIG_PMAC_BACKLIGHT mutex_lock(&pmac_backlight_mutex); if (!pmac_backlight) pmac_backlight = new_bd; mutex_unlock(&pmac_backlight_mutex); #endif mutex_lock(&backlight_dev_list_mutex); list_add(&new_bd->entry, &backlight_dev_list); mutex_unlock(&backlight_dev_list_mutex); blocking_notifier_call_chain(&backlight_notifier, BACKLIGHT_REGISTERED, new_bd); return new_bd; }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas12437.92%15.56%
Matthew Garrett7322.32%211.11%
Richard Purdie6419.57%527.78%
Aaron Lu237.03%15.56%
Dmitry Torokhov133.98%15.56%
Hans de Goede103.06%15.56%
Yu Luming92.75%15.56%
Levente Kurusa41.22%15.56%
Kay Sievers20.61%15.56%
Kees Cook20.61%15.56%
Jean Delvare10.31%15.56%
James Simmons10.31%15.56%
Emese Revfy10.31%15.56%
Total327100.00%18100.00%

EXPORT_SYMBOL(backlight_device_register);
struct backlight_device *backlight_device_get_by_type(enum backlight_type type) { 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); return found ? bd : NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Aaron Lu67100.00%2100.00%
Total67100.00%2100.00%

EXPORT_SYMBOL(backlight_device_get_by_type); /** * backlight_device_unregister - unregisters a backlight device object. * @bd: the backlight device object to be unregistered and freed. * * Unregisters a previously registered via backlight_device_register object. */
void backlight_device_unregister(struct backlight_device *bd) { if (!bd) return; mutex_lock(&backlight_dev_list_mutex); list_del(&bd->entry); mutex_unlock(&backlight_dev_list_mutex); #ifdef CONFIG_PMAC_BACKLIGHT mutex_lock(&pmac_backlight_mutex); if (pmac_backlight == bd) pmac_backlight = NULL; mutex_unlock(&pmac_backlight_mutex); #endif blocking_notifier_call_chain(&backlight_notifier, BACKLIGHT_UNREGISTERED, bd); mutex_lock(&bd->ops_lock); bd->ops = NULL; mutex_unlock(&bd->ops_lock); backlight_unregister_fb(bd); device_unregister(&bd->dev); }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas4339.81%112.50%
Richard Purdie3431.48%450.00%
Aaron Lu2018.52%112.50%
Hans de Goede109.26%112.50%
James Simmons10.93%112.50%
Total108100.00%8100.00%

EXPORT_SYMBOL(backlight_device_unregister);
static void devm_backlight_device_release(struct device *dev, void *res) { struct backlight_device *backlight = *(struct backlight_device **)res; backlight_device_unregister(backlight); }

Contributors

PersonTokensPropCommitsCommitProp
Jingoo Han34100.00%1100.00%
Total34100.00%1100.00%


static int devm_backlight_device_match(struct device *dev, void *res, void *data) { struct backlight_device **r = res; return *r == data; }

Contributors

PersonTokensPropCommitsCommitProp
Jingoo Han33100.00%1100.00%
Total33100.00%1100.00%

/** * backlight_register_notifier - get notified of backlight (un)registration * @nb: notifier block with the notifier to call on backlight (un)registration * * @return 0 on success, otherwise a negative error code * * Register a notifier to get notified when backlight devices get registered * or unregistered. */
int backlight_register_notifier(struct notifier_block *nb) { return blocking_notifier_chain_register(&backlight_notifier, nb); }

Contributors

PersonTokensPropCommitsCommitProp
Hans de Goede19100.00%1100.00%
Total19100.00%1100.00%

EXPORT_SYMBOL(backlight_register_notifier); /** * backlight_unregister_notifier - unregister a backlight notifier * @nb: notifier block to unregister * * @return 0 on success, otherwise a negative error code * * Register a notifier to get notified when backlight devices get registered * or unregistered. */
int backlight_unregister_notifier(struct notifier_block *nb) { return blocking_notifier_chain_unregister(&backlight_notifier, nb); }

Contributors

PersonTokensPropCommitsCommitProp
Hans de Goede19100.00%1100.00%
Total19100.00%1100.00%

EXPORT_SYMBOL(backlight_unregister_notifier); /** * devm_backlight_device_register - resource managed backlight_device_register() * @dev: the device to register * @name: the name of the device * @parent: a pointer to the parent device * @devdata: an optional pointer to be stored for private driver use * @ops: the backlight operations structure * @props: the backlight properties * * @return a struct backlight on success, or an ERR_PTR on error * * Managed backlight_device_register(). The backlight_device returned * from this function are automatically freed on driver detach. * See backlight_device_register() for more information. */
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; }

Contributors

PersonTokensPropCommitsCommitProp
Jingoo Han122100.00%1100.00%
Total122100.00%1100.00%

EXPORT_SYMBOL(devm_backlight_device_register); /** * devm_backlight_device_unregister - resource managed backlight_device_unregister() * @dev: the device to unregister * @bd: the backlight device to unregister * * Deallocated a backlight allocated with devm_backlight_device_register(). * Normally this function will not need to be called and the resource management * code will ensure that the resource is freed. */
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); }

Contributors

PersonTokensPropCommitsCommitProp
Jingoo Han36100.00%1100.00%
Total36100.00%1100.00%

EXPORT_SYMBOL(devm_backlight_device_unregister); #ifdef CONFIG_OF
static int of_parent_match(struct device *dev, const void *data) { return dev->parent && dev->parent->of_node == data; }

Contributors

PersonTokensPropCommitsCommitProp
Thierry Reding2896.55%150.00%
Greg Kroah-Hartman13.45%150.00%
Total29100.00%2100.00%

/** * 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; }

Contributors

PersonTokensPropCommitsCommitProp
Thierry Reding40100.00%1100.00%
Total40100.00%1100.00%

EXPORT_SYMBOL(of_find_backlight_by_node); #endif
static void __exit backlight_class_exit(void) { class_destroy(backlight_class); }

Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas1392.86%150.00%
Richard Purdie17.14%150.00%
Total14100.00%2100.00%


static int __init backlight_class_init(void) { backlight_class = class_create(THIS_MODULE, "backlight"); if (IS_ERR(backlight_class)) { pr_warn("Unable to create backlight class; errno = %ld\n", PTR_ERR(backlight_class)); return PTR_ERR(backlight_class); } backlight_class->dev_groups = bl_device_groups; backlight_class->pm = &backlight_class_dev_pm_ops; INIT_LIST_HEAD(&backlight_dev_list); mutex_init(&backlight_dev_list_mutex); BLOCKING_INIT_NOTIFIER_HEAD(&backlight_notifier); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Richard Purdie3950.65%225.00%
Antonino A. Daplas1418.18%112.50%
Aaron Lu1215.58%112.50%
Hans de Goede67.79%112.50%
Shuah Khan33.90%112.50%
Greg Kroah-Hartman22.60%112.50%
Jingoo Han11.30%112.50%
Total77100.00%8100.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");

Overall Contributors

PersonTokensPropCommitsCommitProp
Antonino A. Daplas51720.80%24.44%
Richard Purdie45718.38%920.00%
Matthew Garrett30412.23%36.67%
Jingoo Han2489.98%36.67%
Aaron Lu2269.09%24.44%
James Simmons2249.01%12.22%
Liu Ying1024.10%24.44%
Hans de Goede813.26%12.22%
Thierry Reding793.18%12.22%
Greg Kroah-Hartman682.74%24.44%
Sudip Mukherjee341.37%12.22%
Uwe Kleine-König261.05%12.22%
Pavel Machek200.80%12.22%
Shuah Khan180.72%12.22%
Andrzej Hajda160.64%12.22%
Henrique de Moraes Holschuh140.56%12.22%
Dmitry Torokhov130.52%12.22%
Helge Deller120.48%12.22%
Yu Luming90.36%12.22%
Levente Kurusa40.16%12.22%
Tejun Heo30.12%12.22%
Bruno Prémont20.08%12.22%
Kay Sievers20.08%12.22%
Kees Cook20.08%12.22%
Emese Revfy10.04%12.22%
Adrian Bunk10.04%12.22%
Bart Van Assche10.04%12.22%
Sebastian Andrzej Siewior10.04%12.22%
Jean Delvare10.04%12.22%
Total2486100.00%45100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.