2007-09-20 04:46:41 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-09-22 15:43:38 +00:00
|
|
|
* $Id$
|
2007-09-20 04:46:41 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-09-20 04:46:41 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "backlight-target.h"
|
|
|
|
#include "backlight.h"
|
|
|
|
#include "lcd.h"
|
|
|
|
#include "power.h"
|
2007-11-02 06:13:43 +00:00
|
|
|
#include "spi-target.h"
|
2009-04-28 05:07:25 +00:00
|
|
|
#include "lcd-target.h"
|
2007-09-20 04:46:41 +00:00
|
|
|
|
2009-06-24 04:17:15 +00:00
|
|
|
short read_brightness = 0x0;
|
|
|
|
|
2009-04-15 05:31:04 +00:00
|
|
|
static void _backlight_write_brightness(int brightness)
|
|
|
|
{
|
2009-06-24 04:17:15 +00:00
|
|
|
uint8_t bl_command[] = {0xA4, 0x00, brightness, 0xA4};
|
|
|
|
|
|
|
|
uint8_t bl_read[] = {0xA8, 0x00};
|
|
|
|
|
|
|
|
spi_block_transfer(SPI_target_BACKLIGHT, bl_read, 2, (char*)&read_brightness, 2);
|
|
|
|
|
|
|
|
spi_block_transfer(SPI_target_BACKLIGHT, bl_command, 4, 0, 0);
|
2009-04-15 05:31:04 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
void _backlight_on(void)
|
2007-09-20 04:46:41 +00:00
|
|
|
{
|
2009-04-28 05:07:25 +00:00
|
|
|
lcd_awake(); /* power on lcd + visible display */
|
|
|
|
|
2009-05-04 12:04:29 +00:00
|
|
|
#if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_NO_FADING)
|
2009-05-04 04:14:52 +00:00
|
|
|
_backlight_write_brightness(backlight_brightness);
|
|
|
|
#endif
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
void _backlight_off(void)
|
2007-09-20 04:46:41 +00:00
|
|
|
{
|
2009-04-15 05:31:04 +00:00
|
|
|
_backlight_write_brightness(0);
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Assumes that the backlight has been initialized */
|
2007-11-12 18:49:53 +00:00
|
|
|
void _backlight_set_brightness(int brightness)
|
2007-09-20 04:46:41 +00:00
|
|
|
{
|
2009-04-15 05:31:04 +00:00
|
|
|
_backlight_write_brightness(brightness);
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void __backlight_dim(bool dim_now)
|
|
|
|
{
|
2007-11-12 18:49:53 +00:00
|
|
|
_backlight_set_brightness(dim_now ?
|
2007-11-02 06:13:43 +00:00
|
|
|
DEFAULT_BRIGHTNESS_SETTING :
|
|
|
|
DEFAULT_DIMNESS_SETTING);
|
2007-09-20 04:46:41 +00:00
|
|
|
}
|
|
|
|
|
2007-11-12 18:49:53 +00:00
|
|
|
bool _backlight_init(void)
|
2007-09-20 04:46:41 +00:00
|
|
|
{
|
2009-05-04 04:14:52 +00:00
|
|
|
_backlight_set_brightness(backlight_brightness);
|
2007-09-20 04:46:41 +00:00
|
|
|
return true;
|
|
|
|
}
|