1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 by Linus Nielsen Feltzing
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
22 #include "backlight.h"
23 #include "backlight-target.h"
27 bool _backlight_init(void)
31 return true; /* Backlight always ON after boot. */
34 void _backlight_on(void)
36 int level
= disable_irq_save();
38 pcf50606_write(0x39, 0x07);
42 void _backlight_off(void)
44 int level
= disable_irq_save();
46 pcf50606_write(0x39, 0x00);
50 void _remote_backlight_on(void)
52 and_l(~0x00200000, &GPIO_OUT
);
55 void _remote_backlight_off(void)
57 or_l(0x00200000, &GPIO_OUT
);