1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
22 #include "backlight-target.h"
25 #include "backlight.h"
26 #include "ascodec-target.h"
29 int buttonlight_is_on
= 0;
31 void _backlight_set_brightness(int brightness
)
33 ascodec_write(AS3514_DCDC15
, brightness
);
36 void _backlight_on(void)
38 #ifdef HAVE_LCD_ENABLE
39 lcd_enable(true); /* power on lcd + visible display */
41 #if (CONFIG_BACKLIGHT_FADING != BACKLIGHT_FADING_SW_SETTING) /* in bootloader/sim */
42 /* if we set the brightness to the settings value, then fading up
44 ascodec_write(AS3514_DCDC15
, backlight_brightness
);
48 void _backlight_off(void)
50 ascodec_write(AS3514_DCDC15
, 0x0);
51 #ifdef HAVE_LCD_ENABLE
52 lcd_enable(false); /* power off visible display */
56 void _buttonlight_on(void)
58 /* Needed for buttonlight and MicroSD to work at the same time */
59 /* Turn ROD control on, as the OF does */
61 SD_MCI_POWER
|= (1<<7);
62 GPIOD_PIN(7) = (1<<7);
63 buttonlight_is_on
= 1;
66 void _buttonlight_off(void)
68 /* Needed for buttonlight and MicroSD to work at the same time */
69 /* Turn ROD control off, as the OF does */
70 SD_MCI_POWER
&= ~(1<<7);
73 buttonlight_is_on
= 0;