via-pmu-backlight.c 4.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Backlight code for via-pmu
 *
 * Copyright (C) 1998 Paul Mackerras and Fabio Riccardi.
 * Copyright (C) 2001-2002 Benjamin Herrenschmidt
 * Copyright (C) 2006      Michael Hanselmann <linux-kernel@hansmi.ch>
 *
 */

#include <asm/ptrace.h>
#include <linux/adb.h>
#include <linux/pmu.h>
#include <asm/backlight.h>
#include <asm/prom.h>

#define MAX_PMU_LEVEL 0xFF

L
Lionel Debroux 已提交
18
static const struct backlight_ops pmu_backlight_data;
19
static DEFINE_SPINLOCK(pmu_backlight_lock);
20
static int sleeping, uses_pmu_bl;
21
static u8 bl_curve[FB_BACKLIGHT_LEVELS];
22

23 24
static void pmu_backlight_init_curve(u8 off, u8 min, u8 max)
{
25
	int i, flat, count, range = (max - min);
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

	bl_curve[0] = off;

	for (flat = 1; flat < (FB_BACKLIGHT_LEVELS / 16); ++flat)
		bl_curve[flat] = min;

	count = FB_BACKLIGHT_LEVELS * 15 / 16;
	for (i = 0; i < count; ++i)
		bl_curve[flat + i] = min + (range * (i + 1) / count);
}

static int pmu_backlight_curve_lookup(int value)
{
	int level = (FB_BACKLIGHT_LEVELS - 1);
	int i, max = 0;

	/* Look for biggest value */
	for (i = 0; i < FB_BACKLIGHT_LEVELS; i++)
		max = max((int)bl_curve[i], max);

	/* Look for nearest value */
	for (i = 0; i < FB_BACKLIGHT_LEVELS; i++) {
		int diff = abs(bl_curve[i] - value);
		if (diff < max) {
			max = diff;
			level = i;
		}
	}
	return level;
}

static int pmu_backlight_get_level_brightness(int level)
58 59 60 61
{
	int pmulevel;

	/* Get and convert the value */
62
	pmulevel = bl_curve[level] * FB_BACKLIGHT_MAX / MAX_PMU_LEVEL;
63 64 65 66 67 68 69 70
	if (pmulevel < 0)
		pmulevel = 0;
	else if (pmulevel > MAX_PMU_LEVEL)
		pmulevel = MAX_PMU_LEVEL;

	return pmulevel;
}

71
static int __pmu_backlight_update_status(struct backlight_device *bd)
72 73
{
	struct adb_request req;
74
	int level = bd->props.brightness;
75 76


77 78
	if (bd->props.power != FB_BLANK_UNBLANK ||
	    bd->props.fb_blank != FB_BLANK_UNBLANK)
79 80
		level = 0;

81
	if (level > 0) {
82
		int pmulevel = pmu_backlight_get_level_brightness(level);
83

84 85
		pmu_request(&req, NULL, 2, PMU_BACKLIGHT_BRIGHT, pmulevel);
		pmu_wait_complete(&req);
86

87 88 89 90 91 92 93 94 95
		pmu_request(&req, NULL, 2, PMU_POWER_CTRL,
			PMU_POW_BACKLIGHT | PMU_POW_ON);
		pmu_wait_complete(&req);
	} else {
		pmu_request(&req, NULL, 2, PMU_POWER_CTRL,
			PMU_POW_BACKLIGHT | PMU_POW_OFF);
		pmu_wait_complete(&req);
	}

96 97 98
	return 0;
}

99 100 101 102 103 104 105 106 107 108 109 110 111 112
static int pmu_backlight_update_status(struct backlight_device *bd)
{
	unsigned long flags;
	int rc = 0;

	spin_lock_irqsave(&pmu_backlight_lock, flags);
	/* Don't update brightness when sleeping */
	if (!sleeping)
		rc = __pmu_backlight_update_status(bd);
	spin_unlock_irqrestore(&pmu_backlight_lock, flags);
	return rc;
}


113 114
static int pmu_backlight_get_brightness(struct backlight_device *bd)
{
115
	return bd->props.brightness;
116 117
}

L
Lionel Debroux 已提交
118
static const struct backlight_ops pmu_backlight_data = {
119 120
	.get_brightness	= pmu_backlight_get_brightness,
	.update_status	= pmu_backlight_update_status,
121

122 123
};

124
#ifdef CONFIG_PM
125
void pmu_backlight_set_sleep(int sleep)
126 127 128 129
{
	unsigned long flags;

	spin_lock_irqsave(&pmu_backlight_lock, flags);
130
	sleeping = sleep;
131
	if (pmac_backlight && uses_pmu_bl) {
132 133 134 135 136 137 138 139 140
		if (sleep) {
			struct adb_request req;

			pmu_request(&req, NULL, 2, PMU_POWER_CTRL,
				    PMU_POW_BACKLIGHT | PMU_POW_OFF);
			pmu_wait_complete(&req);
		} else
			__pmu_backlight_update_status(pmac_backlight);
	}
141 142
	spin_unlock_irqrestore(&pmu_backlight_lock, flags);
}
143
#endif /* CONFIG_PM */
144 145

void __init pmu_backlight_init()
146
{
147
	struct backlight_properties props;
148 149 150 151 152 153
	struct backlight_device *bd;
	char name[10];
	int level, autosave;

	/* Special case for the old PowerBook since I can't test on it */
	autosave =
154 155
		of_machine_is_compatible("AAPL,3400/2400") ||
		of_machine_is_compatible("AAPL,3500");
156 157 158

	if (!autosave &&
	    !pmac_has_backlight_type("pmu") &&
159 160
	    !of_machine_is_compatible("AAPL,PowerBook1998") &&
	    !of_machine_is_compatible("PowerBook1,1"))
161 162
		return;

163
	snprintf(name, sizeof(name), "pmubl");
164

165
	memset(&props, 0, sizeof(struct backlight_properties));
M
Matthew Garrett 已提交
166
	props.type = BACKLIGHT_PLATFORM;
167 168 169
	props.max_brightness = FB_BACKLIGHT_LEVELS - 1;
	bd = backlight_device_register(name, NULL, NULL, &pmu_backlight_data,
				       &props);
170
	if (IS_ERR(bd)) {
171 172
		printk(KERN_ERR "PMU Backlight registration failed\n");
		return;
173
	}
174
	uses_pmu_bl = 1;
175
	pmu_backlight_init_curve(0x7F, 0x46, 0x0E);
176

177
	level = bd->props.max_brightness;
178 179 180 181 182 183 184

	if (autosave) {
		/* read autosaved value if available */
		struct adb_request req;
		pmu_request(&req, NULL, 2, 0xd9, 0);
		pmu_wait_complete(&req);

185
		level = pmu_backlight_curve_lookup(
186
				(req.reply[0] >> 4) *
187
				bd->props.max_brightness / 15);
188 189
	}

190 191
	bd->props.brightness = level;
	bd->props.power = FB_BLANK_UNBLANK;
192
	backlight_update_status(bd);
193

194
	printk(KERN_INFO "PMU Backlight initialized (%s)\n", name);
195
}