2002-06-24 13:48:42 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdlib.h>
|
2004-10-07 08:38:51 +00:00
|
|
|
#include "cpu.h"
|
2002-06-24 13:48:42 +00:00
|
|
|
#include "kernel.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include "i2c.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "rtc.h"
|
2002-06-29 23:01:10 +00:00
|
|
|
#include "usb.h"
|
2002-10-01 10:59:36 +00:00
|
|
|
#include "power.h"
|
2003-11-06 01:34:50 +00:00
|
|
|
#include "system.h"
|
2006-08-08 22:03:56 +00:00
|
|
|
#include "button.h"
|
2005-07-26 20:01:11 +00:00
|
|
|
#include "timer.h"
|
2005-11-21 23:55:39 +00:00
|
|
|
#include "backlight.h"
|
2002-06-24 13:48:42 +00:00
|
|
|
|
2006-08-08 22:03:56 +00:00
|
|
|
#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
|
|
|
|
#include "lcd.h" /* for lcd_enable() and lcd_sleep() */
|
2005-12-20 23:15:27 +00:00
|
|
|
#endif
|
2005-04-15 13:51:19 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
#include "lcd-remote.h"
|
|
|
|
#endif
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifndef SIMULATOR
|
2006-03-22 14:17:45 +00:00
|
|
|
#include "backlight-target.h"
|
|
|
|
#endif
|
2005-04-15 13:51:19 +00:00
|
|
|
|
2006-03-22 14:33:07 +00:00
|
|
|
#ifdef SIMULATOR
|
2007-09-09 02:14:32 +00:00
|
|
|
/* TODO: find a better way to do it but we need a kernel thread somewhere to
|
|
|
|
handle this */
|
|
|
|
extern void screen_dump(void);
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
static inline void _backlight_on(void)
|
2006-03-22 14:33:07 +00:00
|
|
|
{
|
|
|
|
sim_backlight(100);
|
|
|
|
}
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
static inline void _backlight_off(void)
|
2006-03-22 14:33:07 +00:00
|
|
|
{
|
|
|
|
sim_backlight(0);
|
|
|
|
}
|
2006-11-10 19:03:02 +00:00
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
static inline void _backlight_set_brightness(int val)
|
2006-11-10 19:03:02 +00:00
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
2007-05-08 06:45:38 +00:00
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
static inline void _buttonlight_on(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void _buttonlight_off(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void _buttonlight_set_brightness(int val)
|
2007-05-08 06:45:38 +00:00
|
|
|
{
|
|
|
|
(void)val;
|
|
|
|
}
|
2007-11-12 18:49:53 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
static inline void _remote_backlight_on(void)
|
|
|
|
{
|
|
|
|
sim_remote_backlight(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void _remote_backlight_off(void)
|
|
|
|
{
|
|
|
|
sim_remote_backlight(0);
|
|
|
|
}
|
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
2007-05-08 06:45:38 +00:00
|
|
|
|
2006-03-22 14:33:07 +00:00
|
|
|
#endif /* SIMULATOR */
|
2006-03-19 17:42:58 +00:00
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#if defined(HAVE_BACKLIGHT) && !defined(BOOTLOADER)
|
2004-10-09 19:56:27 +00:00
|
|
|
|
2006-04-01 12:20:23 +00:00
|
|
|
const signed char backlight_timeout_value[19] =
|
2004-09-10 13:56:54 +00:00
|
|
|
{
|
|
|
|
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 45, 60, 90
|
|
|
|
};
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
enum {
|
|
|
|
BACKLIGHT_ON,
|
|
|
|
BACKLIGHT_OFF,
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
REMOTE_BACKLIGHT_ON,
|
|
|
|
REMOTE_BACKLIGHT_OFF,
|
|
|
|
#endif
|
|
|
|
#if defined(_BACKLIGHT_FADE_BOOST) || defined(_BACKLIGHT_FADE_ENABLE)
|
|
|
|
BACKLIGHT_FADE_FINISH,
|
|
|
|
#endif
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
2007-11-12 18:49:53 +00:00
|
|
|
LCD_SLEEP,
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2007-04-22 13:02:24 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2007-11-12 18:49:53 +00:00
|
|
|
BUTTON_LIGHT_ON,
|
|
|
|
BUTTON_LIGHT_OFF,
|
2007-04-22 13:02:24 +00:00
|
|
|
#endif
|
2007-11-12 18:49:53 +00:00
|
|
|
};
|
2002-06-24 13:48:42 +00:00
|
|
|
|
|
|
|
static void backlight_thread(void);
|
2005-02-06 02:43:26 +00:00
|
|
|
static long backlight_stack[DEFAULT_STACK_SIZE/sizeof(long)];
|
2004-08-03 05:58:46 +00:00
|
|
|
static const char backlight_thread_name[] = "backlight";
|
2007-10-16 22:00:51 +00:00
|
|
|
static struct event_queue backlight_queue;
|
2002-06-24 13:48:42 +00:00
|
|
|
|
|
|
|
static int backlight_timer;
|
2007-08-10 21:55:48 +00:00
|
|
|
static int backlight_timeout;
|
|
|
|
static int backlight_timeout_normal = 5*HZ;
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2005-11-23 20:12:33 +00:00
|
|
|
static int backlight_timeout_plugged = 5*HZ;
|
|
|
|
#endif
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAS_BUTTON_HOLD
|
|
|
|
static int backlight_on_button_hold = 0;
|
|
|
|
#endif
|
2005-11-21 23:55:39 +00:00
|
|
|
|
2007-04-22 13:02:24 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2007-10-07 15:02:02 +00:00
|
|
|
static int buttonlight_timer;
|
2007-11-12 18:49:53 +00:00
|
|
|
int _buttonlight_timeout = 5*HZ;
|
2007-05-10 03:08:47 +00:00
|
|
|
|
|
|
|
/* Update state of buttonlight according to timeout setting */
|
|
|
|
static void buttonlight_update_state(void)
|
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
buttonlight_timer = _buttonlight_timeout;
|
2007-05-10 03:08:47 +00:00
|
|
|
|
|
|
|
/* Buttonlight == OFF in the setting? */
|
2007-10-07 15:02:02 +00:00
|
|
|
if (buttonlight_timer < 0)
|
2007-05-10 03:08:47 +00:00
|
|
|
{
|
2007-10-07 15:02:02 +00:00
|
|
|
buttonlight_timer = 0; /* Disable the timeout */
|
|
|
|
_buttonlight_off();
|
2007-05-10 03:08:47 +00:00
|
|
|
}
|
|
|
|
else
|
2007-10-07 15:02:02 +00:00
|
|
|
_buttonlight_on();
|
2007-05-10 03:08:47 +00:00
|
|
|
}
|
|
|
|
|
2007-04-22 13:02:24 +00:00
|
|
|
/* external interface */
|
2007-10-07 15:02:02 +00:00
|
|
|
void buttonlight_on(void)
|
2007-04-22 13:02:24 +00:00
|
|
|
{
|
|
|
|
queue_remove_from_head(&backlight_queue, BUTTON_LIGHT_ON);
|
|
|
|
queue_post(&backlight_queue, BUTTON_LIGHT_ON, 0);
|
|
|
|
}
|
|
|
|
|
2007-10-07 15:02:02 +00:00
|
|
|
void buttonlight_off(void)
|
2007-04-22 13:02:24 +00:00
|
|
|
{
|
|
|
|
queue_post(&backlight_queue, BUTTON_LIGHT_OFF, 0);
|
|
|
|
}
|
|
|
|
|
2007-10-07 15:02:02 +00:00
|
|
|
void buttonlight_set_timeout(int index)
|
2007-04-22 13:02:24 +00:00
|
|
|
{
|
|
|
|
if((unsigned)index >= sizeof(backlight_timeout_value))
|
|
|
|
/* if given a weird value, use default */
|
|
|
|
index = 6;
|
2007-11-12 18:49:53 +00:00
|
|
|
_buttonlight_timeout = HZ * backlight_timeout_value[index];
|
2007-05-10 03:08:47 +00:00
|
|
|
buttonlight_update_state();
|
2007-04-22 13:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-04-15 16:16:26 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
static int remote_backlight_timer;
|
2007-08-10 21:55:48 +00:00
|
|
|
static int remote_backlight_timeout;
|
|
|
|
static int remote_backlight_timeout_normal = 5*HZ;
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2005-11-23 20:12:33 +00:00
|
|
|
static int remote_backlight_timeout_plugged = 5*HZ;
|
|
|
|
#endif
|
2006-09-10 02:00:40 +00:00
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
|
|
|
static int remote_backlight_on_button_hold = 0;
|
|
|
|
#endif
|
2005-04-15 16:16:26 +00:00
|
|
|
#endif
|
2002-06-24 13:48:42 +00:00
|
|
|
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
const signed char lcd_sleep_timeout_value[10] =
|
|
|
|
{
|
|
|
|
-1, 0, 5, 10, 15, 20, 30, 45, 60, 90
|
|
|
|
};
|
2007-11-12 18:49:53 +00:00
|
|
|
int _lcd_sleep_timer;
|
|
|
|
int _lcd_sleep_timeout = 10*HZ;
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-19 17:42:58 +00:00
|
|
|
#if defined(HAVE_BACKLIGHT_PWM_FADING) && !defined(SIMULATOR)
|
2005-06-20 17:03:09 +00:00
|
|
|
/* backlight fading */
|
2007-11-12 18:49:53 +00:00
|
|
|
#define BL_PWM_INTERVAL 5000 /* Cycle interval in us */
|
2005-06-18 12:53:57 +00:00
|
|
|
#define BL_PWM_COUNT 100
|
2005-06-20 17:03:09 +00:00
|
|
|
static const char backlight_fade_value[8] = { 0, 1, 2, 4, 6, 8, 10, 20 };
|
|
|
|
static int fade_in_count = 1;
|
|
|
|
static int fade_out_count = 4;
|
2005-06-18 12:53:57 +00:00
|
|
|
|
|
|
|
static bool bl_timer_active = false;
|
2007-01-12 20:26:23 +00:00
|
|
|
static int bl_dim_current = 0;
|
|
|
|
static int bl_dim_target = 0;
|
2005-06-18 12:53:57 +00:00
|
|
|
static int bl_pwm_counter = 0;
|
|
|
|
static volatile int bl_cycle_counter = 0;
|
2005-06-20 17:03:09 +00:00
|
|
|
static enum {DIM_STATE_START, DIM_STATE_MAIN} bl_dim_state = DIM_STATE_START;
|
2005-06-18 12:53:57 +00:00
|
|
|
|
2005-07-26 20:01:11 +00:00
|
|
|
static void backlight_isr(void)
|
2005-06-18 12:53:57 +00:00
|
|
|
{
|
|
|
|
int timer_period;
|
2005-06-19 10:12:11 +00:00
|
|
|
bool idle = false;
|
2007-07-27 17:53:43 +00:00
|
|
|
|
2006-03-19 17:42:58 +00:00
|
|
|
timer_period = TIMER_FREQ / 1000 * BL_PWM_INTERVAL / 1000;
|
2007-07-27 17:53:43 +00:00
|
|
|
switch (bl_dim_state)
|
2005-07-26 20:01:11 +00:00
|
|
|
{
|
2005-06-20 17:03:09 +00:00
|
|
|
/* New cycle */
|
|
|
|
case DIM_STATE_START:
|
2005-06-18 12:53:57 +00:00
|
|
|
bl_pwm_counter = 0;
|
|
|
|
bl_cycle_counter++;
|
2007-07-27 17:53:43 +00:00
|
|
|
|
2005-07-26 20:01:11 +00:00
|
|
|
if (bl_dim_current > 0 && bl_dim_current < BL_PWM_COUNT)
|
2005-06-20 17:03:09 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_on_isr();
|
2005-06-18 12:53:57 +00:00
|
|
|
bl_pwm_counter = bl_dim_current;
|
|
|
|
timer_period = timer_period * bl_pwm_counter / BL_PWM_COUNT;
|
|
|
|
bl_dim_state = DIM_STATE_MAIN;
|
2007-07-27 17:53:43 +00:00
|
|
|
}
|
2005-06-20 17:03:09 +00:00
|
|
|
else
|
|
|
|
{
|
2005-06-18 12:53:57 +00:00
|
|
|
if (bl_dim_current)
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_on_isr();
|
2005-06-18 12:53:57 +00:00
|
|
|
else
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_off_isr();
|
2005-06-20 17:03:09 +00:00
|
|
|
if (bl_dim_current == bl_dim_target)
|
|
|
|
idle = true;
|
2005-06-18 12:53:57 +00:00
|
|
|
}
|
2007-07-27 17:53:43 +00:00
|
|
|
|
2005-06-18 12:53:57 +00:00
|
|
|
break ;
|
2007-07-27 17:53:43 +00:00
|
|
|
|
2005-06-20 17:03:09 +00:00
|
|
|
/* Dim main screen */
|
|
|
|
case DIM_STATE_MAIN:
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_off_isr();
|
2005-06-18 12:53:57 +00:00
|
|
|
bl_dim_state = DIM_STATE_START;
|
|
|
|
timer_period = timer_period * (BL_PWM_COUNT - bl_pwm_counter) / BL_PWM_COUNT;
|
|
|
|
break ;
|
|
|
|
}
|
2005-07-26 20:01:11 +00:00
|
|
|
|
2005-06-20 17:03:09 +00:00
|
|
|
if ((bl_dim_target > bl_dim_current) && (bl_cycle_counter >= fade_in_count))
|
|
|
|
{
|
|
|
|
bl_dim_current++;
|
2005-06-18 12:53:57 +00:00
|
|
|
bl_cycle_counter = 0;
|
|
|
|
}
|
2005-06-20 17:03:09 +00:00
|
|
|
|
|
|
|
if ((bl_dim_target < bl_dim_current) && (bl_cycle_counter >= fade_out_count))
|
|
|
|
{
|
|
|
|
bl_dim_current--;
|
|
|
|
bl_cycle_counter = 0;
|
|
|
|
}
|
|
|
|
|
2007-07-27 17:53:43 +00:00
|
|
|
if (idle)
|
2005-06-20 17:03:09 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
#if defined(_BACKLIGHT_FADE_BOOST) || defined(_BACKLIGHT_FADE_ENABLE)
|
|
|
|
queue_post(&backlight_queue, BACKLIGHT_FADE_FINISH, 0);
|
2006-03-19 17:42:58 +00:00
|
|
|
#endif
|
2005-07-26 20:01:11 +00:00
|
|
|
timer_unregister();
|
2005-06-20 17:03:09 +00:00
|
|
|
bl_timer_active = false;
|
|
|
|
}
|
2005-07-26 20:01:11 +00:00
|
|
|
else
|
|
|
|
timer_set_period(timer_period);
|
|
|
|
}
|
2005-06-20 17:03:09 +00:00
|
|
|
|
2005-07-26 20:01:11 +00:00
|
|
|
static void backlight_switch(void)
|
|
|
|
{
|
|
|
|
if (bl_dim_target > (BL_PWM_COUNT/2))
|
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_on_normal();
|
2005-07-26 20:01:11 +00:00
|
|
|
bl_dim_current = BL_PWM_COUNT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_off_normal();
|
2005-07-26 20:01:11 +00:00
|
|
|
bl_dim_current = 0;
|
|
|
|
}
|
2005-06-18 12:53:57 +00:00
|
|
|
}
|
|
|
|
|
2005-07-26 20:01:11 +00:00
|
|
|
static void backlight_release_timer(void)
|
2005-06-18 12:53:57 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
#ifdef _BACKLIGHT_FADE_BOOST
|
2006-12-05 20:21:11 +00:00
|
|
|
cpu_boost(false);
|
2006-03-19 17:42:58 +00:00
|
|
|
#endif
|
2005-07-26 20:01:11 +00:00
|
|
|
timer_unregister();
|
|
|
|
bl_timer_active = false;
|
|
|
|
backlight_switch();
|
2005-06-18 12:53:57 +00:00
|
|
|
}
|
|
|
|
|
2005-07-26 20:01:11 +00:00
|
|
|
static void backlight_dim(int value)
|
2005-06-18 12:53:57 +00:00
|
|
|
{
|
2005-08-11 21:22:54 +00:00
|
|
|
/* protect from extraneous calls with the same target value */
|
|
|
|
if (value == bl_dim_target)
|
|
|
|
return;
|
|
|
|
|
2005-07-26 20:01:11 +00:00
|
|
|
bl_dim_target = value;
|
2005-06-18 12:53:57 +00:00
|
|
|
|
2005-07-26 20:01:11 +00:00
|
|
|
if (bl_timer_active)
|
|
|
|
return ;
|
2005-06-18 12:53:57 +00:00
|
|
|
|
2006-09-01 22:03:14 +00:00
|
|
|
if (timer_register(0, backlight_release_timer, 2, 0, backlight_isr))
|
2005-07-26 20:01:11 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
#ifdef _BACKLIGHT_FADE_BOOST
|
2005-07-26 20:01:11 +00:00
|
|
|
/* Prevent cpu frequency changes while dimming. */
|
2006-12-05 20:21:11 +00:00
|
|
|
cpu_boost(true);
|
2006-03-19 17:42:58 +00:00
|
|
|
#endif
|
2005-07-26 20:01:11 +00:00
|
|
|
bl_timer_active = true;
|
2005-06-20 17:03:09 +00:00
|
|
|
}
|
2005-07-26 20:01:11 +00:00
|
|
|
else
|
|
|
|
backlight_switch();
|
2005-06-18 12:53:57 +00:00
|
|
|
}
|
|
|
|
|
2006-03-19 17:42:58 +00:00
|
|
|
static void _backlight_on(void)
|
2005-11-21 23:55:39 +00:00
|
|
|
{
|
|
|
|
if (fade_in_count > 0)
|
2007-11-12 18:49:53 +00:00
|
|
|
{
|
|
|
|
#ifdef _BACKLIGHT_FADE_ENABLE
|
|
|
|
_backlight_hw_enable(true);
|
|
|
|
#endif
|
2005-11-21 23:55:39 +00:00
|
|
|
backlight_dim(BL_PWM_COUNT);
|
2007-11-12 18:49:53 +00:00
|
|
|
}
|
2005-11-21 23:55:39 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
bl_dim_target = bl_dim_current = BL_PWM_COUNT;
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_on_normal();
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
2007-11-12 18:49:53 +00:00
|
|
|
_lcd_sleep_timer = 0; /* LCD should be awake already */
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
2005-06-18 12:53:57 +00:00
|
|
|
|
2006-03-19 17:42:58 +00:00
|
|
|
static void _backlight_off(void)
|
2004-10-07 08:38:51 +00:00
|
|
|
{
|
2005-07-26 20:01:11 +00:00
|
|
|
if (fade_out_count > 0)
|
2007-11-12 18:49:53 +00:00
|
|
|
{
|
2005-07-26 20:01:11 +00:00
|
|
|
backlight_dim(0);
|
2007-11-12 18:49:53 +00:00
|
|
|
}
|
2005-06-20 17:03:09 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
bl_dim_target = bl_dim_current = 0;
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_off_normal();
|
2005-06-20 17:03:09 +00:00
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
/* Start LCD sleep countdown */
|
2007-11-12 18:49:53 +00:00
|
|
|
if (_lcd_sleep_timeout < 0)
|
2006-08-08 22:03:56 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
_lcd_sleep_timer = 0; /* Setting == Always */
|
2006-08-08 22:03:56 +00:00
|
|
|
lcd_sleep();
|
|
|
|
}
|
|
|
|
else
|
2007-11-12 18:49:53 +00:00
|
|
|
_lcd_sleep_timer = _lcd_sleep_timeout;
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2004-10-07 08:38:51 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
void backlight_set_fade_in(int index)
|
2004-10-07 08:38:51 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
fade_in_count = backlight_fade_value[index];
|
2006-07-28 12:41:13 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
void backlight_set_fade_out(int index)
|
2006-07-28 12:41:13 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
fade_out_count = backlight_fade_value[index];
|
2006-07-28 12:41:13 +00:00
|
|
|
}
|
2007-11-12 18:49:53 +00:00
|
|
|
#endif /* defined(HAVE_BACKLIGHT_PWM_FADING) && !defined(SIMULATOR) */
|
2006-08-08 22:03:56 +00:00
|
|
|
|
|
|
|
/* Update state of backlight according to timeout setting */
|
|
|
|
static void backlight_update_state(void)
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
#ifdef HAS_BUTTON_HOLD
|
|
|
|
if (button_hold() && (backlight_on_button_hold != 0))
|
|
|
|
backlight_timeout = (backlight_on_button_hold == 2) ? 0 : -1;
|
|
|
|
/* always on or always off */
|
|
|
|
else
|
|
|
|
#endif
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2007-08-10 21:55:48 +00:00
|
|
|
if (charger_inserted()
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_USB_POWER
|
2007-08-10 21:55:48 +00:00
|
|
|
|| usb_powered()
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2007-08-10 21:55:48 +00:00
|
|
|
)
|
|
|
|
backlight_timeout = backlight_timeout_plugged;
|
|
|
|
else
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2007-08-10 21:55:48 +00:00
|
|
|
backlight_timeout = backlight_timeout_normal;
|
2006-08-08 22:03:56 +00:00
|
|
|
|
|
|
|
/* Backlight == OFF in the setting? */
|
2007-08-10 21:55:48 +00:00
|
|
|
if (backlight_timeout < 0)
|
2006-08-08 22:03:56 +00:00
|
|
|
{
|
|
|
|
backlight_timer = 0; /* Disable the timeout */
|
|
|
|
_backlight_off();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
backlight_timer = backlight_timeout;
|
2006-08-08 22:03:56 +00:00
|
|
|
_backlight_on();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
/* Update state of remote backlight according to timeout setting */
|
|
|
|
static void remote_backlight_update_state(void)
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
|
|
|
if (remote_button_hold() && (remote_backlight_on_button_hold != 0))
|
|
|
|
remote_backlight_timeout = (remote_backlight_on_button_hold == 2)
|
|
|
|
? 0 : -1; /* always on or always off */
|
|
|
|
else
|
|
|
|
#endif
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2007-08-10 21:55:48 +00:00
|
|
|
if (charger_inserted()
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_USB_POWER
|
|
|
|
|| usb_powered()
|
|
|
|
#endif
|
|
|
|
)
|
2007-08-10 21:55:48 +00:00
|
|
|
remote_backlight_timeout = remote_backlight_timeout_plugged;
|
|
|
|
else
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2007-08-10 21:55:48 +00:00
|
|
|
remote_backlight_timeout = remote_backlight_timeout_normal;
|
2006-08-08 22:03:56 +00:00
|
|
|
|
|
|
|
/* Backlight == OFF in the setting? */
|
2007-08-10 21:55:48 +00:00
|
|
|
if (remote_backlight_timeout < 0)
|
2006-08-08 22:03:56 +00:00
|
|
|
{
|
|
|
|
remote_backlight_timer = 0; /* Disable the timeout */
|
2007-11-12 18:49:53 +00:00
|
|
|
_remote_backlight_off();
|
2006-08-08 22:03:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
remote_backlight_timer = remote_backlight_timeout;
|
2007-11-12 18:49:53 +00:00
|
|
|
_remote_backlight_on();
|
2006-08-08 22:03:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
2004-10-07 08:38:51 +00:00
|
|
|
|
2002-06-24 13:48:42 +00:00
|
|
|
void backlight_thread(void)
|
|
|
|
{
|
2007-10-16 01:25:17 +00:00
|
|
|
struct queue_event ev;
|
2007-08-12 11:18:52 +00:00
|
|
|
bool locked = false;
|
2006-08-08 22:03:56 +00:00
|
|
|
|
2002-06-24 13:48:42 +00:00
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
queue_wait(&backlight_queue, &ev);
|
|
|
|
switch(ev.id)
|
2007-08-12 11:18:52 +00:00
|
|
|
{ /* These events must always be processed */
|
2007-11-12 18:49:53 +00:00
|
|
|
#ifdef _BACKLIGHT_FADE_BOOST
|
|
|
|
case BACKLIGHT_FADE_FINISH:
|
2007-08-12 11:18:52 +00:00
|
|
|
cpu_boost(false);
|
|
|
|
break;
|
|
|
|
#endif
|
2007-11-12 18:49:53 +00:00
|
|
|
#ifdef _BACKLIGHT_FADE_ENABLE
|
|
|
|
case BACKLIGHT_FADE_FINISH:
|
|
|
|
_backlight_hw_enable((bl_dim_current|bl_dim_target) != 0);
|
|
|
|
break;
|
|
|
|
#endif
|
2007-08-12 11:18:52 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_REMOTE_LCD) && !defined(SIMULATOR)
|
|
|
|
/* Here for now or else the aggressive init messes up scrolling */
|
|
|
|
case SYS_REMOTE_PLUGGED:
|
|
|
|
lcd_remote_on();
|
|
|
|
lcd_remote_update();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SYS_REMOTE_UNPLUGGED:
|
|
|
|
lcd_remote_off();
|
|
|
|
break;
|
|
|
|
#endif /* defined(HAVE_REMOTE_LCD) && !defined(SIMULATOR) */
|
2007-09-09 01:59:07 +00:00
|
|
|
#ifdef SIMULATOR
|
|
|
|
/* This one here too for lack of a better place */
|
|
|
|
case SYS_SCREENDUMP:
|
|
|
|
screen_dump();
|
|
|
|
break;
|
|
|
|
#endif
|
2007-08-12 11:18:52 +00:00
|
|
|
case SYS_USB_CONNECTED:
|
|
|
|
/* Tell the USB thread that we are safe */
|
|
|
|
DEBUGF("backlight_thread got SYS_USB_CONNECTED\n");
|
|
|
|
usb_acknowledge(SYS_USB_CONNECTED_ACK);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SYS_USB_DISCONNECTED:
|
|
|
|
usb_acknowledge(SYS_USB_DISCONNECTED_ACK);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (locked)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch(ev.id)
|
|
|
|
{ /* These events are only processed if backlight isn't locked */
|
2005-04-15 16:16:26 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
case REMOTE_BACKLIGHT_ON:
|
2006-08-08 22:03:56 +00:00
|
|
|
remote_backlight_update_state();
|
2005-04-15 16:16:26 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case REMOTE_BACKLIGHT_OFF:
|
2006-08-08 22:03:56 +00:00
|
|
|
remote_backlight_timer = 0; /* Disable the timeout */
|
2007-11-12 18:49:53 +00:00
|
|
|
_remote_backlight_off();
|
2005-04-15 16:16:26 +00:00
|
|
|
break;
|
2006-09-10 02:00:40 +00:00
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
|
|
|
|
2002-06-24 13:48:42 +00:00
|
|
|
case BACKLIGHT_ON:
|
2006-08-08 22:03:56 +00:00
|
|
|
backlight_update_state();
|
2002-06-24 13:48:42 +00:00
|
|
|
break;
|
2006-08-08 22:03:56 +00:00
|
|
|
|
2002-06-24 13:48:42 +00:00
|
|
|
case BACKLIGHT_OFF:
|
2006-08-08 22:03:56 +00:00
|
|
|
backlight_timer = 0; /* Disable the timeout */
|
2006-03-19 17:42:58 +00:00
|
|
|
_backlight_off();
|
2002-06-24 13:48:42 +00:00
|
|
|
break;
|
2005-08-11 21:47:52 +00:00
|
|
|
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
case LCD_SLEEP:
|
|
|
|
lcd_sleep();
|
|
|
|
break;
|
|
|
|
#endif
|
2007-04-22 13:02:24 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
|
|
|
case BUTTON_LIGHT_ON:
|
2007-05-10 03:08:47 +00:00
|
|
|
buttonlight_update_state();
|
2007-04-22 13:02:24 +00:00
|
|
|
break;
|
2007-08-12 11:18:52 +00:00
|
|
|
|
2007-04-22 13:02:24 +00:00
|
|
|
case BUTTON_LIGHT_OFF:
|
2007-10-07 15:02:02 +00:00
|
|
|
buttonlight_timer = 0;
|
|
|
|
_buttonlight_off();
|
2007-04-22 13:02:24 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2006-08-08 22:03:56 +00:00
|
|
|
|
2007-08-12 11:18:52 +00:00
|
|
|
case SYS_POWEROFF: /* Lock backlight on poweroff so it doesn't */
|
|
|
|
locked = true; /* go off before power is actually cut. */
|
|
|
|
/* fall through */
|
2007-08-10 21:55:48 +00:00
|
|
|
#if CONFIG_CHARGING
|
|
|
|
case SYS_CHARGER_CONNECTED:
|
|
|
|
case SYS_CHARGER_DISCONNECTED:
|
2007-08-12 11:18:52 +00:00
|
|
|
#endif
|
2007-08-10 21:55:48 +00:00
|
|
|
backlight_update_state();
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
remote_backlight_update_state();
|
|
|
|
#endif
|
|
|
|
break;
|
2007-08-12 11:18:52 +00:00
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
} /* end while */
|
2002-06-24 13:48:42 +00:00
|
|
|
}
|
|
|
|
|
2005-11-21 23:55:39 +00:00
|
|
|
static void backlight_tick(void)
|
2002-06-24 13:48:42 +00:00
|
|
|
{
|
|
|
|
if(backlight_timer)
|
|
|
|
{
|
|
|
|
backlight_timer--;
|
|
|
|
if(backlight_timer == 0)
|
|
|
|
{
|
|
|
|
backlight_off();
|
|
|
|
}
|
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
#ifdef HAVE_LCD_SLEEP
|
2007-11-12 18:49:53 +00:00
|
|
|
else if(_lcd_sleep_timer)
|
2006-08-08 22:03:56 +00:00
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
_lcd_sleep_timer--;
|
|
|
|
if(_lcd_sleep_timer == 0)
|
2006-08-08 22:03:56 +00:00
|
|
|
{
|
|
|
|
/* Queue on bl thread or freeze! */
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&backlight_queue, LCD_SLEEP, 0);
|
2006-08-08 22:03:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_LCD_SLEEP */
|
|
|
|
|
2005-04-15 16:16:26 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
if(remote_backlight_timer)
|
|
|
|
{
|
|
|
|
remote_backlight_timer--;
|
|
|
|
if(remote_backlight_timer == 0)
|
|
|
|
{
|
|
|
|
remote_backlight_off();
|
|
|
|
}
|
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif /* HAVE_REMOVE_LCD */
|
2007-04-22 13:02:24 +00:00
|
|
|
#ifdef HAVE_BUTTON_LIGHT
|
2007-10-07 15:02:02 +00:00
|
|
|
if (buttonlight_timer)
|
2007-04-22 13:02:24 +00:00
|
|
|
{
|
2007-10-07 15:02:02 +00:00
|
|
|
buttonlight_timer--;
|
|
|
|
if (buttonlight_timer == 0)
|
2007-04-22 13:02:24 +00:00
|
|
|
{
|
2007-10-07 15:02:02 +00:00
|
|
|
buttonlight_off();
|
2007-04-22 13:02:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_BUTTON_LIGHT */
|
2002-06-24 13:48:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void backlight_init(void)
|
|
|
|
{
|
2006-09-16 16:18:11 +00:00
|
|
|
queue_init(&backlight_queue, true);
|
2007-07-27 17:53:43 +00:00
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#ifndef SIMULATOR
|
2007-11-12 18:49:53 +00:00
|
|
|
if (_backlight_init())
|
2007-01-12 20:26:23 +00:00
|
|
|
{
|
2007-04-12 22:12:13 +00:00
|
|
|
# ifdef HAVE_BACKLIGHT_PWM_FADING
|
2007-01-12 20:26:23 +00:00
|
|
|
/* If backlight is already on, don't fade in. */
|
|
|
|
bl_dim_current = BL_PWM_COUNT;
|
|
|
|
bl_dim_target = BL_PWM_COUNT;
|
|
|
|
# endif
|
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif
|
2007-09-12 22:24:58 +00:00
|
|
|
/* Leave all lights as set by the bootloader here. The settings load will
|
|
|
|
* call the appropriate backlight_set_*() functions, only changing light
|
|
|
|
* status if necessary. */
|
2007-05-14 04:52:36 +00:00
|
|
|
|
2007-01-12 20:26:23 +00:00
|
|
|
create_thread(backlight_thread, backlight_stack,
|
2007-10-16 01:25:17 +00:00
|
|
|
sizeof(backlight_stack), 0, backlight_thread_name
|
2007-03-04 20:06:41 +00:00
|
|
|
IF_PRIO(, PRIORITY_SYSTEM)
|
2007-10-16 01:25:17 +00:00
|
|
|
IF_COP(, CPU));
|
2007-01-12 20:26:23 +00:00
|
|
|
tick_add_task(backlight_tick);
|
2002-06-24 13:48:42 +00:00
|
|
|
}
|
2004-09-10 13:56:54 +00:00
|
|
|
|
2005-11-21 23:55:39 +00:00
|
|
|
void backlight_on(void)
|
|
|
|
{
|
2006-11-03 09:46:26 +00:00
|
|
|
queue_remove_from_head(&backlight_queue, BACKLIGHT_ON);
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&backlight_queue, BACKLIGHT_ON, 0);
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
2004-09-10 13:56:54 +00:00
|
|
|
|
2005-11-21 23:55:39 +00:00
|
|
|
void backlight_off(void)
|
2005-11-16 23:53:01 +00:00
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&backlight_queue, BACKLIGHT_OFF, 0);
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
|
|
|
|
2006-04-01 12:20:23 +00:00
|
|
|
/* returns true when the backlight is on OR when it's set to always off */
|
2006-03-24 13:47:24 +00:00
|
|
|
bool is_backlight_on(void)
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
if (backlight_timer || backlight_timeout <= 0)
|
2006-03-24 13:47:24 +00:00
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-11-23 20:12:33 +00:00
|
|
|
/* return value in ticks; 0 means always on, <0 means always off */
|
|
|
|
int backlight_get_current_timeout(void)
|
2005-11-21 23:55:39 +00:00
|
|
|
{
|
|
|
|
return backlight_timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
void backlight_set_timeout(int index)
|
|
|
|
{
|
|
|
|
if((unsigned)index >= sizeof(backlight_timeout_value))
|
2006-08-08 22:03:56 +00:00
|
|
|
/* if given a weird value, use default */
|
|
|
|
index = 6;
|
2007-08-10 21:55:48 +00:00
|
|
|
backlight_timeout_normal = HZ * backlight_timeout_value[index];
|
2006-08-08 22:03:56 +00:00
|
|
|
backlight_update_state();
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
|
|
|
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2005-11-23 20:12:33 +00:00
|
|
|
void backlight_set_timeout_plugged(int index)
|
2005-11-21 23:55:39 +00:00
|
|
|
{
|
2005-11-23 20:12:33 +00:00
|
|
|
if((unsigned)index >= sizeof(backlight_timeout_value))
|
2006-08-08 22:03:56 +00:00
|
|
|
/* if given a weird value, use default */
|
|
|
|
index = 6;
|
2005-11-23 20:12:33 +00:00
|
|
|
backlight_timeout_plugged = HZ * backlight_timeout_value[index];
|
2006-08-08 22:03:56 +00:00
|
|
|
backlight_update_state();
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif /* CONFIG_CHARGING */
|
|
|
|
|
|
|
|
#ifdef HAS_BUTTON_HOLD
|
|
|
|
/* Hold button change event handler. */
|
|
|
|
void backlight_hold_changed(bool hold_button)
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
if (!hold_button || (backlight_on_button_hold > 0))
|
|
|
|
/* if unlocked or override in effect */
|
2006-08-08 22:03:56 +00:00
|
|
|
backlight_on();
|
|
|
|
}
|
|
|
|
|
|
|
|
void backlight_set_on_button_hold(int index)
|
|
|
|
{
|
|
|
|
if ((unsigned)index >= 3)
|
|
|
|
/* if given a weird value, use default */
|
|
|
|
index = 0;
|
|
|
|
|
|
|
|
backlight_on_button_hold = index;
|
2007-08-10 21:55:48 +00:00
|
|
|
backlight_update_state();
|
2006-08-08 22:03:56 +00:00
|
|
|
}
|
|
|
|
#endif /* HAS_BUTTON_HOLD */
|
|
|
|
|
|
|
|
#ifdef HAVE_LCD_SLEEP
|
|
|
|
void lcd_set_sleep_after_backlight_off(int index)
|
|
|
|
{
|
|
|
|
if ((unsigned)index >= sizeof(lcd_sleep_timeout_value))
|
|
|
|
/* if given a weird value, use default */
|
|
|
|
index = 3;
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
_lcd_sleep_timeout = HZ * lcd_sleep_timeout_value[index];
|
2006-08-08 22:03:56 +00:00
|
|
|
|
|
|
|
if (backlight_timer > 0 || backlight_get_current_timeout() == 0)
|
|
|
|
/* Timer will be set when bl turns off or bl set to on. */
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Backlight is Off */
|
2007-11-12 18:49:53 +00:00
|
|
|
if (_lcd_sleep_timeout < 0)
|
|
|
|
_lcd_sleep_timer = 1; /* Always - sleep next tick */
|
2006-08-08 22:03:56 +00:00
|
|
|
else
|
2007-11-12 18:49:53 +00:00
|
|
|
_lcd_sleep_timer = _lcd_sleep_timeout; /* Never, other */
|
2006-08-08 22:03:56 +00:00
|
|
|
}
|
|
|
|
#endif /* HAVE_LCD_SLEEP */
|
2005-11-21 23:55:39 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
void remote_backlight_on(void)
|
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&backlight_queue, REMOTE_BACKLIGHT_ON, 0);
|
2005-11-16 23:53:01 +00:00
|
|
|
}
|
2005-11-21 23:55:39 +00:00
|
|
|
|
|
|
|
void remote_backlight_off(void)
|
|
|
|
{
|
2006-12-19 16:50:07 +00:00
|
|
|
queue_post(&backlight_queue, REMOTE_BACKLIGHT_OFF, 0);
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void remote_backlight_set_timeout(int index)
|
|
|
|
{
|
|
|
|
if((unsigned)index >= sizeof(backlight_timeout_value))
|
2006-08-08 22:03:56 +00:00
|
|
|
/* if given a weird value, use default */
|
|
|
|
index=6;
|
2007-08-10 21:55:48 +00:00
|
|
|
remote_backlight_timeout_normal = HZ * backlight_timeout_value[index];
|
2006-08-08 22:03:56 +00:00
|
|
|
remote_backlight_update_state();
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
|
|
|
|
2007-02-18 05:32:06 +00:00
|
|
|
#if CONFIG_CHARGING
|
2005-11-23 20:12:33 +00:00
|
|
|
void remote_backlight_set_timeout_plugged(int index)
|
2005-11-21 23:55:39 +00:00
|
|
|
{
|
2005-11-23 20:12:33 +00:00
|
|
|
if((unsigned)index >= sizeof(backlight_timeout_value))
|
2006-08-08 22:03:56 +00:00
|
|
|
/* if given a weird value, use default */
|
|
|
|
index=6;
|
2005-11-23 20:12:33 +00:00
|
|
|
remote_backlight_timeout_plugged = HZ * backlight_timeout_value[index];
|
2006-08-08 22:03:56 +00:00
|
|
|
remote_backlight_update_state();
|
2005-11-21 23:55:39 +00:00
|
|
|
}
|
2006-08-08 22:03:56 +00:00
|
|
|
#endif /* CONFIG_CHARGING */
|
2006-03-25 19:16:45 +00:00
|
|
|
|
2006-09-10 02:00:40 +00:00
|
|
|
#ifdef HAS_REMOTE_BUTTON_HOLD
|
|
|
|
/* Remote hold button change event handler. */
|
|
|
|
void remote_backlight_hold_changed(bool rc_hold_button)
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
if (!rc_hold_button || (remote_backlight_on_button_hold > 0))
|
|
|
|
/* if unlocked or override */
|
2006-09-10 02:00:40 +00:00
|
|
|
remote_backlight_on();
|
|
|
|
}
|
|
|
|
|
|
|
|
void remote_backlight_set_on_button_hold(int index)
|
|
|
|
{
|
|
|
|
if ((unsigned)index >= 3)
|
|
|
|
/* if given a weird value, use default */
|
|
|
|
index = 0;
|
|
|
|
|
|
|
|
remote_backlight_on_button_hold = index;
|
2007-08-10 21:55:48 +00:00
|
|
|
remote_backlight_update_state();
|
2006-09-10 02:00:40 +00:00
|
|
|
}
|
|
|
|
#endif /* HAS_REMOTE_BUTTON_HOLD */
|
|
|
|
|
2006-03-25 19:16:45 +00:00
|
|
|
/* return value in ticks; 0 means always on, <0 means always off */
|
|
|
|
int remote_backlight_get_current_timeout(void)
|
|
|
|
{
|
|
|
|
return remote_backlight_timeout;
|
|
|
|
}
|
|
|
|
|
2006-04-01 12:20:23 +00:00
|
|
|
/* returns true when the backlight is on OR when it's set to always off */
|
2006-03-25 19:16:45 +00:00
|
|
|
bool is_remote_backlight_on(void)
|
|
|
|
{
|
2007-08-10 21:55:48 +00:00
|
|
|
if (remote_backlight_timer != 0 || remote_backlight_timeout <= 0)
|
2006-03-25 19:16:45 +00:00
|
|
|
return true;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-11-21 23:55:39 +00:00
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
|
|
|
|
2006-11-10 18:47:41 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
|
|
|
void backlight_set_brightness(int val)
|
|
|
|
{
|
|
|
|
if (val < MIN_BRIGHTNESS_SETTING)
|
|
|
|
val = MIN_BRIGHTNESS_SETTING;
|
|
|
|
else if (val > MAX_BRIGHTNESS_SETTING)
|
|
|
|
val = MAX_BRIGHTNESS_SETTING;
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_set_brightness(val);
|
2006-11-10 18:47:41 +00:00
|
|
|
}
|
|
|
|
#endif /* HAVE_BACKLIGHT_BRIGHTNESS */
|
|
|
|
|
2007-05-08 06:45:38 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
void buttonlight_set_brightness(int val)
|
|
|
|
{
|
|
|
|
if (val < MIN_BRIGHTNESS_SETTING)
|
|
|
|
val = MIN_BRIGHTNESS_SETTING;
|
|
|
|
else if (val > MAX_BRIGHTNESS_SETTING)
|
|
|
|
val = MAX_BRIGHTNESS_SETTING;
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
_buttonlight_set_brightness(val);
|
2007-05-08 06:45:38 +00:00
|
|
|
}
|
|
|
|
#endif /* HAVE_BUTTONLIGHT_BRIGHTNESS */
|
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#else /* !defined(HAVE_BACKLIGHT) || defined(BOOTLOADER)
|
2006-08-08 22:03:56 +00:00
|
|
|
-- no backlight, empty dummy functions */
|
2005-11-21 23:55:39 +00:00
|
|
|
|
2007-04-12 22:12:13 +00:00
|
|
|
#if defined(BOOTLOADER) && defined(HAVE_BACKLIGHT)
|
2005-11-22 01:39:41 +00:00
|
|
|
void backlight_init(void)
|
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
(void)_backlight_init();
|
|
|
|
_backlight_on();
|
2005-11-22 01:39:41 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-09-10 13:56:54 +00:00
|
|
|
void backlight_on(void) {}
|
|
|
|
void backlight_off(void) {}
|
2007-10-07 15:02:02 +00:00
|
|
|
void buttonlight_on(void) {}
|
2004-09-10 13:56:54 +00:00
|
|
|
void backlight_set_timeout(int index) {(void)index;}
|
2006-03-24 14:18:22 +00:00
|
|
|
bool is_backlight_on(void) {return true;}
|
2005-04-15 16:16:26 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
void remote_backlight_on(void) {}
|
|
|
|
void remote_backlight_off(void) {}
|
2005-05-30 06:42:14 +00:00
|
|
|
void remote_backlight_set_timeout(int index) {(void)index;}
|
2006-03-25 19:16:45 +00:00
|
|
|
bool is_remote_backlight_on(void) {return true;}
|
2006-11-10 18:47:41 +00:00
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
2005-12-22 10:43:36 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
2006-11-10 18:47:41 +00:00
|
|
|
void backlight_set_brightness(int val) { (void)val; }
|
2005-12-22 10:43:36 +00:00
|
|
|
#endif
|
2007-05-08 06:45:38 +00:00
|
|
|
#ifdef HAVE_BUTTONLIGHT_BRIGHTNESS
|
|
|
|
void buttonlight_set_brightness(int val) { (void)val; }
|
|
|
|
#endif
|
2007-04-12 22:12:13 +00:00
|
|
|
#endif /* defined(HAVE_BACKLIGHT) && !defined(BOOTLOADER) */
|