backlight.c 10.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Backlight Lowlevel Control Abstraction
 *
 * Copyright (C) 2003,2004 Hewlett-Packard Company
 *
 */

#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>
16
#include <linux/slab.h>
L
Linus Torvalds 已提交
17

18 19 20
#ifdef CONFIG_PMAC_BACKLIGHT
#include <asm/backlight.h>
#endif
21

22
static const char *const backlight_types[] = {
M
Matthew Garrett 已提交
23 24 25 26 27
	[BACKLIGHT_RAW] = "raw",
	[BACKLIGHT_PLATFORM] = "platform",
	[BACKLIGHT_FIRMWARE] = "firmware",
};

28 29 30 31 32 33 34 35 36 37 38 39 40
#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, 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;

	/* If we aren't interested in this event, skip it immediately ... */
41
	if (event != FB_EVENT_BLANK && event != FB_EVENT_CONBLANK)
42 43 44
		return 0;

	bd = container_of(self, struct backlight_device, fb_notif);
45 46 47
	mutex_lock(&bd->ops_lock);
	if (bd->ops)
		if (!bd->ops->check_fb ||
48
		    bd->ops->check_fb(bd, evdata->info)) {
49
			bd->props.fb_blank = *(int *)evdata->data;
50 51 52 53
			if (bd->props.fb_blank == FB_BLANK_UNBLANK)
				bd->props.state &= ~BL_CORE_FBBLANK;
			else
				bd->props.state |= BL_CORE_FBBLANK;
54
			backlight_update_status(bd);
55
		}
56
	mutex_unlock(&bd->ops_lock);
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
	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)
{
}
#endif /* CONFIG_FB */

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
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);
101
	sysfs_notify(&bd->dev.kobj, NULL, "actual_brightness");
102 103
}

