Remove the calls to backlight_lcd_sleep_countdown from target specific code and move...
[kugel-rb/myfork.git] / firmware / target / arm / philips / sa9200 / backlight-sa9200.c
bloba0acaa0abdcef42b2b95d13cf6724092358f1e00
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 by Barry Wardell
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #include "config.h"
22 #include "backlight-target.h"
23 #include "system.h"
24 #include "lcd.h"
25 #include "backlight.h"
26 #include "ascodec.h"
27 #include "as3514.h"
29 void _backlight_set_brightness(int brightness)
31 ascodec_write(AS3514_DCDC15, brightness);
34 void _backlight_on(void)
36 #ifdef HAVE_LCD_ENABLE
37 lcd_enable(true); /* power on lcd + visible display */
38 #endif
39 #if (CONFIG_BACKLIGHT_FADING != BACKLIGHT_FADING_SW_SETTING) /* in bootloader/sim */
40 /* if we set the brightness to the settings value, then fading up
41 * is glitchy */
42 _backlight_set_brightness(backlight_brightness);
43 #endif
46 void _backlight_off(void)
48 _backlight_set_brightness(0);
49 #ifdef HAVE_LCD_ENABLE
50 lcd_enable(false); /* power off visible display */
51 #endif
54 void _buttonlight_on(void)
56 /* TODO */
59 void _buttonlight_off(void)
61 /* TODO */