via-pmu-backlight.c 4.0 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

18
static struct backlight_ops pmu_backlight_data;
19
static DEFINE_SPINLOCK(pmu_backlight_lock);
20
static int sleeping;
21
static u8 bl_curve[FB_BACKLIGHT_LEVELS];
22

23 24 25 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
static void pmu_backlight_init_curve(u8 off, u8 min, u8 max)
{
	unsigned int i, flat, count, range = (max - min);

	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 71 72 73
	if (pmulevel < 0)
		pmulevel = 0;
	else if (pmulevel > MAX_PMU_LEVEL)
		pmulevel = MAX_PMU_LEVEL;

	return pmulevel;
}

static int pmu_backlight_update_status(struct backlight_device *bd)
{
	struct adb_request req;
74
	unsigned long flags;
75
	int level = bd->props.brightness;
76

77 78 79 80 81
	spin_lock_irqsave(&pmu_backlight_lock, flags);

	/* Don't update brightness when sleeping */
	if (sleeping)
		goto out;
82

83 84
	if (bd->props.power != FB_BLANK_UNBLANK ||
	    bd->props.fb_blank != FB_BLANK_UNBLANK)
85 86
		level = 0;

87
	if (level > 0) {
88
		int pmulevel = pmu_backlight_get_level_brightness(level);
89

90 91
		pmu_request(&req, NULL, 2, PMU_BACKLIGHT_BRIGHT, pmulevel);
		pmu_wait_complete(&req);
92

93 94 95 96 97 98 99 100 101 102 103
		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);
	}

out:
	spin_unlock_irqrestore(&pmu_backlight_lock, flags);
104 105 106 107 108 109

	return 0;
}

static int pmu_backlight_get_brightness(struct backlight_device *bd)
{
110
	return bd->props.brightness;
111 112
}

113
static struct backlight_ops pmu_backlight_data = {
114 115
	.get_brightness	= pmu_backlight_get_brightness,
	.update_status	= pmu_backlight_update_status,
116

117 118
};

119
#ifdef CONFIG_PM
120
void pmu_backlight_set_sleep(int sleep)
121 122 123 124
{
	unsigned long flags;

	spin_lock_irqsave(&pmu_backlight_lock, flags);
125
	sleeping = sleep;
126 127
	spin_unlock_irqrestore(&pmu_backlight_lock, flags);
}
128
#endif /* CONFIG_PM */
129 130

void __init pmu_backlight_init()
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
{
	struct backlight_device *bd;
	char name[10];
	int level, autosave;

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

	if (!autosave &&
	    !pmac_has_backlight_type("pmu") &&
	    !machine_is_compatible("AAPL,PowerBook1998") &&
	    !machine_is_compatible("PowerBook1,1"))
		return;

147
	snprintf(name, sizeof(name), "pmubl");
148

149
	bd = backlight_device_register(name, NULL, NULL, &pmu_backlight_data);
150 151 152 153
	if (IS_ERR(bd)) {
		printk("pmubl: Backlight registration failed\n");
		goto error;
	}
154
	bd->props.max_brightness = FB_BACKLIGHT_LEVELS - 1;
155
	pmu_backlight_init_curve(0x7F, 0x46, 0x0E);
156

157
	level = bd->props.max_brightness;
158 159 160 161 162 163 164

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

165
		level = pmu_backlight_curve_lookup(
166
				(req.reply[0] >> 4) *
167
				bd->props.max_brightness / 15);
168 169
	}

170 171
	bd->props.brightness = level;
	bd->props.power = FB_BLANK_UNBLANK;
172
	backlight_update_status(bd);
173 174 175 176 177 178 179 180

	printk("pmubl: Backlight initialized (%s)\n", name);

	return;

error:
	return;
}