104
static ssize_t backlight_show_power(struct device *dev,
J
Jingoo Han 已提交
105
		struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
106
{
107
	struct backlight_device *bd = to_backlight_device(dev);
L
Linus Torvalds 已提交
108

109
	return sprintf(buf, "%d\n", bd->props.power);
L
Linus Torvalds 已提交
110 111
}

112 113
static ssize_t backlight_store_power(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
114
{
115
	int rc;
116
	struct backlight_device *bd = to_backlight_device(dev);
117
	unsigned long power;
L
Linus Torvalds 已提交
118

J
Jingoo Han 已提交
119
	rc = kstrtoul(buf, 0, &power);
120 121
	if (rc)
		return rc;
L
Linus Torvalds 已提交
122

123
	rc = -ENXIO;
124 125
	mutex_lock(&bd->ops_lock);
	if (bd->ops) {
126
		pr_debug("backlight: set power to %lu\n", power);
127 128 129 130
		if (bd->props.power != power) {
			bd->props.power = power;
			backlight_update_status(bd);
		}
L
Linus Torvalds 已提交
131
		rc = count;
132
	}
133
	mutex_unlock(&bd->ops_lock);
L
Linus Torvalds 已提交
134 135 136 137

	return rc;
}

138 139
static ssize_t backlight_show_brightness(struct device *dev,
		struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
140
{
141
	struct backlight_device *bd = to_backlight_device(dev);
L
Linus Torvalds 已提交
142

143
	return sprintf(buf, "%d\n", bd->props.brightness);
L
Linus Torvalds 已提交
144 145
}

146 147
static ssize_t backlight_store_brightness(struct device *dev,
		struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
148
{
149
	int rc;
150
	struct backlight_device *bd = to_backlight_device(dev);
151
	unsigned long brightness;
L
Linus Torvalds 已提交
152

J
Jingoo Han 已提交
153
	rc = kstrtoul(buf, 0, &brightness);
154 155 156 157
	if (rc)
		return rc;

	rc = -ENXIO;
L
Linus Torvalds 已提交
158

159 160 161
	mutex_lock(&bd->ops_lock);
	if (bd->ops) {
		if (brightness > bd->props.max_brightness)
162 163
			rc = -EINVAL;
		else {
164
			pr_debug("backlight: set brightness to %lu\n",
165
				 brightness);
166 167
			bd->props.brightness = brightness;
			backlight_update_status(bd);
168 169 170
			rc = count;
		}
	}
171
	mutex_unlock(&bd->ops_lock);
L
Linus Torvalds 已提交
172

173 174
	backlight_generate_event(bd, BACKLIGHT_UPDATE_SYSFS);

L
Linus Torvalds 已提交
175 176 177
	return rc;
}

M
Matthew Garrett 已提交
178 179 180 181 182 183 184 185
static ssize_t backlight_show_type(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]);
}

186 187
static ssize_t backlight_show_max_brightness(struct device *dev,
		struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
188
{
189
	struct backlight_device *bd = to_backlight_device(dev);
L
Linus Torvalds 已提交
190

191
	return sprintf(buf, "%d\n", bd->props.max_brightness);
192 193
}

194 195
static ssize_t backlight_show_actual_brightness(struct device *dev,
		struct device_attribute *attr, char *buf)
196 197
{
	int rc = -ENXIO;
198
	struct backlight_device *bd = to_backlight_device(dev);
199

200 201 202 203
	mutex_lock(&bd->ops_lock);
	if (bd->ops && bd->ops->get_brightness)
		rc = sprintf(buf, "%d\n", bd->ops->get_brightness(bd));
	mutex_unlock(&bd->ops_lock);
L
Linus Torvalds 已提交
204 205 206 207

	return rc;
}

208
static struct class *backlight_class;
209

210 211 212 213
static int backlight_suspend(struct device *dev, pm_message_t state)
{
	struct backlight_device *bd = to_backlight_device(dev);

214 215
	mutex_lock(&bd->ops_lock);
	if (bd->ops && bd->ops->options & BL_CORE_SUSPENDRESUME) {
216 217 218
		bd->props.state |= BL_CORE_SUSPENDED;
		backlight_update_status(bd);
	}
219
	mutex_unlock(&bd->ops_lock);
220 221 222 223 224 225 226 227

	return 0;
}

static int backlight_resume(struct device *dev)
{
	struct backlight_device *bd = to_backlight_device(dev);

228 229
	mutex_lock(&bd->ops_lock);
	if (bd->ops && bd->ops->options & BL_CORE_SUSPENDRESUME) {
230 231 232
		bd->props.state &= ~BL_CORE_SUSPENDED;
		backlight_update_status(bd);
	}
233
	mutex_unlock(&bd->ops_lock);
234 235 236 237

	return 0;
}

238
static void bl_device_release(struct device *dev)
L
Linus Torvalds 已提交
239 240 241 242 243
{
	struct backlight_device *bd = to_backlight_device(dev);
	kfree(bd);
}

244 245 246
static struct device_attribute bl_device_attributes[] = {
	__ATTR(bl_power, 0644, backlight_show_power, backlight_store_power),
	__ATTR(brightness, 0644, backlight_show_brightness,
247
		     backlight_store_brightness),
248
	__ATTR(actual_brightness, 0444, backlight_show_actual_brightness,
249
		     NULL),
250
	__ATTR(max_brightness, 0444, backlight_show_max_brightness, NULL),
M
Matthew Garrett 已提交
251
	__ATTR(type, 0444, backlight_show_type, NULL),
252
	__ATTR_NULL,
L
Linus Torvalds 已提交
253 254
};

255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
/**
 * 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);
}
EXPORT_SYMBOL(backlight_force_update);

L
Linus Torvalds 已提交
274 275 276 277 278
/**
 * 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).
279
 * @parent: a pointer to the parent device
280 281
 * @devdata: an optional pointer to be stored for private driver use. The
 *   methods may retrieve it by using bl_get_data(bd).
282
 * @ops: the backlight operations structure.
L
Linus Torvalds 已提交
283
 *
284
 * Creates and registers new backlight device. Returns either an
L
Linus Torvalds 已提交
285 286
 * ERR_PTR() or a pointer to the newly allocated device.
 */
287
struct backlight_device *backlight_device_register(const char *name,
288 289
	struct device *parent, void *devdata, const struct backlight_ops *ops,
	const struct backlight_properties *props)
L
Linus Torvalds 已提交
290 291
{
	struct backlight_device *new_bd;
292
	int rc;
L
Linus Torvalds 已提交
293

294
	pr_debug("backlight_device_register: name=%s\n", name);
L
Linus Torvalds 已提交
295

296
	new_bd = kzalloc(sizeof(struct backlight_device), GFP_KERNEL);
297
	if (!new_bd)
298
		return ERR_PTR(-ENOMEM);
L
Linus Torvalds 已提交
299

300
	mutex_init(&new_bd->update_lock);
301
	mutex_init(&new_bd->ops_lock);
L
Linus Torvalds 已提交
302

303 304 305
	new_bd->dev.class = backlight_class;
	new_bd->dev.parent = parent;
	new_bd->dev.release = bl_device_release;
306
	dev_set_name(&new_bd->dev, name);
307 308
	dev_set_drvdata(&new_bd->dev, devdata);

309
	/* Set default properties */
M
Matthew Garrett 已提交
310
	if (props) {
311 312
		memcpy(&new_bd->props, props,
		       sizeof(struct backlight_properties));
M
Matthew Garrett 已提交
313 314 315 316 317 318 319
		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;
	}
320

321
	rc = device_register(&new_bd->dev);
322
	if (rc) {
D
Dmitry Torokhov 已提交
323
		kfree(new_bd);
L
Linus Torvalds 已提交
324 325 326
		return ERR_PTR(rc);
	}

327
	rc = backlight_register_fb(new_bd);
D
Dmitry Torokhov 已提交
328
	if (rc) {
329
		device_unregister(&new_bd->dev);
D
Dmitry Torokhov 已提交
330 331 332
		return ERR_PTR(rc);
	}

333
	new_bd->ops = ops;
L
Linus Torvalds 已提交
334

335 336 337 338 339 340 341
#ifdef CONFIG_PMAC_BACKLIGHT
	mutex_lock(&pmac_backlight_mutex);
	if (!pmac_backlight)
		pmac_backlight = new_bd;
	mutex_unlock(&pmac_backlight_mutex);
#endif

L
Linus Torvalds 已提交
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
	return new_bd;
}
EXPORT_SYMBOL(backlight_device_register);

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

357 358 359 360 361 362
#ifdef CONFIG_PMAC_BACKLIGHT
	mutex_lock(&pmac_backlight_mutex);
	if (pmac_backlight == bd)
		pmac_backlight = NULL;
	mutex_unlock(&pmac_backlight_mutex);
#endif
363 364 365
	mutex_lock(&bd->ops_lock);
	bd->ops = NULL;
	mutex_unlock(&bd->ops_lock);
L
Linus Torvalds 已提交
366

367
	backlight_unregister_fb(bd);
368
	device_unregister(&bd->dev);
L
Linus Torvalds 已提交
369 370 371 372 373
}
EXPORT_SYMBOL(backlight_device_unregister);

static void __exit backlight_class_exit(void)
{
374
	class_destroy(backlight_class);
L
Linus Torvalds 已提交
375 376 377 378
}

static int __init backlight_class_init(void)
{
379 380 381 382 383 384 385 386
	backlight_class = class_create(THIS_MODULE, "backlight");
	if (IS_ERR(backlight_class)) {
		printk(KERN_WARNING "Unable to create backlight class; errno = %ld\n",
				PTR_ERR(backlight_class));
		return PTR_ERR(backlight_class);
	}

	backlight_class->dev_attrs = bl_device_attributes;
387 388
	backlight_class->suspend = backlight_suspend;
	backlight_class->resume = backlight_resume;
389
	return 0;
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398 399 400 401
}

/*
 * 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");